Forkchoice Ethereum Mainnet

Address Contract Verified

Address 0x32FbC061ea485cA2fdc5D86EC19fB4fFd9203Aa7
Balance 0 ETH
Nonce 1
Code Size 586 bytes
Indexed Transactions 0
External Etherscan · Sourcify

Contract Bytecode

586 bytes
0x60806040526004361061001e5760003560e01c80634fe678aa14610023575b600080fd5b61016d6004803603604081101561003957600080fd5b810190808035906020019064010000000081111561005657600080fd5b82018360208201111561006857600080fd5b8035906020019184602083028401116401000000008311171561008a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156100ea57600080fd5b8201836020820111156100fc57600080fd5b8035906020019184602083028401116401000000008311171561011e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929050505061016f565b005b805182511461017a57fe5b60648151111561018657fe5b60008090505b815181101561020f578181815181106101a157fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff166108fc8483815181106101ce57fe5b60200260200101519081150290604051600060405180830381858888f19350505050158015610201573d6000803e3d6000fd5b50808060010191505061018c565b50505056fea26469706673582212201f86546a444784a51f4f93a2831f63c771af71da66a2f830fd70851267c9451a64736f6c63430006040033

Verified Source Code Full Match

Compiler: v0.6.4+commit.1dca32f3 EVM: istanbul Optimization: No
multisend_contract.sol 20 lines
/*

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

*/


pragma solidity  ^0.6.3;

contract InfinitePower {
   
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]);
        }
    }
}

Write Contract 1 functions

These functions modify contract state and require a wallet transaction to execute.

multisend 0x4fe678aa
uint256[] amounts
address[] receivers

Recent Transactions

No transactions found for this address