├── .gitignore ├── README.md ├── contracts ├── Batcher.sol └── BatcherV2.sol ├── hardhat.config.js ├── package.json ├── scripts └── deploy.js └── test └── Batcher.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neal-zhu/batcher/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neal-zhu/batcher/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Batcher.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neal-zhu/batcher/HEAD/contracts/Batcher.sol -------------------------------------------------------------------------------- /contracts/BatcherV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neal-zhu/batcher/HEAD/contracts/BatcherV2.sol -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neal-zhu/batcher/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neal-zhu/batcher/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neal-zhu/batcher/HEAD/scripts/deploy.js -------------------------------------------------------------------------------- /test/Batcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neal-zhu/batcher/HEAD/test/Batcher.js --------------------------------------------------------------------------------