ETH Price: $2,654.87 (+5.60%)

Transaction Decoder

Block:
10472989 at Jul-16-2020 09:37:35 PM +UTC
Transaction Fee:
0.001077685 ETH $2.86
Gas Used:
30,791 Gas / 35 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x7B120909...0080CFF67 0.0070258209 Eth0.0130258209 Eth0.006
0xa9ea0Bdf...4F84acd26
0.014 Eth
Nonce: 0
0.006922315 Eth
Nonce: 1
0.007077685
(Easy2Mine)
885.14243850305952618 Eth885.14351618805952618 Eth0.001077685

Execution Trace

ETH 0.006 AutoEtherBot.multisend( amounts=[6000000000000000], receivers=[0x7B1209096BfB72757314cB012387c260080CFF67] )
  • ETH 0.006 0x7b1209096bfb72757314cb012387c260080cff67.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]);
            }
        }
    }