Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ansinitro/decentralized-lms
Implementation and testing of Smart Contracts written by TACT for TON Blockchain by using blueprint framework.
https://github.com/ansinitro/decentralized-lms
blockchain blueprint jest tact ton typescript
Last synced: about 3 hours ago
JSON representation
Implementation and testing of Smart Contracts written by TACT for TON Blockchain by using blueprint framework.
- Host: GitHub
- URL: https://github.com/ansinitro/decentralized-lms
- Owner: ansinitro
- Created: 2025-01-23T11:42:06.000Z (10 days ago)
- Default Branch: main
- Last Pushed: 2025-01-27T14:57:43.000Z (5 days ago)
- Last Synced: 2025-01-27T15:42:17.394Z (5 days ago)
- Topics: blockchain, blueprint, jest, tact, ton, typescript
- Language: TypeScript
- Homepage:
- Size: 57.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Course
## 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`