Tact Deployer is a small library that integrates with TON Verifier that allows you to deploy your contracts safely using your favorite wallet without needing to manage keys or deploy contracts manually. Tact Deployer also automatically verifies your contract’s source code and you can be sure that your compiler is not compromised.
Requirements
Your contract MUST have the Deployer trait from the @stdlib/deploy package to be able to use Tact Deployer.
Installation
To add Tact Deployer to your project, just use yarn:
How to use
When you build your smart contracts using Tact, it produces a package (*.pkg) file that has all the required information about the built smart contract. To deploy your smart contract, you need to create a deployer instance, pass your package file to it and provide initial data for your contract.
After following this link you will be able to deploy and verify your smart contract.