https://github.com/chainstacklabs/ton-jetton-tutorial-1
TON: How to develop fungible tokens (Jettons)
https://github.com/chainstacklabs/ton-jetton-tutorial-1
Last synced: 3 months ago
JSON representation
TON: How to develop fungible tokens (Jettons)
- Host: GitHub
- URL: https://github.com/chainstacklabs/ton-jetton-tutorial-1
- Owner: chainstacklabs
- Created: 2024-09-10T13:42:39.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-08-21T02:16:52.000Z (7 months ago)
- Last Synced: 2025-08-21T04:34:20.282Z (7 months ago)
- Language: TypeScript
- Size: 141 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TON: How to develop fungible tokens (Jettons)
For the full breakdown, see [TON: How to develop fungible tokens (Jettons)](https://docs.chainstack.com/docs/ton-how-to-develop-fungible-tokens-jettons).
## References
This project is inspired by and based on examples from the following repositories:
- [TON Blockchain Token Contract](https://github.com/ton-blockchain/token-contract/tree/main)
- [TON Blockchain Stablecoin Contract](https://github.com/ton-blockchain/stablecoin-contract)
## Project structure
- `contracts` - source code of all the smart contracts of the project and their dependencies.
- `wrappers` - wrapper classes (implementing `Contract` from ton-core) for the contracts, including any [de]serialization primitives and compilation functions.
- `tests` - tests for the contracts.
- `scripts` - scripts used by the project, mainly the deployment scripts.
## How to use
### Build
`npx blueprint build` or `yarn blueprint build`
### Test
`npx blueprint test` or `yarn blueprint test`
### Deploy or run another script
`npx blueprint run` or `yarn blueprint run`
### Add a new contract
`npx blueprint create ContractName` or `yarn blueprint create ContractName`