More Info
Private Name Tags
ContractCreator
Multi Chain
Multichain Addresses
2 addresses found via BlockscanLatest 25 from a total of 573 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
Change Owner | 16882075 | 66 days 18 hrs ago | IN | 0 ETH | 0.00027034 | ||||
Kill | 16881949 | 66 days 18 hrs ago | IN | 0 ETH | 0.00029228 | ||||
Add Owner | 16355170 | 140 days 13 hrs ago | IN | 0 ETH | 0.0003658 | ||||
Add Owner | 16355141 | 140 days 14 hrs ago | IN | 0 ETH | 0.00034014 | ||||
Withdraw | 16304351 | 147 days 16 hrs ago | IN | 0 ETH | 0.00037278 | ||||
Execute | 16304252 | 147 days 16 hrs ago | IN | 0 ETH | 0.00044366 | ||||
Execute | 16304246 | 147 days 16 hrs ago | IN | 0 ETH | 0.00046647 | ||||
Is Owner | 16304241 | 147 days 16 hrs ago | IN | 0 ETH | 0.00040235 | ||||
Confirm | 16304217 | 147 days 16 hrs ago | IN | 0 ETH | 0.00045654 | ||||
Is Owner | 16304207 | 147 days 16 hrs ago | IN | 0 ETH | 0.00044737 | ||||
Is Owner | 16304199 | 147 days 16 hrs ago | IN | 0 ETH | 0.00037732 | ||||
Is Owner | 16304194 | 147 days 16 hrs ago | IN | 0 ETH | 0.00048202 | ||||
Kill | 16304187 | 147 days 16 hrs ago | IN | 0 ETH | 0.00041487 | ||||
Remove Owner | 16304183 | 147 days 16 hrs ago | IN | 0 ETH | 0.00042942 | ||||
Add Owner | 16304168 | 147 days 16 hrs ago | IN | 0 ETH | 0.00038453 | ||||
Trustee Withdraw | 16304159 | 147 days 16 hrs ago | IN | 0 ETH | 0.00037306 | ||||
Add Owner | 16054790 | 182 days 12 hrs ago | IN | 0 ETH | 0.00022514 | ||||
Confirm | 16054763 | 182 days 12 hrs ago | IN | 0 ETH | 0.00022625 | ||||
Change Owner | 15842776 | 212 days 3 hrs ago | IN | 0 ETH | 0.00037711 | ||||
Confirm | 15068210 | 328 days 19 hrs ago | IN | 0 ETH | 0.00031139 | ||||
Execute | 15059025 | 330 days 5 hrs ago | IN | 0 ETH | 0.00190362 | ||||
Change Owner | 15059011 | 330 days 5 hrs ago | IN | 0 ETH | 0.00114098 | ||||
Confirm | 15059006 | 330 days 5 hrs ago | IN | 0 ETH | 0.00090281 | ||||
Is Owner | 15058998 | 330 days 5 hrs ago | IN | 0 ETH | 0.00114015 | ||||
Change Owner | 15058937 | 330 days 6 hrs ago | IN | 0 ETH | 0.00074487 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Txn Hash | Block | From | To | Value | ||
---|---|---|---|---|---|---|
15058460 | 330 days 7 hrs ago | 10 wei | ||||
14991088 | 342 days 13 hrs ago | 10 wei | ||||
12998668 | 655 days 10 hrs ago | 1 ETH | ||||
12568338 | 722 days 13 hrs ago | 0.9 ETH | ||||
12353222 | 755 days 20 hrs ago | 1.07144852 ETH | ||||
11843665 | 834 days 8 hrs ago | 0.01 ETH | ||||
11677123 | 859 days 22 hrs ago | 0.06 ETH | ||||
10928462 | 975 days 3 hrs ago | 0.04586508 ETH | ||||
10549311 | 1033 days 10 hrs ago | 0.0017 ETH | ||||
9318362 | 1223 days 14 hrs ago | 0.55 ETH | ||||
8574495 | 1347 days 10 hrs ago | 0.1 ETH | ||||
8416456 | 1372 days 1 hr ago | 1 wei | ||||
6188423 | 1740 days 10 hrs ago | 0.0002 ETH | ||||
5824702 | 1802 days 5 hrs ago | 0.2702 ETH | ||||
5507181 | 1857 days 22 hrs ago | 1.29928536 ETH | ||||
4985629 | 1945 days 23 hrs ago | 3.90697347 ETH | ||||
4838781 | 1972 days 2 hrs ago | 0.0001 ETH | ||||
4837580 | 1972 days 7 hrs ago | 0.033333 ETH | ||||
4795242 | 1979 days 11 hrs ago | 0.1600166 ETH | ||||
4646004 | 2005 days 6 hrs ago | 4.2 ETH | ||||
4646003 | 2005 days 6 hrs ago | 11.9 ETH | ||||
4646001 | 2005 days 6 hrs ago | 37.68260869 ETH | ||||
4646001 | 2005 days 6 hrs ago | 17.5 ETH | ||||
4227814 | 2094 days 8 hrs ago | 0.0015 ETH | ||||
4142000 | 2116 days 4 hrs ago | 0.1 ETH |
Loading...
Loading
Contract Name:
Wallet
Compiler Version
v0.3.2-2016-04-22-dd4300d
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2016-05-30 */ //sol Wallet // Multi-sig, daily-limited account proxy/wallet. // @authors: // Gav Wood <[email protected]> // inheritable "property" contract that enables methods to be protected by requiring the acquiescence of either a // single, or, crucially, each of a number of, designated owners. // usage: // use modifiers onlyowner (just own owned) or onlymanyowners(hash), whereby the same hash must be provided by // some number (specified in constructor) of the set of owners (specified in the constructor, modifiable) before the // interior is executed. 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. function multiowned(address[] _owners, uint _required) { 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[2 + i] = uint(_owners[i]); m_ownerIndex[uint(_owners[i])] = 2 + 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; var pending = m_pending[_operation]; if (pending.ownersDone & ownerIndexBit > 0) { pending.yetNeeded++; pending.ownersDone -= ownerIndexBit; Revoke(msg.sender, _operation); } } // Replaces an owner `_from` with another `_to`. function changeOwner(address _from, address _to) onlymanyowners(sha3(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; OwnerChanged(_from, _to); } function addOwner(address _owner) onlymanyowners(sha3(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; OwnerAdded(_owner); } function removeOwner(address _owner) onlymanyowners(sha3(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 OwnerRemoved(_owner); } function changeRequirement(uint _newRequired) onlymanyowners(sha3(msg.data)) external { if (_newRequired > m_numOwners) return; m_required = _newRequired; clearPending(); RequirementChanged(_newRequired); } function isOwner(address _addr) returns (bool) { return m_ownerIndex[uint(_addr)] > 0; } function hasConfirmed(bytes32 _operation, address _owner) constant returns (bool) { var 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; var 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) { 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. function daylimit(uint _limit) { 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(sha3(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(sha3(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 constant returns (uint) { return now / 1 days; } // FIELDS uint public m_dailyLimit; uint m_spentToday; uint 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, bytes data); // 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, bytes data); // Confirmation still needed for a transaction. event ConfirmationNeeded(bytes32 operation, address initiator, uint value, address to, bytes data); // 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) 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 { // TYPES // Transaction structure to remember details of transaction lest it need be saved for a later call. struct Transaction { address to; uint value; bytes data; } // METHODS // constructor - just pass on the owner array to the multiowned and // the limit to daylimit function Wallet(address[] _owners, uint _required, uint _daylimit) multiowned(_owners, _required) daylimit(_daylimit) { } // kills the contract sending everything to `_to`. function kill(address _to) onlymanyowners(sha3(msg.data)) external { suicide(_to); } // gets called when no other function matches function() { // just being sent some cash? if (msg.value > 0) 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 execute(address _to, uint _value, bytes _data) external onlyowner returns (bytes32 _r) { // first, take the opportunity to check that we're under the daily limit. if (underLimit(_value)) { SingleTransact(msg.sender, _value, _to, _data); // yes - just execute the call. _to.call.value(_value)(_data); return 0; } // determine our operation hash. _r = sha3(msg.data, block.number); if (!confirm(_r) && m_txs[_r].to == 0) { m_txs[_r].to = _to; m_txs[_r].value = _value; m_txs[_r].data = _data; ConfirmationNeeded(_r, msg.sender, _value, _to, _data); } } // 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 confirm(bytes32 _h) onlymanyowners(_h) returns (bool) { if (m_txs[_h].to != 0) { m_txs[_h].to.call.value(m_txs[_h].value)(m_txs[_h].data); MultiTransact(msg.sender, _h, m_txs[_h].value, m_txs[_h].to, m_txs[_h].data); 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":[],"type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"m_numOwners","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"resetSpentToday","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"addOwner","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_required","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_h","type":"bytes32"}],"name":"confirm","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_newLimit","type":"uint256"}],"name":"setDailyLimit","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"execute","outputs":[{"name":"_r","type":"bytes32"}],"type":"function"},{"constant":false,"inputs":[{"name":"_operation","type":"bytes32"}],"name":"revoke","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_newRequired","type":"uint256"}],"name":"changeRequirement","outputs":[],"type":"function"},{"constant":true,"inputs":[{"name":"_operation","type":"bytes32"},{"name":"_owner","type":"address"}],"name":"hasConfirmed","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"kill","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"}],"name":"changeOwner","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_dailyLimit","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"inputs":[{"name":"_owners","type":"address[]"},{"name":"_required","type":"uint256"},{"name":"_daylimit","type":"uint256"}],"type":"constructor"},{"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"},{"indexed":false,"name":"data","type":"bytes"}],"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"},{"indexed":false,"name":"data","type":"bytes"}],"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":"data","type":"bytes"}],"name":"ConfirmationNeeded","type":"event"}]
Contract Creation Code
6060604052604051611120380380611120833981016040908152815160805160a0519190930180516001908101815533600160a060020a0316600381905560009081526101026020529384205592918190849084905b82518110156100db57828181518110156100025790602001906020020151600160a060020a0316600260005082600201610100811015610002570160009190558351600283019161010291869085908110156100025790602001906020020151600160a060020a0316815260200190815260200160002060005081905550600101610055565b8160006000508190555050505080610105600050819055506100ff62015180420490565b610107555050505061100b806101156000396000f3606060405236156100b95760e060020a6000350463173825d9811461010b5780632f54bf6e1461015f5780634123cb6b146101875780635c52c2f5146101905780637065cb48146101ba578063746c9171146101e7578063797af627146101f0578063b20d30a914610203578063b61d27f614610230578063b75c7dc614610251578063ba51a6df14610280578063c2cf7326146102ad578063cbf0b0c0146102eb578063f00d4b5d14610318578063f1736d861461034a575b61035460003411156101095760408051600160a060020a033316815234602082015281517fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c929181900390910190a15b565b610354600435600060003660405180838380828437820191505092505050604051809103902061064e815b600160a060020a03331660009081526101026020526040812054818082811415610c7a57610dd3565b6103566004355b600160a060020a03811660009081526101026020526040812054115b919050565b61035660015481565b61035460003660405180838380828437820191505092505050604051809103902061079f81610136565b6103546004356000366040518083838082843782019150509250505060405180910390206105c681610136565b61035660005481565b6103566004355b600081610a3b81610136565b61035460043560003660405180838380828437820191505092505050604051809103902061079381610136565b6103566004803590602480359160443591820191013560006107be33610166565b610354600435600160a060020a03331660009081526101026020526040812054908082811415610368576103e7565b61035460043560003660405180838380828437820191505092505050604051809103902061070d81610136565b610356600435602435600082815261010360209081526040808320600160a060020a038516845261010290925282205482818114156107665761078a565b6103546004356000366040518083838082843782019150509250505060405180910390206107ad81610136565b610354600435602435600060003660405180838380828437820191505092505050604051809103902061047281610136565b6103566101055481565b005b60408051918252519081900360200190f35b50506000828152610103602052604081206001810154600284900a9290831611156103e75780546001828101805492909101835590839003905560408051600160a060020a03331681526020810186905281517fc7fb647e59b18047309aa15aad418e5d7ca96d173ad704f1031a2c3d7591734b929181900390910190a15b50505050565b600160a060020a03831660028361010081101561000257508301819055600160a060020a03851660008181526101026020908152604080832083905584835291829020869055815192835282019290925281517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c929181900390910190a1505b505050565b156103e75761048083610166565b1561048b575061046d565b600160a060020a0384166000908152610102602052604081205492508214156104b4575061046d565b6103ed5b6101045460005b81811015610f1e57610104805461010891600091849081101561000257600080516020610feb8339815191520154825250602091909152604081208054600160a060020a0319168155600181810183905560028281018054858255939493909281161561010002600019011604601f819010610fa357505b5050506001016104bf565b60018054810190819055600160a060020a038316906002906101008110156100025790900160005055600154600160a060020a03831660008181526101026020908152604091829020939093558051918252517f994a936646fe87ffe4f1e469d3d6aa417d6b855598397f323de5b449f765f0c3929181900390910190a15b505b50565b156105c1576105d482610166565b156105df57506105c3565b6105e76104b8565b60015460fa90106105fc576105fa610611565b505b60015460fa901061054257506105c3565b6106cb5b600060015b600154811015610a37575b600154811080156106415750600281610100811015610002570154600014155b15610ddb57600101610621565b1561046d57600160a060020a03831660009081526101026020526040812054925082141561067c57506105c1565b600160016000505403600060005054111561069757506105c1565b600060028361010081101561000257508301819055600160a060020a0384168152610102602052604081205561060d6104b8565b5060408051600160a060020a038516815290517f58619076adf5bb0943d100ef88d52d7c3fd691b19d3a9071b555b651fbf418da9181900360200190a1505050565b156105c15760015482111561072257506105c3565b600082905561072f6104b8565b6040805183815290517facbdb084c721332ac59f9b8e392196c9eb0e4932862da8eb9beaf0dad4f550da9181900360200190a15050565b506001820154600282900a90811660001415610785576000935061078a565b600193505b50505092915050565b156105c1575061010555565b156105c35760006101065550565b156105c15781600160a060020a0316ff5b156109ff576107d2846000610eb533610166565b15610891577f92ca3a80853e6663fa31fa10b99225f18d4902939b4c53a9caae9043f6efd00433858786866040518086600160a060020a0316815260200185815260200184600160a060020a031681526020018060200182810382528484828181526020019250808284378201915050965050505050505060405180910390a184600160a060020a03168484846040518083838082843782019150509250505060006040518083038185876185025a03f150600093506109ff92505050565b6000364360405180848480828437820191505082815260200193505050506040518091039020905080506108c4816101f7565b1580156108e7575060008181526101086020526040812054600160a060020a0316145b156109ff5760008181526101086020908152604082208054600160a060020a0319168817815560018181018890556002918201805481865294849020909491821615610100026000190190911691909104601f908101929092048101918591908790839010610a075760ff198135168380011785555b506109799291505b80821115610a375760008155600101610965565b50507f1733cbb53659d713b79580f79f3f9ff215f78a7c7aa45890f3b89fc5cddfbf328133868887876040518087815260200186600160a060020a0316815260200185815260200184600160a060020a03168152602001806020018281038252848482818152602001925080828437820191505097505050505050505060405180910390a15b949350505050565b8280016001018555821561095d579182015b8281111561095d578235826000505591602001919060010190610a19565b5090565b15610abe5760008381526101086020526040812054600160a060020a031614610abe5760408051600091909120805460018281015460029384018054600160a060020a0394909416959194909391928392859291811615610100026000190116048015610aef5780601f10610ac457610100808354040283529160200191610aef565b50919050565b820191906000526020600020905b815481529060010190602001808311610ad257829003601f168201915b505091505060006040518083038185876185025a03f1505050600084815261010860209081526040918290208054600180830154855133600160a060020a0381811683529682018c9052968101829052929094166060830181905260a06080840181815260029586018054948516156101000260001901909416959095049084018190527fe7c957c06e9a662c1a6c77366179f5b702b97651dc28eee7d5bf1dff6e40bb4a97508a95949193919060c083019084908015610bf15780601f10610bc657610100808354040283529160200191610bf1565b820191906000526020600020905b815481529060010190602001808311610bd457829003601f168201915b5050965050505050505060405180910390a16000838152610108602052604081208054600160a060020a0319168155600181810183905560028281018054858255939493909281161561010002600019011604601f819010610c5c57505b5050506001915050610182565b601f016020900490600052602060002090810190610c4f9190610965565b60008581526101036020526040812080549093501415610d02576000805483556001838101919091556101048054918201808255828015829011610cd157818360005260206000209182019101610cd19190610965565b50505060028301819055610104805487929081101561000257600091909152600080516020610feb83398151915201555b506001810154600283900a90811660001415610dd35760408051600160a060020a03331681526020810187905281517fe1c52dc63b719ade82e8bea94cc41a0d5d28e4aaf536adb5e9cccc9ff8c1aeda929181900390910190a1815460019011610dc0576000858152610103602052604090206002015461010480549091908110156100025760406000908120600080516020610feb833981519152929092018190558082556001828101829055600292909201559450610dd39050565b8154600019018255600182018054821790555b505050919050565b5b60018054118015610dfe57506001546002906101008110156100025701546000145b15610e125760018054600019019055610ddc565b60015481108015610e355750600154600290610100811015610002570154600014155b8015610e4f57506002816101008110156100025701546000145b15610eb057600154600290610100811015610002578101549082610100811015610002579090016000505580610102600060028361010081101561000257810154825260209290925260408120929092556001546101008110156100025701555b610616565b156101825761010754610ecb5b62015180420490565b1115610ee457600061010655610edf610ec2565b610107555b6101065480830110801590610f00575061010554610106548301105b15610f1657506101068054820190556001610182565b506000610182565b6105c16101045460005b81811015610fc15761010480548290811015610002576000918252600080516020610feb833981519152015414610f9b57610104805461010391600091849081101561000257600080516020610feb83398151915201548252506020919091526040812081815560018101829055600201555b600101610f28565b601f0160209004906000526020600020908101906105379190610965565b610104805460008083559190915261046d90600080516020610feb83398151915290810190610965564c0be60200faa20559308cb7b5a1bb3255c16cb1cab91f525b5ae7a03d02fabe
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000001db3439a222c519ab44bb1144fc28167b4fa6ee6000000000000000000000000b2c1b92f4bed7a173547cc601fb73a1254d10d260000000000000000000000000029218e1dab069656bfb8a75947825e7989b987000000000000000000000000cee96fd34ec793b05ee5b232b0110eac0cc3327e000000000000000000000000b274363d5971b60b6aca27d6f030355e9aa2cf23000000000000000000000000c947faed052820f1ad6f4dda435e684a2cd06bb4000000000000000000000000ae90d602778ed98478888fa2756339dd013e34c1000000000000000000000000e578fb92640393b95b53197914bd560b7bc2aac8000000000000000000000000a1e9989b4ef5d7fa12235dc9c7524895d68ba662000000000000000000000000127ac03acfad15f7a49dd037e52d5507260e14250000000000000000000000000037a6b811ffeb6e072da21179d11b1406371c63
-----Decoded View---------------
Arg [0] : _owners (address[]): 0x1Db3439a222C519ab44bb1144fC28167b4Fa6EE6,0xb2c1b92f4BEd7A173547cC601FB73A1254D10d26,0x0029218e1DaB069656BFb8a75947825e7989B987,0xcEE96fD34eC793B05ee5B232b0110eAc0cc3327e,0xb274363D5971B60b6aca27D6F030355e9aa2cF23,0xc947faED052820f1AD6f4DDA435E684A2CD06BB4,0xAE90D602778ed98478888FA2756339Dd013E34c1,0xE578Fb92640393B95B53197914bD560b7bc2aAc8,0xA1E9989b4eF5D7fA12235dC9C7524895D68BA662,0x127Ac03AcFad15f7a49DD037e52d5507260E1425,0x0037A6B811ffeB6e072DA21179d11B1406371C63
Arg [1] : _required (uint256): 1
Arg [2] : _daylimit (uint256): 0
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 0000000000000000000000001db3439a222c519ab44bb1144fc28167b4fa6ee6
Arg [5] : 000000000000000000000000b2c1b92f4bed7a173547cc601fb73a1254d10d26
Arg [6] : 0000000000000000000000000029218e1dab069656bfb8a75947825e7989b987
Arg [7] : 000000000000000000000000cee96fd34ec793b05ee5b232b0110eac0cc3327e
Arg [8] : 000000000000000000000000b274363d5971b60b6aca27d6f030355e9aa2cf23
Arg [9] : 000000000000000000000000c947faed052820f1ad6f4dda435e684a2cd06bb4
Arg [10] : 000000000000000000000000ae90d602778ed98478888fa2756339dd013e34c1
Arg [11] : 000000000000000000000000e578fb92640393b95b53197914bd560b7bc2aac8
Arg [12] : 000000000000000000000000a1e9989b4ef5d7fa12235dc9c7524895d68ba662
Arg [13] : 000000000000000000000000127ac03acfad15f7a49dd037e52d5507260e1425
Arg [14] : 0000000000000000000000000037a6b811ffeb6e072da21179d11b1406371c63
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.
[ 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.