├── .gitignore ├── .prettierrc.json ├── ChangeLog.md ├── README.md ├── example.env ├── images ├── image-1.png └── image.png ├── jest.config.js ├── package.json ├── sources ├── contract.deploy.ts ├── contract.deploy_api.ts ├── contract.read.ts ├── contract.tact ├── message.tact ├── test.spec.ts └── utils │ ├── deploy.ts │ ├── print.ts │ └── transfer.ts ├── tact.config.json ├── tsconfig.json ├── yarn-error.log └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /sources/output/* 3 | .env 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/README.md -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- 1 | mnemonics = "a b c...." -------------------------------------------------------------------------------- /images/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/images/image-1.png -------------------------------------------------------------------------------- /images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/images/image.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/package.json -------------------------------------------------------------------------------- /sources/contract.deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/sources/contract.deploy.ts -------------------------------------------------------------------------------- /sources/contract.deploy_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/sources/contract.deploy_api.ts -------------------------------------------------------------------------------- /sources/contract.read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/sources/contract.read.ts -------------------------------------------------------------------------------- /sources/contract.tact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/sources/contract.tact -------------------------------------------------------------------------------- /sources/message.tact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/sources/message.tact -------------------------------------------------------------------------------- /sources/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/sources/test.spec.ts -------------------------------------------------------------------------------- /sources/utils/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/sources/utils/deploy.ts -------------------------------------------------------------------------------- /sources/utils/print.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/sources/utils/print.ts -------------------------------------------------------------------------------- /sources/utils/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/sources/utils/transfer.ts -------------------------------------------------------------------------------- /tact.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/tact.config.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardpen9/nft-template-in-tact/HEAD/yarn.lock --------------------------------------------------------------------------------