├── .gitignore ├── .solhint.json ├── .solhintignore ├── README.md ├── contracts └── MerkleDistributor.sol ├── package.json ├── test └── MerkleDistributor.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-ng/merkle-airdrop/HEAD/.gitignore -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-ng/merkle-airdrop/HEAD/.solhint.json -------------------------------------------------------------------------------- /.solhintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-ng/merkle-airdrop/HEAD/README.md -------------------------------------------------------------------------------- /contracts/MerkleDistributor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-ng/merkle-airdrop/HEAD/contracts/MerkleDistributor.sol -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-ng/merkle-airdrop/HEAD/package.json -------------------------------------------------------------------------------- /test/MerkleDistributor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-ng/merkle-airdrop/HEAD/test/MerkleDistributor.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-ng/merkle-airdrop/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-ng/merkle-airdrop/HEAD/yarn.lock --------------------------------------------------------------------------------