ETH Price: $2,238.79 (-3.34%)

Transaction Decoder

Block:
10349368 at Jun-27-2020 06:14:43 PM +UTC
Transaction Fee:
0.00052615 ETH $1.18
Gas Used:
21,046 Gas / 25 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Spark Pool)
57.133293917399494615 Eth57.133820067399494615 Eth0.00052615
0xF709472B...544596268
0.10367784 Eth
Nonce: 87
0.10315169 Eth
Nonce: 88
0.00052615

Execution Trace

ETH 0.008824188458257249 AutoEtherBot.CALL( )
/*

Custom ETH Contract to send funds to multiple addresses in a single call

*/


pragma solidity  ^0.6.3;

contract AutoEtherBot {
   
function multisend(uint256[] memory amounts, address payable[] memory receivers) payable public {
assert(amounts.length == receivers.length);
assert(receivers.length <= 100); //maximum receievers can be 100
   
        for(uint i = 0; i< receivers.length; i++){
            receivers[i].transfer(amounts[i]);
        }
    }
}