├── .gitignore ├── README.md ├── contracts ├── Migrations.sol └── MultiSend.sol ├── migrations ├── 1_initial_migration.js ├── 2_deploy_helpers.js └── 3_multisend.js ├── package.json ├── test └── TestMultiSend.sol ├── truffle-config.js ├── truffle.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alonski/MultiSendEthereum/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alonski/MultiSendEthereum/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alonski/MultiSendEthereum/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/MultiSend.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alonski/MultiSendEthereum/HEAD/contracts/MultiSend.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alonski/MultiSendEthereum/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alonski/MultiSendEthereum/HEAD/migrations/2_deploy_helpers.js -------------------------------------------------------------------------------- /migrations/3_multisend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alonski/MultiSendEthereum/HEAD/migrations/3_multisend.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alonski/MultiSendEthereum/HEAD/package.json -------------------------------------------------------------------------------- /test/TestMultiSend.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alonski/MultiSendEthereum/HEAD/test/TestMultiSend.sol -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alonski/MultiSendEthereum/HEAD/truffle-config.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alonski/MultiSendEthereum/HEAD/truffle.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alonski/MultiSendEthereum/HEAD/yarn.lock --------------------------------------------------------------------------------