├── minting-tool
├── cli
│ ├── .gitignroe
│ ├── typedoc.json
│ ├── .eslintignore
│ ├── .prettierrc
│ ├── src
│ │ ├── tests
│ │ │ ├── assets
│ │ │ │ ├── images
│ │ │ │ │ ├── 1.png
│ │ │ │ │ ├── 2.png
│ │ │ │ │ ├── 3.png
│ │ │ │ │ ├── 4.png
│ │ │ │ │ └── 5.png
│ │ │ │ └── json
│ │ │ │ │ ├── 1.json
│ │ │ │ │ ├── 2.json
│ │ │ │ │ ├── 3.json
│ │ │ │ │ ├── 4.json
│ │ │ │ │ └── 5.json
│ │ │ └── run_test.md
│ │ ├── templates
│ │ │ ├── config.json
│ │ │ ├── collection.json
│ │ │ └── token.json
│ │ ├── asset-uploader.ts
│ │ ├── utils.ts
│ │ ├── nft-mint.ts
│ │ └── cli.ts
│ ├── docs
│ │ ├── .nojekyll
│ │ ├── assets
│ │ │ ├── search.js
│ │ │ ├── highlight.css
│ │ │ └── style.css
│ │ ├── index.html
│ │ ├── modules.html
│ │ └── classes
│ │ │ └── TokenSDK.html
│ ├── jest.config.js
│ ├── tsconfig.json
│ ├── .eslintrc.js
│ └── package.json
└── minting-site
│ ├── src
│ ├── App.css
│ ├── react-app-env.d.ts
│ ├── assets
│ │ └── aptos-zero.png
│ ├── App.tsx
│ ├── setupTests.ts
│ ├── App.test.tsx
│ ├── index.css
│ ├── reportWebVitals.ts
│ ├── pages
│ │ └── home
│ │ │ ├── home.module.css
│ │ │ └── index.tsx
│ ├── components
│ │ └── Navbar
│ │ │ ├── navbar.module.css
│ │ │ ├── index.tsx
│ │ │ └── wallet-adapter.css
│ ├── index.tsx
│ └── logo.svg
│ ├── public
│ ├── robots.txt
│ ├── favicon.ico
│ ├── logo192.png
│ ├── logo512.png
│ ├── manifest.json
│ └── index.html
│ ├── .gitignore
│ ├── README.md
│ ├── tsconfig.json
│ └── package.json
├── contracts
└── mint_nft
│ ├── .gitignore
│ ├── Move.toml
│ └── sources
│ ├── bucket_table.move
│ └── big_vector.move
├── .husky
└── pre-commit
├── .gitignore
└── README.md
/minting-tool/cli/.gitignroe:
--------------------------------------------------------------------------------
1 | /coverage
--------------------------------------------------------------------------------
/contracts/mint_nft/.gitignore:
--------------------------------------------------------------------------------
1 | build
2 |
--------------------------------------------------------------------------------
/minting-tool/minting-site/src/App.css:
--------------------------------------------------------------------------------
1 | .App {
2 | width: 100%;
3 | }
4 |
5 |
--------------------------------------------------------------------------------
/minting-tool/minting-site/src/react-app-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
this is a test class
18 | 20 |