Go to file
user 855b07f707 feat: first version 2024-05-26 19:36:56 +03:00
contracts feat: first version 2024-05-26 19:36:56 +03:00
scripts feat: first version 2024-05-26 19:36:56 +03:00
signer feat: first version 2024-05-26 19:36:56 +03:00
tests feat: first version 2024-05-26 19:36:56 +03:00
wrappers feat: first version 2024-05-26 19:36:56 +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