ETH Price: $2,163.78 (-1.25%)

Contract

0x88ad09518695c6c3712AC10a214bE5109a655671
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Transaction Hash
Method
Block
From
To
Relay Tokens219962522025-03-07 16:40:3558 mins ago1741365635IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000531331.75536132
Relay Tokens And...219959122025-03-07 15:31:472 hrs ago1741361507IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000915692.97464928
Relay Tokens And...219957872025-03-07 15:06:472 hrs ago1741360007IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000907682.90359927
Relay Tokens And...219956292025-03-07 14:34:353 hrs ago1741358075IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000787222.55723122
Relay Tokens And...219954992025-03-07 14:08:353 hrs ago1741356515IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000841132.69049465
Relay Tokens And...219951272025-03-07 12:53:234 hrs ago1741352003IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.00027070.8658853
Relay Tokens And...219950682025-03-07 12:41:354 hrs ago1741351295IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000355011.13556562
Relay Tokens And...219950472025-03-07 12:37:235 hrs ago1741351043IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000230580.74903809
Relay Tokens219949422025-03-07 12:16:115 hrs ago1741349771IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000321551.06229322
Relay Tokens219947642025-03-07 11:40:355 hrs ago1741347635IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000194070.66759021
Relay Tokens219945682025-03-07 11:01:116 hrs ago1741345271IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000242520.77099575
Relay Tokens219944342025-03-07 10:34:117 hrs ago1741343651IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000577321.877519
Relay Tokens And...219944172025-03-07 10:30:357 hrs ago1741343435IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000501461.62903106
Relay Tokens219941582025-03-07 9:38:358 hrs ago1741340315IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000415731.2807709
Relay Tokens And...219939812025-03-07 9:03:118 hrs ago1741338191IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000222330.68422409
Relay Tokens219935542025-03-07 7:37:1110 hrs ago1741333031IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000258020.77805706
Relay Tokens219923602025-03-07 3:36:4714 hrs ago1741318607IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.001055933.3084934
Relay Tokens219915662025-03-07 0:55:5916 hrs ago1741308959IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000953753.21356839
Relay Tokens219914722025-03-07 0:37:1117 hrs ago1741307831IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.001948746.1000334
Relay Tokens219914512025-03-07 0:32:5917 hrs ago1741307579IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.0014364.64107278
Relay Tokens219913912025-03-07 0:20:5917 hrs ago1741306859IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000900932.87024641
Relay Tokens219911602025-03-06 23:34:4718 hrs ago1741304087IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000342251.13065628
Relay Tokens219908212025-03-06 22:26:4719 hrs ago1741300007IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000381321.24003732
Relay Tokens219904642025-03-06 21:14:5920 hrs ago1741295699IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000328141.06710807
Relay Tokens And...219903752025-03-06 20:57:1120 hrs ago1741294631IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000230310.74816084
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
/**
 *Submitted for verification at Etherscan.io on 2020-08-04
*/

// 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

API
[{"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
ETH51.52%$138.751,273,697.0019$176,725,459.02
ETH18.68%$2,571.8224,919.141$64,087,545.29
ETH5.69%$2,162.829,031.2427$19,532,981.13
ETH5.49%$0.36940650,977,745.9543$18,831,485.22
ETH5.41%$0.99989318,558,304.6676$18,556,318.93
ETH2.79%$0.29075832,859,696.9237$9,554,219.76
ETH1.70%$0.05889799,020,601.3556$5,832,016.36
ETH1.36%$0.42778110,941,114.2864$4,680,400.81
ETH1.13%$0.465298,348,989.7004$3,884,701.42
ETH1.10%$0.9997923,761,589.3759$3,760,806.97
ETH0.80%$3.03907,498.6286$2,749,720.84
ETH0.77%$0.003585735,066,553.7409$2,635,492.92
ETH0.76%$2,422.781,076.8762$2,609,034.17
ETH0.75%$86,66829.8035$2,583,011.67
ETH0.26%$0.006669131,689,579.3152$878,187.76
ETH0.22%$1.62473,308.7519$766,760.18
ETH0.20%$0.01513246,270,394.6857$700,170.09
ETH0.19%$16.2339,306.0719$637,937.55
ETH0.16%$1.09519,405.1705$563,554.61
ETH0.15%$0.03386215,581,250.5949$527,608.71
ETH0.10%$0.3470471,032,255.9065$358,240.84
ETH0.07%$0.433712552,109.2179$239,456.44
ETH0.05%$0.1346591,389,870.7795$187,158.61
ETH0.05%$0.00807222,455,735.7774$181,261.58
ETH0.05%$0.000808198,820,483.6358$160,591.28
ETH0.04%$146.361,039.3923$152,125.46
ETH0.04%$0.00212361,941,127.9695$131,514.64
ETH0.04%$12.3410,036.1134$123,845.64
ETH0.03%$0.390678290,496.4999$113,490.54
ETH0.03%$0.393534238,765.9061$93,962.43
ETH0.03%$0.0665531,306,096.0609$86,924.61
ETH0.02%$0.00737111,437,985.425$84,306.76
ETH0.02%$173,552.1471$73,584.82
ETH0.02%$0.99980269,746.2567$69,732.45
ETH0.02%$0.0111526,101,283.3013$68,041.69
ETH0.02%$0.00061998,266,188.046$60,793.36
ETH0.02%$0.104203535,539.0561$55,804.78
ETH0.01%$0.99973247,067.1195$47,054.51
ETH0.01%$0.0068756,673,482.9941$45,879.06
ETH0.01%$0.0067225,117,981.5952$34,403.38
ETH<0.01%$0.137265231,986.1898$31,843.58
ETH<0.01%$0.00195613,222,180.3722$25,858.75
ETH<0.01%$0.45109554,980.2384$24,801.31
ETH<0.01%$2,148.6710.3148$22,163.12
ETH<0.01%$0.7021431,468.5543$22,095.33
ETH<0.01%$200.59106.6857$21,400.08
ETH<0.01%$51.01378.9462$19,330.05
ETH<0.01%$141.44119.33$16,878.04
ETH<0.01%$7.112,192.4222$15,588.12
ETH<0.01%$0.146746100,737.7956$14,782.87
ETH<0.01%$0.24336757,845.4533$14,077.68
ETH<0.01%<$0.00000143,131,839,326.4383$13,647.41
ETH<0.01%$0.0113661,181,853.5808$13,432.96
ETH<0.01%<$0.00000192,538,202,985.361$12,228.74
ETH<0.01%$20.49571.0925$11,701.69
ETH<0.01%$0.00000118,357,324,633.8918$10,048.32
ETH<0.01%$0.0098411,012,852.0218$9,967.59
ETH<0.01%$88,192.20.111$9,791.14
ETH<0.01%$0.21562139,713.3901$8,563.04
ETH<0.01%$0.00044716,081,238.4657$7,196.19
ETH<0.01%$0.0017814,000,000$7,123.64
ETH<0.01%$0.9946557,036.2864$6,998.68
ETH<0.01%$43.31153.9674$6,668.33
ETH<0.01%$24.31264.0083$6,418.04
ETH<0.01%$1,260.914.652$5,865.82
ETH<0.01%$2,927.761.7829$5,219.91
ETH<0.01%$0.0019442,456,603.854$4,776.85
ETH<0.01%$2.062,241.9352$4,618.39
ETH<0.01%$0.9978084,482.9621$4,473.14
ETH<0.01%$0.022346185,993.044$4,156.13
ETH<0.01%$30.91130.5819$4,036.29
ETH<0.01%$13,854.7142$3,854.71
ETH<0.01%$0.03818597,240.1322$3,713.14
ETH<0.01%$0.4023879,087.2877$3,656.61
ETH<0.01%$154.8122.7727$3,525.53
ETH<0.01%$0.00005761,335,933.9611$3,524.64
ETH<0.01%$82.0942.613$3,498.1
ETH<0.01%$0.26957112,182.3$3,283.99
ETH<0.01%$0.023756133,568.1625$3,173.03
ETH<0.01%$1.362,289.927$3,114.3
ETH<0.01%$110.2324.9962$2,755.34
ETH<0.01%$0.009116300,530$2,739.65
ETH<0.01%$1.132,390.1056$2,705.8
ETH<0.01%$9.1289.0848$2,630.67
ETH<0.01%$5.82449.2555$2,614.67
ETH<0.01%$49.7852.0336$2,590.23
ETH<0.01%$1.411,788.138$2,521.27
ETH<0.01%$0.9993572,454.979$2,453.4
ETH<0.01%$1.072,228.9$2,384.92
ETH<0.01%$3.04782.422$2,378.56
ETH<0.01%$0.2733188,225.1014$2,248.07
ETH<0.01%$0.05173341,189.0138$2,130.82
ETH<0.01%$0.006525309,424.2012$2,019.08
ETH<0.01%$0.9178132,133.4405$1,958.1
ETH<0.01%$0.362414,814.9409$1,744.98
ETH<0.01%$12,071.440.1445$1,743.93
ETH<0.01%$5,360.810.3061$1,641.1
ETH<0.01%$2.69607.4125$1,631.32
ETH<0.01%$2.19731.8122$1,602.67
ETH<0.01%$0.15815510,022.9157$1,585.17
ETH<0.01%$0.2276486,893.4567$1,569.28
ETH<0.01%$2.01771.6338$1,552.67
ETH<0.01%$8.32180.2846$1,499.97
ETH<0.01%$0.1594128,680.0459$1,383.7
ETH<0.01%$0.0003264,188,530.471$1,365.59
ETH<0.01%$0.2891824,425.2503$1,279.7
ETH<0.01%$128,566,781.420.00000979$1,258.26
ETH<0.01%$0.003627339,845.3799$1,232.48
ETH<0.01%$1.151,005.0846$1,155.85
ETH<0.01%$28,212,432,007.460.00000003857$1,088.16
ETH<0.01%$0.2168724,821.5218$1,045.65
ETH<0.01%$0.02539541,050.6703$1,042.47
ETH<0.01%$110.149.2863$1,022.78
ETH<0.01%$0.4468022,258.7667$1,009.22
ETH<0.01%$243.683.8343$934.33
ETH<0.01%$0.1030758,733.473$900.2
ETH<0.01%$0.0305628,618.5103$874.57
ETH<0.01%$375.162.3197$870.25
ETH<0.01%$0.02295936,215.2215$831.48
ETH<0.01%$0.640081,296.3626$829.78
ETH<0.01%$0.913367905.8485$827.37
ETH<0.01%$0.01685448,343.9057$814.79
ETH<0.01%$7,192.390.1109$797.72
ETH<0.01%$0.003666211,450.3439$775.15
ETH<0.01%$0.996841749.4458$747.08
ETH<0.01%$275.52.7003$743.94
ETH<0.01%$0.1151256,340.3383$729.93
ETH<0.01%$98.537.1641$705.89
ETH<0.01%$0.3865421,712.6685$662.02
ETH<0.01%$1.79368.2403$659.15
ETH<0.01%$0.03901616,363.7716$638.45
ETH<0.01%$17.4533.7121$588.28
ETH<0.01%$1,189.690.4775$568.05
ETH<0.01%$0.01400938,765.858$543.07
ETH<0.01%$13,277.910.0399$529.51
ETH<0.01%$0.0818036,437.4346$526.6
ETH<0.01%$0.00001338,021,712.4708$505.69
ETH<0.01%$0.01490632,219.5884$480.26
ETH<0.01%$116.214.0699$472.97
ETH<0.01%$0.0002811,667,452.358$468.66
ETH<0.01%$1.44321.9163$463.56
ETH<0.01%$0.1249073,649.9211$455.9
ETH<0.01%$816.740.5521$450.91
ETH<0.01%$31.2714.3786$449.61
ETH<0.01%$0.002878153,687.0367$442.24
ETH<0.01%$86.264.9809$429.67
ETH<0.01%$3142.8745$428.62
ETH<0.01%$0.2039142,054.3683$418.91
ETH<0.01%$0.04161510,000$416.15
ETH<0.01%$0.001344298,038$400.49
ETH<0.01%$12.1328.2464$342.49
ETH<0.01%$0.02258214,224.8523$321.22
ETH<0.01%$85,509,487.970.00000363$310.48
ETH<0.01%$1.13270.7359$305.93
ETH<0.01%$2,457.840.124$304.69
ETH<0.01%$206.141.4688$302.79
ETH<0.01%$48.056.1898$297.45
ETH<0.01%$9.8729.4851$291
ETH<0.01%$794.370.3642$289.27
ETH<0.01%$0.001281221,976.9972$284.34
ETH<0.01%$5.5648.9282$272.01
ETH<0.01%$0.99847271.9054$271.49
ETH<0.01%$28.489.0732$258.38
ETH<0.01%$1.09221.1311$239.98
ETH<0.01%$1.09221.1311$239.98
ETH<0.01%$2,027.170.116$235.1
ETH<0.01%$1.11200$222
ETH<0.01%$0.0559493,834.5516$214.54
ETH<0.01%$0.01788411,877.1151$212.41
ETH<0.01%$0.01652511,451$189.22
ETH<0.01%$0.000364510,387.3361$185.67
ETH<0.01%$194.120.9138$177.38
ETH<0.01%$83.152.0731$172.37
ETH<0.01%$18,961.910.0089426$169.57
ETH<0.01%$1.15144.2069$165.26
ETH<0.01%$40.064.011$160.68
ETH<0.01%$2,945,608.330.00005427$159.85
ETH<0.01%$0.0163749,549.6405$156.36
ETH<0.01%$0.00001113,859,444.8254$147.19
ETH<0.01%$0.00288148,807.6833$140.61
ETH<0.01%$0.0313814,382.878$137.54
ETH<0.01%$0.0256824,884.2373$125.44
ETH<0.01%$0.0571512,067.1564$118.14
ETH<0.01%$0.01064210,000$106.42
ETH<0.01%$0.215621484.5222$104.47
ETH<0.01%$184.520.5539$102.2
ETH<0.01%$99.861$99.86
ETH<0.01%$0.0148646,712.049$99.77
ETH<0.01%$0.893796109.2996$97.69
ETH<0.01%$0.0756291,230.7899$93.08
ETH<0.01%$4.6918.4782$86.68
ETH<0.01%$0.0517951,605.0326$83.13
ETH<0.01%$0.028362,900.1442$82.25
ETH<0.01%$0.25808281.5822$72.67
ETH<0.01%$0.323306212.7414$68.78
ETH<0.01%$0.0296322,286.0213$67.74
ETH<0.01%$0.108195588.5708$63.68
ETH<0.01%$0.245932254.9336$62.7
ETH<0.01%$0.107678555$59.76
ETH<0.01%$0.000291199,628.5238$58.09
ETH<0.01%$2.1623.5704$50.94
ETH<0.01%$0.05839851.1443$49.7
ETH<0.01%$2,342.380.02$46.95
ETH<0.01%$1.0642.9577$45.32
ETH<0.01%$0.431176100$43.12
ETH<0.01%$0.57476972.6811$41.77
ETH<0.01%$26.161.5688$41.04
ETH<0.01%$0.399126100.7898$40.23
ETH<0.01%$0.61035565.5583$40.01
ETH<0.01%$1.821.2438$38.28
ETH<0.01%$0.0377461,000$37.75
ETH<0.01%$0.031561,133.9484$35.79
ETH<0.01%$0.00104131,816.9413$33.14
ETH<0.01%$0.070625454.2063$32.08
ETH<0.01%$0.3027490.9279$27.53
ETH<0.01%$11.662$23.32
ETH<0.01%$0.64251835.3549$22.72
ETH<0.01%$1,128.140.0196$22.17
ETH<0.01%$0.128312169.7671$21.78
ETH<0.01%$0.0125431,306.0921$16.38
ETH<0.01%$0.111628139.0208$15.52
ETH<0.01%$73.690.1885$13.89
ETH<0.01%$0.064212200$12.84
ETH<0.01%$2.145.7165$12.23
ETH<0.01%$0.5080322.8$11.58
ETH<0.01%$11.291.0189$11.5
ETH<0.01%$1.0810.3796$11.2
ETH<0.01%$527.620.021$11.07
ETH<0.01%$0.39855325.7722$10.27
ETH<0.01%$0.0031053,190.7609$9.91
ETH<0.01%$0.42827622.7758$9.75
ETH<0.01%$0.3060530.4054$9.31
ETH<0.01%$9.241$9.24
ETH<0.01%$0.020294402.19$8.16
ETH<0.01%$0.0080811,000$8.08
ETH<0.01%$0.01624444.9852$7.23
ETH<0.01%$13.950.5003$6.98
ETH<0.01%$0.0012635,301.79$6.69
ETH<0.01%$0.23010627.8614$6.41
ETH<0.01%$3.251.7046$5.55
ETH<0.01%$6.330.8111$5.13
ETH<0.01%$0.005197919.8166$4.78
ETH<0.01%$0.0012783,624.0619$4.63
ETH<0.01%$0.00045510,000$4.55
ETH<0.01%$0.18903822.7922$4.31
ETH<0.01%$0.04329284.0164$3.64
ETH<0.01%$0.0026031,338.3927$3.48
ETH<0.01%$3.221$3.22
ETH<0.01%$314.940.00960244$3.02
ETH<0.01%$0.0021411,409.2263$3.02
ETH<0.01%$0.008361355.0031$2.97
ETH<0.01%$0.04937960.07$2.97
ETH<0.01%$0.00474600$2.84
ETH<0.01%$0.9997342.6692$2.67
ETH<0.01%$0.10876923.5576$2.56
ETH<0.01%$0.20537211$2.26
ETH<0.01%$0.0325266.8475$2.17
ETH<0.01%$1,058.230.00183368$1.94
ETH<0.01%$1.091.5624$1.7
ETH<0.01%$0.004385371.6022$1.63
ETH<0.01%$3,096.490.00047875$1.48
ETH<0.01%$0.1916387.7327$1.48
ETH<0.01%$0.147419.9964$1.47
ETH<0.01%$0.001876737.6488$1.38
ETH<0.01%$0.02385257.6608$1.38
ETH<0.01%$0.13124610$1.31
ETH<0.01%$0.12239710.1204$1.24
ETH<0.01%$6.030.202$1.22
ETH<0.01%$0.8117861.488$1.21
ETH<0.01%$1.330.9012$1.2
ETH<0.01%$1.131$1.13
ETH<0.01%$151.290.0073296$1.11
ETH<0.01%$1.091$1.09
ETH<0.01%$0.0008461,257.6559$1.06
ETH<0.01%$11.0455$1.05
ETH<0.01%$0.1025710$1.03
ETH<0.01%$0.004838184.1939$0.8911
ETH<0.01%$0.01686952.0986$0.8788
ETH<0.01%$0.428152$0.8563
ETH<0.01%$279.590.00289568$0.8095
ETH<0.01%$281.30.00285431$0.8029
ETH<0.01%$0.07244510$0.7244
ETH<0.01%$34.190.0208$0.7114
ETH<0.01%$0.003806180.7484$0.6879
ETH<0.01%$0.00461130.9258$0.6035
ETH<0.01%$0.01615336.7333$0.5933
ETH<0.01%$0.02660321$0.5586
ETH<0.01%$2.420.2299$0.5563
ETH<0.01%$0.5077121$0.5077
ETH<0.01%$0.02148222.0015$0.4726
ETH<0.01%$4.980.0938$0.4671
ETH<0.01%$0.3632181.2174$0.4421
ETH<0.01%$3.040.1396$0.4242
ETH<0.01%$0.00607669$0.4192
ETH<0.01%$0.0004141,000$0.4139
ETH<0.01%$0.000667585.9375$0.3905
ETH<0.01%$0.000952405.3746$0.386
ETH<0.01%$45.940.00719828$0.3306
ETH<0.01%$0.0694374.6747$0.3245
ETH<0.01%$0.00438664.5208$0.2829
ETH<0.01%<$0.00000114,708,856,960,879,456$0.2794
ETH<0.01%$0.0004688.0142$0.275
ETH<0.01%$0.0001022,572.4431$0.2632
ETH<0.01%$0.02339910.4922$0.2455
ETH<0.01%$0.2353091.015$0.2388
ETH<0.01%$0.501440.4406$0.2209
ETH<0.01%$0.0001481,432.5506$0.2115
ETH<0.01%$0.000549347.028$0.1906
ETH<0.01%$0.01138416.596$0.1889
ETH<0.01%$0.1991460.9019$0.1796
ETH<0.01%$0.0208048.5315$0.1774
ETH<0.01%$0.0639592.5896$0.1656
ETH<0.01%$1.170.14$0.1638
ETH<0.01%$0.000339441.6296$0.1498
ETH<0.01%$1.040.1219$0.1267
BSC<0.01%$1.866,304.2286$11,751.43
GNO<0.01%$0.9997927,534.1178$7,532.55
GNO<0.01%$0.001956175,076.4325$342.4
GNO<0.01%$132.0243$32.03
BASE<0.01%$0.004356350$1.52
POL<0.01%$0.2456730.0001$0.000025
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.