Getting startedGetting startedLanguageLanguageEvolutionEvolutionToolsTools
GitHubGitHub (opens in a new tab)
  • Guides
    • Type system
    • Functions
    • Statements
    • Message lifecycle
    • Send messages
    • Deploy contracts
    • Debugging
    • Contract upgrades
    • Masterchain
    • Compatibility with Func
    • Configuration
    • Programmatic API
    • Grammar
  • Reference
    • Common
    • Strings
    • Random
    • Math
    • Cells, Builders and Slices
    • Advanced
  • Libraries
    • @stdlib/deploy
    • @stdlib/ownable
    • @stdlib/stoppable
  • Getting started
    • Welcome to Tact
    • Writing your first contract
    • Deploying your contract
  • Language
    • Guides
      • Type system
      • Functions
      • Statements
      • Message lifecycle
      • Send messages
      • Deploy contracts
      • Debugging
      • Contract upgrades
      • Masterchain
      • Compatibility with Func
      • Configuration
      • Programmatic API
      • Grammar
    • Reference
      • Common
      • Strings
      • Random
      • Math
      • Cells, Builders and Slices
      • Advanced
    • Libraries
      • @stdlib/deploy
        • Usage
      • @stdlib/ownable
      • @stdlib/stoppable
  • Evolution
    • Evolution Process
    • OTP-001: Supported Interfaces
    • OTP-002: Contract ABI
    • OTP-003: Self-ABI reporting
    • OTP-004: Auto Encoder
    • OTP-005: Argument-addressable contracts
    • OTP-006: Contract Package
  • Tools
    • Typescript
    • VS Code Extension

On This Page

  • Usage
Edit this page
Language
Libraries
@stdlib/deploy

@stdlib/deploy

Simplest trait Deployable that provides a handy unified mechanism for deployments.

Usage

import "@stdlib/deploy";
 
contract ExampleContract with Deployable {
    // ...
}
Advanced@stdlib/ownable

CC BY 4.0, Tact Software Foundation