Tact Documentation
GitHubGitHub (opens in a new tab)
  • Getting started
  • Writing your first contract
  • Deploying your contract
  • Learn
    • Hello World
      • Tact and TON terms
      • Tact project structure
      • Tact contract structure
      • Receivers and Getters
      • Contract deployment
      • Get data from contract
    • Wallet contract
    • Jetton contract
  • Guides
    • Type system
    • Functions
    • Statements
    • Message lifecycle
    • Send messages
    • Contract upgrades
    • Compatibility with Func
    • Grammar
  • Reference
    • Common
    • Strings
    • Random
    • Math
    • Cells, Builders and Slices
    • Advanced
  • Libraries
    • @stdlib/deploy
    • @stdlib/ownable
    • @stdlib/stoppable
  • Tools
    • Typescript
    • VS Code Extension
  • Getting started
  • Writing your first contract
  • Deploying your contract
  • Learn
    • Hello World
      • Tact and TON terms
      • Tact project structure
      • Tact contract structure
      • Receivers and Getters
      • Contract deployment
      • Get data from contract
    • Wallet contract
    • Jetton contract
  • Guides
    • Type system
    • Functions
    • Statements
    • Message lifecycle
    • Send messages
    • Contract upgrades
    • Compatibility with Func
    • Grammar
  • Reference
    • Common
    • Strings
    • Random
    • Math
    • Cells, Builders and Slices
    • Advanced
  • Libraries
    • @stdlib/deploy
      • Usage
    • @stdlib/ownable
    • @stdlib/stoppable
  • Tools
    • Typescript
    • VS Code Extension

On This Page

  • Usage
Edit this page
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

MIT 2023 © Steve Korshakov.