ETH Price: $3,383.46 (-1.57%)
Gas: 1 Gwei

Contract

0x69c707d975e8d883920003CC357E556a4732CD03
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Relay Tokens196705202024-04-16 20:47:4773 days ago1713300467IN
0x69c707d9...a4732CD03
0 ETH0.001726718.31040189
Relay Tokens194983932024-03-23 16:08:4797 days ago1711210127IN
0x69c707d9...a4732CD03
0 ETH0.0041861121.93051091
Relay Tokens194961842024-03-23 8:42:4798 days ago1711183367IN
0x69c707d9...a4732CD03
0 ETH0.0037582817.66268256
Relay Tokens194926772024-03-22 20:55:3598 days ago1711140935IN
0x69c707d9...a4732CD03
0 ETH0.0039074220.47046908
Relay Tokens194924252024-03-22 20:04:2398 days ago1711137863IN
0x69c707d9...a4732CD03
0 ETH0.0048396425.35427233
Relay Tokens194916732024-03-22 17:32:1198 days ago1711128731IN
0x69c707d9...a4732CD03
0 ETH0.0058330430.56239797
Relay Tokens194887002024-03-22 7:32:5999 days ago1711092779IN
0x69c707d9...a4732CD03
0 ETH0.0047715224.99421369
Relay Tokens194886672024-03-22 7:26:1199 days ago1711092371IN
0x69c707d9...a4732CD03
0 ETH0.0050539524.87119972
Relay Tokens194853302024-03-21 20:12:5999 days ago1711051979IN
0x69c707d9...a4732CD03
0 ETH0.0069731336.5312984
Relay Tokens194843552024-03-21 16:55:4799 days ago1711040147IN
0x69c707d9...a4732CD03
0 ETH0.0065737934.43489514
Relay Tokens194834742024-03-21 13:56:5999 days ago1711029419IN
0x69c707d9...a4732CD03
0 ETH0.0060633531.76111843
Relay Tokens194824252024-03-21 10:23:5999 days ago1711016639IN
0x69c707d9...a4732CD03
0 ETH0.0059101730.20495079
Relay Tokens194816522024-03-21 7:48:11100 days ago1711007291IN
0x69c707d9...a4732CD03
0 ETH0.0055401529.02048441
Relay Tokens194816032024-03-21 7:38:11100 days ago1711006691IN
0x69c707d9...a4732CD03
0 ETH0.0047353824.80805316
Relay Tokens194814112024-03-21 6:59:35100 days ago1711004375IN
0x69c707d9...a4732CD03
0 ETH0.0054751927.9819375
Relay Tokens194810602024-03-21 5:48:23100 days ago1711000103IN
0x69c707d9...a4732CD03
0 ETH0.0058673927.57480701
Relay Tokens194759052024-03-20 12:27:35100 days ago1710937655IN
0x69c707d9...a4732CD03
0 ETH0.0079253241.5196927
Relay Tokens194755142024-03-20 11:08:47100 days ago1710932927IN
0x69c707d9...a4732CD03
0 ETH0.0055542829.09449125
Relay Tokens194744632024-03-20 7:35:11101 days ago1710920111IN
0x69c707d9...a4732CD03
0 ETH0.0054128926.64076965
Relay Tokens194685612024-03-19 11:41:35101 days ago1710848495IN
0x69c707d9...a4732CD03
0 ETH0.0088733142.65915294
Relay Tokens194598952024-03-18 6:27:11103 days ago1710743231IN
0x69c707d9...a4732CD03
0 ETH0.0044458821.37394583
Relay Tokens194290982024-03-13 22:27:11107 days ago1710368831IN
0x69c707d9...a4732CD03
0 ETH0.010110852.9691564
Relay Tokens194290752024-03-13 22:22:35107 days ago1710368555IN
0x69c707d9...a4732CD03
0 ETH0.0115074860.27860017
Relay Tokens194226262024-03-13 0:37:59108 days ago1710290279IN
0x69c707d9...a4732CD03
0 ETH0.0083324740.06365242
Relay Tokens194211672024-03-12 19:44:35108 days ago1710272675IN
0x69c707d9...a4732CD03
0 ETH0.0120809758.08689732
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
EternalStorageProxy

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion, Audited
/**
 *Submitted for verification at Etherscan.io on 2020-12-02
*/

// File: contracts/upgradeability/EternalStorage.sol

pragma solidity 0.4.24;

/**
 * @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: openzeppelin-solidity/contracts/AddressUtils.sol

pragma solidity ^0.4.24;


/**
 * Utility library of inline functions on addresses
 */
library AddressUtils {

  /**
   * Returns whether the target address is a contract
   * @dev This function will return false if invoked during the constructor of a contract,
   * as the code is not actually created until after the constructor finishes.
   * @param _addr address to check
   * @return whether the target address is a contract
   */
  function isContract(address _addr) internal view returns (bool) {
    uint256 size;
    // XXX Currently there is no better way to check if there is a contract in an address
    // than to check the size of the code at that address.
    // See https://ethereum.stackexchange.com/a/14016/36603
    // for more details about how this works.
    // TODO Check this again before the Serenity release, because all addresses will be
    // contracts then.
    // solium-disable-next-line security/no-inline-assembly
    assembly { size := extcodesize(_addr) }
    return size > 0;
  }

}

// File: contracts/upgradeability/Proxy.sol

pragma solidity 0.4.24;

/**
 * @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
    */
    /* solcov ignore next */
    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() public payable {
        // solhint-disable-previous-line no-complex-fallback
        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

pragma solidity 0.4.24;

/**
 * @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 uint256 representing the name of the current version
    */
    function version() external 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

pragma solidity 0.4.24;




/**
 * @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);

        // This additional check verifies that provided implementation is at least a contract
        require(AddressUtils.isContract(implementation));

        // This additional check guarantees that new version will be at least greater than the privios one,
        // so it is impossible to reuse old versions, or use the last version twice
        require(version > _version);

        _version = version;
        _implementation = implementation;
        emit Upgraded(version, implementation);
    }
}

// File: contracts/upgradeability/UpgradeabilityOwnerStorage.sol

pragma solidity 0.4.24;

/**
 * @title UpgradeabilityOwnerStorage
 * @dev This contract keeps track of the upgradeability owner
 */
contract UpgradeabilityOwnerStorage {
    // Owner of the contract
    address internal _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/OwnedUpgradeabilityProxy.sol

pragma solidity 0.4.24;



/**
 * @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 onlyUpgradeabilityOwner() {
        require(msg.sender == upgradeabilityOwner());
        /* solcov ignore next */
        _;
    }

    /**
    * @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) external onlyUpgradeabilityOwner {
        require(newOwner != address(0));
        emit ProxyOwnershipTransferred(upgradeabilityOwner(), 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 onlyUpgradeabilityOwner {
        _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)
        external
        payable
        onlyUpgradeabilityOwner
    {
        upgradeTo(version, implementation);
        // solhint-disable-next-line avoid-call-value
        require(address(this).call.value(msg.value)(data));
    }
}

// File: contracts/upgradeability/EternalStorageProxy.sol

pragma solidity 0.4.24;



/**
 * @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
 */
// solhint-disable-next-line no-empty-blocks
contract EternalStorageProxy is EternalStorage, OwnedUpgradeabilityProxy {}

Contract Security Audit

Contract ABI

[{"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"}]

60806040526100163364010000000061001b810204565b61003d565b60068054600160a060020a031916600160a060020a0392909216919091179055565b6103e08061004c6000396000f3006080604052600436106100775763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416633ad06d1681146100c257806354fd4d50146100e85780635c60da1b1461010f5780636fde820214610140578063a9c45fcb14610155578063f1739cae14610179575b600061008161019a565b9050600160a060020a038116151561009857600080fd5b60405136600082376000803683855af43d82016040523d6000833e8080156100be573d83f35b3d83fd5b3480156100ce57600080fd5b506100e6600435600160a060020a03602435166101a9565b005b3480156100f457600080fd5b506100fd6101d3565b60408051918252519081900360200190f35b34801561011b57600080fd5b5061012461019a565b60408051600160a060020a039092168252519081900360200190f35b34801561014c57600080fd5b506101246101d9565b6100e6600480359060248035600160a060020a0316916044359182019101356101e8565b34801561018557600080fd5b506100e6600160a060020a0360043516610250565b600854600160a060020a031690565b6101b16101d9565b600160a060020a031633146101c557600080fd5b6101cf82826102d8565b5050565b60075490565b600654600160a060020a031690565b6101f06101d9565b600160a060020a0316331461020457600080fd5b61020e84846101a9565b30600160a060020a03163483836040518083838082843782019150509250505060006040518083038185875af192505050151561024a57600080fd5b50505050565b6102586101d9565b600160a060020a0316331461026c57600080fd5b600160a060020a038116151561028157600080fd5b7f5a3e66efaa1e445ebd894728a69d6959842ea1e97bd79b892797106e270efcd96102aa6101d9565b60408051600160a060020a03928316815291841660208301528051918290030190a16102d58161037d565b50565b600854600160a060020a03828116911614156102f357600080fd5b6102fc816103ac565b151561030757600080fd5b600754821161031557600080fd5b600782905560088054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911681179091556040805184815290517f4289d6195cf3c2d2174adf98d0e19d4d2d08887995b99cb7b100e7ffe795820e9181900360200190a25050565b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000903b11905600a165627a7a7230582078bac02704e0c07980df83f6082a0453ef0e0259d68860b6e0f2c5dc0d11c56c0029

Deployed Bytecode

0x6080604052600436106100775763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416633ad06d1681146100c257806354fd4d50146100e85780635c60da1b1461010f5780636fde820214610140578063a9c45fcb14610155578063f1739cae14610179575b600061008161019a565b9050600160a060020a038116151561009857600080fd5b60405136600082376000803683855af43d82016040523d6000833e8080156100be573d83f35b3d83fd5b3480156100ce57600080fd5b506100e6600435600160a060020a03602435166101a9565b005b3480156100f457600080fd5b506100fd6101d3565b60408051918252519081900360200190f35b34801561011b57600080fd5b5061012461019a565b60408051600160a060020a039092168252519081900360200190f35b34801561014c57600080fd5b506101246101d9565b6100e6600480359060248035600160a060020a0316916044359182019101356101e8565b34801561018557600080fd5b506100e6600160a060020a0360043516610250565b600854600160a060020a031690565b6101b16101d9565b600160a060020a031633146101c557600080fd5b6101cf82826102d8565b5050565b60075490565b600654600160a060020a031690565b6101f06101d9565b600160a060020a0316331461020457600080fd5b61020e84846101a9565b30600160a060020a03163483836040518083838082843782019150509250505060006040518083038185875af192505050151561024a57600080fd5b50505050565b6102586101d9565b600160a060020a0316331461026c57600080fd5b600160a060020a038116151561028157600080fd5b7f5a3e66efaa1e445ebd894728a69d6959842ea1e97bd79b892797106e270efcd96102aa6101d9565b60408051600160a060020a03928316815291841660208301528051918290030190a16102d58161037d565b50565b600854600160a060020a03828116911614156102f357600080fd5b6102fc816103ac565b151561030757600080fd5b600754821161031557600080fd5b600782905560088054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911681179091556040805184815290517f4289d6195cf3c2d2174adf98d0e19d4d2d08887995b99cb7b100e7ffe795820e9181900360200190a25050565b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000903b11905600a165627a7a7230582078bac02704e0c07980df83f6082a0453ef0e0259d68860b6e0f2c5dc0d11c56c0029

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

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
ETH50.92%$0.0034928,186,744.1973$98,363
ETH22.87%$570.5577.4177$44,170.47
ETH7.11%$0.99844313,761.5357$13,740.11
ETH5.42%$0.99986110,461.5652$10,460.11
ETH3.37%$0.7168369,079$6,508.15
ETH2.68%$0.9997475,187.5153$5,186.2
ETH2.23%$14,293.676$4,297.97
ETH1.71%$566.25.8168$3,293.49
ETH1.18%$3,383.460.6753$2,284.79
ETH0.59%$0.0001686,747,233.5732$1,135.42
ETH0.43%$0.05027116,565.0808$832.74
ETH0.39%$1760.5612$760.6
ETH0.18%$0.038999,160.4197$357.16
ETH0.17%$0.668117500$334.06
ETH0.13%$60,8900.00427366$260.22
ETH0.08%$13.8310.8937$150.66
ETH0.08%$21.326.8473$145.99
ETH0.06%$362.210.3187$115.44
ETH0.05%$0.0000175,636,463.8477$96.1
ETH0.05%$0.529054173.208$91.64
ETH0.03%$0.00308920,780.0651$64.18
ETH0.03%$0.0061519,702.2464$59.68
ETH0.03%$0.0059819,045.145$54.1
ETH0.03%$0.00264118,859.628$49.81
ETH0.02%$0.0158052,943.6749$46.52
ETH0.02%$0.072321515$37.25
ETH0.01%$2.5310.001$25.3
ETH0.01%$0.38471156.547$21.75
ETH<0.01%$0.82425322.4944$18.54
ETH<0.01%$0.00122612,044.5918$14.77
ETH<0.01%$0.0097531,326.6102$12.94
ETH<0.01%$0.0053072,326.3421$12.35
ETH<0.01%$0.0079111,551.358$12.27
ETH<0.01%$0.00110610,972.775$12.14
ETH<0.01%$0.0038893,101.8012$12.06
ETH<0.01%$0.17675962.51$11.05
ETH<0.01%$0.063463168.9735$10.72
ETH<0.01%$0.02258466.78$10.54
ETH<0.01%$0.084704100$8.47
ETH<0.01%$0.16615847.3924$7.87
ETH<0.01%$0.0034632,026.3905$7.02
ETH<0.01%$6.681$6.68
ETH<0.01%$0.052397110.0902$5.77
ETH<0.01%$0.016694324.3379$5.41
ETH<0.01%$0.0022511,904.5878$4.29
ETH<0.01%$0.0590270$4.13
ETH<0.01%$0.23076316.867$3.89
ETH<0.01%$0.0030531,108.2764$3.38
ETH<0.01%$0.00027810,000$2.78
ETH<0.01%$1.112.4429$2.71
ETH<0.01%$1.072.41$2.59
ETH<0.01%$0.10638222.5407$2.4
ETH<0.01%$0.023199100$2.32
ETH<0.01%$1.331.5492$2.06
ETH<0.01%$8.960.2$1.79
ETH<0.01%$0.00017910,000$1.79
ETH<0.01%$98.570.018$1.78
ETH<0.01%$0.2130596.9357$1.48
ETH<0.01%$6.080.2351$1.43
ETH<0.01%$0.010323114.4909$1.18
ETH<0.01%$0.011306100$1.13
ETH<0.01%$0.9991421$0.9991
ETH<0.01%$0.0000938,933.163$0.8268
ETH<0.01%$0.07151510.6585$0.7622
ETH<0.01%$12.610.0591$0.7448
ETH<0.01%$12.720.057$0.7252
ETH<0.01%$0.00773861.398$0.475
ETH<0.01%$0.01493426.2273$0.3916
ETH<0.01%$0.3906091$0.3906
ETH<0.01%$0.000614400$0.2455
ETH<0.01%$0.002363101$0.2386
ETH<0.01%$0.02052610$0.2052
ETH<0.01%$0.0997161.999$0.1993
ETH<0.01%$0.0997161.999$0.1993
ETH<0.01%$4.640.0411$0.1908
ETH<0.01%$0.1767620.7807$0.1379
ETH<0.01%$0.00976313.7758$0.1345
ETH<0.01%$0.00145577$0.112
Loading...
Loading
[ 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.