├── .DS_Store ├── .dockeringore ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .github ├── .DS_Store └── workflows │ └── upgrade-dependencies.yml ├── .gitignore ├── .prettierrc.json ├── Dockerfile ├── LICENSE ├── README.md ├── examples ├── collection.json └── metadata.json ├── jest.config.ts ├── package.json ├── src ├── cli.ts ├── lib │ ├── createCollection.ts │ ├── createMerkleTree.ts │ ├── createNonce.ts │ ├── helpers.ts │ ├── manageLUT.ts │ └── manageNft.ts └── types │ ├── collection.ts │ ├── das.ts │ └── tokenPayment.ts ├── tsconfig.json └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/.DS_Store -------------------------------------------------------------------------------- /.dockeringore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | NFT_STORAGE_API_KEY= 2 | COLLECTION_AUTH= -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/.github/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/upgrade-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/.github/workflows/upgrade-dependencies.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/README.md -------------------------------------------------------------------------------- /examples/collection.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/examples/metadata.json -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/lib/createCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/src/lib/createCollection.ts -------------------------------------------------------------------------------- /src/lib/createMerkleTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/src/lib/createMerkleTree.ts -------------------------------------------------------------------------------- /src/lib/createNonce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/src/lib/createNonce.ts -------------------------------------------------------------------------------- /src/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/src/lib/helpers.ts -------------------------------------------------------------------------------- /src/lib/manageLUT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/src/lib/manageLUT.ts -------------------------------------------------------------------------------- /src/lib/manageNft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/src/lib/manageNft.ts -------------------------------------------------------------------------------- /src/types/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/src/types/collection.ts -------------------------------------------------------------------------------- /src/types/das.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/src/types/das.ts -------------------------------------------------------------------------------- /src/types/tokenPayment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/src/types/tokenPayment.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedonmon/cnft-cli/HEAD/yarn.lock --------------------------------------------------------------------------------