├── .gitignore ├── .gitmodules ├── README.md ├── foundry.toml ├── src ├── ERC721K.sol └── test │ └── ERC721K.t.sol └── tests.png /.gitignore: -------------------------------------------------------------------------------- 1 | cache/ 2 | out/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenzipfel/ERC721K/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenzipfel/ERC721K/HEAD/README.md -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenzipfel/ERC721K/HEAD/foundry.toml -------------------------------------------------------------------------------- /src/ERC721K.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenzipfel/ERC721K/HEAD/src/ERC721K.sol -------------------------------------------------------------------------------- /src/test/ERC721K.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenzipfel/ERC721K/HEAD/src/test/ERC721K.t.sol -------------------------------------------------------------------------------- /tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenzipfel/ERC721K/HEAD/tests.png --------------------------------------------------------------------------------