Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/howardpen9/jetton-hybrid-template
Using Sandbox package to build the SmartContract in #TON Blockchain.
https://github.com/howardpen9/jetton-hybrid-template
telegram ton ton-blockchain
Last synced: 22 days ago
JSON representation
Using Sandbox package to build the SmartContract in #TON Blockchain.
- Host: GitHub
- URL: https://github.com/howardpen9/jetton-hybrid-template
- Owner: howardpen9
- License: mit
- Created: 2024-01-25T13:46:06.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-11T15:36:27.000Z (about 1 year ago)
- Last Synced: 2024-11-23T14:49:45.918Z (3 months ago)
- Topics: telegram, ton, ton-blockchain
- Language: TypeScript
- Homepage:
- Size: 146 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Sameple
## 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`