├── .dapprc ├── .env.example ├── .gas-snapshot ├── .github └── workflows │ ├── lints.yml │ └── tests.yml ├── .gitignore ├── .gitmodules ├── .prettierignore ├── .prettierrc ├── .solhint.json ├── .vscode └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── foundry.toml ├── package.json ├── remappings.txt ├── src ├── NFTToken.sol └── test │ ├── NFTToken.t.sol │ └── utils │ └── DSTestPlus.sol └── yarn.lock /.dapprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/.dapprc -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/.env.example -------------------------------------------------------------------------------- /.gas-snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/.gas-snapshot -------------------------------------------------------------------------------- /.github/workflows/lints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/.github/workflows/lints.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build 2 | coverage 3 | out 4 | lib 5 | assets 6 | node_modules 7 | .next -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/.prettierrc -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/.solhint.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/README.md -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/foundry.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/package.json -------------------------------------------------------------------------------- /remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/remappings.txt -------------------------------------------------------------------------------- /src/NFTToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/src/NFTToken.sol -------------------------------------------------------------------------------- /src/test/NFTToken.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/src/test/NFTToken.t.sol -------------------------------------------------------------------------------- /src/test/utils/DSTestPlus.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/src/test/utils/DSTestPlus.sol -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianjca/erc721-nft-drop/HEAD/yarn.lock --------------------------------------------------------------------------------