ETH Price: $3,211.08 (-10.70%)
Gas: 50 Gwei

Contract

0x48c344f44e2fd359826b2c3f51BfD19C182F8508
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Confirm Transact...57464942018-06-07 7:26:002112 days ago1528356360IN
0x48c344f4...C182F8508
0 ETH0.000743479
Confirm Transact...57462232018-06-07 6:15:342112 days ago1528352134IN
0x48c344f4...C182F8508
0 ETH0.000434828.2
Submit Transacti...57461512018-06-07 5:56:192112 days ago1528350979IN
0x48c344f4...C182F8508
0 ETH0.001231537
Confirm Transact...54143122018-04-10 8:37:392170 days ago1523349459IN
0x48c344f4...C182F8508
0 ETH0.000490195
Confirm Transact...54142472018-04-10 8:22:142170 days ago1523348534IN
0x48c344f4...C182F8508
0 ETH0.00001590.3
Submit Transacti...54140222018-04-10 7:24:442170 days ago1523345084IN
0x48c344f4...C182F8508
0 ETH0.000070370.4
Execute Transact...52823362018-03-19 8:47:512192 days ago1521449271IN
0x48c344f4...C182F8508
0 ETH0.000419464
Execute Transact...52823322018-03-19 8:46:562192 days ago1521449216IN
0x48c344f4...C182F8508
0 ETH0.000347744
Confirm Transact...52822942018-03-19 8:40:132192 days ago1521448813IN
0x48c344f4...C182F8508
0 ETH0.000138316
Confirm Transact...52822882018-03-19 8:38:462192 days ago1521448726IN
0x48c344f4...C182F8508
0 ETH0.000401226
Confirm Transact...52812522018-03-19 4:25:562192 days ago1521433556IN
0x48c344f4...C182F8508
0 ETH0.000317776
Submit Transacti...52809752018-03-19 3:21:162192 days ago1521429676IN
0x48c344f4...C182F8508
0 ETH0.000381862
0x6060604049561332018-01-23 4:29:002247 days ago1516681740IN
 Contract Creation
0 ETH0.005579563

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x46309389...47AdB88f8
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
MultiSigWallet

Compiler Version
v0.4.13+commit.fb4cb1a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-08-08
*/

pragma solidity ^0.4.11;


/// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution.
/// @author Stefan George - <[email protected]>
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 filters 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

Contract ABI

[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"owners","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"removeOwner","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"revokeConfirmation","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"confirmations","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"pending","type":"bool"},{"name":"executed","type":"bool"}],"name":"getTransactionCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"addOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"isConfirmed","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmationCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"getOwners","outputs":[{"name":"","type":"address[]"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmations","outputs":[{"name":"_confirmations","type":"address[]"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transactionCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_required","type":"uint256"}],"name":"changeRequirement","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"confirmTransaction","outputs":[],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"MAX_OWNER_COUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"required","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"},{"name":"newOwner","type":"address"}],"name":"replaceOwner","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"executeTransaction","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_owners","type":"address[]"},{"name":"_required","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"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"}]

Deployed Bytecode

0x6060604052361561011a5763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663025e7c27811461016a578063173825d91461019c57806320ea8d86146101bd5780632f54bf6e146101d55780633411c81c14610208578063547415251461023e5780637065cb481461026d578063784547a71461028e5780638b51d13f146102b85780639ace38c2146102e0578063a0e67e2b1461039f578063a8abe69a14610406578063b5dc40c31461047d578063b77bf600146104e7578063ba51a6df1461050c578063c01a8c8414610524578063c64274741461053c578063d74f8edd146105b3578063dc8452cd146105d8578063e20056e6146105fd578063ee22610b14610624575b6101685b60003411156101655733600160a060020a03167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c3460405190815260200160405180910390a25b5b565b005b341561017557600080fd5b61018060043561063c565b604051600160a060020a03909116815260200160405180910390f35b34156101a757600080fd5b610168600160a060020a036004351661066e565b005b34156101c857600080fd5b61016860043561081f565b005b34156101e057600080fd5b6101f4600160a060020a0360043516610901565b604051901515815260200160405180910390f35b341561021357600080fd5b6101f4600435600160a060020a0360243516610916565b604051901515815260200160405180910390f35b341561024957600080fd5b61025b60043515156024351515610936565b60405190815260200160405180910390f35b341561027857600080fd5b610168600160a060020a03600435166109a5565b005b341561029957600080fd5b6101f4600435610ada565b604051901515815260200160405180910390f35b34156102c357600080fd5b61025b600435610b6e565b60405190815260200160405180910390f35b34156102eb57600080fd5b6102f6600435610bed565b604051600160a060020a03851681526020810184905281151560608201526080604082018181528454600260001961010060018416150201909116049183018290529060a08301908590801561038d5780601f106103625761010080835404028352916020019161038d565b820191906000526020600020905b81548152906001019060200180831161037057829003601f168201915b50509550505050505060405180910390f35b34156103aa57600080fd5b6103b2610c21565b60405160208082528190810183818151815260200191508051906020019060200280838360005b838110156103f25780820151818401525b6020016103d9565b505050509050019250505060405180910390f35b341561041157600080fd5b6103b260043560243560443515156064351515610c8a565b60405160208082528190810183818151815260200191508051906020019060200280838360005b838110156103f25780820151818401525b6020016103d9565b505050509050019250505060405180910390f35b341561048857600080fd5b6103b2600435610db8565b60405160208082528190810183818151815260200191508051906020019060200280838360005b838110156103f25780820151818401525b6020016103d9565b505050509050019250505060405180910390f35b34156104f257600080fd5b61025b610f3a565b60405190815260200160405180910390f35b341561051757600080fd5b610168600435610f40565b005b341561052f57600080fd5b610168600435610fce565b005b341561054757600080fd5b61025b60048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506110c095505050505050565b60405190815260200160405180910390f35b34156105be57600080fd5b61025b6110e0565b60405190815260200160405180910390f35b34156105e357600080fd5b61025b6110e5565b60405190815260200160405180910390f35b341561060857600080fd5b610168600160a060020a03600435811690602435166110eb565b005b341561062f57600080fd5b6101686004356112ac565b005b600380548290811061064a57fe5b906000526020600020900160005b915054906101000a9004600160a060020a031681565b600030600160a060020a031633600160a060020a031614151561069057600080fd5b600160a060020a038216600090815260026020526040902054829060ff1615156106b957600080fd5b600160a060020a0383166000908152600260205260408120805460ff1916905591505b600354600019018210156107b45782600160a060020a031660038381548110151561070357fe5b906000526020600020900160005b9054906101000a9004600160a060020a0316600160a060020a031614156107a85760038054600019810190811061074457fe5b906000526020600020900160005b9054906101000a9004600160a060020a031660038381548110151561077357fe5b906000526020600020900160005b6101000a815481600160a060020a030219169083600160a060020a031602179055506107b4565b5b6001909101906106dc565b6003805460001901906107c7908261150a565b5060035460045411156107e0576003546107e090610f40565b5b82600160a060020a03167f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9060405160405180910390a25b5b505b5050565b33600160a060020a03811660009081526002602052604090205460ff16151561084757600080fd5b600082815260016020908152604080832033600160a060020a038116855292529091205483919060ff16151561087c57600080fd5b600084815260208190526040902060030154849060ff161561089d57600080fd5b6000858152600160209081526040808320600160a060020a033316808552925291829020805460ff1916905586917ff6a317157440607f36269043eb55f1287a5a19ba2216afeab88cd46cbcfb88e9905160405180910390a35b5b505b50505b5050565b60026020526000908152604090205460ff1681565b600160209081526000928352604080842090915290825290205460ff1681565b6000805b60055481101561099d57838015610963575060008181526020819052604090206003015460ff16155b806109875750828015610987575060008181526020819052604090206003015460ff165b5b15610994576001820191505b5b60010161093a565b5b5092915050565b30600160a060020a031633600160a060020a03161415156109c557600080fd5b600160a060020a038116600090815260026020526040902054819060ff16156109ed57600080fd5b81600160a060020a0381161515610a0357600080fd5b6003805490506001016004546032821180610a1d57508181115b80610a26575080155b80610a2f575081155b15610a3957600080fd5b600160a060020a0385166000908152600260205260409020805460ff191660019081179091556003805490918101610a71838261150a565b916000526020600020900160005b8154600160a060020a03808a166101009390930a8381029102199091161790915590507ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a25b5b50505b505b505b50565b600080805b600354811015610b665760008481526001602052604081206003805491929184908110610b0857fe5b906000526020600020900160005b9054600160a060020a036101009290920a900416815260208101919091526040016000205460ff1615610b4a576001820191505b600454821415610b5d5760019250610b66565b5b600101610adf565b5b5050919050565b6000805b600354811015610be65760008381526001602052604081206003805491929184908110610b9b57fe5b906000526020600020900160005b9054600160a060020a036101009290920a900416815260208101919091526040016000205460ff1615610bdd576001820191505b5b600101610b72565b5b50919050565b6000602081905290815260409020805460018201546003830154600160a060020a0390921692909160029091019060ff1684565b610c2961155e565b6003805480602002602001604051908101604052809291908181526020018280548015610c7f57602002820191906000526020600020905b8154600160a060020a03168152600190910190602001808311610c61575b505050505090505b90565b610c9261155e565b610c9a61155e565b600080600554604051805910610cad5750595b908082528060200260200182016040525b50925060009150600090505b600554811015610d4557858015610cf3575060008181526020819052604090206003015460ff16155b80610d175750848015610d17575060008181526020819052604090206003015460ff165b5b15610d3c5780838381518110610d2a57fe5b60209081029091010152600191909101905b5b600101610cca565b878703604051805910610d555750595b908082528060200260200182016040525b5093508790505b86811015610dac57828181518110610d8157fe5b906020019060200201518489830381518110610d9957fe5b602090810290910101525b600101610d6d565b5b505050949350505050565b610dc061155e565b610dc861155e565b6003546000908190604051805910610ddd5750595b908082528060200260200182016040525b50925060009150600090505b600354811015610ec05760008581526001602052604081206003805491929184908110610e2357fe5b906000526020600020900160005b9054600160a060020a036101009290920a900416815260208101919091526040016000205460ff1615610eb7576003805482908110610e6c57fe5b906000526020600020900160005b9054906101000a9004600160a060020a0316838381518110610e9857fe5b600160a060020a03909216602092830290910190910152600191909101905b5b600101610dfa565b81604051805910610ece5750595b908082528060200260200182016040525b509350600090505b81811015610f3157828181518110610efb57fe5b90602001906020020151848281518110610f1157fe5b600160a060020a039092166020928302909101909101525b600101610ee7565b5b505050919050565b60055481565b30600160a060020a031633600160a060020a0316141515610f6057600080fd5b600354816032821180610f7257508181115b80610f7b575080155b80610f84575081155b15610f8e57600080fd5b60048390557fa3f1ee9126a074d9326c682f561767f710e927faa811f7a99829d49dc421797a8360405190815260200160405180910390a15b5b50505b50565b33600160a060020a03811660009081526002602052604090205460ff161515610ff657600080fd5b6000828152602081905260409020548290600160a060020a0316151561101b57600080fd5b600083815260016020908152604080832033600160a060020a038116855292529091205484919060ff161561104f57600080fd5b6000858152600160208181526040808420600160a060020a033316808652925292839020805460ff191690921790915586917f4a504a94899432a9846e1aa406dceb1bcfd538bb839071d49d1e5e23f5be30ef905160405180910390a36108f7856112ac565b5b5b50505b505b5050565b60006110cd84848461140b565b90506110d881610fce565b5b9392505050565b603281565b60045481565b600030600160a060020a031633600160a060020a031614151561110d57600080fd5b600160a060020a038316600090815260026020526040902054839060ff16151561113657600080fd5b600160a060020a038316600090815260026020526040902054839060ff161561115e57600080fd5b600092505b6003548310156112065784600160a060020a031660038481548110151561118657fe5b906000526020600020900160005b9054906101000a9004600160a060020a0316600160a060020a031614156111fa57836003848154811015156111c557fe5b906000526020600020900160005b6101000a815481600160a060020a030219169083600160a060020a03160217905550611206565b5b600190920191611163565b600160a060020a03808616600081815260026020526040808220805460ff199081169091559388168252908190208054909316600117909255907f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b90905160405180910390a283600160a060020a03167ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a25b5b505b505b505050565b600081815260208190526040812060030154829060ff16156112cd57600080fd5b6112d683610ada565b15610818576000838152602081905260409081902060038101805460ff19166001908117909155815490820154919450600160a060020a03169160028501905180828054600181600116156101000203166002900480156113785780601f1061134d57610100808354040283529160200191611378565b820191906000526020600020905b81548152906001019060200180831161135b57829003601f168201915b505091505060006040518083038185876187965a03f192505050156113c957827f33e13ecb54c3076d8e8bb8c2881800a4d972b792045ffae98fdf46df365fed7560405160405180910390a2610818565b827f526441bb6c1aba3c9a4a6ca1d6545da9c2333c8c48343ef398eb858d72b7923660405160405180910390a260038201805460ff191690555b5b5b5b505050565b600083600160a060020a038116151561142357600080fd5b600554915060806040519081016040908152600160a060020a0387168252602080830187905281830186905260006060840181905285815290819052208151815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0391909116178155602082015181600101556040820151816002019080516114ae929160200190611582565b506060820151600391909101805460ff191691151591909117905550600580546001019055817fc0ba8fe4b176c1714197d43b9cc6bcf797a4a7461c5fe8d0ef6e184ae7601e5160405160405180910390a25b5b509392505050565b81548183558181151161081857600083815260209020610818918101908301611601565b5b505050565b81548183558181151161081857600083815260209020610818918101908301611601565b5b505050565b60206040519081016040526000815290565b60206040519081016040526000815290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106115c357805160ff19168380011785556115f0565b828001600101855582156115f0579182015b828111156115f05782518255916020019190600101906115d5565b5b506115fd929150611601565b5090565b610c8791905b808211156115fd5760008155600101611607565b5090565b905600a165627a7a72305820465c8a5206a91c61cc1f1c89f94a1ab9083ae041349931fddc5ae51cf47440c30029

Swarm Source

bzzr://465c8a5206a91c61cc1f1c89f94a1ab9083ae041349931fddc5ae51cf47440c3

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.