Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Latest 25 from a total of 112 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Confirm Transact... | 12635497 | 1723 days ago | IN | 0 ETH | 0.00180755 | ||||
| Confirm Transact... | 12635342 | 1723 days ago | IN | 0 ETH | 0.00185728 | ||||
| Submit Transacti... | 12617157 | 1726 days ago | IN | 0 ETH | 0.00361854 | ||||
| Confirm Transact... | 12612730 | 1726 days ago | IN | 0 ETH | 0.00045694 | ||||
| Confirm Transact... | 12612724 | 1726 days ago | IN | 0 ETH | 0.00191275 | ||||
| Confirm Transact... | 12611342 | 1727 days ago | IN | 0 ETH | 0.00126633 | ||||
| Submit Transacti... | 12609999 | 1727 days ago | IN | 0 ETH | 0.00235992 | ||||
| Confirm Transact... | 12312938 | 1773 days ago | IN | 0 ETH | 0.0058684 | ||||
| Confirm Transact... | 12312619 | 1773 days ago | IN | 0 ETH | 0.00388341 | ||||
| Submit Transacti... | 12312605 | 1773 days ago | IN | 0 ETH | 0.00723708 | ||||
| Confirm Transact... | 12085980 | 1808 days ago | IN | 0 ETH | 0.00352623 | ||||
| Confirm Transact... | 12085979 | 1808 days ago | IN | 0 ETH | 0.01529342 | ||||
| Confirm Transact... | 12085761 | 1808 days ago | IN | 0 ETH | 0.01213733 | ||||
| Submit Transacti... | 12085350 | 1808 days ago | IN | 0 ETH | 0.02796086 | ||||
| Confirm Transact... | 11781136 | 1855 days ago | IN | 0 ETH | 0.01311702 | ||||
| Confirm Transact... | 11781121 | 1855 days ago | IN | 0 ETH | 0.01058708 | ||||
| Submit Transacti... | 11781118 | 1855 days ago | IN | 0 ETH | 0.0208236 | ||||
| Confirm Transact... | 11781060 | 1855 days ago | IN | 0 ETH | 0.01454479 | ||||
| Confirm Transact... | 11781016 | 1855 days ago | IN | 0 ETH | 0.01013334 | ||||
| Submit Transacti... | 11780997 | 1855 days ago | IN | 0 ETH | 0.01992955 | ||||
| Confirm Transact... | 11780563 | 1855 days ago | IN | 0 ETH | 0.02034094 | ||||
| Confirm Transact... | 11780512 | 1855 days ago | IN | 0 ETH | 0.01141892 | ||||
| Submit Transacti... | 11780490 | 1855 days ago | IN | 0 ETH | 0.02245611 | ||||
| Confirm Transact... | 11247515 | 1937 days ago | IN | 0 ETH | 0.00235283 | ||||
| Confirm Transact... | 11247475 | 1937 days ago | IN | 0 ETH | 0.00166368 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 12635497 | 1723 days ago | 17.5 ETH | ||||
| - | 12612724 | 1726 days ago | 10 ETH | ||||
| - | 12312938 | 1773 days ago | 10.1 ETH | ||||
| - | 12085979 | 1808 days ago | 2 ETH | ||||
| - | 11781136 | 1855 days ago | 29 ETH | ||||
| - | 11781060 | 1855 days ago | 0.1 ETH | ||||
| - | 11780563 | 1855 days ago | 0.01 ETH | ||||
| - | 11247515 | 1937 days ago | 2 ETH | ||||
| - | 10960070 | 1981 days ago | 2 ETH | ||||
| - | 10746050 | 2014 days ago | 2 ETH | ||||
| - | 10552385 | 2044 days ago | 2 ETH | ||||
| - | 10114382 | 2111 days ago | 2.5 ETH | ||||
| - | 9836554 | 2155 days ago | 0.1 ETH | ||||
| - | 9836554 | 2155 days ago | 0.75 ETH | ||||
| - | 9836212 | 2155 days ago | 1 ETH | ||||
| - | 8662124 | 2344 days ago | 1 ETH | ||||
| - | 8662118 | 2344 days ago | 0.3 ETH | ||||
| Transfer | 6634747 | 2677 days ago | 0.6 ETH | ||||
| Transfer | 6634737 | 2677 days ago | 18 ETH | ||||
| Transfer | 6171910 | 2754 days ago | 18.15111923 ETH | ||||
| Transfer | 6104782 | 2765 days ago | 0.16711746 ETH | ||||
| Transfer | 6104782 | 2765 days ago | 0.16763746 ETH | ||||
| Transfer | 6043467 | 2776 days ago | 0.04 ETH | ||||
| Transfer | 5751973 | 2826 days ago | 27 ETH | ||||
| Transfer | 5740096 | 2828 days ago | 0.1 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MultiSigWallet
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
Yes with 500 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-02-28
*/
/**
* Originally from https://github.com/ConsenSys/MultiSigWallet
*/
/// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution.
/// @author Stefan George - <stefan.george@consensys.net>
contract MultiSigWallet {
uint constant public MAX_OWNER_COUNT = 50;
event Confirmation(address indexed sender, uint indexed transactionId);
event Revocation(address indexed sender, uint indexed transactionId);
event Submission(uint indexed transactionId);
event Execution(uint indexed transactionId);
event ExecutionFailure(uint indexed transactionId);
event Deposit(address indexed sender, uint value);
event OwnerAddition(address indexed owner);
event OwnerRemoval(address indexed owner);
event RequirementChange(uint required);
mapping (uint => Transaction) public transactions;
mapping (uint => mapping (address => bool)) public confirmations;
mapping (address => bool) public isOwner;
address[] public owners;
uint public required;
uint public transactionCount;
struct Transaction {
address destination;
uint value;
bytes data;
bool executed;
}
modifier onlyWallet() {
if (msg.sender != address(this))
throw;
_;
}
modifier ownerDoesNotExist(address owner) {
if (isOwner[owner])
throw;
_;
}
modifier ownerExists(address owner) {
if (!isOwner[owner])
throw;
_;
}
modifier transactionExists(uint transactionId) {
if (transactions[transactionId].destination == 0)
throw;
_;
}
modifier confirmed(uint transactionId, address owner) {
if (!confirmations[transactionId][owner])
throw;
_;
}
modifier notConfirmed(uint transactionId, address owner) {
if (confirmations[transactionId][owner])
throw;
_;
}
modifier notExecuted(uint transactionId) {
if (transactions[transactionId].executed)
throw;
_;
}
modifier notNull(address _address) {
if (_address == 0)
throw;
_;
}
modifier validRequirement(uint ownerCount, uint _required) {
if ( ownerCount > MAX_OWNER_COUNT
|| _required > ownerCount
|| _required == 0
|| ownerCount == 0)
throw;
_;
}
/// @dev Fallback function allows to deposit ether.
function()
payable
{
if (msg.value > 0)
Deposit(msg.sender, msg.value);
}
/*
* Public functions
*/
/// @dev Contract constructor sets initial owners and required number of confirmations.
/// @param _owners List of initial owners.
/// @param _required Number of required confirmations.
function MultiSigWallet(address[] _owners, uint _required)
public
validRequirement(_owners.length, _required)
{
for (uint i=0; i<_owners.length; i++) {
if (isOwner[_owners[i]] || _owners[i] == 0)
throw;
isOwner[_owners[i]] = true;
}
owners = _owners;
required = _required;
}
/// @dev Allows to add a new owner. Transaction has to be sent by wallet.
/// @param owner Address of new owner.
function addOwner(address owner)
public
onlyWallet
ownerDoesNotExist(owner)
notNull(owner)
validRequirement(owners.length + 1, required)
{
isOwner[owner] = true;
owners.push(owner);
OwnerAddition(owner);
}
/// @dev Allows to remove an owner. Transaction has to be sent by wallet.
/// @param owner Address of owner.
function removeOwner(address owner)
public
onlyWallet
ownerExists(owner)
{
isOwner[owner] = false;
for (uint i=0; i<owners.length - 1; i++)
if (owners[i] == owner) {
owners[i] = owners[owners.length - 1];
break;
}
owners.length -= 1;
if (required > owners.length)
changeRequirement(owners.length);
OwnerRemoval(owner);
}
/// @dev Allows to replace an owner with a new owner. Transaction has to be sent by wallet.
/// @param owner Address of owner to be replaced.
/// @param owner Address of new owner.
function replaceOwner(address owner, address newOwner)
public
onlyWallet
ownerExists(owner)
ownerDoesNotExist(newOwner)
{
for (uint i=0; i<owners.length; i++)
if (owners[i] == owner) {
owners[i] = newOwner;
break;
}
isOwner[owner] = false;
isOwner[newOwner] = true;
OwnerRemoval(owner);
OwnerAddition(newOwner);
}
/// @dev Allows to change the number of required confirmations. Transaction has to be sent by wallet.
/// @param _required Number of required confirmations.
function changeRequirement(uint _required)
public
onlyWallet
validRequirement(owners.length, _required)
{
required = _required;
RequirementChange(_required);
}
/// @dev Allows an owner to submit and confirm a transaction.
/// @param destination Transaction target address.
/// @param value Transaction ether value.
/// @param data Transaction data payload.
/// @return Returns transaction ID.
function submitTransaction(address destination, uint value, bytes data)
public
returns (uint transactionId)
{
transactionId = addTransaction(destination, value, data);
confirmTransaction(transactionId);
}
/// @dev Allows an owner to confirm a transaction.
/// @param transactionId Transaction ID.
function confirmTransaction(uint transactionId)
public
ownerExists(msg.sender)
transactionExists(transactionId)
notConfirmed(transactionId, msg.sender)
{
confirmations[transactionId][msg.sender] = true;
Confirmation(msg.sender, transactionId);
executeTransaction(transactionId);
}
/// @dev Allows an owner to revoke a confirmation for a transaction.
/// @param transactionId Transaction ID.
function revokeConfirmation(uint transactionId)
public
ownerExists(msg.sender)
confirmed(transactionId, msg.sender)
notExecuted(transactionId)
{
confirmations[transactionId][msg.sender] = false;
Revocation(msg.sender, transactionId);
}
/// @dev Allows anyone to execute a confirmed transaction.
/// @param transactionId Transaction ID.
function executeTransaction(uint transactionId)
public
notExecuted(transactionId)
{
if (isConfirmed(transactionId)) {
Transaction tx = transactions[transactionId];
tx.executed = true;
if (tx.destination.call.value(tx.value)(tx.data))
Execution(transactionId);
else {
ExecutionFailure(transactionId);
tx.executed = false;
}
}
}
/// @dev Returns the confirmation status of a transaction.
/// @param transactionId Transaction ID.
/// @return Confirmation status.
function isConfirmed(uint transactionId)
public
constant
returns (bool)
{
uint count = 0;
for (uint i=0; i<owners.length; i++) {
if (confirmations[transactionId][owners[i]])
count += 1;
if (count == required)
return true;
}
}
/*
* Internal functions
*/
/// @dev Adds a new transaction to the transaction mapping, if transaction does not exist yet.
/// @param destination Transaction target address.
/// @param value Transaction ether value.
/// @param data Transaction data payload.
/// @return Returns transaction ID.
function addTransaction(address destination, uint value, bytes data)
internal
notNull(destination)
returns (uint transactionId)
{
transactionId = transactionCount;
transactions[transactionId] = Transaction({
destination: destination,
value: value,
data: data,
executed: false
});
transactionCount += 1;
Submission(transactionId);
}
/*
* Web3 call functions
*/
/// @dev Returns number of confirmations of a transaction.
/// @param transactionId Transaction ID.
/// @return Number of confirmations.
function getConfirmationCount(uint transactionId)
public
constant
returns (uint count)
{
for (uint i=0; i<owners.length; i++)
if (confirmations[transactionId][owners[i]])
count += 1;
}
/// @dev Returns total number of transactions after filers are applied.
/// @param pending Include pending transactions.
/// @param executed Include executed transactions.
/// @return Total number of transactions after filters are applied.
function getTransactionCount(bool pending, bool executed)
public
constant
returns (uint count)
{
for (uint i=0; i<transactionCount; i++)
if ( pending && !transactions[i].executed
|| executed && transactions[i].executed)
count += 1;
}
/// @dev Returns list of owners.
/// @return List of owner addresses.
function getOwners()
public
constant
returns (address[])
{
return owners;
}
/// @dev Returns array with owner addresses, which confirmed transaction.
/// @param transactionId Transaction ID.
/// @return Returns array of owner addresses.
function getConfirmations(uint transactionId)
public
constant
returns (address[] _confirmations)
{
address[] memory confirmationsTemp = new address[](owners.length);
uint count = 0;
uint i;
for (i=0; i<owners.length; i++)
if (confirmations[transactionId][owners[i]]) {
confirmationsTemp[count] = owners[i];
count += 1;
}
_confirmations = new address[](count);
for (i=0; i<count; i++)
_confirmations[i] = confirmationsTemp[i];
}
/// @dev Returns list of transaction IDs in defined range.
/// @param from Index start position of transaction array.
/// @param to Index end position of transaction array.
/// @param pending Include pending transactions.
/// @param executed Include executed transactions.
/// @return Returns array of transaction IDs.
function getTransactionIds(uint from, uint to, bool pending, bool executed)
public
constant
returns (uint[] _transactionIds)
{
uint[] memory transactionIdsTemp = new uint[](transactionCount);
uint count = 0;
uint i;
for (i=0; i<transactionCount; i++)
if ( pending && !transactions[i].executed
|| executed && transactions[i].executed)
{
transactionIdsTemp[count] = i;
count += 1;
}
_transactionIds = new uint[](to - from);
for (i=from; i<to; i++)
_transactionIds[i - from] = transactionIdsTemp[i];
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"owners","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"removeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"revokeConfirmation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"confirmations","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"pending","type":"bool"},{"name":"executed","type":"bool"}],"name":"getTransactionCount","outputs":[{"name":"count","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":"transactionId","type":"uint256"}],"name":"isConfirmed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmationCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"transactions","outputs":[{"name":"destination","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"},{"name":"executed","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOwners","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"from","type":"uint256"},{"name":"to","type":"uint256"},{"name":"pending","type":"bool"},{"name":"executed","type":"bool"}],"name":"getTransactionIds","outputs":[{"name":"_transactionIds","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmations","outputs":[{"name":"_confirmations","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transactionCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_required","type":"uint256"}],"name":"changeRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"confirmTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"destination","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"}],"name":"submitTransaction","outputs":[{"name":"transactionId","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_OWNER_COUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"required","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"},{"name":"newOwner","type":"address"}],"name":"replaceOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"executeTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_owners","type":"address[]"},{"name":"_required","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Confirmation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Revocation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Submission","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Execution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"ExecutionFailure","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"OwnerAddition","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"OwnerRemoval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"required","type":"uint256"}],"name":"RequirementChange","type":"event"}]Contract Creation Code
606060405234156200001057600080fd5b60405162001636380380620016368339810160405280805182019190602001805191506000905082518260328211806200004957508181115b8062000053575080155b806200005d575081155b156200006857600080fd5b600092505b84518310156200013557600260008685815181106200008857fe5b90602001906020020151600160a060020a0316815260208101919091526040016000205460ff1680620000d85750848381518110620000c357fe5b90602001906020020151600160a060020a0316155b15620000e357600080fd5b600160026000878681518110620000f657fe5b90602001906020020151600160a060020a031681526020810191909152604001600020805460ff1916911515919091179055600192909201916200006d565b60038580516200014a9291602001906200015c565b50505060049190915550620001f29050565b828054828255906000526020600020908101928215620001b6579160200282015b82811115620001b65782518254600160a060020a031916600160a060020a0391909116178255602092909201916001909101906200017d565b50620001c4929150620001c8565b5090565b620001ef91905b80821115620001c4578054600160a060020a0319168155600101620001cf565b90565b61143480620002026000396000f30060606040526004361061011c5763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663025e7c278114610165578063173825d91461019757806320ea8d86146101b65780632f54bf6e146101cc5780633411c81c146101ff57806354741525146102215780637065cb4814610250578063784547a71461026f5780638b51d13f146102855780639ace38c21461029b578063a0e67e2b1461035a578063a8abe69a146103c0578063b5dc40c3146103e3578063b77bf600146103f9578063ba51a6df1461040c578063c01a8c8414610422578063c642747414610438578063d74f8edd1461049d578063dc8452cd146104b0578063e20056e6146104c3578063ee22610b146104e8575b60003411156101635733600160a060020a03167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c3460405190815260200160405180910390a25b005b341561017057600080fd5b61017b6004356104fe565b604051600160a060020a03909116815260200160405180910390f35b34156101a257600080fd5b610163600160a060020a0360043516610526565b34156101c157600080fd5b6101636004356106bb565b34156101d757600080fd5b6101eb600160a060020a0360043516610799565b604051901515815260200160405180910390f35b341561020a57600080fd5b6101eb600435600160a060020a03602435166107ae565b341561022c57600080fd5b61023e600435151560243515156107ce565b60405190815260200160405180910390f35b341561025b57600080fd5b610163600160a060020a036004351661083a565b341561027a57600080fd5b6101eb60043561096e565b341561029057600080fd5b61023e6004356109f2565b34156102a657600080fd5b6102b1600435610a61565b604051600160a060020a03851681526020810184905281151560608201526080604082018181528454600260001961010060018416150201909116049183018290529060a0830190859080156103485780601f1061031d57610100808354040283529160200191610348565b820191906000526020600020905b81548152906001019060200180831161032b57829003601f168201915b50509550505050505060405180910390f35b341561036557600080fd5b61036d610a95565b60405160208082528190810183818151815260200191508051906020019060200280838360005b838110156103ac578082015183820152602001610394565b505050509050019250505060405180910390f35b34156103cb57600080fd5b61036d60043560243560443515156064351515610afe565b34156103ee57600080fd5b61036d600435610c26565b341561040457600080fd5b61023e610d8a565b341561041757600080fd5b610163600435610d90565b341561042d57600080fd5b610163600435610e1b565b341561044357600080fd5b61023e60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610f0995505050505050565b34156104a857600080fd5b61023e610f28565b34156104bb57600080fd5b61023e610f2d565b34156104ce57600080fd5b610163600160a060020a0360043581169060243516610f33565b34156104f357600080fd5b6101636004356110e1565b600380548290811061050c57fe5b600091825260209091200154600160a060020a0316905081565b600030600160a060020a031633600160a060020a031614151561054857600080fd5b600160a060020a038216600090815260026020526040902054829060ff16151561057157600080fd5b600160a060020a0383166000908152600260205260408120805460ff1916905591505b600354600019018210156106545782600160a060020a03166003838154811015156105bb57fe5b600091825260209091200154600160a060020a03161415610649576003805460001981019081106105e857fe5b60009182526020909120015460038054600160a060020a03909216918490811061060e57fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055610654565b600190910190610594565b600380546000190190610667908261133a565b5060035460045411156106805760035461068090610d90565b82600160a060020a03167f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9060405160405180910390a2505050565b33600160a060020a03811660009081526002602052604090205460ff1615156106e357600080fd5b600082815260016020908152604080832033600160a060020a038116855292529091205483919060ff16151561071857600080fd5b600084815260208190526040902060030154849060ff161561073957600080fd5b6000858152600160209081526040808320600160a060020a033316808552925291829020805460ff1916905586917ff6a317157440607f36269043eb55f1287a5a19ba2216afeab88cd46cbcfb88e9905160405180910390a35050505050565b60026020526000908152604090205460ff1681565b600160209081526000928352604080842090915290825290205460ff1681565b6000805b600554811015610833578380156107fb575060008181526020819052604090206003015460ff16155b8061081f575082801561081f575060008181526020819052604090206003015460ff165b1561082b576001820191505b6001016107d2565b5092915050565b30600160a060020a031633600160a060020a031614151561085a57600080fd5b600160a060020a038116600090815260026020526040902054819060ff161561088257600080fd5b81600160a060020a038116151561089857600080fd5b60038054905060010160045460328211806108b257508181115b806108bb575080155b806108c4575081155b156108ce57600080fd5b600160a060020a0385166000908152600260205260409020805460ff191660019081179091556003805490918101610906838261133a565b506000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387169081179091557ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a25050505050565b600080805b6003548110156109eb576000848152600160205260408120600380549192918490811061099c57fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156109d0576001820191505b6004548214156109e357600192506109eb565b600101610973565b5050919050565b6000805b600354811015610a5b5760008381526001602052604081206003805491929184908110610a1f57fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff1615610a53576001820191505b6001016109f6565b50919050565b6000602081905290815260409020805460018201546003830154600160a060020a0390921692909160029091019060ff1684565b610a9d61135e565b6003805480602002602001604051908101604052809291908181526020018280548015610af357602002820191906000526020600020905b8154600160a060020a03168152600190910190602001808311610ad5575b505050505090505b90565b610b0661135e565b610b0e61135e565b600080600554604051805910610b215750595b9080825280602002602001820160405250925060009150600090505b600554811015610bb657858015610b66575060008181526020819052604090206003015460ff16155b80610b8a5750848015610b8a575060008181526020819052604090206003015460ff165b15610bae5780838381518110610b9c57fe5b60209081029091010152600191909101905b600101610b3d565b878703604051805910610bc65750595b908082528060200260200182016040525093508790505b86811015610c1b57828181518110610bf157fe5b906020019060200201518489830381518110610c0957fe5b60209081029091010152600101610bdd565b505050949350505050565b610c2e61135e565b610c3661135e565b6003546000908190604051805910610c4b5750595b9080825280602002602001820160405250925060009150600090505b600354811015610d135760008581526001602052604081206003805491929184908110610c9057fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff1615610d0b576003805482908110610ccb57fe5b600091825260209091200154600160a060020a0316838381518110610cec57fe5b600160a060020a03909216602092830290910190910152600191909101905b600101610c67565b81604051805910610d215750595b90808252806020026020018201604052509350600090505b81811015610d8257828181518110610d4d57fe5b90602001906020020151848281518110610d6357fe5b600160a060020a03909216602092830290910190910152600101610d39565b505050919050565b60055481565b30600160a060020a031633600160a060020a0316141515610db057600080fd5b600354816032821180610dc257508181115b80610dcb575080155b80610dd4575081155b15610dde57600080fd5b60048390557fa3f1ee9126a074d9326c682f561767f710e927faa811f7a99829d49dc421797a8360405190815260200160405180910390a1505050565b33600160a060020a03811660009081526002602052604090205460ff161515610e4357600080fd5b6000828152602081905260409020548290600160a060020a03161515610e6857600080fd5b600083815260016020908152604080832033600160a060020a038116855292529091205484919060ff1615610e9c57600080fd5b6000858152600160208181526040808420600160a060020a033316808652925292839020805460ff191690921790915586917f4a504a94899432a9846e1aa406dceb1bcfd538bb839071d49d1e5e23f5be30ef905160405180910390a3610f02856110e1565b5050505050565b6000610f1684848461123d565b9050610f2181610e1b565b9392505050565b603281565b60045481565b600030600160a060020a031633600160a060020a0316141515610f5557600080fd5b600160a060020a038316600090815260026020526040902054839060ff161515610f7e57600080fd5b600160a060020a038316600090815260026020526040902054839060ff1615610fa657600080fd5b600092505b60035483101561103f5784600160a060020a0316600384815481101515610fce57fe5b600091825260209091200154600160a060020a031614156110345783600384815481101515610ff957fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039290921691909117905561103f565b600190920191610fab565b600160a060020a03808616600081815260026020526040808220805460ff199081169091559388168252908190208054909316600117909255907f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b90905160405180910390a283600160a060020a03167ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a25050505050565b600081815260208190526040812060030154829060ff161561110257600080fd5b61110b8361096e565b15611238576000838152602081905260409081902060038101805460ff19166001908117909155815490820154919450600160a060020a03169160028501905180828054600181600116156101000203166002900480156111ad5780601f10611182576101008083540402835291602001916111ad565b820191906000526020600020905b81548152906001019060200180831161119057829003601f168201915b505091505060006040518083038185876187965a03f192505050156111fe57827f33e13ecb54c3076d8e8bb8c2881800a4d972b792045ffae98fdf46df365fed7560405160405180910390a2611238565b827f526441bb6c1aba3c9a4a6ca1d6545da9c2333c8c48343ef398eb858d72b7923660405160405180910390a260038201805460ff191690555b505050565b600083600160a060020a038116151561125557600080fd5b600554915060806040519081016040908152600160a060020a0387168252602080830187905281830186905260006060840181905285815290819052208151815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0391909116178155602082015181600101556040820151816002019080516112e0929160200190611370565b506060820151600391909101805460ff191691151591909117905550600580546001019055817fc0ba8fe4b176c1714197d43b9cc6bcf797a4a7461c5fe8d0ef6e184ae7601e5160405160405180910390a2509392505050565b815481835581811511611238576000838152602090206112389181019083016113ee565b60206040519081016040526000815290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106113b157805160ff19168380011785556113de565b828001600101855582156113de579182015b828111156113de5782518255916020019190600101906113c3565b506113ea9291506113ee565b5090565b610afb91905b808211156113ea57600081556001016113f45600a165627a7a72305820832e3b12951074a687a287c7ba5d42a43b7721bfb606c59825a478c86fd05b63002900000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000ec84aec2f4fe5790728fb6bbda1ef6d0b30351
Deployed Bytecode
0x60606040526004361061011c5763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663025e7c278114610165578063173825d91461019757806320ea8d86146101b65780632f54bf6e146101cc5780633411c81c146101ff57806354741525146102215780637065cb4814610250578063784547a71461026f5780638b51d13f146102855780639ace38c21461029b578063a0e67e2b1461035a578063a8abe69a146103c0578063b5dc40c3146103e3578063b77bf600146103f9578063ba51a6df1461040c578063c01a8c8414610422578063c642747414610438578063d74f8edd1461049d578063dc8452cd146104b0578063e20056e6146104c3578063ee22610b146104e8575b60003411156101635733600160a060020a03167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c3460405190815260200160405180910390a25b005b341561017057600080fd5b61017b6004356104fe565b604051600160a060020a03909116815260200160405180910390f35b34156101a257600080fd5b610163600160a060020a0360043516610526565b34156101c157600080fd5b6101636004356106bb565b34156101d757600080fd5b6101eb600160a060020a0360043516610799565b604051901515815260200160405180910390f35b341561020a57600080fd5b6101eb600435600160a060020a03602435166107ae565b341561022c57600080fd5b61023e600435151560243515156107ce565b60405190815260200160405180910390f35b341561025b57600080fd5b610163600160a060020a036004351661083a565b341561027a57600080fd5b6101eb60043561096e565b341561029057600080fd5b61023e6004356109f2565b34156102a657600080fd5b6102b1600435610a61565b604051600160a060020a03851681526020810184905281151560608201526080604082018181528454600260001961010060018416150201909116049183018290529060a0830190859080156103485780601f1061031d57610100808354040283529160200191610348565b820191906000526020600020905b81548152906001019060200180831161032b57829003601f168201915b50509550505050505060405180910390f35b341561036557600080fd5b61036d610a95565b60405160208082528190810183818151815260200191508051906020019060200280838360005b838110156103ac578082015183820152602001610394565b505050509050019250505060405180910390f35b34156103cb57600080fd5b61036d60043560243560443515156064351515610afe565b34156103ee57600080fd5b61036d600435610c26565b341561040457600080fd5b61023e610d8a565b341561041757600080fd5b610163600435610d90565b341561042d57600080fd5b610163600435610e1b565b341561044357600080fd5b61023e60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610f0995505050505050565b34156104a857600080fd5b61023e610f28565b34156104bb57600080fd5b61023e610f2d565b34156104ce57600080fd5b610163600160a060020a0360043581169060243516610f33565b34156104f357600080fd5b6101636004356110e1565b600380548290811061050c57fe5b600091825260209091200154600160a060020a0316905081565b600030600160a060020a031633600160a060020a031614151561054857600080fd5b600160a060020a038216600090815260026020526040902054829060ff16151561057157600080fd5b600160a060020a0383166000908152600260205260408120805460ff1916905591505b600354600019018210156106545782600160a060020a03166003838154811015156105bb57fe5b600091825260209091200154600160a060020a03161415610649576003805460001981019081106105e857fe5b60009182526020909120015460038054600160a060020a03909216918490811061060e57fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055610654565b600190910190610594565b600380546000190190610667908261133a565b5060035460045411156106805760035461068090610d90565b82600160a060020a03167f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9060405160405180910390a2505050565b33600160a060020a03811660009081526002602052604090205460ff1615156106e357600080fd5b600082815260016020908152604080832033600160a060020a038116855292529091205483919060ff16151561071857600080fd5b600084815260208190526040902060030154849060ff161561073957600080fd5b6000858152600160209081526040808320600160a060020a033316808552925291829020805460ff1916905586917ff6a317157440607f36269043eb55f1287a5a19ba2216afeab88cd46cbcfb88e9905160405180910390a35050505050565b60026020526000908152604090205460ff1681565b600160209081526000928352604080842090915290825290205460ff1681565b6000805b600554811015610833578380156107fb575060008181526020819052604090206003015460ff16155b8061081f575082801561081f575060008181526020819052604090206003015460ff165b1561082b576001820191505b6001016107d2565b5092915050565b30600160a060020a031633600160a060020a031614151561085a57600080fd5b600160a060020a038116600090815260026020526040902054819060ff161561088257600080fd5b81600160a060020a038116151561089857600080fd5b60038054905060010160045460328211806108b257508181115b806108bb575080155b806108c4575081155b156108ce57600080fd5b600160a060020a0385166000908152600260205260409020805460ff191660019081179091556003805490918101610906838261133a565b506000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387169081179091557ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a25050505050565b600080805b6003548110156109eb576000848152600160205260408120600380549192918490811061099c57fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156109d0576001820191505b6004548214156109e357600192506109eb565b600101610973565b5050919050565b6000805b600354811015610a5b5760008381526001602052604081206003805491929184908110610a1f57fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff1615610a53576001820191505b6001016109f6565b50919050565b6000602081905290815260409020805460018201546003830154600160a060020a0390921692909160029091019060ff1684565b610a9d61135e565b6003805480602002602001604051908101604052809291908181526020018280548015610af357602002820191906000526020600020905b8154600160a060020a03168152600190910190602001808311610ad5575b505050505090505b90565b610b0661135e565b610b0e61135e565b600080600554604051805910610b215750595b9080825280602002602001820160405250925060009150600090505b600554811015610bb657858015610b66575060008181526020819052604090206003015460ff16155b80610b8a5750848015610b8a575060008181526020819052604090206003015460ff165b15610bae5780838381518110610b9c57fe5b60209081029091010152600191909101905b600101610b3d565b878703604051805910610bc65750595b908082528060200260200182016040525093508790505b86811015610c1b57828181518110610bf157fe5b906020019060200201518489830381518110610c0957fe5b60209081029091010152600101610bdd565b505050949350505050565b610c2e61135e565b610c3661135e565b6003546000908190604051805910610c4b5750595b9080825280602002602001820160405250925060009150600090505b600354811015610d135760008581526001602052604081206003805491929184908110610c9057fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff1615610d0b576003805482908110610ccb57fe5b600091825260209091200154600160a060020a0316838381518110610cec57fe5b600160a060020a03909216602092830290910190910152600191909101905b600101610c67565b81604051805910610d215750595b90808252806020026020018201604052509350600090505b81811015610d8257828181518110610d4d57fe5b90602001906020020151848281518110610d6357fe5b600160a060020a03909216602092830290910190910152600101610d39565b505050919050565b60055481565b30600160a060020a031633600160a060020a0316141515610db057600080fd5b600354816032821180610dc257508181115b80610dcb575080155b80610dd4575081155b15610dde57600080fd5b60048390557fa3f1ee9126a074d9326c682f561767f710e927faa811f7a99829d49dc421797a8360405190815260200160405180910390a1505050565b33600160a060020a03811660009081526002602052604090205460ff161515610e4357600080fd5b6000828152602081905260409020548290600160a060020a03161515610e6857600080fd5b600083815260016020908152604080832033600160a060020a038116855292529091205484919060ff1615610e9c57600080fd5b6000858152600160208181526040808420600160a060020a033316808652925292839020805460ff191690921790915586917f4a504a94899432a9846e1aa406dceb1bcfd538bb839071d49d1e5e23f5be30ef905160405180910390a3610f02856110e1565b5050505050565b6000610f1684848461123d565b9050610f2181610e1b565b9392505050565b603281565b60045481565b600030600160a060020a031633600160a060020a0316141515610f5557600080fd5b600160a060020a038316600090815260026020526040902054839060ff161515610f7e57600080fd5b600160a060020a038316600090815260026020526040902054839060ff1615610fa657600080fd5b600092505b60035483101561103f5784600160a060020a0316600384815481101515610fce57fe5b600091825260209091200154600160a060020a031614156110345783600384815481101515610ff957fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039290921691909117905561103f565b600190920191610fab565b600160a060020a03808616600081815260026020526040808220805460ff199081169091559388168252908190208054909316600117909255907f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b90905160405180910390a283600160a060020a03167ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a25050505050565b600081815260208190526040812060030154829060ff161561110257600080fd5b61110b8361096e565b15611238576000838152602081905260409081902060038101805460ff19166001908117909155815490820154919450600160a060020a03169160028501905180828054600181600116156101000203166002900480156111ad5780601f10611182576101008083540402835291602001916111ad565b820191906000526020600020905b81548152906001019060200180831161119057829003601f168201915b505091505060006040518083038185876187965a03f192505050156111fe57827f33e13ecb54c3076d8e8bb8c2881800a4d972b792045ffae98fdf46df365fed7560405160405180910390a2611238565b827f526441bb6c1aba3c9a4a6ca1d6545da9c2333c8c48343ef398eb858d72b7923660405160405180910390a260038201805460ff191690555b505050565b600083600160a060020a038116151561125557600080fd5b600554915060806040519081016040908152600160a060020a0387168252602080830187905281830186905260006060840181905285815290819052208151815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0391909116178155602082015181600101556040820151816002019080516112e0929160200190611370565b506060820151600391909101805460ff191691151591909117905550600580546001019055817fc0ba8fe4b176c1714197d43b9cc6bcf797a4a7461c5fe8d0ef6e184ae7601e5160405160405180910390a2509392505050565b815481835581811511611238576000838152602090206112389181019083016113ee565b60206040519081016040526000815290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106113b157805160ff19168380011785556113de565b828001600101855582156113de579182015b828111156113de5782518255916020019190600101906113c3565b506113ea9291506113ee565b5090565b610afb91905b808211156113ea57600081556001016113f45600a165627a7a72305820832e3b12951074a687a287c7ba5d42a43b7721bfb606c59825a478c86fd05b630029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000ec84aec2f4fe5790728fb6bbda1ef6d0b30351
-----Decoded View---------------
Arg [0] : _owners (address[]): 0x00eC84AeC2f4fe5790728fB6BbDa1Ef6d0b30351
Arg [1] : _required (uint256): 1
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 00000000000000000000000000ec84aec2f4fe5790728fb6bbda1ef6d0b30351
Swarm Source
bzzr://832e3b12951074a687a287c7ba5d42a43b7721bfb606c59825a478c86fd05b63
Loading...
Loading
Loading...
Loading
Net Worth in USD
$16.24
Net Worth in ETH
0.008195
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $1,982.04 | 0.00819496 | $16.24 |
Loading...
Loading
Loading...
Loading
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.