├── .gas-snapshot ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md └── src ├── CurrencyToken.sol └── test ├── CurrencyToken.t.sol └── Hevm.sol /.gas-snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/nft-token-drop/HEAD/.gas-snapshot -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/nft-token-drop/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | cache/ 2 | out/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/nft-token-drop/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/nft-token-drop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/nft-token-drop/HEAD/README.md -------------------------------------------------------------------------------- /src/CurrencyToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/nft-token-drop/HEAD/src/CurrencyToken.sol -------------------------------------------------------------------------------- /src/test/CurrencyToken.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/nft-token-drop/HEAD/src/test/CurrencyToken.t.sol -------------------------------------------------------------------------------- /src/test/Hevm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1guelpf/nft-token-drop/HEAD/src/test/Hevm.sol --------------------------------------------------------------------------------