More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 35,626 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Bulksend Token | 21462698 | 2 hrs ago | IN | 0.03 ETH | 0.00429164 | ||||
Bulksend Token | 21460151 | 10 hrs ago | IN | 0.03 ETH | 0.00305085 | ||||
Bulksend Ether | 21447745 | 2 days ago | IN | 23.14627112 ETH | 0.00633637 | ||||
Bulksend Ether | 21447673 | 2 days ago | IN | 30.0233005 ETH | 0.01049936 | ||||
Bulksend Ether | 21442522 | 2 days ago | IN | 0.2456678 ETH | 0.04228422 | ||||
Bulksend Ether | 21442521 | 2 days ago | IN | 10.4060971 ETH | 0.07715813 | ||||
Bulksend Token | 21440590 | 3 days ago | IN | 0.03 ETH | 0.00540556 | ||||
Bulksend Token | 21438149 | 3 days ago | IN | 0.03 ETH | 0.03241469 | ||||
Bulksend Token | 21438007 | 3 days ago | IN | 0.03 ETH | 0.00883617 | ||||
Bulksend Token S... | 21430477 | 4 days ago | IN | 0.03 ETH | 0.06375024 | ||||
Bulksend Token | 21430437 | 4 days ago | IN | 0.03 ETH | 0.00495843 | ||||
Bulksend Token S... | 21429953 | 4 days ago | IN | 0.03 ETH | 0.03719096 | ||||
Bulksend Token | 21428600 | 4 days ago | IN | 0.03 ETH | 0.00659349 | ||||
Bulksend Token | 21428207 | 4 days ago | IN | 0.03 ETH | 0.00766531 | ||||
Bulksend Token | 21423825 | 5 days ago | IN | 0.03 ETH | 0.03789069 | ||||
Bulksend Token | 21423707 | 5 days ago | IN | 0.03 ETH | 0.04126405 | ||||
Bulksend Token | 21423707 | 5 days ago | IN | 0.03 ETH | 0.26002088 | ||||
Bulksend Token | 21423707 | 5 days ago | IN | 0.03 ETH | 0.26641295 | ||||
Bulksend Token | 21423706 | 5 days ago | IN | 0.03 ETH | 0.26219193 | ||||
Bulksend Token | 21423705 | 5 days ago | IN | 0.03 ETH | 0.24430862 | ||||
Bulksend Token | 21423703 | 5 days ago | IN | 0.03 ETH | 0.23505808 | ||||
Bulksend Token | 21423703 | 5 days ago | IN | 0.03 ETH | 0.23506203 | ||||
Bulksend Token | 21423702 | 5 days ago | IN | 0.03 ETH | 0.22343209 | ||||
Bulksend Token | 21423239 | 5 days ago | IN | 0.03 ETH | 0.39524817 | ||||
Bulksend Token | 21423151 | 5 days ago | IN | 0.03 ETH | 0.30817528 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21462698 | 2 hrs ago | 0.03 ETH | ||||
21460151 | 10 hrs ago | 0.03 ETH | ||||
21447745 | 2 days ago | 0.06923112 ETH | ||||
21447745 | 2 days ago | 0.21 ETH | ||||
21447745 | 2 days ago | 0.045 ETH | ||||
21447745 | 2 days ago | 0.28 ETH | ||||
21447745 | 2 days ago | 0.07 ETH | ||||
21447745 | 2 days ago | 0.14 ETH | ||||
21447745 | 2 days ago | 0.21 ETH | ||||
21447745 | 2 days ago | 1.1236 ETH | ||||
21447745 | 2 days ago | 0.175 ETH | ||||
21447745 | 2 days ago | 0.28 ETH | ||||
21447745 | 2 days ago | 0.07 ETH | ||||
21447745 | 2 days ago | 0.07 ETH | ||||
21447745 | 2 days ago | 0.35 ETH | ||||
21447745 | 2 days ago | 0.07 ETH | ||||
21447745 | 2 days ago | 0.0185 ETH | ||||
21447745 | 2 days ago | 0.2129 ETH | ||||
21447745 | 2 days ago | 0.07 ETH | ||||
21447745 | 2 days ago | 0.07 ETH | ||||
21447745 | 2 days ago | 0.28 ETH | ||||
21447745 | 2 days ago | 0.816 ETH | ||||
21447745 | 2 days ago | 0.28 ETH | ||||
21447745 | 2 days ago | 0.16334 ETH | ||||
21447745 | 2 days ago | 0.28 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
BulksenderProxy
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-07-03 */ /** * @title Bulksender, support ETH and ERC20 Tokens * @dev To Use this Dapp: https://bulksender.app */ pragma solidity 0.4.24; /** * @title Proxy * @dev Gives the possibility to delegate any call to a foreign implementation. */ contract Proxy { /** * @dev Tells the address of the implementation where every call will be delegated. * @return address of the implementation to which it will be delegated */ function implementation() public view returns (address); /** * @dev Tells the version of the current implementation * @return version of the current implementation */ function version() public view returns (string); /** * @dev Fallback function allowing to perform a delegatecall to the given implementation. * This function will return whatever the implementation call returns */ function () payable public { address _impl = implementation(); require(_impl != address(0)); assembly { let ptr := mload(0x40) calldatacopy(ptr, 0, calldatasize) let result := delegatecall(gas, _impl, ptr, calldatasize, 0, 0) let size := returndatasize returndatacopy(ptr, 0, size) switch result case 0 { revert(ptr, size) } default { return(ptr, size) } } } } pragma solidity 0.4.24; /** * @title UpgradeabilityProxy * @dev This contract represents a proxy where the implementation address to which it will delegate can be upgraded */ contract UpgradeabilityProxy is Proxy { /** * @dev This event will be emitted every time the implementation gets upgraded * @param implementation representing the address of the upgraded implementation */ event Upgraded(address indexed implementation, string version); // Storage position of the address of the current implementation bytes32 private constant implementationPosition = keccak256("bulksender.app.proxy.implementation"); //Version name of the current implementation string internal _version; /** * @dev Constructor function */ constructor() public {} /** * @dev Tells the version name of the current implementation * @return string representing the name of the current version */ function version() public view returns (string) { return _version; } /** * @dev Tells the address of the current implementation * @return address of the current implementation */ function implementation() public view returns (address impl) { bytes32 position = implementationPosition; assembly { impl := sload(position) } } /** * @dev Sets the address of the current implementation * @param _newImplementation address representing the new implementation to be set */ function _setImplementation(address _newImplementation) internal { bytes32 position = implementationPosition; assembly { sstore(position, _newImplementation) } } /** * @dev Upgrades the implementation address * @param _newImplementation representing the address of the new implementation to be set */ function _upgradeTo(address _newImplementation, string _newVersion) internal { address currentImplementation = implementation(); require(currentImplementation != _newImplementation); _setImplementation(_newImplementation); _version = _newVersion; emit Upgraded( _newImplementation, _newVersion); } } pragma solidity 0.4.24; /** * @title BulksenderProxy * @dev This contract combines an upgradeability proxy with basic authorization control functionalities */ contract BulksenderProxy is UpgradeabilityProxy { /** * @dev Event to show ownership has been transferred * @param previousOwner representing the address of the previous owner * @param newOwner representing the address of the new owner */ event ProxyOwnershipTransferred(address previousOwner, address newOwner); // Storage position of the owner of the contract bytes32 private constant proxyOwnerPosition = keccak256("bulksender.app.proxy.owner"); /** * @dev the constructor sets the original owner of the contract to the sender account. */ constructor(address _implementation, string _version) public { _setUpgradeabilityOwner(msg.sender); _upgradeTo(_implementation, _version); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyProxyOwner() { require(msg.sender == proxyOwner()); _; } /** * @dev Tells the address of the owner * @return the address of the owner */ function proxyOwner() public view returns (address owner) { bytes32 position = proxyOwnerPosition; assembly { owner := sload(position) } } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function transferProxyOwnership(address _newOwner) public onlyProxyOwner { require(_newOwner != address(0)); _setUpgradeabilityOwner(_newOwner); emit ProxyOwnershipTransferred(proxyOwner(), _newOwner); } /** * @dev Allows the proxy owner to upgrade the current version of the proxy. * @param _implementation representing the address of the new implementation to be set. */ function upgradeTo(address _implementation, string _newVersion) public onlyProxyOwner { _upgradeTo(_implementation, _newVersion); } /** * @dev Allows the proxy owner to upgrade the current version of the proxy and call the new implementation * to initialize whatever is needed through a low level call. * @param _implementation representing the address of the new implementation to be set. * @param _data represents the msg.data to bet sent in the low level call. This parameter may include the function * signature of the implementation to be called with the needed payload */ function upgradeToAndCall(address _implementation, string _newVersion, bytes _data) payable public onlyProxyOwner { _upgradeTo(_implementation, _newVersion); require(address(this).call.value(msg.value)(_data)); } /* * @dev Sets the address of the owner */ function _setUpgradeabilityOwner(address _newProxyOwner) internal { bytes32 position = proxyOwnerPosition; assembly { sstore(position, _newProxyOwner) } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"proxyOwner","outputs":[{"name":"owner","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_implementation","type":"address"},{"name":"_newVersion","type":"string"}],"name":"upgradeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"name":"impl","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_implementation","type":"address"},{"name":"_newVersion","type":"string"},{"name":"_data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferProxyOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_implementation","type":"address"},{"name":"_version","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"previousOwner","type":"address"},{"indexed":false,"name":"newOwner","type":"address"}],"name":"ProxyOwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"implementation","type":"address"},{"indexed":false,"name":"version","type":"string"}],"name":"Upgraded","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162000d8638038062000d8683398101806040528101908080519060200190929190805182019291905050506200005a336200007d640100000000026401000000009004565b620000758282620000be640100000000026401000000009004565b505062000384565b600060405180807f62756c6b73656e6465722e6170702e70726f78792e6f776e6572000000000000815250601a019050604051809103902090508181555050565b6000620000d962000205640100000000026401000000009004565b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156200011757600080fd5b62000131836200026e640100000000026401000000009004565b816000908051906020019062000149929190620002d5565b508273ffffffffffffffffffffffffffffffffffffffff167ffeb57eb540ad2b58d897c813a06ff64690ef5de12413a361591aea28ee60748a836040518080602001828103825283818151815260200191508051906020019080838360005b83811015620001c5578082015181840152602081019050620001a8565b50505050905090810190601f168015620001f35780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050565b60008060405180807f62756c6b73656e6465722e6170702e70726f78792e696d706c656d656e74617481526020017f696f6e0000000000000000000000000000000000000000000000000000000000815250602301905060405180910390209050805491505090565b600060405180807f62756c6b73656e6465722e6170702e70726f78792e696d706c656d656e74617481526020017f696f6e00000000000000000000000000000000000000000000000000000000008152506023019050604051809103902090508181555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200031857805160ff191683800117855562000349565b8280016001018555821562000349579182015b82811115620003485782518255916020019190600101906200032b565b5b5090506200035891906200035c565b5090565b6200038191905b808211156200037d57600081600090555060010162000363565b5090565b90565b6109f280620003946000396000f300608060405260043610610078576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063025313a2146100e757806336ba97941461013e57806354fd4d50146101c75780635c60da1b14610257578063d7e24337146102ae578063f1739cae14610370575b60006100826103b3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156100c057600080fd5b60405136600082376000803683855af43d806000843e81600081146100e3578184f35b8184fd5b3480156100f357600080fd5b506100fc61041c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561014a57600080fd5b506101c5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001908080601f016020809104026020016040519081016040528093929190818152602001838380828437820191505050505050919291929050505061045f565b005b3480156101d357600080fd5b506101dc6104ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021c578082015181840152602081019050610201565b50505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026357600080fd5b5061026c6103b3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61036e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290505050610550565b005b34801561037c57600080fd5b506103b1600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610633565b005b60008060405180807f62756c6b73656e6465722e6170702e70726f78792e696d706c656d656e74617481526020017f696f6e0000000000000000000000000000000000000000000000000000000000815250602301905060405180910390209050805491505090565b60008060405180807f62756c6b73656e6465722e6170702e70726f78792e6f776e6572000000000000815250601a01905060405180910390209050805491505090565b61046761041c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156104a057600080fd5b6104aa828261075a565b5050565b606060008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105465780601f1061051b57610100808354040283529160200191610546565b820191906000526020600020905b81548152906001019060200180831161052957829003601f168201915b5050505050905090565b61055861041c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561059157600080fd5b61059b838361075a565b3073ffffffffffffffffffffffffffffffffffffffff16348260405180828051906020019080838360005b838110156105e15780820151818401526020810190506105c6565b50505050905090810190601f16801561060e5780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af192505050151561062e57600080fd5b505050565b61063b61041c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561067457600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156106b057600080fd5b6106b981610879565b7f5a3e66efaa1e445ebd894728a69d6959842ea1e97bd79b892797106e270efcd96106e261041c565b82604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a150565b60006107646103b3565b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156107a157600080fd5b6107aa836108ba565b81600090805190602001906107c0929190610921565b508273ffffffffffffffffffffffffffffffffffffffff167ffeb57eb540ad2b58d897c813a06ff64690ef5de12413a361591aea28ee60748a836040518080602001828103825283818151815260200191508051906020019080838360005b8381101561083a57808201518184015260208101905061081f565b50505050905090810190601f1680156108675780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050565b600060405180807f62756c6b73656e6465722e6170702e70726f78792e6f776e6572000000000000815250601a019050604051809103902090508181555050565b600060405180807f62756c6b73656e6465722e6170702e70726f78792e696d706c656d656e74617481526020017f696f6e00000000000000000000000000000000000000000000000000000000008152506023019050604051809103902090508181555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061096257805160ff1916838001178555610990565b82800160010185558215610990579182015b8281111561098f578251825591602001919060010190610974565b5b50905061099d91906109a1565b5090565b6109c391905b808211156109bf5760008160009055506001016109a7565b5090565b905600a165627a7a723058200c38871e83370c118609eddda73d98ebc2d922e3b35f7bb05cd4e23227c79ce200290000000000000000000000008982736331137e3a5ad5200585811c8820fda2a600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000005312e302e30000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405260043610610078576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063025313a2146100e757806336ba97941461013e57806354fd4d50146101c75780635c60da1b14610257578063d7e24337146102ae578063f1739cae14610370575b60006100826103b3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156100c057600080fd5b60405136600082376000803683855af43d806000843e81600081146100e3578184f35b8184fd5b3480156100f357600080fd5b506100fc61041c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561014a57600080fd5b506101c5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001908080601f016020809104026020016040519081016040528093929190818152602001838380828437820191505050505050919291929050505061045f565b005b3480156101d357600080fd5b506101dc6104ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021c578082015181840152602081019050610201565b50505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026357600080fd5b5061026c6103b3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61036e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290505050610550565b005b34801561037c57600080fd5b506103b1600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610633565b005b60008060405180807f62756c6b73656e6465722e6170702e70726f78792e696d706c656d656e74617481526020017f696f6e0000000000000000000000000000000000000000000000000000000000815250602301905060405180910390209050805491505090565b60008060405180807f62756c6b73656e6465722e6170702e70726f78792e6f776e6572000000000000815250601a01905060405180910390209050805491505090565b61046761041c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156104a057600080fd5b6104aa828261075a565b5050565b606060008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105465780601f1061051b57610100808354040283529160200191610546565b820191906000526020600020905b81548152906001019060200180831161052957829003601f168201915b5050505050905090565b61055861041c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561059157600080fd5b61059b838361075a565b3073ffffffffffffffffffffffffffffffffffffffff16348260405180828051906020019080838360005b838110156105e15780820151818401526020810190506105c6565b50505050905090810190601f16801561060e5780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af192505050151561062e57600080fd5b505050565b61063b61041c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561067457600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156106b057600080fd5b6106b981610879565b7f5a3e66efaa1e445ebd894728a69d6959842ea1e97bd79b892797106e270efcd96106e261041c565b82604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a150565b60006107646103b3565b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156107a157600080fd5b6107aa836108ba565b81600090805190602001906107c0929190610921565b508273ffffffffffffffffffffffffffffffffffffffff167ffeb57eb540ad2b58d897c813a06ff64690ef5de12413a361591aea28ee60748a836040518080602001828103825283818151815260200191508051906020019080838360005b8381101561083a57808201518184015260208101905061081f565b50505050905090810190601f1680156108675780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050565b600060405180807f62756c6b73656e6465722e6170702e70726f78792e6f776e6572000000000000815250601a019050604051809103902090508181555050565b600060405180807f62756c6b73656e6465722e6170702e70726f78792e696d706c656d656e74617481526020017f696f6e00000000000000000000000000000000000000000000000000000000008152506023019050604051809103902090508181555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061096257805160ff1916838001178555610990565b82800160010185558215610990579182015b8281111561098f578251825591602001919060010190610974565b5b50905061099d91906109a1565b5090565b6109c391905b808211156109bf5760008160009055506001016109a7565b5090565b905600a165627a7a723058200c38871e83370c118609eddda73d98ebc2d922e3b35f7bb05cd4e23227c79ce20029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008982736331137e3a5ad5200585811c8820fda2a600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000005312e302e30000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _implementation (address): 0x8982736331137e3a5aD5200585811c8820fdA2A6
Arg [1] : _version (string): 1.0.0
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000008982736331137e3a5ad5200585811c8820fda2a6
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 312e302e30000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
3660:2828:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;891:13;907:16;:14;:16::i;:::-;891:32;;955:1;938:19;;:5;:19;;;;930:28;;;;;;;;1002:4;996:11;1036:12;1033:1;1028:3;1015:34;1118:1;1115;1101:12;1096:3;1089:5;1084:3;1071:49;1140:14;1185:4;1182:1;1177:3;1162:28;1207:6;1226:1;1221:28;;;;1279:4;1274:3;1267:17;1221:28;1242:4;1237:3;1230:17;4661:163;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4661:163:0;;;;;;;;;;;;;;;;;;;;;;;;;;;5403:139;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5403:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2267:82;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2267:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2267:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2480:169;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2480:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;6021:225;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4992:221;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4992:221:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2480:169;2527:12;2548:16;1900:48;;;;;;;;;;;;;;;;;;;;;;;;2548:41;;2628:8;2622:15;2614:23;;2605:39;;:::o;4661:163::-;4704:13;4726:16;4094:39;;;;;;;;;;;;;;;;;;;4726:37;;4803:8;4797:15;4788:24;;4779:40;;:::o;5403:139::-;4533:12;:10;:12::i;:::-;4519:26;;:10;:26;;;4511:35;;;;;;;;5496:40;5507:15;5524:11;5496:10;:40::i;:::-;5403:139;;:::o;2267:82::-;2307:6;2333:8;2326:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2267:82;:::o;6021:225::-;4533:12;:10;:12::i;:::-;4519:26;;:10;:26;;;4511:35;;;;;;;;6142:40;6153:15;6170:11;6142:10;:40::i;:::-;6205:4;6197:18;;6222:9;6233:5;6197:42;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6197:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6189:51;;;;;;;;6021:225;;;:::o;4992:221::-;4533:12;:10;:12::i;:::-;4519:26;;:10;:26;;;4511:35;;;;;;;;5101:1;5080:23;;:9;:23;;;;5072:32;;;;;;;;5111:34;5135:9;5111:23;:34::i;:::-;5157:50;5183:12;:10;:12::i;:::-;5197:9;5157:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4992:221;:::o;3159:325::-;3243:29;3275:16;:14;:16::i;:::-;3243:48;;3331:18;3306:43;;:21;:43;;;;3298:52;;;;;;;;3357:38;3376:18;3357;:38::i;:::-;3413:11;3402:8;:22;;;;;;;;;;;;:::i;:::-;;3446:18;3436:42;;;3466:11;3436:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3436:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3159:325;;;:::o;6306:179::-;6379:16;4094:39;;;;;;;;;;;;;;;;;;;6379:37;;6458:14;6448:8;6441:32;6432:48;;:::o;2813:186::-;2885:16;1900:48;;;;;;;;;;;;;;;;;;;;;;;;2885:41;;2968:18;2958:8;2951:36;2942:52;;:::o;3660:2828::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://0c38871e83370c118609eddda73d98ebc2d922e3b35f7bb05cd4e23227c79ce2
Loading...
Loading
Loading...
Loading
OVERVIEW
A Dapp used to send ether or token to multiple addresses in bulk.Multichain Portfolio | 30 Chains
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.