Skip to content

Latest commit

 

History

History
56 lines (34 loc) · 1.68 KB

README.md

File metadata and controls

56 lines (34 loc) · 1.68 KB

Tact template project

This template comes pre-configured to kickstart your new Tact project. It includes the Tact compiler, TypeScript, Jest integrated with tact-emulator, and a sample demonstrating how to run tests.

How to use

First, let's install all the dependencies:

yarn install

Now we're ready to build our contract:

yarn build

Once you've built our contract, you can deploy it:

yarn deploy

Let's look at some other useful commands.

To test your contract after changes, run:

yarn test

If you want to quickly check your changes for validity, run:

yarn lint

Deployment

To deploy a contract, follow these steps:

  1. Define the contract.tact file that will be used as entry point of your contract.
  2. Customize the contract.deploy.ts file based on your contract.tact to generate a deployment link. It is crucial to ensure the proper invocation of the init() function within the contract.

If you rename contract.tact, make sure to update tact.config.json correspondingly. Refer to the Tact Documentation for detailed information.

Testing

You can find some examples of contract tests in contract.spec.ts. For more information about testing, see the Tact Documentation.

To add new test files to your contracts, you should create *.spec.ts files similar to the template's one and they would be automatically included in testing.

License

MIT