Code
contract ERC20 { function transfer(address _recipient, uint256 _value) public returns (bool success); }
contract Airdrop { function drop(ERC20 token, address[] recipients, uint256[] values) public { for (uint256 i = 0; i < recipients.length; i++) { token.transfer(recipients[i], values[i]); } } }
How to use. Please can you tell me what is the format i have to put address and token value to send. I have tried many formats but not worked. token send to multiple addresses in one transaction.
Please can you tell me what is the format i have to put address and token value. I have tried many formats but not worked.
Please
Code contract ERC20 { function transfer(address _recipient, uint256 _value) public returns (bool success); }
contract Airdrop { function drop(ERC20 token, address[] recipients, uint256[] values) public { for (uint256 i = 0; i < recipients.length; i++) { token.transfer(recipients[i], values[i]); } } }
How to use. Please can you tell me what is the format i have to put address and token value to send. I have tried many formats but not worked.
– sam Apr 30 '18 at 08:23Bulk transfer code deployed in this contract https://ropsten.etherscan.io/address/0x9fea6ed7edcb51f589265cb1f6613dc6e878f7c9#code
Need to transfer Test coin using the bulk transfer.
I have tried using myetherwallet.com for bulk transfer.
– sam May 01 '18 at 15:56