Overview
ETH Balance
0.000000999999999999 ETH
Eth Value
Less Than $0.01 (@ $2,637.30/ETH)More Info
Private Name Tags
ContractCreator
Latest 23 from a total of 23 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Send | 6283144 | 2246 days ago | IN | 0 ETH | 0.00051621 | ||||
Send | 6283121 | 2246 days ago | IN | 0 ETH | 0.00023821 | ||||
Send | 6282345 | 2246 days ago | IN | 0 ETH | 0.00082962 | ||||
Send | 6282338 | 2247 days ago | IN | 0 ETH | 0.00096876 | ||||
Send | 6282054 | 2247 days ago | IN | 0 ETH | 0.00161434 | ||||
Send | 6282033 | 2247 days ago | IN | 0 ETH | 0.00161721 | ||||
Send | 6282021 | 2247 days ago | IN | 0 ETH | 0.00148111 | ||||
Transfer | 6281977 | 2247 days ago | IN | 15.35 ETH | 0.00012624 | ||||
Send | 6278430 | 2247 days ago | IN | 0 ETH | 0.00018378 | ||||
Send | 6277947 | 2247 days ago | IN | 0 ETH | 0.00062313 | ||||
Send | 6275803 | 2248 days ago | IN | 0 ETH | 0.0006598 | ||||
Send | 6275791 | 2248 days ago | IN | 0 ETH | 0.00101688 | ||||
Send | 6275582 | 2248 days ago | IN | 0 ETH | 0.00085395 | ||||
Transfer | 6275567 | 2248 days ago | IN | 30.4 ETH | 0.00012624 | ||||
Send | 6271840 | 2248 days ago | IN | 0 ETH | 0.00036756 | ||||
Send | 6271813 | 2248 days ago | IN | 0 ETH | 0.0006598 | ||||
Transfer | 6271809 | 2248 days ago | IN | 0.9 ETH | 0.00016832 | ||||
Send | 6271781 | 2248 days ago | IN | 0 ETH | 0.00017364 | ||||
Send | 6271751 | 2248 days ago | IN | 0 ETH | 0.00017364 | ||||
Send | 6270564 | 2248 days ago | IN | 0 ETH | 0.00035408 | ||||
Send | 6270549 | 2248 days ago | IN | 0 ETH | 0.00022092 | ||||
Transfer | 6270507 | 2248 days ago | IN | 0.085 ETH | 0.0002104 | ||||
0x60806040 | 6240923 | 2253 days ago | IN | 0 ETH | 0.00130182 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
6283144 | 2246 days ago | 6.015159 ETH | ||||
6283121 | 2246 days ago | 1 wei | ||||
6282345 | 2246 days ago | 0.05081 ETH | ||||
6282345 | 2246 days ago | 1.47117 ETH | ||||
6282345 | 2246 days ago | 0.10969 ETH | ||||
6282345 | 2246 days ago | 1.57764 ETH | ||||
6282338 | 2247 days ago | 0.36266 ETH | ||||
6282338 | 2247 days ago | 1.18027 ETH | ||||
6282338 | 2247 days ago | 0.21968 ETH | ||||
6282338 | 2247 days ago | 0.16321 ETH | ||||
6282338 | 2247 days ago | 0.46787 ETH | ||||
6282054 | 2247 days ago | 4.39102 ETH | ||||
6282054 | 2247 days ago | 0.36266 ETH | ||||
6282054 | 2247 days ago | 1.18027 ETH | ||||
6282054 | 2247 days ago | 0.21968 ETH | ||||
6282054 | 2247 days ago | 0.16321 ETH | ||||
6282033 | 2247 days ago | 0.31918 ETH | ||||
6282033 | 2247 days ago | 0.7815 ETH | ||||
6282033 | 2247 days ago | 0.12711 ETH | ||||
6282033 | 2247 days ago | 0.09767 ETH | ||||
6282033 | 2247 days ago | 0.06722 ETH | ||||
6282033 | 2247 days ago | 0.08924 ETH | ||||
6282033 | 2247 days ago | 0.28637 ETH | ||||
6282033 | 2247 days ago | 1.88576 ETH | ||||
6282021 | 2247 days ago | 0.30999 ETH |
Loading...
Loading
Contract Name:
MultiSender
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-08-30 */ pragma solidity ^0.4.24; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } contract MultiSender is Ownable { using SafeMath for uint; string public constant NAME = "MultiSender"; event Transfer(address indexed holder, uint amount); function() public payable { // validation } function send(address[] _addresses, uint256[] _values) external { require(_addresses.length == _values.length); uint i; uint s; for (i = 0; i < _values.length; i++) { s += _values[i]; } require(s <= this.balance); for (i = 0; i < _addresses.length; i++) { _addresses[i].transfer(_values[i]); Transfer(_addresses[i], _values[i]); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"NAME","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"send","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"holder","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
608060405260008054600160a060020a031916331790556103b8806100256000396000f3006080604052600436106100615763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416638da5cb5b8114610063578063a3f4df7e14610094578063a645ff5f1461011e578063f2fde38b1461014a575b005b34801561006f57600080fd5b5061007861016b565b60408051600160a060020a039092168252519081900360200190f35b3480156100a057600080fd5b506100a961017a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100e35781810151838201526020016100cb565b50505050905090810190601f1680156101105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561012a57600080fd5b5061006160246004803582810192908201359181359182019101356101b1565b34801561015657600080fd5b50610061600160a060020a03600435166102f8565b600054600160a060020a031681565b60408051808201909152600b81527f4d756c746953656e646572000000000000000000000000000000000000000000602082015281565b6000808483146101c057600080fd5b600091505b828210156101f1578383838181106101d957fe5b905060200201358101905081806001019250506101c5565b30318111156101ff57600080fd5b600091505b848210156102f05785858381811061021857fe5b90506020020135600160a060020a0316600160a060020a03166108fc858585818110151561024257fe5b905060200201359081150290604051600060405180830381858888f19350505050158015610274573d6000803e3d6000fd5b5085858381811061028157fe5b90506020020135600160a060020a0316600160a060020a03167f69ca02dd4edd7bf0a4abb9ed3b7af3f14778db5d61921c7dc7cd545266326de285858581811015156102c957fe5b905060200201356040518082815260200191505060405180910390a2600190910190610204565b505050505050565b600054600160a060020a0316331461030f57600080fd5b600160a060020a038116151561032457600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058205356436cf3366ef58abae6412ebba13c76c2735ac9f45d868f4dd8f33f7d08ec0029
Deployed Bytecode
0x6080604052600436106100615763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416638da5cb5b8114610063578063a3f4df7e14610094578063a645ff5f1461011e578063f2fde38b1461014a575b005b34801561006f57600080fd5b5061007861016b565b60408051600160a060020a039092168252519081900360200190f35b3480156100a057600080fd5b506100a961017a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100e35781810151838201526020016100cb565b50505050905090810190601f1680156101105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561012a57600080fd5b5061006160246004803582810192908201359181359182019101356101b1565b34801561015657600080fd5b50610061600160a060020a03600435166102f8565b600054600160a060020a031681565b60408051808201909152600b81527f4d756c746953656e646572000000000000000000000000000000000000000000602082015281565b6000808483146101c057600080fd5b600091505b828210156101f1578383838181106101d957fe5b905060200201358101905081806001019250506101c5565b30318111156101ff57600080fd5b600091505b848210156102f05785858381811061021857fe5b90506020020135600160a060020a0316600160a060020a03166108fc858585818110151561024257fe5b905060200201359081150290604051600060405180830381858888f19350505050158015610274573d6000803e3d6000fd5b5085858381811061028157fe5b90506020020135600160a060020a0316600160a060020a03167f69ca02dd4edd7bf0a4abb9ed3b7af3f14778db5d61921c7dc7cd545266326de285858581811015156102c957fe5b905060200201356040518082815260200191505060405180910390a2600190910190610204565b505050505050565b600054600160a060020a0316331461030f57600080fd5b600160a060020a038116151561032457600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058205356436cf3366ef58abae6412ebba13c76c2735ac9f45d868f4dd8f33f7d08ec0029
Swarm Source
bzzr://5356436cf3366ef58abae6412ebba13c76c2735ac9f45d868f4dd8f33f7d08ec
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $2,637.3 | 0.000001 | $0.002637 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.