ETH Price: $2,026.40 (-1.32%)
 

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Execute Signatur...245237632026-02-24 2:26:592 days ago1771900019IN
0xC362bb39...321cBDd7D
0 ETH0.0013882910
Execute Signatur...245236972026-02-24 2:13:472 days ago1771899227IN
0xC362bb39...321cBDd7D
0 ETH0.0012174110
Execute Signatur...243665512026-02-02 3:40:4724 days ago1770003647IN
0xC362bb39...321cBDd7D
0 ETH0.0013881710
Execute Signatur...243554022026-01-31 14:17:4726 days ago1769869067IN
0xC362bb39...321cBDd7D
0 ETH0.0013884110
Execute Signatur...243441612026-01-30 0:41:2328 days ago1769733683IN
0xC362bb39...321cBDd7D
0 ETH0.0013882910
Execute Signatur...243141652026-01-25 20:17:3532 days ago1769372255IN
0xC362bb39...321cBDd7D
0 ETH0.0013882910
Execute Signatur...242290812026-01-13 23:31:4744 days ago1768347107IN
0xC362bb39...321cBDd7D
0 ETH0.0013884110
Execute Signatur...241328042025-12-31 13:07:4757 days ago1767186467IN
0xC362bb39...321cBDd7D
0 ETH0.0013882910
Execute Signatur...240495452025-12-19 22:12:2369 days ago1766182343IN
0xC362bb39...321cBDd7D
0 ETH0.0013882910
Execute Signatur...237684142025-11-10 10:57:59108 days ago1762772279IN
0xC362bb39...321cBDd7D
0 ETH0.0012174110
Execute Signatur...235963552025-10-17 9:02:11132 days ago1760691731IN
0xC362bb39...321cBDd7D
0 ETH0.0012174110
Execute Signatur...234897482025-10-02 11:17:47147 days ago1759403867IN
0xC362bb39...321cBDd7D
0 ETH0.0013880510
Execute Signatur...234694472025-09-29 15:08:47150 days ago1759158527IN
0xC362bb39...321cBDd7D
0 ETH0.0012172910
Execute Signatur...232620072025-08-31 15:24:59179 days ago1756653899IN
0xC362bb39...321cBDd7D
0 ETH0.0013885310
Execute Signatur...232547652025-08-30 15:11:47180 days ago1756566707IN
0xC362bb39...321cBDd7D
0 ETH0.0013885310
Execute Signatur...232475162025-08-29 14:55:35181 days ago1756479335IN
0xC362bb39...321cBDd7D
0 ETH0.0013884110
Execute Signatur...231345792025-08-13 20:40:47197 days ago1755117647IN
0xC362bb39...321cBDd7D
0 ETH0.0012172910
Execute Signatur...230736592025-08-05 8:26:35205 days ago1754382395IN
0xC362bb39...321cBDd7D
0 ETH0.0013885310
Execute Signatur...229252012025-07-15 14:33:11226 days ago1752589991IN
0xC362bb39...321cBDd7D
0 ETH0.0013884110
Execute Signatur...228787822025-07-09 2:54:47232 days ago1752029687IN
0xC362bb39...321cBDd7D
0 ETH0.0013884110
Execute Signatur...228666252025-07-07 10:08:59234 days ago1751882939IN
0xC362bb39...321cBDd7D
0 ETH0.0013885310
Execute Signatur...228500682025-07-05 2:35:23236 days ago1751682923IN
0xC362bb39...321cBDd7D
0 ETH0.0013884110
Execute Signatur...223648882025-04-28 3:30:59304 days ago1745811059IN
0xC362bb39...321cBDd7D
0 ETH0.0013884110
Execute Signatur...223263532025-04-22 18:30:47310 days ago1745346647IN
0xC362bb39...321cBDd7D
0 ETH0.0012172910
Execute Signatur...223263322025-04-22 18:26:35310 days ago1745346395IN
0xC362bb39...321cBDd7D
0 ETH0.0013882910
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
-111833302020-11-03 9:17:261941 days ago1604395046
0xC362bb39...321cBDd7D
0.015 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

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

Contract Name:
EternalStorageProxy

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-07-30
*/

/**
 *Submitted for verification at Etherscan.io on 2018-10-18
*/

pragma solidity 0.4.24;

// File: contracts/upgradeability/EternalStorage.sol

/**
 * @title EternalStorage
 * @dev This contract holds all the necessary state variables to carry out the storage of any contract.
 */
contract EternalStorage {

    mapping(bytes32 => uint256) internal uintStorage;
    mapping(bytes32 => string) internal stringStorage;
    mapping(bytes32 => address) internal addressStorage;
    mapping(bytes32 => bytes) internal bytesStorage;
    mapping(bytes32 => bool) internal boolStorage;
    mapping(bytes32 => int256) internal intStorage;

}

// File: contracts/upgradeability/UpgradeabilityOwnerStorage.sol

/**
 * @title UpgradeabilityOwnerStorage
 * @dev This contract keeps track of the upgradeability owner
 */
contract UpgradeabilityOwnerStorage {
    // Owner of the contract
    address private _upgradeabilityOwner;

    /**
    * @dev Tells the address of the owner
    * @return the address of the owner
    */
    function upgradeabilityOwner() public view returns (address) {
        return _upgradeabilityOwner;
    }

    /**
    * @dev Sets the address of the owner
    */
    function setUpgradeabilityOwner(address newUpgradeabilityOwner) internal {
        _upgradeabilityOwner = newUpgradeabilityOwner;
    }
}

// File: contracts/upgradeability/Proxy.sol

/**
 * @title Proxy
 * @dev Gives the possibility to delegate any call to a foreign implementation.
 */
contract Proxy {

  /**
  * @dev Tells the address of the implementation where every call will be delegated.
  * @return address of the implementation to which it will be delegated
  */
    function implementation() public view returns (address);

  /**
  * @dev Fallback function allowing to perform a delegatecall to the given implementation.
  * This function will return whatever the implementation call returns
  */
    function () payable public {
        address _impl = implementation();
        require(_impl != address(0));
        assembly {
            /*
                0x40 is the "free memory slot", meaning a pointer to next slot of empty memory. mload(0x40)
                loads the data in the free memory slot, so `ptr` is a pointer to the next slot of empty
                memory. It's needed because we're going to write the return data of delegatecall to the
                free memory slot.
            */
            let ptr := mload(0x40)
            /*
                `calldatacopy` is copy calldatasize bytes from calldata
                First argument is the destination to which data is copied(ptr)
                Second argument specifies the start position of the copied data.
                    Since calldata is sort of its own unique location in memory,
                    0 doesn't refer to 0 in memory or 0 in storage - it just refers to the zeroth byte of calldata.
                    That's always going to be the zeroth byte of the function selector.
                Third argument, calldatasize, specifies how much data will be copied.
                    calldata is naturally calldatasize bytes long (same thing as msg.data.length)
            */
            calldatacopy(ptr, 0, calldatasize)
            /*
                delegatecall params explained:
                gas: the amount of gas to provide for the call. `gas` is an Opcode that gives
                    us the amount of gas still available to execution

                _impl: address of the contract to delegate to

                ptr: to pass copied data

                calldatasize: loads the size of `bytes memory data`, same as msg.data.length

                0, 0: These are for the `out` and `outsize` params. Because the output could be dynamic,
                        these are set to 0, 0 so the output data will not be written to memory. The output
                        data will be read using `returndatasize` and `returdatacopy` instead.

                result: This will be 0 if the call fails and 1 if it succeeds
            */
            let result := delegatecall(gas, _impl, ptr, calldatasize, 0, 0)
            /*

            */
            /*
                ptr current points to the value stored at 0x40,
                because we assigned it like ptr := mload(0x40).
                Because we use 0x40 as a free memory pointer,
                we want to make sure that the next time we want to allocate memory,
                we aren't overwriting anything important.
                So, by adding ptr and returndatasize,
                we get a memory location beyond the end of the data we will be copying to ptr.
                We place this in at 0x40, and any reads from 0x40 will now read from free memory
            */
            mstore(0x40, add(ptr, returndatasize))
            /*
                `returndatacopy` is an Opcode that copies the last return data to a slot. `ptr` is the
                    slot it will copy to, 0 means copy from the beginning of the return data, and size is
                    the amount of data to copy.
                `returndatasize` is an Opcode that gives us the size of the last return data. In this case, that is the size of the data returned from delegatecall
            */
            returndatacopy(ptr, 0, returndatasize)

            /*
                if `result` is 0, revert.
                if `result` is 1, return `size` amount of data from `ptr`. This is the data that was
                copied to `ptr` from the delegatecall return data
            */
            switch result
            case 0 { revert(ptr, returndatasize) }
            default { return(ptr, returndatasize) }
        }
    }
}

// File: contracts/upgradeability/UpgradeabilityStorage.sol

/**
 * @title UpgradeabilityStorage
 * @dev This contract holds all the necessary state variables to support the upgrade functionality
 */
contract UpgradeabilityStorage {
    // Version name of the current implementation
    uint256 internal _version;

    // Address of the current implementation
    address internal _implementation;

    /**
    * @dev Tells the version name of the current implementation
    * @return string representing the name of the current version
    */
    function version() public view returns (uint256) {
        return _version;
    }

    /**
    * @dev Tells the address of the current implementation
    * @return address of the current implementation
    */
    function implementation() public view returns (address) {
        return _implementation;
    }
}

// File: contracts/upgradeability/UpgradeabilityProxy.sol

/**
 * @title UpgradeabilityProxy
 * @dev This contract represents a proxy where the implementation address to which it will delegate can be upgraded
 */
contract UpgradeabilityProxy is Proxy, UpgradeabilityStorage {
    /**
    * @dev This event will be emitted every time the implementation gets upgraded
    * @param version representing the version name of the upgraded implementation
    * @param implementation representing the address of the upgraded implementation
    */
    event Upgraded(uint256 version, address indexed implementation);

    /**
    * @dev Upgrades the implementation address
    * @param version representing the version name of the new implementation to be set
    * @param implementation representing the address of the new implementation to be set
    */
    function _upgradeTo(uint256 version, address implementation) internal {
        require(_implementation != implementation);
        require(version > _version);
        _version = version;
        _implementation = implementation;
        emit Upgraded(version, implementation);
    }
}

// File: contracts/upgradeability/OwnedUpgradeabilityProxy.sol

/**
 * @title OwnedUpgradeabilityProxy
 * @dev This contract combines an upgradeability proxy with basic authorization control functionalities
 */
contract OwnedUpgradeabilityProxy is UpgradeabilityOwnerStorage, UpgradeabilityProxy {
  /**
  * @dev Event to show ownership has been transferred
  * @param previousOwner representing the address of the previous owner
  * @param newOwner representing the address of the new owner
  */
    event ProxyOwnershipTransferred(address previousOwner, address newOwner);

    /**
    * @dev the constructor sets the original owner of the contract to the sender account.
    */
    constructor() public {
        setUpgradeabilityOwner(msg.sender);
    }

    /**
    * @dev Throws if called by any account other than the owner.
    */
    modifier onlyProxyOwner() {
        require(msg.sender == proxyOwner());
        _;
    }

    /**
    * @dev Tells the address of the proxy owner
    * @return the address of the proxy owner
    */
    function proxyOwner() public view returns (address) {
        return upgradeabilityOwner();
    }

    /**
    * @dev Allows the current owner to transfer control of the contract to a newOwner.
    * @param newOwner The address to transfer ownership to.
    */
    function transferProxyOwnership(address newOwner) public onlyProxyOwner {
        require(newOwner != address(0));
        emit ProxyOwnershipTransferred(proxyOwner(), newOwner);
        setUpgradeabilityOwner(newOwner);
    }

    /**
    * @dev Allows the upgradeability owner to upgrade the current version of the proxy.
    * @param version representing the version name of the new implementation to be set.
    * @param implementation representing the address of the new implementation to be set.
    */
    function upgradeTo(uint256 version, address implementation) public onlyProxyOwner {
        _upgradeTo(version, implementation);
    }

    /**
    * @dev Allows the upgradeability owner to upgrade the current version of the proxy and call the new implementation
    * to initialize whatever is needed through a low level call.
    * @param version representing the version name of the new implementation to be set.
    * @param implementation representing the address of the new implementation to be set.
    * @param data represents the msg.data to bet sent in the low level call. This parameter may include the function
    * signature of the implementation to be called with the needed payload
    */
    function upgradeToAndCall(uint256 version, address implementation, bytes data) payable public onlyProxyOwner {
        upgradeTo(version, implementation);
        require(address(this).call.value(msg.value)(data));
    }
}

// File: contracts/upgradeability/EternalStorageProxy.sol

/**
 * @title EternalStorageProxy
 * @dev This proxy holds the storage of the token contract and delegates every call to the current implementation set.
 * Besides, it allows to upgrade the token's behaviour towards further implementations, and provides basic
 * authorization control functionalities
 */
contract EternalStorageProxy is OwnedUpgradeabilityProxy, EternalStorage {}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"proxyOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"version","type":"uint256"},{"name":"implementation","type":"address"}],"name":"upgradeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"upgradeabilityOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"version","type":"uint256"},{"name":"implementation","type":"address"},{"name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferProxyOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"previousOwner","type":"address"},{"indexed":false,"name":"newOwner","type":"address"}],"name":"ProxyOwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"version","type":"uint256"},{"indexed":true,"name":"implementation","type":"address"}],"name":"Upgraded","type":"event"}]

0x60806040526100163364010000000061001b810204565b61003d565b60008054600160a060020a031916600160a060020a0392909216919091179055565b6104718061004c6000396000f3006080604052600436106100825763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663025313a281146100cd5780633ad06d16146100fe57806354fd4d50146101245780635c60da1b1461014b5780636fde820214610160578063a9c45fcb14610175578063f1739cae146101d1575b600061008c6101f2565b9050600160a060020a03811615156100a357600080fd5b60405136600082376000803683855af43d82016040523d6000833e8080156100c9573d83f35b3d83fd5b3480156100d957600080fd5b506100e2610201565b60408051600160a060020a039092168252519081900360200190f35b34801561010a57600080fd5b50610122600435600160a060020a0360243516610210565b005b34801561013057600080fd5b5061013961023a565b60408051918252519081900360200190f35b34801561015757600080fd5b506100e26101f2565b34801561016c57600080fd5b506100e2610240565b604080516020600460443581810135601f81018490048402850184019095528484526101229482359460248035600160a060020a03169536959460649492019190819084018382808284375094975061024f9650505050505050565b3480156101dd57600080fd5b50610122600160a060020a03600435166102fd565b600254600160a060020a031690565b600061020b610240565b905090565b610218610201565b600160a060020a0316331461022c57600080fd5b6102368282610385565b5050565b60015490565b600054600160a060020a031690565b610257610201565b600160a060020a0316331461026b57600080fd5b6102758383610210565b30600160a060020a0316348260405180828051906020019080838360005b838110156102ab578181015183820152602001610293565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af19250505015156102f857600080fd5b505050565b610305610201565b600160a060020a0316331461031957600080fd5b600160a060020a038116151561032e57600080fd5b7f5a3e66efaa1e445ebd894728a69d6959842ea1e97bd79b892797106e270efcd9610357610201565b60408051600160a060020a03928316815291841660208301528051918290030190a161038281610416565b50565b600254600160a060020a03828116911614156103a057600080fd5b60015482116103ae57600080fd5b600182905560028054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911681179091556040805184815290517f4289d6195cf3c2d2174adf98d0e19d4d2d08887995b99cb7b100e7ffe795820e9181900360200190a25050565b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058206ccd59b55fbbb52727249fcb29e88c765de851d2423454436d0d6d5e12092fd40029

Deployed Bytecode

0x6080604052600436106100825763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663025313a281146100cd5780633ad06d16146100fe57806354fd4d50146101245780635c60da1b1461014b5780636fde820214610160578063a9c45fcb14610175578063f1739cae146101d1575b600061008c6101f2565b9050600160a060020a03811615156100a357600080fd5b60405136600082376000803683855af43d82016040523d6000833e8080156100c9573d83f35b3d83fd5b3480156100d957600080fd5b506100e2610201565b60408051600160a060020a039092168252519081900360200190f35b34801561010a57600080fd5b50610122600435600160a060020a0360243516610210565b005b34801561013057600080fd5b5061013961023a565b60408051918252519081900360200190f35b34801561015757600080fd5b506100e26101f2565b34801561016c57600080fd5b506100e2610240565b604080516020600460443581810135601f81018490048402850184019095528484526101229482359460248035600160a060020a03169536959460649492019190819084018382808284375094975061024f9650505050505050565b3480156101dd57600080fd5b50610122600160a060020a03600435166102fd565b600254600160a060020a031690565b600061020b610240565b905090565b610218610201565b600160a060020a0316331461022c57600080fd5b6102368282610385565b5050565b60015490565b600054600160a060020a031690565b610257610201565b600160a060020a0316331461026b57600080fd5b6102758383610210565b30600160a060020a0316348260405180828051906020019080838360005b838110156102ab578181015183820152602001610293565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af19250505015156102f857600080fd5b505050565b610305610201565b600160a060020a0316331461031957600080fd5b600160a060020a038116151561032e57600080fd5b7f5a3e66efaa1e445ebd894728a69d6959842ea1e97bd79b892797106e270efcd9610357610201565b60408051600160a060020a03928316815291841660208301528051918290030190a161038281610416565b50565b600254600160a060020a03828116911614156103a057600080fd5b60015482116103ae57600080fd5b600182905560028054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911681179091556040805184815290517f4289d6195cf3c2d2174adf98d0e19d4d2d08887995b99cb7b100e7ffe795820e9181900360200190a25050565b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058206ccd59b55fbbb52727249fcb29e88c765de851d2423454436d0d6d5e12092fd40029

Deployed Bytecode Sourcemap

11099:75:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2004:13;2020:16;:14;:16::i;:::-;2004:32;-1:-1:-1;;;;;;2055:19:0;;;;2047:28;;;;;;2513:4;2507:11;3294:12;3291:1;3286:3;3273:34;4225:1;4222;4208:12;4203:3;4196:5;4191:3;4178:49;4915:14;4910:3;4906:24;4900:4;4893:38;5425:14;5422:1;5417:3;5402:38;5707:6;5727:38;;;;5801:14;5796:3;5789:27;5727:38;5748:14;5743:3;5736:27;8979:99;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8979:99:0;;;;;;;;-1:-1:-1;;;;;8979:99:0;;;;;;;;;;;;;;9776:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9776:136:0;;;-1:-1:-1;;;;;9776:136:0;;;;;;;6408:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6408:83:0;;;;;;;;;;;;;;;;;;;;6629:97;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6629:97:0;;;;1056:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1056:107:0;;;;10497:223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10497:223:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10497:223:0;;-1:-1:-1;10497:223:0;;-1:-1:-1;;;;;;;10497:223:0;9252:230;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9252:230:0;-1:-1:-1;;;;;9252:230:0;;;;;6629:97;6703:15;;-1:-1:-1;;;;;6703:15:0;6629:97;:::o;8979:99::-;9022:7;9049:21;:19;:21::i;:::-;9042:28;;8979:99;:::o;9776:136::-;8826:12;:10;:12::i;:::-;-1:-1:-1;;;;;8812:26:0;:10;:26;8804:35;;;;;;9869;9880:7;9889:14;9869:10;:35::i;:::-;9776:136;;:::o;6408:83::-;6475:8;;6408:83;:::o;1056:107::-;1108:7;1135:20;-1:-1:-1;;;;;1135:20:0;1056:107;:::o;10497:223::-;8826:12;:10;:12::i;:::-;-1:-1:-1;;;;;8812:26:0;:10;:26;8804:35;;;;;;10617:34;10627:7;10636:14;10617:9;:34::i;:::-;10678:4;-1:-1:-1;;;;;10670:18:0;10695:9;10706:4;10670:41;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;10670:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10662:50;;;;;;;;10497:223;;;:::o;9252:230::-;8826:12;:10;:12::i;:::-;-1:-1:-1;;;;;8812:26:0;:10;:26;8804:35;;;;;;-1:-1:-1;;;;;9343:22:0;;;;9335:31;;;;;;9382:49;9408:12;:10;:12::i;:::-;9382:49;;;-1:-1:-1;;;;;9382:49:0;;;;;;;;;;;;;;;;;;;;;9442:32;9465:8;9442:22;:32::i;:::-;9252:230;:::o;7603:290::-;7692:15;;-1:-1:-1;;;;;7692:33:0;;;:15;;:33;;7684:42;;;;;;7755:8;;7745:18;;7737:27;;;;;;7775:8;:18;;;7804:15;:32;;-1:-1:-1;;;;;7804:32:0;;-1:-1:-1;;7804:32:0;;;;;;;;7852:33;;;;;;;;;;;;;;;;;7603:290;;:::o;1230:137::-;1314:20;:45;;-1:-1:-1;;1314:45:0;-1:-1:-1;;;;;1314:45:0;;;;;;;;;;1230:137::o

Swarm Source

bzzr://6ccd59b55fbbb52727249fcb29e88c765de851d2423454436d0d6d5e12092fd4

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
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.