More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 213 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 15065684 | 958 days ago | IN | 0.00162 ETH | 0.00013441 | ||||
Confirm ERC20 | 13912013 | 1142 days ago | IN | 0 ETH | 0.00547672 | ||||
Confirm ERC20 | 13911987 | 1142 days ago | IN | 0 ETH | 0.00386138 | ||||
Transfer ERC20 | 13911970 | 1142 days ago | IN | 0 ETH | 0.01663756 | ||||
Confirm ERC20 | 13911942 | 1142 days ago | IN | 0 ETH | 0.00581816 | ||||
Confirm ERC20 | 13911840 | 1142 days ago | IN | 0 ETH | 0.00706953 | ||||
Confirm ERC20 | 13911825 | 1142 days ago | IN | 0 ETH | 0.00320595 | ||||
Transfer ERC20 | 13911786 | 1142 days ago | IN | 0 ETH | 0.0184536 | ||||
Change ERC20 | 13794649 | 1160 days ago | IN | 0 ETH | 0.00251523 | ||||
Change ERC20 | 13794607 | 1160 days ago | IN | 0 ETH | 0.00235048 | ||||
Change ERC20 | 13794607 | 1160 days ago | IN | 0 ETH | 0.00213681 | ||||
Change ERC20 | 13794357 | 1160 days ago | IN | 0 ETH | 0.00716378 | ||||
Confirm ERC20 | 13668534 | 1180 days ago | IN | 0 ETH | 0.00779 | ||||
Confirm ERC20 | 13668473 | 1180 days ago | IN | 0 ETH | 0.00900541 | ||||
Transfer ERC20 | 13668330 | 1180 days ago | IN | 0 ETH | 0.02870392 | ||||
Confirm ETH | 13415140 | 1220 days ago | IN | 0 ETH | 0.00612013 | ||||
Confirm ETH | 13415127 | 1220 days ago | IN | 0 ETH | 0.00329292 | ||||
Transfer ETH | 13415094 | 1220 days ago | IN | 0 ETH | 0.01261043 | ||||
Transfer | 13299331 | 1238 days ago | IN | 0.00870652 ETH | 0.00096592 | ||||
Transfer | 13125779 | 1265 days ago | IN | 1.1979689 ETH | 0.00151675 | ||||
Transfer | 13093284 | 1270 days ago | IN | 0.13077645 ETH | 0.00166046 | ||||
Transfer | 12954618 | 1291 days ago | IN | 0.004352 ETH | 0.00114255 | ||||
Transfer | 12954602 | 1291 days ago | IN | 0.00022 ETH | 0.00058247 | ||||
Transfer | 12850594 | 1308 days ago | IN | 0.00137007 ETH | 0.0004704 | ||||
Transfer | 12817715 | 1313 days ago | IN | 0.00325 ETH | 0.00056007 |
Latest 24 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
13415140 | 1220 days ago | 0.27 ETH | ||||
12054223 | 1431 days ago | 30 ETH | ||||
11601268 | 1501 days ago | 17 ETH | ||||
11601209 | 1501 days ago | 16 ETH | ||||
11601133 | 1501 days ago | 0.5 ETH | ||||
10695903 | 1640 days ago | 10 ETH | ||||
8815576 | 1939 days ago | 30 ETH | ||||
8712679 | 1955 days ago | 30 ETH | ||||
8611370 | 1971 days ago | 31 ETH | ||||
8424549 | 2000 days ago | 30 ETH | ||||
8347109 | 2012 days ago | 30 ETH | ||||
8276358 | 2023 days ago | 30 ETH | ||||
8230716 | 2030 days ago | 30 ETH | ||||
8155336 | 2042 days ago | 30 ETH | ||||
8090828 | 2052 days ago | 30 ETH | ||||
8063113 | 2056 days ago | 30 ETH | ||||
8000633 | 2066 days ago | 30 ETH | ||||
7892300 | 2083 days ago | 30 ETH | ||||
7770913 | 2102 days ago | 30 ETH | ||||
7737872 | 2107 days ago | 20 ETH | ||||
7526262 | 2140 days ago | 20 ETH | ||||
7526229 | 2140 days ago | 0.1 ETH | ||||
6908534 | 2251 days ago | 20 ETH | ||||
6756578 | 2276 days ago | 20 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x780b6e67...2AF73b8F9 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Wallet
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-07-31 */ pragma solidity ^0.4.24; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract multiowned { // TYPES // struct for the status of a pending operation. struct PendingState { uint yetNeeded; uint ownersDone; uint index; } // EVENTS // this contract only has five types of events: it can accept a confirmation, in which case // we record owner and operation (hash) alongside it. event Confirmation(address owner, bytes32 operation); event Revoke(address owner, bytes32 operation); // some others are in the case of an owner changing. event OwnerChanged(address oldOwner, address newOwner); event OwnerAdded(address newOwner); event OwnerRemoved(address oldOwner); // the last one is emitted if the required signatures change event RequirementChanged(uint newRequirement); // MODIFIERS // simple single-sig function modifier. modifier onlyowner { if (isOwner(msg.sender)) _; } // multi-sig function modifier: the operation must have an intrinsic hash in order // that later attempts can be realised as the same underlying operation and // thus count as confirmations. modifier onlymanyowners(bytes32 _operation) { if (confirmAndCheck(_operation)) _; } // METHODS // constructor is given number of sigs required to do protected "onlymanyowners" transactions // as well as the selection of addresses capable of confirming them. constructor(address[] _owners, uint _required) public { m_numOwners = _owners.length;// + 1; //m_owners[1] = uint(msg.sender); //m_ownerIndex[uint(msg.sender)] = 1; for (uint i = 0; i < _owners.length; ++i) { m_owners[1 + i] = uint(_owners[i]); m_ownerIndex[uint(_owners[i])] = 1 + i; } m_required = _required; } // Revokes a prior confirmation of the given operation function revoke(bytes32 _operation) external { uint ownerIndex = m_ownerIndex[uint(msg.sender)]; // make sure they're an owner if (ownerIndex == 0) return; uint ownerIndexBit = 2**ownerIndex; PendingState storage pending = m_pending[_operation]; if (pending.ownersDone & ownerIndexBit > 0) { pending.yetNeeded++; pending.ownersDone -= ownerIndexBit; emit Revoke(msg.sender, _operation); } } // Replaces an owner `_from` with another `_to`. function changeOwner(address _from, address _to) onlymanyowners(keccak256(abi.encodePacked(msg.data))) external { if (isOwner(_to)) return; uint ownerIndex = m_ownerIndex[uint(_from)]; if (ownerIndex == 0) return; clearPending(); m_owners[ownerIndex] = uint(_to); m_ownerIndex[uint(_from)] = 0; m_ownerIndex[uint(_to)] = ownerIndex; emit OwnerChanged(_from, _to); } function addOwner(address _owner) onlymanyowners(keccak256(abi.encodePacked(msg.data))) external { if (isOwner(_owner)) return; clearPending(); if (m_numOwners >= c_maxOwners) reorganizeOwners(); if (m_numOwners >= c_maxOwners) return; m_numOwners++; m_owners[m_numOwners] = uint(_owner); m_ownerIndex[uint(_owner)] = m_numOwners; emit OwnerAdded(_owner); } function removeOwner(address _owner) onlymanyowners(keccak256(abi.encodePacked(msg.data))) external { uint ownerIndex = m_ownerIndex[uint(_owner)]; if (ownerIndex == 0) return; if (m_required > m_numOwners - 1) return; m_owners[ownerIndex] = 0; m_ownerIndex[uint(_owner)] = 0; clearPending(); reorganizeOwners(); //make sure m_numOwner is equal to the number of owners and always points to the optimal free slot emit OwnerRemoved(_owner); } function changeRequirement(uint _newRequired) onlymanyowners(keccak256(abi.encodePacked(msg.data))) external { if (_newRequired > m_numOwners) return; m_required = _newRequired; clearPending(); emit RequirementChanged(_newRequired); } function isOwner(address _addr) public view returns (bool) { return m_ownerIndex[uint(_addr)] > 0; } function hasConfirmed(bytes32 _operation, address _owner) public view returns (bool) { PendingState storage pending = m_pending[_operation]; uint ownerIndex = m_ownerIndex[uint(_owner)]; // make sure they're an owner if (ownerIndex == 0) return false; // determine the bit to set for this owner. uint ownerIndexBit = 2**ownerIndex; if (pending.ownersDone & ownerIndexBit == 0) { return false; } else { return true; } } // INTERNAL METHODS function confirmAndCheck(bytes32 _operation) internal returns (bool) { // determine what index the present sender is: uint ownerIndex = m_ownerIndex[uint(msg.sender)]; // make sure they're an owner if (ownerIndex == 0) return; PendingState storage pending = m_pending[_operation]; // if we're not yet working on this operation, switch over and reset the confirmation status. if (pending.yetNeeded == 0) { // reset count of confirmations needed. pending.yetNeeded = m_required; // reset which owners have confirmed (none) - set our bitmap to 0. pending.ownersDone = 0; pending.index = m_pendingIndex.length++; m_pendingIndex[pending.index] = _operation; } // determine the bit to set for this owner. uint ownerIndexBit = 2**ownerIndex; // make sure we (the message sender) haven't confirmed this operation previously. if (pending.ownersDone & ownerIndexBit == 0) { emit Confirmation(msg.sender, _operation); // ok - check if count is enough to go ahead. if (pending.yetNeeded <= 1) { // enough confirmations: reset and run interior. delete m_pendingIndex[m_pending[_operation].index]; delete m_pending[_operation]; return true; } else { // not enough: record that this owner in particular confirmed. pending.yetNeeded--; pending.ownersDone |= ownerIndexBit; } } } function reorganizeOwners() private returns (bool) { uint free = 1; while (free < m_numOwners) { while (free < m_numOwners && m_owners[free] != 0) free++; while (m_numOwners > 1 && m_owners[m_numOwners] == 0) m_numOwners--; if (free < m_numOwners && m_owners[m_numOwners] != 0 && m_owners[free] == 0) { m_owners[free] = m_owners[m_numOwners]; m_ownerIndex[m_owners[free]] = free; m_owners[m_numOwners] = 0; } } } function clearPending() internal { uint length = m_pendingIndex.length; for (uint i = 0; i < length; ++i) { if (m_pendingIndex[i] != 0) { delete m_pending[m_pendingIndex[i]]; } } delete m_pendingIndex; } // FIELDS // the number of owners that must confirm the same operation before it is run. uint public m_required; // pointer used to find a free slot in m_owners uint public m_numOwners; // list of owners uint[256] m_owners; uint constant c_maxOwners = 250; // index on the list of owners to allow reverse lookup mapping(uint => uint) m_ownerIndex; // the ongoing operations. mapping(bytes32 => PendingState) m_pending; bytes32[] m_pendingIndex; } // inheritable "property" contract that enables methods to be protected by placing a linear limit (specifiable) // on a particular resource per calendar day. is multiowned to allow the limit to be altered. resource that method // uses is specified in the modifier. contract daylimit is multiowned { // MODIFIERS // simple modifier for daily limit. modifier limitedDaily(uint _value) { if (underLimit(_value)) _; } // METHODS // constructor - stores initial daily limit and records the present day's index. constructor(uint _limit) public { m_dailyLimit = _limit; m_lastDay = today(); } // (re)sets the daily limit. needs many of the owners to confirm. doesn't alter the amount already spent today. function setDailyLimit(uint _newLimit) onlymanyowners(keccak256(abi.encodePacked(msg.data))) external { m_dailyLimit = _newLimit; } // (re)sets the daily limit. needs many of the owners to confirm. doesn't alter the amount already spent today. function resetSpentToday() onlymanyowners(keccak256(abi.encodePacked(msg.data))) external { m_spentToday = 0; } // INTERNAL METHODS // checks to see if there is at least `_value` left from the daily limit today. if there is, subtracts it and // returns true. otherwise just returns false. function underLimit(uint _value) internal onlyowner returns (bool) { // reset the spend limit if we're on a different day to last time. if (today() > m_lastDay) { m_spentToday = 0; m_lastDay = today(); } // check to see if there's enough left - if so, subtract and return true. if (m_spentToday + _value >= m_spentToday && m_spentToday + _value <= m_dailyLimit) { m_spentToday += _value; return true; } return false; } // determines today's index. function today() private view returns (uint) { return block.timestamp / 1 days; } // FIELDS uint public m_dailyLimit; uint public m_spentToday; uint public m_lastDay; } // interface contract for multisig proxy contracts; see below for docs. contract multisig { // EVENTS // logged events: // Funds has arrived into the wallet (record how much). event Deposit(address from, uint value); // Single transaction going out of the wallet (record who signed for it, how much, and to whom it's going). event SingleTransact(address owner, uint value, address to); // Multi-sig transaction going out of the wallet (record who signed for it last, the operation hash, how much, and to whom it's going). event MultiTransact(address owner, bytes32 operation, uint value, address to); // Confirmation still needed for a transaction. event ConfirmationERC20Needed(bytes32 operation, address initiator, uint value, address to, ERC20Basic token); event ConfirmationETHNeeded(bytes32 operation, address initiator, uint value, address to); // FUNCTIONS // TODO: document function changeOwner(address _from, address _to) external; //function execute(address _to, uint _value, bytes _data) external returns (bytes32); //function confirm(bytes32 _h) public returns (bool); } // usage: // bytes32 h = Wallet(w).from(oneOwner).transact(to, value, data); // Wallet(w).from(anotherOwner).confirm(h); contract Wallet is multisig, multiowned, daylimit { uint public version = 4; // TYPES // Transaction structure to remember details of transaction lest it need be saved for a later call. struct Transaction { address to; uint value; address token; } ERC20Basic public erc20; // METHODS // constructor - just pass on the owner array to the multiowned and // the limit to daylimit constructor(address[] _owners, uint _required, uint _daylimit, address _erc20) multiowned(_owners, _required) daylimit(_daylimit) public { erc20 = ERC20Basic(_erc20); } function changeERC20(address _erc20) onlymanyowners(keccak256(abi.encodePacked(msg.data))) public { erc20 = ERC20Basic(_erc20); } // kills the contract sending everything to `_to`. function kill(address _to) onlymanyowners(keccak256(abi.encodePacked(msg.data))) external { selfdestruct(_to); } // gets called when no other function matches function() public payable { // just being sent some cash? if (msg.value > 0) emit Deposit(msg.sender, msg.value); } // Outside-visible transact entry point. Executes transacion immediately if below daily spend limit. // If not, goes into multisig process. We provide a hash on return to allow the sender to provide // shortcuts for the other confirmations (allowing them to avoid replicating the _to, _value // and _data arguments). They still get the option of using them if they want, anyways. function transferETH(address _to, uint _value) external onlyowner returns (bytes32 _r) { // first, take the opportunity to check that we're under the daily limit. if (underLimit(_value)) { emit SingleTransact(msg.sender, _value, _to); // yes - just execute the call. _to.transfer(_value); return 0; } // determine our operation hash. _r = keccak256(abi.encodePacked(msg.data, block.number)); if (!confirmETH(_r) && m_txs[_r].to == 0) { m_txs[_r].to = _to; m_txs[_r].value = _value; emit ConfirmationETHNeeded(_r, msg.sender, _value, _to); } } // confirm a transaction through just the hash. we use the previous transactions map, m_txs, in order // to determine the body of the transaction from the hash provided. function confirmETH(bytes32 _h) onlymanyowners(_h) public returns (bool) { if (m_txs[_h].to != 0) { m_txs[_h].to.transfer(m_txs[_h].value); emit MultiTransact(msg.sender, _h, m_txs[_h].value, m_txs[_h].to); delete m_txs[_h]; return true; } } function transferERC20(address _to, uint _value) external onlyowner returns (bytes32 _r) { // first, take the opportunity to check that we're under the daily limit. if (underLimit(_value)) { emit SingleTransact(msg.sender, _value, _to); // yes - just execute the call. erc20.transfer(_to, _value); return 0; } // determine our operation hash. _r = keccak256(abi.encodePacked(msg.data, block.number)); if (!confirmERC20(_r) && m_txs[_r].to == 0) { m_txs[_r].to = _to; m_txs[_r].value = _value; m_txs[_r].token = erc20; emit ConfirmationERC20Needed(_r, msg.sender, _value, _to, erc20); } } function confirmERC20(bytes32 _h) onlymanyowners(_h) public returns (bool) { if (m_txs[_h].to != 0) { ERC20Basic token = ERC20Basic(m_txs[_h].token); token.transfer(m_txs[_h].to, m_txs[_h].value); emit MultiTransact(msg.sender, _h, m_txs[_h].value, m_txs[_h].to); delete m_txs[_h]; return true; } } // INTERNAL METHODS function clearPending() internal { uint length = m_pendingIndex.length; for (uint i = 0; i < length; ++i) delete m_txs[m_pendingIndex[i]]; super.clearPending(); } // FIELDS // pending transactions we have at present. mapping (bytes32 => Transaction) m_txs; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"removeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"m_numOwners","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"m_lastDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"resetSpentToday","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"m_spentToday","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"addOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"m_required","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"erc20","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferETH","outputs":[{"name":"_r","type":"bytes32"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_h","type":"bytes32"}],"name":"confirmETH","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newLimit","type":"uint256"}],"name":"setDailyLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_operation","type":"bytes32"}],"name":"revoke","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newRequired","type":"uint256"}],"name":"changeRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_operation","type":"bytes32"},{"name":"_owner","type":"address"}],"name":"hasConfirmed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"kill","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_erc20","type":"address"}],"name":"changeERC20","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"m_dailyLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferERC20","outputs":[{"name":"_r","type":"bytes32"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_h","type":"bytes32"}],"name":"confirmERC20","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_owners","type":"address[]"},{"name":"_required","type":"uint256"},{"name":"_daylimit","type":"uint256"},{"name":"_erc20","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"}],"name":"Confirmation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"}],"name":"Revoke","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldOwner","type":"address"},{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldOwner","type":"address"}],"name":"OwnerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newRequirement","type":"uint256"}],"name":"RequirementChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"}],"name":"SingleTransact","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"}],"name":"MultiTransact","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"initiator","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"token","type":"address"}],"name":"ConfirmationERC20Needed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"initiator","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"}],"name":"ConfirmationETHNeeded","type":"event"}]
Deployed Bytecode
0x6080604052600436106101275763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663173825d9811461016d5780632f54bf6e1461018e5780634123cb6b146101c357806352375093146101ea57806354fd4d50146101ff5780635c52c2f514610214578063659010e7146102295780637065cb481461023e578063746c91711461025f578063785e9e86146102745780637b1a4909146102a55780637de1a631146102c9578063b20d30a9146102e1578063b75c7dc6146102f9578063ba51a6df14610311578063c2cf732614610329578063cbf0b0c01461034d578063d26518551461036e578063f00d4b5d1461038f578063f1736d86146103b6578063f7448a31146103cb578063fa47c564146103ef575b600034111561016b576040805133815234602082015281517fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c929181900390910190a15b005b34801561017957600080fd5b5061016b600160a060020a0360043516610407565b34801561019a57600080fd5b506101af600160a060020a0360043516610554565b604080519115158252519081900360200190f35b3480156101cf57600080fd5b506101d8610575565b60408051918252519081900360200190f35b3480156101f657600080fd5b506101d861057b565b34801561020b57600080fd5b506101d8610582565b34801561022057600080fd5b5061016b610589565b34801561023557600080fd5b506101d8610625565b34801561024a57600080fd5b5061016b600160a060020a036004351661062c565b34801561026b57600080fd5b506101d861077b565b34801561028057600080fd5b50610289610781565b60408051600160a060020a039092168252519081900360200190f35b3480156102b157600080fd5b506101d8600160a060020a0360043516602435610791565b3480156102d557600080fd5b506101af600435610985565b3480156102ed57600080fd5b5061016b600435610ab1565b34801561030557600080fd5b5061016b600435610b4a565b34801561031d57600080fd5b5061016b600435610be2565b34801561033557600080fd5b506101af600435600160a060020a0360243516610cc7565b34801561035957600080fd5b5061016b600160a060020a0360043516610d2b565b34801561037a57600080fd5b5061016b600160a060020a0360043516610dc9565b34801561039b57600080fd5b5061016b600160a060020a0360043581169060243516610e8a565b3480156103c257600080fd5b506101d8610fe2565b3480156103d757600080fd5b506101d8600160a060020a0360043516602435610fe9565b3480156103fb57600080fd5b506101af600435611266565b60008036604051602001808383808284378201915050925050506040516020818303038152906040526040518082805190602001908083835b6020831061045f5780518252601f199092019160209182019101610440565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020610495816113fd565b1561054f57600160a060020a0383166000908152610102602052604090205491508115156104c25761054f565b600180540360005411156104d55761054f565b600060028361010081106104e557fe5b0155600160a060020a03831660009081526101026020526040812055610509611549565b6105116115c8565b5060408051600160a060020a038516815290517f58619076adf5bb0943d100ef88d52d7c3fd691b19d3a9071b555b651fbf418da9181900360200190a15b505050565b600160a060020a03811660009081526101026020526040812054115b919050565b60015481565b6101075481565b6101085481565b600036604051602001808383808284378201915050925050506040516020818303038152906040526040518082805190602001908083835b602083106105e05780518252601f1990920191602091820191016105c1565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020610616816113fd565b15610622576000610106555b50565b6101065481565b600036604051602001808383808284378201915050925050506040516020818303038152906040526040518082805190602001908083835b602083106106835780518252601f199092019160209182019101610664565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390206106b9816113fd565b15610777576106c782610554565b156106d157610777565b6106d9611549565b60015460fa116106ed576106eb6115c8565b505b60015460fa116106fc57610777565b60018054810190819055600160a060020a03831690600290610100811061071f57fe5b0155600154600160a060020a03831660008181526101026020908152604091829020939093558051918252517f994a936646fe87ffe4f1e469d3d6aa417d6b855598397f323de5b449f765f0c3929181900390910190a15b5050565b60005481565b61010954600160a060020a031681565b600061079c33610554565b1561097f576107aa826116e4565b15610837576040805133815260208101849052600160a060020a0385168183015290517f4f6201f683343e96e9541a12726d3e99f43268c4dd78e66bed2bf05299ce5d9e9181900360600190a1604051600160a060020a0384169083156108fc029084906000818181858888f1935050505015801561082d573d6000803e3d6000fd5b506000905061097f565b6000364360405160200180848480828437820191505082815260200193505050506040516020818303038152906040526040518082805190602001908083835b602083106108965780518252601f199092019160209182019101610877565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051809103902090506108ce81610985565b1580156108f15750600081815261010a6020526040902054600160a060020a0316155b1561097f57600081815261010a60209081526040918290208054600160a060020a03871673ffffffffffffffffffffffffffffffffffffffff1990911681178255600190910185905582518481523392810192909252818301859052606082015290517fe8822e02b75091990be9e62536ea43bfedba392d5801cecae8473f992f262dc49181900360800190a15b92915050565b600081610991816113fd565b15610aab57600083815261010a6020526040902054600160a060020a031615610aab57600083815261010a602052604080822080546001909101549151600160a060020a039091169282156108fc02929190818181858888f19350505050158015610a00573d6000803e3d6000fd5b50600083815261010a602090815260409182902060018101549054835133815292830187905282840191909152600160a060020a0316606082015290517f73586c7e29af20c2cfb512293fb21f274d22b3fa0df53f2bb28977be93d545129181900360800190a1600083815261010a60205260408120805473ffffffffffffffffffffffffffffffffffffffff19908116825560018083019390935560029091018054909116905591505b50919050565b600036604051602001808383808284378201915050925050506040516020818303038152906040526040518082805190602001908083835b60208310610b085780518252601f199092019160209182019101610ae9565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020610b3e816113fd565b15610777575061010555565b33600090815261010260205260408120549080821515610b6957610bdc565b50506000828152610103602052604081206001810154600284900a929083161115610bdc57805460019081018255810180548390039055604080513381526020810186905281517fc7fb647e59b18047309aa15aad418e5d7ca96d173ad704f1031a2c3d7591734b929181900390910190a15b50505050565b600036604051602001808383808284378201915050925050506040516020818303038152906040526040518082805190602001908083835b60208310610c395780518252601f199092019160209182019101610c1a565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020610c6f816113fd565b1561077757600154821115610c8357610777565b6000829055610c90611549565b6040805183815290517facbdb084c721332ac59f9b8e392196c9eb0e4932862da8eb9beaf0dad4f550da9181900360200190a15050565b600082815261010360209081526040808320600160a060020a038516845261010290925282205482811515610cff5760009350610d22565b8160020a90508083600101541660001415610d1d5760009350610d22565b600193505b50505092915050565b600036604051602001808383808284378201915050925050506040516020818303038152906040526040518082805190602001908083835b60208310610d825780518252601f199092019160209182019101610d63565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020610db8816113fd565b156107775781600160a060020a0316ff5b600036604051602001808383808284378201915050925050506040516020818303038152906040526040518082805190602001908083835b60208310610e205780518252601f199092019160209182019101610e01565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020610e56816113fd565b15610777576101098054600160a060020a03841673ffffffffffffffffffffffffffffffffffffffff199091161790555050565b60008036604051602001808383808284378201915050925050506040516020818303038152906040526040518082805190602001908083835b60208310610ee25780518252601f199092019160209182019101610ec3565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020610f18816113fd565b15610bdc57610f2683610554565b15610f3057610bdc565b600160a060020a038416600090815261010260205260409020549150811515610f5857610bdc565b610f60611549565b600160a060020a0383166002836101008110610f7857fe5b0155600160a060020a0380851660008181526101026020908152604080832083905593871680835291849020869055835192835282015281517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c929181900390910190a150505050565b6101055481565b6000610ff433610554565b1561097f57611002826116e4565b156110f5576040805133815260208101849052600160a060020a0385168183015290517f4f6201f683343e96e9541a12726d3e99f43268c4dd78e66bed2bf05299ce5d9e9181900360600190a161010954604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156110bf57600080fd5b505af11580156110d3573d6000803e3d6000fd5b505050506040513d60208110156110e957600080fd5b506000915061097f9050565b6000364360405160200180848480828437820191505082815260200193505050506040516020818303038152906040526040518082805190602001908083835b602083106111545780518252601f199092019160209182019101611135565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020905061118c81611266565b1580156111af5750600081815261010a6020526040902054600160a060020a0316155b1561097f57600081815261010a60209081526040918290208054600160a060020a0380881673ffffffffffffffffffffffffffffffffffffffff19928316811784556001840188905561010980546002909501805490941694831694909417909255915484518681523394810194909452838501879052606084019190915216608082015290517fadd50a5aea0e28cb887644e8a41c86a278d70c9099697194c51299514f5b843c9181900360a00190a192915050565b60008082611273816113fd565b156113f657600084815261010a6020526040902054600160a060020a0316156113f657600084815261010a602090815260408083206002810154815460019092015483517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0393841660048201526024810191909152925191169550859363a9059cbb93604480850194919392918390030190829087803b15801561132057600080fd5b505af1158015611334573d6000803e3d6000fd5b505050506040513d602081101561134a57600080fd5b5050600084815261010a602090815260409182902060018101549054835133815292830188905282840191909152600160a060020a0316606082015290517f73586c7e29af20c2cfb512293fb21f274d22b3fa0df53f2bb28977be93d545129181900360800190a1600084815261010a60205260408120805473ffffffffffffffffffffffffffffffffffffffff19908116825560018083019390935560029091018054909116905592505b5050919050565b3360009081526101026020526040812054818082151561141c57611541565b6000858152610103602052604090208054909250151561147b57600080548355600180840191909155610104805491611457919083016117e1565b600283018190556101048054879290811061146e57fe5b6000918252602090912001555b8260020a9050808260010154166000141561154157604080513381526020810187905281517fe1c52dc63b719ade82e8bea94cc41a0d5d28e4aaf536adb5e9cccc9ff8c1aeda929181900390910190a1815460011061152e5760008581526101036020526040902060020154610104805490919081106114f757fe5b6000918252602080832090910182905586825261010390526040812081815560018082018390556002909101919091559350611541565b8154600019018255600182018054821790555b505050919050565b6101045460005b818110156115c05761010a60006101048381548110151561156d57fe5b600091825260208083209091015483528201929092526040018120805473ffffffffffffffffffffffffffffffffffffffff19908116825560018083019390935560029091018054909116905501611550565b610777611754565b600060015b6001548110156116e0575b600154811080156115f7575060028161010081106115f257fe5b015415155b15611604576001016115d8565b600180541180156116255750600154600290610100811061162157fe5b0154155b156116395760018054600019019055611604565b6001548110801561165b5750600154600290610100811061165657fe5b015415155b80156116745750600281610100811061167057fe5b0154155b156116db57600154600290610100811061168a57fe5b0154600282610100811061169a57fe5b015580610102600060028361010081106116b057fe5b015481526020019081526020016000208190555060006002600154610100811015156116d857fe5b01555b6115cd565b5090565b60006116ef33610554565b1561057057610107546117006117d7565b1115611719576000610106556117146117d7565b610107555b610106548281011080159061173657506101055482610106540111155b1561174c57506101068054820190556001610570565b506000919050565b6101045460005b818110156117ca5761010480548290811061177257fe5b600091825260209091200154156117c25761010360006101048381548110151561179857fe5b60009182526020808320909101548352820192909252604001812081815560018101829055600201555b60010161175b565b6107776101046000611805565b6201518042045b90565b81548183558181111561054f5760008381526020902061054f91810190830161181f565b508054600082559060005260206000209081019061062291905b6117de91905b808211156116e057600081556001016118255600a165627a7a723058206f55c7f28c792023d17c49fc24febcc7812093b2c3e1f218fd3af3c1cc52239d0029
Swarm Source
bzzr://6f55c7f28c792023d17c49fc24febcc7812093b2c3e1f218fd3af3c1cc52239d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $2,688.16 | 21.3278 | $57,332.72 |
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.