Go to file
user 21bed2c1f3 add nft code & script 2024-06-11 20:07:04 +03:00
contracts add nft code & script 2024-06-11 20:07:04 +03:00
scripts fix misprint 2024-06-09 20:08:18 +03:00
signer add nft code & script 2024-06-11 20:07:04 +03:00
tests universal contract update 2024-06-09 19:03:41 +03:00
wrappers add nft code & script 2024-06-11 20:07:04 +03:00
.gitignore feat: first version 2024-05-26 19:36:56 +03:00
LICENSE Initial commit 2024-05-24 10:19:00 +00:00
README.md feat: first version 2024-05-26 19:36:56 +03:00
jest.config.ts feat: first version 2024-05-26 19:36:56 +03:00
package-lock.json feat: first version 2024-05-26 19:36:56 +03:00
package.json feat: first version 2024-05-26 19:36:56 +03:00
tsconfig.json feat: first version 2024-05-26 19:36:56 +03:00

README.md

UniversalWallet

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