ETH Price: $3,303.41 (-1.79%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

Transaction Hash
Method
Block
From
To
Relay Tokens242461512026-01-16 8:40:111 hr ago1768552811IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000017560.05332075
Relay Tokens242459852026-01-16 8:06:592 hrs ago1768550819IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000038890.13178494
Relay Tokens And...242458322026-01-16 7:36:112 hrs ago1768548971IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000009520.03092988
Relay Tokens And...242455592026-01-16 6:41:233 hrs ago1768545683IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000660362.0322469
Relay Tokens242450052026-01-16 4:50:235 hrs ago1768539023IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000038850.13092293
Relay Tokens242449302026-01-16 4:35:115 hrs ago1768538111IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000085070.28666441
Relay Tokens242446462026-01-16 3:38:116 hrs ago1768534691IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000053020.1411132
Relay Tokens242438262026-01-16 0:53:599 hrs ago1768524839IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000013890.03935252
Relay Tokens242437872026-01-16 0:46:119 hrs ago1768524371IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000018460.04756624
Relay Tokens242437052026-01-16 0:29:479 hrs ago1768523387IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000015180.04785685
Relay Tokens242436122026-01-16 0:10:5910 hrs ago1768522259IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000046580.14693582
Relay Tokens242436102026-01-16 0:10:3510 hrs ago1768522235IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000014050.04501134
Relay Tokens242433832026-01-15 23:25:1110 hrs ago1768519511IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000012880.04368417
Relay Tokens And...242433622026-01-15 23:20:5910 hrs ago1768519259IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000015720.0503027
Relay Tokens242433332026-01-15 23:15:1110 hrs ago1768518911IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000015670.0487869
Relay Tokens242433142026-01-15 23:11:2311 hrs ago1768518683IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.00001390.04712684
Relay Tokens242431372026-01-15 22:35:5911 hrs ago1768516559IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000014840.05071463
Relay Tokens242429072026-01-15 21:49:4712 hrs ago1768513787IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000054630.16577823
Relay Tokens242428692026-01-15 21:41:5912 hrs ago1768513319IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000017430.05710767
Relay Tokens242427112026-01-15 21:10:1113 hrs ago1768511411IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.00002350.0744828
Relay Tokens And...242426342026-01-15 20:54:3513 hrs ago1768510475IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000025970.08438397
Relay Tokens242421962026-01-15 19:26:4714 hrs ago1768505207IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000034920.11537112
Relay Tokens242421152026-01-15 19:10:3515 hrs ago1768504235IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000045440.14445423
Relay Tokens242421142026-01-15 19:10:2315 hrs ago1768504223IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.00004650.14784498
Relay Tokens242419852026-01-15 18:44:2315 hrs ago1768502663IN
Gnosis Chain: ETH-xDAI Omni Bridge
0 ETH0.000290250.9723
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
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

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 Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
0x88ad09518695c6c3712AC10a214bE5109a655671
Net Worth in USD
$370,316,146.84

Net Worth in ETH
112,101.067133

Token Allocations
GNO 54.46%
WSTETH 19.82%
WETH 6.63%
Others 19.10%
Chain Token Portfolio % Price Amount Value
ETH54.46%$145.51,385,985.3949$201,660,874.96
ETH19.82%$4,052.4618,112.9922$73,402,176.43
ETH6.63%$3,303.417,428.2965$24,538,732.91
ETH5.91%$0.99977621,873,856.2036$21,868,956.46
ETH5.12%$0.41487545,656,628.123$18,941,793.59
ETH2.08%$0.24466731,522,029.6218$7,712,400.42
ETH1.01%$95,42639.1572$3,736,613.48
ETH0.74%$0.00907,498.6286$0.00
ETH0.71%$0.9996272,638,443.4044$2,637,459.26
ETH0.70%$0.025357102,923,356.6553$2,609,848.14
ETH0.36%$0.08046916,793,224.648$1,351,333.99
ETH0.36%$3,820.23351.227$1,341,767.9
ETH0.36%$0.1833797,222,397.304$1,324,436
ETH0.24%$0.001258707,899,784.1789$890,396.35
ETH0.22%$0.006193130,620,725.1902$808,928.93
ETH0.21%$0.01671646,595,347.8816$778,893.43
ETH0.20%$1.16627,826.6432$728,278.91
ETH0.11%$13.7928,659.6921$395,217.15
ETH0.08%$0.01358822,401,287.0167$304,383.76
ETH0.07%$0.551913477,071.9271$263,302.2
ETH0.07%$0.1912611,309,614.1738$250,477.7
ETH0.05%$0.01223915,712,702.5832$192,304.73
ETH0.05%$0.426478419,701.8868$178,993.59
ETH0.05%$0.00281760,488,123.0179$170,422.26
ETH0.04%$0.000687198,820,483.6358$136,577.74
ETH0.03%$12.3410,036.1134$123,845.64
ETH0.03%$112.051,007.6011$112,901.7
ETH0.03%$0.393534238,160.1061$93,724.02
ETH0.02%$0.174109464,383.6353$80,853.4
ETH0.02%$0.99944473,571.8243$73,530.92
ETH0.02%$0.245422278,845.3332$68,434.91
ETH0.02%$0.0497931,317,987.8569$65,626.75
ETH0.02%$164,443.1017$64,443.1
ETH0.02%$0.00061998,320,254.801$60,826.81
ETH0.01%$0.262439182,729.126$47,955.25
ETH0.01%$0.0092945,074,227.3272$47,159.84
ETH0.01%$0.0060626,475,241.1706$39,255.5
ETH0.01%<$0.00000192,538,202,985.361$37,397.93
ETH<0.01%$0.0037499,357,323.4571$35,076.86
ETH<0.01%$0.00240711,439,138.9832$27,536.41
ETH<0.01%$0.0041416,287,179.1752$26,035.4
ETH<0.01%$0.040648524,248.1584$21,309.49
ETH<0.01%$3,308.635.7838$19,136.37
ETH<0.01%$143.01119.33$17,065.38
ETH<0.01%$173.795.9746$16,670.78
ETH<0.01%$0.99935715,690.1654$15,680.08
ETH<0.01%$0.080341163,562.9268$13,140.81
ETH<0.01%$24.31537.4919$13,066.43
ETH<0.01%$0.25698546,572$11,968.31
ETH<0.01%$0.33011533,303.7817$10,994.08
ETH<0.01%$5.332,008.8237$10,707.03
ETH<0.01%$0.080455100,835.5534$8,112.72
ETH<0.01%$0.00044816,084,849.3657$7,197.97
ETH<0.01%$0.0057491,143,927.4336$6,576.08
ETH<0.01%$114.1955.7496$6,366.05
ETH<0.01%$4,608.741.3336$6,146.28
ETH<0.01%$13.46454.5375$6,118.07
ETH<0.01%$10.36571.0925$5,916.52
ETH<0.01%$12.07449.2555$5,422.51
ETH<0.01%$0.0012364,000,000$4,943.96
ETH<0.01%<$0.00000143,131,839,326.4383$4,838.46
ETH<0.01%$1,453.313.1279$4,545.77
ETH<0.01%$92,537.030.0463$4,285.08
ETH<0.01%$0.00185,993.044$0.00
ETH<0.01%$0.0034331,172,044.574$4,023.37
ETH<0.01%$0.0015172,593,716.4811$3,935.84
ETH<0.01%$0.00101,710.7452$0.00
ETH<0.01%$0.0061,133,902.0811$0.00
ETH<0.01%$0.8139413,986.433$3,244.72
ETH<0.01%$0.00133,568.1625$0.00
ETH<0.01%$3.73782.422$2,918.43
ETH<0.01%<$0.00000122,680,361,928.597$2,803.45
ETH<0.01%$0.9989882,567.6221$2,565.02
ETH<0.01%$63.3639.4921$2,502.22
ETH<0.01%$22.37110.6321$2,474.84
ETH<0.01%$10.51229.3285$2,410.24
ETH<0.01%$0.0014.9954$0.00
ETH<0.01%$0.007573300,530$2,275.9
ETH<0.01%$0.05173341,031.2138$2,122.65
ETH<0.01%$0.02921568,975.3742$2,015.14
ETH<0.01%$0.0016.7252$0.00
ETH<0.01%$0.00771.6338$0.00
ETH<0.01%$0.1928057,619.8418$1,469.14
ETH<0.01%$0.9995961,274.3254$1,273.81
ETH<0.01%$13,194.710.0964$1,272.17
ETH<0.01%$0.1486237,927.8414$1,178.26
ETH<0.01%$1.171,006.6816$1,177.82
ETH<0.01%$3,414.990.3102$1,059.19
ETH<0.01%$0.2359684,482.5242$1,057.73
ETH<0.01%$0.009.2863$0.00
ETH<0.01%$0.1540146,482.6609$998.42
ETH<0.01%$0.999413998.9744$998.39
ETH<0.01%$0.4244482,352.0734$998.33
ETH<0.01%$0.0001178,350,663.9464$977.78
ETH<0.01%$0.00362.6004$0.00
ETH<0.01%$0.1674695,471.6874$916.34
ETH<0.01%$0.4696081,846.5095$867.14
ETH<0.01%$0.02295937,002.0937$849.55
ETH<0.01%$0.02134438,937.968$831.1
ETH<0.01%$0.00268309,425.2012$829.31
ETH<0.01%$26.730.6512$818.39
ETH<0.01%$0.043518,795.7369$817.61
ETH<0.01%$0.4414151,841.0953$812.69
ETH<0.01%$0.785038986.259$774.25
ETH<0.01%$0.002.7003$0.00
ETH<0.01%$0.007.1641$0.00
ETH<0.01%$0.02016934,208.1674$689.94
ETH<0.01%$0.1472744,582.8483$674.93
ETH<0.01%$0.976219690.6438$674.22
ETH<0.01%$0.0764438,028.3014$613.71
ETH<0.01%$0.05875810,000$587.58
ETH<0.01%$0.00062923,775.9267$572.5
ETH<0.01%$0.000.4775$0.00
ETH<0.01%$0.2268242,241.9352$508.52
ETH<0.01%$0.000914523,867.4359$478.7
ETH<0.01%$0.004.0699$0.00
ETH<0.01%$0.001,650,216.148$0.00
ETH<0.01%$0.0014.3786$0.00
ETH<0.01%$1.17370.16$433.09
ETH<0.01%$0.000986418,066.4343$412.03
ETH<0.01%$747.150.5134$383.59
ETH<0.01%$0.0390529,776.03$381.77
ETH<0.01%$0.2314031,625.4082$376.12
ETH<0.01%$0.439553795.1401$349.51
ETH<0.01%$0.004.0441$0.00
ETH<0.01%$0.0028.2464$0.00
ETH<0.01%$0.00000838,603,815.7108$327.75
ETH<0.01%$0.536107593.9769$318.44
ETH<0.01%$0.000.00000363$0.00
ETH<0.01%$0.006.1898$0.00
ETH<0.01%$0.00595348,501.5667$288.72
ETH<0.01%$0.993373289.3164$287.4
ETH<0.01%$0.0048.9282$0.00
ETH<0.01%$0.999334271.9054$271.72
ETH<0.01%$0.271095985.2284$267.09
ETH<0.01%$0.000.1061$0.00
ETH<0.01%$0.0585114,417.6877$258.48
ETH<0.01%$1.16221.1311$256.92
ETH<0.01%$1.16221.1311$256.92
ETH<0.01%$0.137511,712.6685$235.51
ETH<0.01%$0.0309777,324.8986$226.9
ETH<0.01%$0.00173124,510.4457$215.36
ETH<0.01%$0.535314394.048$210.94
ETH<0.01%$0.0011,437.7451$0.00
ETH<0.01%$0.664608299.723$199.2
ETH<0.01%$4.9837.19$185.1
ETH<0.01%$0.000.9138$0.00
ETH<0.01%$0.0391114,211.007$164.7
ETH<0.01%$0.004.011$0.00
ETH<0.01%$0.000.00005427$0.00
ETH<0.01%$0.0663082,343.1911$155.37
ETH<0.01%$1,277.490.1109$141.69
ETH<0.01%$3.0345.7345$138.58
ETH<0.01%$0.256985484.5222$124.51
ETH<0.01%$0.00000815,425,873.3735$119.86
ETH<0.01%$0.0210385,645.1881$118.76
ETH<0.01%$0.002,067.1564$0.00
ETH<0.01%$0.000171686,344.2179$117.45
ETH<0.01%$0.000528221,976.9972$117.16
ETH<0.01%$0.01128810,000$112.88
ETH<0.01%$0.000.000000870132$0.00
ETH<0.01%$0.000.000000003934$0.00
ETH<0.01%$0.604955180.2846$109.06
ETH<0.01%$0.0447242,417.9878$108.14
ETH<0.01%$0.00259140,712.9333$105.49
ETH<0.01%$0.000.5539$0.00
ETH<0.01%$0.001$0.00
ETH<0.01%$0.006,712.049$0.00
ETH<0.01%$0.000.3998$0.00
ETH<0.01%$0.00838411,451$96.01
ETH<0.01%$0.000.00710181$0.00
ETH<0.01%$0.0100158,904.8483$89.18
ETH<0.01%$0.43647200$87.29
ETH<0.01%$0.0018.4782$0.00
ETH<0.01%$0.573421147.5772$84.62
ETH<0.01%$0.000.2095$0.00
ETH<0.01%$0.0101437,723.1131$78.34
ETH<0.01%$0.0305482,479.9859$75.76
ETH<0.01%$3,705.40.02$74.26
ETH<0.01%$0.735358100$73.54
ETH<0.01%$0.0308522,286.0213$70.53
ETH<0.01%$41.91.5688$65.73
ETH<0.01%$0.4387149.0489$65.39
ETH<0.01%$0.0233022,657.7553$61.93
ETH<0.01%$0.76593965.5583$50.21
ETH<0.01%$0.0376461,291.0185$48.6
ETH<0.01%$1.9923.5704$46.98
ETH<0.01%$0.000.0553$0.00
ETH<0.01%$5,124.850.00880277$45.11
ETH<0.01%$0.0324981,338.3927$43.49
ETH<0.01%$0.000.1947$0.00
ETH<0.01%$0.001,000$0.00
ETH<0.01%$0.340584109.3196$37.23
ETH<0.01%$1.2827.8506$35.65
ETH<0.01%$0.000.0425$0.00
ETH<0.01%$0.00104131,816.9413$33.14
ETH<0.01%$0.0105032,900.1442$30.46
ETH<0.01%$0.054179555$30.07
ETH<0.01%$0.032119851.1443$27.34
ETH<0.01%$0.0014.9051$0.00
ETH<0.01%$0.51939547.0431$24.43
ETH<0.01%$0.084907281.5822$23.91
ETH<0.01%$0.0035.3549$0.00
ETH<0.01%$0.000.0196$0.00
ETH<0.01%$0.083037254.9336$21.17
ETH<0.01%$0.101926200$20.39
ETH<0.01%$17.381.1689$20.32
ETH<0.01%$0.000.651$0.00
ETH<0.01%$0.0116991,424.8062$16.67
ETH<0.01%$0.0125611,308.1921$16.43
ETH<0.01%$0.036039454.2063$16.37
ETH<0.01%$0.031837508.5767$16.19
ETH<0.01%$0.000.1944$0.00
ETH<0.01%$0.0129711,133.9484$14.71
ETH<0.01%$0.000.1885$0.00
ETH<0.01%$0.14520490.9279$13.2
ETH<0.01%$259.180.0503$13.03
ETH<0.01%$0.000042298,038$12.37
ETH<0.01%$5.212.3643$12.31
ETH<0.01%$1.1610.3796$12.04
ETH<0.01%$0.001,996.411$0.00
ETH<0.01%$0.10517894.0707$9.89
ETH<0.01%$0.000045172,431.4871$7.78
ETH<0.01%$0.074918100.7898$7.55
ETH<0.01%$0.052195139.0208$7.26
ETH<0.01%$0.0013635,301.79$7.23
ETH<0.01%$0.000.5003$0.00
ETH<0.01%$0.038967169.7671$6.62
ETH<0.01%$0.0065981,000$6.6
ETH<0.01%$1.015.7165$5.76
ETH<0.01%$5.691$5.69
ETH<0.01%$0.21022325.7722$5.42
ETH<0.01%$0.0033291,605.0326$5.34
ETH<0.01%$0.00042510,000$4.25
ETH<0.01%$0.9999824.2069$4.21
ETH<0.01%$4.191$4.19
ETH<0.01%$0.0003989,939.1442$3.96
ETH<0.01%$0.09918139.0397$3.87
ETH<0.01%$0.00118.9725$0.00
ETH<0.01%$0.00427.0031$0.00
ETH<0.01%$0.12678925.5269$3.24
ETH<0.01%$0.000.00960244$0.00
ETH<0.01%$0.006706444.9852$2.98
ETH<0.01%$0.0007673,624.0619$2.78
ETH<0.01%$12.6692$2.67
ETH<0.01%$0.03078784.0164$2.59
ETH<0.01%$0.000.7535$0.00
ETH<0.01%$1.162$2.32
ETH<0.01%$0.09324.3$2.26
ETH<0.01%$0.20537211$2.26
ETH<0.01%$0.0015021,409.2263$2.12
ETH<0.01%$0.000.00183368$0.00
ETH<0.01%$0.18693510.1204$1.89
ETH<0.01%$0.06629127.8614$1.85
ETH<0.01%$1.091.5624$1.7
ETH<0.01%$0.1494599.9964$1.49
ETH<0.01%$0.000.00047875$0.00
ETH<0.01%$0.007.7327$0.00
ETH<0.01%$0.02329160.07$1.4
ETH<0.01%$0.00737.6488$0.00
ETH<0.01%$0.0010$0.00
ETH<0.01%$1.251$1.25
ETH<0.01%$0.05216923.5576$1.23
ETH<0.01%$0.00188600$1.13
ETH<0.01%$0.000.0073296$0.00
ETH<0.01%$0.11007810$1.1
ETH<0.01%$0.9996471.0455$1.05
ETH<0.01%$0.2709043.7273$1.01
ETH<0.01%$0.01575852.0986$0.8209
ETH<0.01%$0.000.00289568$0.00
ETH<0.01%$0.000.00285431$0.00
ETH<0.01%$0.3791012$0.7582
ETH<0.01%$0.01514947.7056$0.7226
ETH<0.01%$0.000.0208$0.00
ETH<0.01%$0.7676590.9012$0.6917
ETH<0.01%$0.003702184.1939$0.6818
ETH<0.01%$3.270.202$0.6605
ETH<0.01%$0.00130.9258$0.00
ETH<0.01%$80.260.00719828$0.5777
ETH<0.01%$0.05366710$0.5366
ETH<0.01%$0.648690.8111$0.5261
ETH<0.01%$0.001032501.5343$0.5173
ETH<0.01%$0.001$0.00
ETH<0.01%$2.070.2299$0.4758
ETH<0.01%$0.02049121.8378$0.4474
ETH<0.01%$0.001141347.9367$0.3971
ETH<0.01%$0.3453451$0.3453
ETH<0.01%$0.00081405.3765$0.3284
ETH<0.01%$0.0149221$0.3133
ETH<0.01%$0.2363151.2174$0.2876
ETH<0.01%$2.010.1396$0.2805
ETH<0.01%$0.0004688.0142$0.275
ETH<0.01%<$0.00000114,761,229,784,195,630$0.2657
ETH<0.01%$0.0558124.6747$0.2609
ETH<0.01%$0.000261,000$0.2603
ETH<0.01%$0.00042585.9375$0.2461
ETH<0.01%$0.000.4406$0.00
ETH<0.01%$0.0001481,432.5506$0.2115
ETH<0.01%$0.0000822,572.4431$0.2114
ETH<0.01%$0.1396061.488$0.2077
ETH<0.01%$0.1950831$0.195
ETH<0.01%$0.001057180.7484$0.1909
ETH<0.01%$0.000549347.028$0.1906
ETH<0.01%$0.000.0154$0.00
ETH<0.01%$0.0207768.7668$0.1821
ETH<0.01%$0.000.9019$0.00
ETH<0.01%$0.0001271,257.6559$0.1591
ETH<0.01%$0.01504110.4922$0.1578
ETH<0.01%$0.00222264.5208$0.1433
ETH<0.01%$1.040.1219$0.1267
ETH<0.01%$0.0448362.5896$0.1161
ETH<0.01%$0.00517522.0015$0.1138
ETH<0.01%$0.000241441.6296$0.1066
ETH<0.01%$0.00174957.6608$0.1008
BSC<0.01%$1.866,306.1563$11,755.02
GNO<0.01%$0.9996227,534.1178$7,531.27
GNO<0.01%$0.002407175,076.4325$421.45
GNO<0.01%$0.99962132.0243$32.01
BASE<0.01%$0.019895320$6.37
BASE<0.01%$0.00350$0.00
POL<0.01%$0.1465890.0001$0.000015
Loading...
Loading
Loading...
Loading
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.