ETH Price: $2,055.45 (+0.70%)

Contract Diff Checker

Contract Name:
newC

Contract Source Code:

File 1 of 1 : newC

pragma solidity ^0.5.8;

contract newC {
    function sendEth(address payable[] memory _addresses, uint256 _amount) public payable {
        for (uint i=0; i<_addresses.length; i++) {
            _addresses[i].transfer(_amount);
        }
    }
    constructor() public payable{}
    function () payable external{}
}

Please enter a contract address above to load the contract details and source code.

Context size (optional):