xDAI Price: $0.999996 (-0.01%)
Gas: 1 GWei

Contract

0x90CbE4BDd538D6e9b379bFF5fE72c3d67A521De5
Age:24H
Amount:Between 0-1
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

4 Internal Transactions and > 10 Token Transfers found.

Latest 4 internal transactions

Parent Transaction Hash Block From To
391889062025-03-23 20:46:2030 days ago1742762780
0x90CbE4BD...67A521De5
0.14629078 xDAI
385378142025-02-13 7:13:1569 days ago1739430795
0x90CbE4BD...67A521De5
0.12 xDAI
376777422024-12-23 20:38:55120 days ago1734986335
0x90CbE4BD...67A521De5
0.42 xDAI
376236042024-12-20 14:21:50123 days ago1734704510  Contract Creation0 xDAI
Loading...
Loading

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

Contract Name:
BeaconProxy

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
shanghai EvmVersion
File 1 of 8 : BeaconProxy.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (proxy/beacon/BeaconProxy.sol)

pragma solidity ^0.8.20;

import {IBeacon} from "./IBeacon.sol";
import {Proxy} from "../Proxy.sol";
import {ERC1967Utils} from "../ERC1967/ERC1967Utils.sol";

/**
 * @dev This contract implements a proxy that gets the implementation address for each call from an {UpgradeableBeacon}.
 *
 * The beacon address can only be set once during construction, and cannot be changed afterwards. It is stored in an
 * immutable variable to avoid unnecessary storage reads, and also in the beacon storage slot specified by
 * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] so that it can be accessed externally.
 *
 * CAUTION: Since the beacon address can never be changed, you must ensure that you either control the beacon, or trust
 * the beacon to not upgrade the implementation maliciously.
 *
 * IMPORTANT: Do not use the implementation logic to modify the beacon storage slot. Doing so would leave the proxy in
 * an inconsistent state where the beacon storage slot does not match the beacon address.
 */
contract BeaconProxy is Proxy {
    // An immutable address for the beacon to avoid unnecessary SLOADs before each delegate call.
    address private immutable _beacon;

    /**
     * @dev Initializes the proxy with `beacon`.
     *
     * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. This
     * will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity
     * constructor.
     *
     * Requirements:
     *
     * - `beacon` must be a contract with the interface {IBeacon}.
     * - If `data` is empty, `msg.value` must be zero.
     */
    constructor(address beacon, bytes memory data) payable {
        ERC1967Utils.upgradeBeaconToAndCall(beacon, data);
        _beacon = beacon;
    }

    /**
     * @dev Returns the current implementation address of the associated beacon.
     */
    function _implementation() internal view virtual override returns (address) {
        return IBeacon(_getBeacon()).implementation();
    }

    /**
     * @dev Returns the beacon.
     */
    function _getBeacon() internal view virtual returns (address) {
        return _beacon;
    }
}

File 2 of 8 : IERC1967.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1967.sol)

pragma solidity ^0.8.20;

/**
 * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
 */
interface IERC1967 {
    /**
     * @dev Emitted when the implementation is upgraded.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Emitted when the admin account has changed.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Emitted when the beacon is changed.
     */
    event BeaconUpgraded(address indexed beacon);
}

File 3 of 8 : IBeacon.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)

pragma solidity ^0.8.20;

/**
 * @dev This is the interface that {BeaconProxy} expects of its beacon.
 */
interface IBeacon {
    /**
     * @dev Must return an address that can be used as a delegate call target.
     *
     * {UpgradeableBeacon} will check that this address is a contract.
     */
    function implementation() external view returns (address);
}

File 4 of 8 : ERC1967Utils.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (proxy/ERC1967/ERC1967Utils.sol)

pragma solidity ^0.8.21;

import {IBeacon} from "../beacon/IBeacon.sol";
import {IERC1967} from "../../interfaces/IERC1967.sol";
import {Address} from "../../utils/Address.sol";
import {StorageSlot} from "../../utils/StorageSlot.sol";

/**
 * @dev This library provides getters and event emitting update functions for
 * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.
 */
library ERC1967Utils {
    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev The `implementation` of the proxy is invalid.
     */
    error ERC1967InvalidImplementation(address implementation);

    /**
     * @dev The `admin` of the proxy is invalid.
     */
    error ERC1967InvalidAdmin(address admin);

    /**
     * @dev The `beacon` of the proxy is invalid.
     */
    error ERC1967InvalidBeacon(address beacon);

    /**
     * @dev An upgrade function sees `msg.value > 0` that may be lost.
     */
    error ERC1967NonPayable();

    /**
     * @dev Returns the current implementation address.
     */
    function getImplementation() internal view returns (address) {
        return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;
    }

    /**
     * @dev Stores a new address in the ERC-1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        if (newImplementation.code.length == 0) {
            revert ERC1967InvalidImplementation(newImplementation);
        }
        StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;
    }

    /**
     * @dev Performs implementation upgrade with additional setup call if data is nonempty.
     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
     * to avoid stuck value in the contract.
     *
     * Emits an {IERC1967-Upgraded} event.
     */
    function upgradeToAndCall(address newImplementation, bytes memory data) internal {
        _setImplementation(newImplementation);
        emit IERC1967.Upgraded(newImplementation);

        if (data.length > 0) {
            Address.functionDelegateCall(newImplementation, data);
        } else {
            _checkNonPayable();
        }
    }

    /**
     * @dev Storage slot with the admin of the contract.
     * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Returns the current admin.
     *
     * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using
     * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
     * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
     */
    function getAdmin() internal view returns (address) {
        return StorageSlot.getAddressSlot(ADMIN_SLOT).value;
    }

    /**
     * @dev Stores a new address in the ERC-1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        if (newAdmin == address(0)) {
            revert ERC1967InvalidAdmin(address(0));
        }
        StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {IERC1967-AdminChanged} event.
     */
    function changeAdmin(address newAdmin) internal {
        emit IERC1967.AdminChanged(getAdmin(), newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
     * This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;

    /**
     * @dev Returns the current beacon.
     */
    function getBeacon() internal view returns (address) {
        return StorageSlot.getAddressSlot(BEACON_SLOT).value;
    }

    /**
     * @dev Stores a new beacon in the ERC-1967 beacon slot.
     */
    function _setBeacon(address newBeacon) private {
        if (newBeacon.code.length == 0) {
            revert ERC1967InvalidBeacon(newBeacon);
        }

        StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;

        address beaconImplementation = IBeacon(newBeacon).implementation();
        if (beaconImplementation.code.length == 0) {
            revert ERC1967InvalidImplementation(beaconImplementation);
        }
    }

    /**
     * @dev Change the beacon and trigger a setup call if data is nonempty.
     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
     * to avoid stuck value in the contract.
     *
     * Emits an {IERC1967-BeaconUpgraded} event.
     *
     * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since
     * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for
     * efficiency.
     */
    function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {
        _setBeacon(newBeacon);
        emit IERC1967.BeaconUpgraded(newBeacon);

        if (data.length > 0) {
            Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
        } else {
            _checkNonPayable();
        }
    }

    /**
     * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract
     * if an upgrade doesn't perform an initialization call.
     */
    function _checkNonPayable() private {
        if (msg.value > 0) {
            revert ERC1967NonPayable();
        }
    }
}

File 5 of 8 : Proxy.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/Proxy.sol)

pragma solidity ^0.8.20;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    /**
     * @dev This is a virtual function that should be overridden so it returns the address to which the fallback
     * function and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _delegate(_implementation());
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _fallback();
    }
}

File 6 of 8 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Address.sol)

pragma solidity ^0.8.20;

import {Errors} from "./Errors.sol";

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert Errors.InsufficientBalance(address(this).balance, amount);
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert Errors.FailedCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {Errors.FailedCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert Errors.InsufficientBalance(address(this).balance, value);
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case
     * of an unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {Errors.FailedCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            assembly ("memory-safe") {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert Errors.FailedCall();
        }
    }
}

File 7 of 8 : Errors.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of common custom errors used in multiple contracts
 *
 * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
 * It is recommended to avoid relying on the error API for critical functionality.
 *
 * _Available since v5.1._
 */
library Errors {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error InsufficientBalance(uint256 balance, uint256 needed);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedCall();

    /**
     * @dev The deployment failed.
     */
    error FailedDeployment();

    /**
     * @dev A necessary precompile is missing.
     */
    error MissingPrecompile(address);
}

File 8 of 8 : StorageSlot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.20;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC-1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(newImplementation.code.length > 0);
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * TIP: Consider using this library along with {SlotDerivation}.
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct Int256Slot {
        int256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `Int256Slot` with member `value` located at `slot`.
     */
    function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        assembly ("memory-safe") {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns a `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        assembly ("memory-safe") {
            r.slot := store.slot
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "evmVersion": "shanghai",
  "viaIR": true,
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"beacon","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"beacon","type":"address"}],"name":"ERC1967InvalidBeacon","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x6080806040527f5c60da1b00000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000d25c6f0293d41758552b0b27d6f69353a1134d51165afa90811561010b575f9161007b575b50610167565b905060203d602011610104575b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f82011682019180831067ffffffffffffffff8411176100d7576100d19260405201610116565b5f610075565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b503d610088565b6040513d5f823e3d90fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8060209101126101635760805173ffffffffffffffffffffffffffffffffffffffff811681036101635790565b5f80fd5b5f8091368280378136915af43d5f803e15610180573d5ff35b3d5ffdfea2646970667358221220b60cbf4ce8772cb3e254605ee39a357ae36438377aa078a457c041ee4eec50da64736f6c63430008170033

Block Transaction Gas Used Reward
view all blocks validated

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
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
ETH10.51%$1,814.645.1394$9,326.11
ETH7.62%$0.9999636,763.7105$6,763.46
ETH2.91%$2.86904.0452$2,585.49
ETH1.59%$93,6410.015$1,408.73
ETH1.45%$11,287.7119$1,287.71
ETH0.49%$15.1628.7462$435.79
ETH0.46%$8.8545.6914$404.16
ETH0.43%$0.2475251,525.0423$377.49
ETH0.40%$0.361215985.3003$355.91
ETH0.31%$1,814.640.1494$271.18
ETH0.28%$0.0273339,209.6214$251.73
ETH0.21%$1,811.090.1051$190.34
ETH0.21%$0.00835422,036.234$184.08
ETH0.20%<$0.0000013,372,487,768.905$174.67
ETH0.19%<$0.00000111,358,667,173.5534$169.12
ETH0.18%$0.179497894.3919$160.54
ETH0.18%$1,807.740.0884$159.73
ETH0.18%$0.0548772,901.3771$159.22
ETH0.17%<$0.00000124,003,496,136.6935$152.73
ETH0.17%$0.111841,309.4388$146.45
ETH0.16%$3,335.480.0425$141.7
ETH0.16%$30.774.5394$139.66
ETH0.15%$0.56474228.1584$128.85
ETH0.13%$0.04432,572.4796$113.96
ETH0.13%$4.4525.0047$111.27
ETH0.12%$0.0234834,607.3937$108.2
ETH0.12%$21.774.7968$104.43
ETH0.11%$0.314007320.2314$100.55
ETH0.11%$0.0163816,114.1843$100.16
ETH0.10%$1.4264.14$91.08
ETH0.10%$0.0000412,130,580.8711$87.61
ETH0.10%$0.0283253,076.9888$87.16
ETH0.10%$186.3864$86.39
ETH0.09%$0.171918481.4949$82.78
ETH0.09%$0.000322244,917.4772$78.94
ETH0.09%$2,016.640.0377$76.06
ETH0.08%$0.0000481,491,370.927$72.11
ETH0.08%$1.1661.2013$70.99
ETH0.08%$0.114158602.2738$68.75
ETH0.07%$0.079387834.4139$66.24
ETH0.07%$160.720.4096$65.83
ETH0.07%$0.0535451,209.286$64.75
ETH0.07%$106.420.6075$64.65
ETH0.07%$0.214862296.5226$63.71
ETH0.07%$1.3446.3776$62.15
ETH0.07%$0.0285292,146.6931$61.24
ETH0.07%$0.00000512,220,036.6073$60.47
ETH0.07%$0.354502170.4632$60.43
ETH0.07%$0.0074527,969.0581$59.39
ETH0.07%$0.68301185.5382$58.42
ETH0.07%$26.912.1705$58.41
ETH0.07%$0.0450761,280.3561$57.71
ETH0.06%$1.2147.5626$57.44
ETH0.06%$0.73429978.0481$57.31
ETH0.06%<$0.000001120,295,172.7586$57.29
ETH0.06%$0.0371581,535.3398$57.05
ETH0.06%$60.580.8873$53.75
ETH0.06%$0.077075691.7982$53.32
ETH0.06%<$0.0000017,226,828,426.2352$52.42
ETH0.06%$92,9650.00056201$52.25
ETH0.06%$0.066904765.496$51.21
ETH0.06%$0.0157483,140.2667$49.45
ETH0.05%$0.0196952,476.2554$48.77
ETH0.05%$0.0137963,415.141$47.12
ETH0.05%$0.272104168.7082$45.91
ETH0.05%$0.00089650,128.5803$44.9
ETH0.05%$0.168615263.9462$44.51
ETH0.05%$9.564.632$44.28
ETH0.05%$0.0000143,172,889.1471$43.41
ETH0.05%$0.99642843.1516$43
ETH0.05%$0.092615459.4101$42.55
ETH0.05%$0.00241317,119.7154$41.32
ETH0.05%$0.0133093,026.5437$40.28
ETH0.05%<$0.00000134,699,922,254,231.637$40.26
ETH0.05%$0.394989101.8899$40.25
ETH0.05%<$0.00000111,893,885,992.8863$39.98
ETH0.04%$0.0206721,926.0545$39.82
ETH0.04%<$0.0000011,118,495,740.2932$39.61
ETH0.04%$0.139057283.6802$39.45
ETH0.04%$0.010923,559.0996$38.86
ETH0.04%$0.143436269.1218$38.6
ETH0.04%$0.344254104.971$36.14
ETH0.04%$0.00122427,946.3605$34.19
ETH0.04%$0.0297531,140.2451$33.93
ETH0.04%$0.00228514,557.8943$33.26
ETH0.04%$0.9377935.4477$33.24
ETH0.04%$0.51487364.5413$33.23
ETH0.04%$0.272441120.3914$32.8
ETH0.04%$0.178391181.2161$32.33
ETH0.04%$0.00084837,205.5392$31.56
ETH0.04%$0.0045666,848.8724$31.27
ETH0.04%$0.0000241,293,231.1248$31.18
ETH0.03%$0.00272311,335.9099$30.87
ETH0.03%$2,176.620.0142$30.84
ETH0.03%$0.0065014,731.2371$30.76
ETH0.03%$0.051162601.0687$30.75
ETH0.03%$0.05656537.9922$30.43
ETH0.03%$7.743.885$30.07
ETH0.03%$0.9986829.95$29.91
ETH0.03%$0.72083140.353$29.09
ETH0.03%$0.93530730.6488$28.67
ETH0.03%$0.9869628.8872$28.51
ETH0.03%$0.036281783.765$28.44
ETH0.03%$0.042882647.8706$27.78
ETH0.03%$0.00050454,116.7565$27.3
ETH0.03%$0.094184288.4283$27.17
ETH0.03%$0.0015917,039.7859$27.09
ETH0.03%<$0.00000181,208,968.3732$26.9
ETH0.03%$71.760.3641$26.13
ETH0.03%$0.054879462.0813$25.36
ETH0.03%$0.107621233.3017$25.11
ETH0.03%$0.0043625,669.5427$24.73
ETH0.03%$0.141849169.2456$24.01
ETH0.03%$0.0146841,619.0331$23.77
ETH0.03%$0.24970394.332$23.55
ETH0.03%$0.0000046,472,169.3055$23.49
ETH0.03%$0.122161191.0493$23.34
ETH0.03%$0.187074123.3976$23.08
ETH0.03%$0.096183237.6316$22.86
ETH0.03%$0.28571879.11$22.6
ETH0.03%$0.084111267.2844$22.48
ETH0.02%$0.0187461,176.6555$22.06
ETH0.02%$0.41800251.8463$21.67
ETH0.02%$0.031972666.2293$21.3
ETH0.02%$0.0062013,426.9$21.25
ETH0.02%$0.023845886.8167$21.15
ETH0.02%$2.0310.2913$20.89
ETH0.02%$0.0000092,248,216.2564$20.59
ETH0.02%$2,027.170.01$20.27
ETH0.02%$0.100591200.2446$20.14
ETH0.02%$0.69342127.6447$19.17
ETH0.02%$0.99962318.8208$18.81
ETH0.02%$1.1416.4467$18.75
ETH0.02%$0.32032458.5036$18.74
ETH0.02%$17.681.0542$18.64
ETH0.02%<$0.000001384,952,362.8424$18.54
ETH0.02%$2.996.1097$18.27
ETH0.02%$0.00145612,517.1902$18.23
ETH0.02%$0.00091919,806.5513$18.2
ETH0.02%$0.048142376.8234$18.14
ETH0.02%$0.31457957.1794$17.99
ETH0.02%<$0.00000122,043,291,156,050.609$17.95
ETH0.02%$0.000058307,514.3034$17.74
ETH0.02%<$0.00000170,825,229.5005$17.53
ETH0.02%$0.083755208.3516$17.45
ETH0.02%$0.070744245.4476$17.36
ETH0.02%$1,809.650.00946692$17.13
ETH0.02%$0.078127216.2922$16.9
ETH0.02%$0.0044123,767.8489$16.62
ETH0.02%$0.025397654.0883$16.61
ETH0.02%$0.045006368.916$16.6
ETH0.02%<$0.00000175,064,754.4953$16.59
ETH0.02%$0.99958316.553$16.55
ETH0.02%$0.0062612,639.3199$16.52
ETH0.02%$0.00123113,343.948$16.43
ETH0.02%$0.82069819.8083$16.26
ETH0.02%$0.039919402.9503$16.09
ETH0.02%$0.0057512,747.5266$15.8
ETH0.02%$0.57101327.4722$15.69
ETH0.02%$0.00125212,351.1613$15.46
ETH0.02%$2.95.2051$15.09
ETH0.02%$0.33766844.5281$15.04
ETH0.02%$2,041.960.00730412$14.91
ETH0.02%$6.742.1947$14.79
ETH0.02%$0.0031874,637.5472$14.78
ETH0.02%$0.0033364,275.4795$14.26
ETH0.02%$0.17284780.2931$13.88
ETH0.02%$10.351.3317$13.79
ETH0.02%$0.00014495,871.9587$13.77
ETH0.02%$0.63025121.6248$13.63
ETH0.02%$0.0000131,036,154.3846$13.63
ETH0.01%$0.72895418.2482$13.3
ETH0.01%$0.090967145.1053$13.2
ETH0.01%<$0.000001321,663,377.1224$13.03
ETH0.01%$0.20724262.4475$12.94
ETH0.01%$0.69260318.4019$12.75
ETH0.01%$0.030819413.0654$12.73
ETH0.01%$0.093789135.3826$12.7
ETH0.01%$0.0060912,061.5057$12.56
ETH0.01%$0.0104271,186.8662$12.38
ETH0.01%$0.18926565.1885$12.34
ETH0.01%$0.55831221.9756$12.27
ETH0.01%$4.542.6978$12.25
ETH0.01%$0.20306659.982$12.18
ETH0.01%$0.17457169.5294$12.14
ETH0.01%<$0.000001210,504,516.5527$12.11
ETH0.01%$0.00029341,244.4075$12.07
ETH0.01%$0.0077011,555.0587$11.98
ETH0.01%$0.000058202,092.1188$11.65
ETH0.01%$4.542.5509$11.58
ETH0.01%$0.018074627.3099$11.34
ETH0.01%$0.0055891,999.9351$11.18
ETH0.01%$0.00000114,955,275.2809$11.15
ETH0.01%$0.0092011,191.0161$10.96
ETH0.01%$0.00024145,328.7149$10.93
ETH0.01%$0.0057341,894.4737$10.86
ETH0.01%$0.36881529.4359$10.86
ETH0.01%<$0.0000013,349,185,467.444$10.67
ETH0.01%$0.20846850.5109$10.53
ETH0.01%$0.91906111.3687$10.45
ETH0.01%<$0.000001228,860,667.027$10.37
ETH0.01%$0.000066154,911.8661$10.22
ETH0.01%$0.26122439.069$10.21
ETH0.01%$0.027404369.4645$10.12
ETH0.01%$0.00003340,399.9999$10.09
ETH0.01%<$0.00000179,163,870.6062$10.07
ETH0.01%$0.0000033,635,434.7524$9.99
ETH0.01%$0.073402135.649$9.96
ETH0.01%<$0.0000014,200,000,000$9.93
ETH0.01%$0.30056832.9514$9.9
ETH0.01%<$0.000001144,234,490.2313$9.86
ETH0.01%$0.095123102.6509$9.76
ETH0.01%$4.612.1112$9.73
ETH0.01%$0.000063155,355.2785$9.73
ETH0.01%$3,332.670.002902$9.67
ETH0.01%$0.045009214.7004$9.66
ETH0.01%$1.317.3188$9.59
ETH0.01%$1.217.8829$9.54
ETH0.01%$0.19020250.0927$9.53
ETH0.01%$0.00018152,532.6871$9.49
ETH0.01%$0.9999379.4032$9.4
ETH0.01%<$0.00000117,415,842,158.6329$9.39
ETH0.01%$0.022242414.8915$9.23
ETH0.01%$25.060.3639$9.12
ETH0.01%$0.0025633,533.3034$9.05
ETH0.01%$0.000066136,222.7278$9.04
ETH0.01%$0.86267510.3917$8.96
ETH<0.01%$93,7540.00009457$8.87
ETH<0.01%$0.00000113,972,248.6316$8.86
ETH<0.01%$0.54325315.7462$8.55
ETH<0.01%$0.0008589,880.5685$8.48
ETH<0.01%$0.000024351,464.4258$8.38
ETH<0.01%$0.0023023,632.8143$8.36
ETH<0.01%<$0.000001129,865,764.6$8.36
ETH<0.01%$0.00000111,936,626.4432$8.36
ETH<0.01%<$0.00000119,496,614.7805$8.35
ETH<0.01%$0.0005515,077.5526$8.29
ETH<0.01%$0.027486299.9598$8.24
ETH<0.01%$5,862.920.00140407$8.23
ETH<0.01%$0.0038232,141.3314$8.19
ETH<0.01%$0.013894578.3415$8.04
ETH<0.01%$0.14022256.9362$7.98
ETH<0.01%$0.0021683,533.1137$7.66
ETH<0.01%$0.11533865.6829$7.58
ETH<0.01%$0.0047191,598.9851$7.55
ETH<0.01%$0.0014385,221.4836$7.51
ETH<0.01%$178.630.0417$7.45
ETH<0.01%$0.11377864.0012$7.28
ETH<0.01%$0.22478631.7872$7.15
ETH<0.01%$0.0039531,800$7.11
ETH<0.01%$0.023299302.4729$7.05
ETH<0.01%<$0.00000149,214,200.9468$6.95
ETH<0.01%$0.016709413.3976$6.91
ETH<0.01%$0.0013934,927.9306$6.87
ETH<0.01%$0.0010046,819.6382$6.84
ETH<0.01%$0.332320.5947$6.84
ETH<0.01%$0.0023312,930.4119$6.83
ETH<0.01%$0.0000041,712,359.4924$6.82
ETH<0.01%$0.6964079.7383$6.78
ETH<0.01%$0.02909230.6028$6.71
ETH<0.01%$5,174.870.00129378$6.7
ETH<0.01%$0.00057111,617.317$6.64
ETH<0.01%$0.031523206.0196$6.49
ETH<0.01%$0.0000019,908,761.5227$6.44
ETH<0.01%$0.30072121.3399$6.42
ETH<0.01%$0.010585603.693$6.39
ETH<0.01%$0.0018633,426.6107$6.39
ETH<0.01%$0.006917918.5622$6.35
ETH<0.01%$0.026918234.9676$6.32
ETH<0.01%$0.21521529.3283$6.31
ETH<0.01%$0.0054511,153.6247$6.29
ETH<0.01%$0.030942201.615$6.24
ETH<0.01%$0.10807856.5316$6.11
ETH<0.01%$0.06646591.6603$6.09
ETH<0.01%$0.0010765,606.094$6.03
ETH<0.01%$0.00013145,465.7408$5.95
ETH<0.01%$0.00018331,817.409$5.83
ETH<0.01%$0.0029011,962.2114$5.69
ETH<0.01%$0.010866517.5964$5.62
ETH<0.01%$0.0000961,997.3857$5.59
ETH<0.01%$0.016603336.6136$5.59
ETH<0.01%$0.0013993,947.069$5.52
ETH<0.01%$0.037271147.252$5.49
ETH<0.01%$0.51384210.6557$5.48
ETH<0.01%$0.11869145.3539$5.38
ETH<0.01%$0.17537130.6898$5.38
ETH<0.01%$0.011106483.0887$5.37
ETH<0.01%$0.611858.7157$5.33
ETH<0.01%$0.0000013,652,536.2332$5.33
ETH<0.01%$0.6764857.8169$5.29
ETH<0.01%$0.17244530.3947$5.24
ETH<0.01%$0.0008616,085.4152$5.24
ETH<0.01%$0.20846825.0621$5.22
ETH<0.01%$20.110.2593$5.22
ETH<0.01%<$0.0000011,058,657,192.1424$5.21
ETH<0.01%$0.005272986.8868$5.2
ETH<0.01%$0.036643139.6146$5.12
ETH<0.01%<$0.000001877,815,950.5989$5.06
ETH<0.01%$0.19765925.4138$5.02
ETH<0.01%$0.505899.918$5.02
ETH<0.01%$0.01435349.3272$5.01
ETH<0.01%$0.000011442,788.5454$5.01
ETH<0.01%$0.0015293,257.2649$4.98
ETH<0.01%$0.007281682.1386$4.97
ETH<0.01%$0.000014364,508.5843$4.96
ETH<0.01%$0.015875312.5849$4.96
ETH<0.01%$14.8189$4.82
ETH<0.01%$0.000027179,196.9239$4.78
ETH<0.01%$1,893.950.00249765$4.73
ETH<0.01%$114.550.0411$4.71
ETH<0.01%$0.009982470.7145$4.7
ETH<0.01%$0.00017826,368.1474$4.69
ETH<0.01%$0.005752798.4299$4.59
ETH<0.01%$0.0636272.181$4.59
ETH<0.01%<$0.0000013,023,386,998.3823$4.57
ETH<0.01%$0.007945573.8812$4.56
ETH<0.01%$0.7908965.7052$4.51
ETH<0.01%$0.00021920,599.395$4.51
ETH<0.01%$0.000022200,055.65$4.44
ETH<0.01%$0.07133362.1832$4.44
ETH<0.01%$0.006393689.6226$4.41
ETH<0.01%$0.09242147.06$4.35
ETH<0.01%$0.30245314.1666$4.28
ETH<0.01%$0.5269757.9895$4.21
ETH<0.01%$0.0009614,373.8714$4.2
ETH<0.01%$0.00026815,473.142$4.14
ETH<0.01%$0.19725620.5649$4.06
ETH<0.01%$6.560.6115$4.01
ETH<0.01%$0.8679784.5743$3.97
ETH<0.01%$0.0007625,119.9911$3.9
ETH<0.01%$0.7123595.4633$3.89
ETH<0.01%$0.11088735.0041$3.88
ETH<0.01%$0.019585197.086$3.86
ETH<0.01%$0.010619359.9096$3.82
ETH<0.01%<$0.00000114,405,947,890.6713$3.82
ETH<0.01%$0.008639439.5502$3.8
ETH<0.01%$1.013.7638$3.79
ETH<0.01%$0.00417898.38$3.75
ETH<0.01%$0.016579224.7484$3.73
ETH<0.01%$0.9995693.666$3.66
ETH<0.01%$0.0011263,250.572$3.66
ETH<0.01%$0.06734953.7708$3.62
ETH<0.01%$0.004279846.023$3.62
ETH<0.01%$1.342.674$3.57
ETH<0.01%$0.00010134,844.179$3.53
ETH<0.01%$0.0914538.4195$3.51
ETH<0.01%$0.6672095.2407$3.5
ETH<0.01%$0.13768325.0872$3.45
ETH<0.01%$0.0009363,673.5176$3.44
ETH<0.01%$1,930.330.00177658$3.43
ETH<0.01%$0.025355134.8228$3.42
ETH<0.01%$3,324.880.00102673$3.41
ETH<0.01%$0.06541251.9188$3.4
ETH<0.01%$0.0004098,286.1044$3.39
ETH<0.01%$0.0025151,345.961$3.39
ETH<0.01%$0.0007154,675.9695$3.34
ETH<0.01%$0.07463144.734$3.34
ETH<0.01%$0.1173227.8006$3.26
ETH<0.01%$0.0020381,578.5127$3.22
ETH<0.01%$0.9099683.4992$3.18
ETH<0.01%$0.009877308.7872$3.05
ETH<0.01%$0.0003438,875.173$3.05
ETH<0.01%$0.09172732.396$2.97
ETH<0.01%$0.023762124.284$2.95
ETH<0.01%$0.17584416.697$2.94
ETH<0.01%$0.002964986.5208$2.92
ETH<0.01%$0.006713432.3731$2.9
ETH<0.01%$0.20188314.3075$2.89
ETH<0.01%$0.7954263.6099$2.87
ETH<0.01%$0.9517572.9715$2.83
ETH<0.01%$0.26524510.5037$2.79
ETH<0.01%$0.18564615$2.78
ETH<0.01%$0.00003480,820.0916$2.78
ETH<0.01%$0.6458684.2995$2.78
ETH<0.01%$0.7339713.7733$2.77
ETH<0.01%$0.016177169.5693$2.74
ETH<0.01%$2.870.9464$2.71
ETH<0.01%$0.0013891,950.255$2.71
ETH<0.01%$0.0005634,782.519$2.69
ETH<0.01%$1.152.314$2.66
ETH<0.01%$0.006882385.8503$2.66
ETH<0.01%$0.02768295.6728$2.65
ETH<0.01%$0.0000021,101,160.4087$2.62
ETH<0.01%$0.015928164.3386$2.62
ETH<0.01%$0.0016091,624.5525$2.61
ETH<0.01%$0.16637215.4835$2.58
ETH<0.01%$6.180.41$2.53
ETH<0.01%$0.00018213,905.2682$2.53
ETH<0.01%$0.021812115.482$2.52
ETH<0.01%$0.05177348.5301$2.51
ETH<0.01%$0.03255976.524$2.49
ETH<0.01%$0.0007083,516.9802$2.49
ETH<0.01%$0.007499325.905$2.44
ETH<0.01%$0.020591117.9173$2.43
ETH<0.01%$0.00022810,559.5012$2.41
ETH<0.01%<$0.0000013,616,967,204.8345$2.38
ETH<0.01%$0.00375619.984$2.32
ETH<0.01%$0.009985232.4913$2.32
ETH<0.01%$0.0016481,408.3143$2.32
ETH<0.01%$0.17268613.1942$2.28
ETH<0.01%$43.550.052$2.26
ETH<0.01%$0.0004814,694.0212$2.26
ETH<0.01%$0.9976952.2616$2.26
ETH<0.01%<$0.00000142,352,269.9505$2.26
ETH<0.01%$0.1577814.2976$2.26
ETH<0.01%$0.0744930.1249$2.24
ETH<0.01%$0.15309214.5476$2.23
ETH<0.01%$0.3176847.0094$2.23
ETH<0.01%$0.015885137.2566$2.18
ETH<0.01%$1.032.1026$2.17
ETH<0.01%<$0.00000150,009,730.2367$2.17
ETH<0.01%$0.002838759.7793$2.16
ETH<0.01%$1.071.9927$2.14
ETH<0.01%$0.06101935.0564$2.14
ETH<0.01%$0.006752315.8616$2.13
ETH<0.01%$0.02324791.5885$2.13
ETH<0.01%$0.03421661.7085$2.11
ETH<0.01%$0.0001514,074.8918$2.11
ETH<0.01%$0.0000021,269,749.3285$2.1
ETH<0.01%$0.00002584,548.0277$2.09
ETH<0.01%$0.000005392,206.2812$2.07
ETH<0.01%$0.02352786.5307$2.04
ETH<0.01%$0.2288938.8779$2.03
ETH<0.01%$0.2178599.3202$2.03
ETH<0.01%$0.5719313.5476$2.03
ETH<0.01%$0.0014831,362.1203$2.02
ETH<0.01%$0.0016221,239.7682$2.01
ETH<0.01%$0.04710842.4264$2
ETH<0.01%$0.003057648.7864$1.98
ETH<0.01%$0.02588776.621$1.98
ETH<0.01%$0.003892508.177$1.98
ETH<0.01%$0.04309845.75$1.97
ETH<0.01%$0.0018771,037.1468$1.95
ETH<0.01%$28.630.0674$1.93
ETH<0.01%$0.017222111.2998$1.92
ETH<0.01%$0.002149861.0283$1.85
ETH<0.01%$0.006102302.5351$1.85
ETH<0.01%$0.01468125.0333$1.84
ETH<0.01%$0.008627212.5023$1.83
ETH<0.01%$0.02540372.0792$1.83
ETH<0.01%$2.540.7095$1.8
ETH<0.01%$0.00703255.4389$1.8
ETH<0.01%$0.012798139.9702$1.79
ETH<0.01%$0.0002198,177.0134$1.79
ETH<0.01%$0.0000725,505.3597$1.78
ETH<0.01%$1.311.3549$1.77
ETH<0.01%$0.0328853.9569$1.77
ETH<0.01%$0.0014271,240.551$1.77
ETH<0.01%$0.3893674.5381$1.77
ETH<0.01%$0.0000012,596,780.467$1.76
ETH<0.01%$0.2015448.6796$1.75
ETH<0.01%$0.0014531,195.728$1.74
ETH<0.01%$0.3660354.6675$1.71
ETH<0.01%$0.03069355.4192$1.7
ETH<0.01%$0.00003253,288.7112$1.68
ETH<0.01%<$0.0000013,773,899,543.488$1.67
ETH<0.01%$0.0011661,429.2583$1.67
ETH<0.01%$0.05896728.0191$1.65
ETH<0.01%$0.005007329.307$1.65
ETH<0.01%$0.0003614,470.1553$1.61
ETH<0.01%$0.006164261.8511$1.61
ETH<0.01%$0.0009931,618.2637$1.61
ETH<0.01%$0.13388111.9736$1.6
ETH<0.01%$0.13373711.9252$1.59
ETH<0.01%$0.05069730.9946$1.57
ETH<0.01%$0.0001858,442.684$1.56
ETH<0.01%$0.00009416,522.029$1.56
ETH<0.01%$0.009613161.5034$1.55
ETH<0.01%$0.3149164.9012$1.54
ETH<0.01%$1,858.220.00082935$1.54
ETH<0.01%$0.011255136.4815$1.54
ETH<0.01%$0.527832.8999$1.53
ETH<0.01%$0.07618819.0881$1.45
ETH<0.01%$0.0000012,252,368.3192$1.45
ETH<0.01%$0.2832825.099$1.44
ETH<0.01%$0.010519135.1273$1.42
ETH<0.01%$0.0002395,938.7363$1.42
ETH<0.01%$0.0010271,337.7158$1.37
ETH<0.01%$0.010699125.3424$1.34
ETH<0.01%$0.02096363.7368$1.34
ETH<0.01%$0.1682937.8325$1.32
ETH<0.01%$0.09154114.3838$1.32
ETH<0.01%$0.2349585.5914$1.31
ETH<0.01%$4.650.2809$1.31
ETH<0.01%$0.0004512,879.4323$1.3
ETH<0.01%$8.920.1443$1.29
ETH<0.01%$0.0004852,651.5189$1.29
ETH<0.01%$0.01947265.7275$1.28
ETH<0.01%$0.00001130,547.2324$1.27
ETH<0.01%$0.01392691.2983$1.27
ETH<0.01%$0.0005392,355.039$1.27
ETH<0.01%$2.10.6041$1.27
ETH<0.01%$0.0003433,662.8665$1.25
ETH<0.01%$0.3575413.5024$1.25
ETH<0.01%$0.2348455.2436$1.23
ETH<0.01%$0.0008871,385.5434$1.23
ETH<0.01%$0.4450422.7599$1.23
ETH<0.01%$0.001669728.8689$1.22
ETH<0.01%$8.20.148$1.21
ETH<0.01%$0.0003793,192.3867$1.21
ETH<0.01%$0.004029298.2824$1.2
ETH<0.01%$0.06774617.4508$1.18
ETH<0.01%$0.0011341,036.0202$1.18
ETH<0.01%$0.01715668.3441$1.17
ETH<0.01%$0.007022165.7669$1.16
ETH<0.01%$0.003431334.8835$1.15
ETH<0.01%$0.11130810.2453$1.14
ETH<0.01%$0.005573203.4559$1.13
ETH<0.01%$0.01494274.3157$1.11
ETH<0.01%$0.000005241,968.6745$1.1
ETH<0.01%$0.08180313.3732$1.09
ETH<0.01%$0.0001357,964.8048$1.08
ETH<0.01%<$0.0000013,004,136.1399$1.08
ETH<0.01%$0.000003321,049.6847$1.07
ETH<0.01%$0.2287274.6729$1.07
ETH<0.01%$0.0001477,223.027$1.06
ETH<0.01%$0.0001367,795.3416$1.06
ETH<0.01%$0.010303102.3484$1.05
ETH<0.01%$0.02831636.5563$1.04
ETH<0.01%$0.002726374.973$1.02
ETH<0.01%$0.4719662.1536$1.02
ETH<0.01%$0.0000011,566,743.1688$1
ETH<0.01%$0.0003243,064.1652$0.9921
ETH<0.01%$0.01248479.3529$0.9906
ETH<0.01%$0.8102221.22$0.9884
ETH<0.01%$93,6240.00001002$0.9381
ETH<0.01%$0.4223712.1918$0.9257
ETH<0.01%$0.05182117.7261$0.9185
ETH<0.01%$0.741961.2306$0.913
ETH<0.01%$6.030.1491$0.8992
ETH<0.01%$0.0004841,857.4382$0.8984
ETH<0.01%$0.06520913.726$0.895
ETH<0.01%$0.08722510.1388$0.8843
ETH<0.01%$0.01219371.2298$0.8684
ETH<0.01%$0.002147403.9538$0.8673
ETH<0.01%$0.0001167,435.1659$0.8657
ETH<0.01%$0.03932321.96$0.8635
ETH<0.01%$0.03151127.17$0.8561
ETH<0.01%$0.0002723,131.5381$0.8522
ETH<0.01%$0.04516518.6625$0.8428
ETH<0.01%$0.003404247.4098$0.842
ETH<0.01%$0.03306124.9721$0.8256
ETH<0.01%$0.0963648.5603$0.8248
ETH<0.01%<$0.00000170,462,814.996$0.8237
ETH<0.01%$0.0002024,067.1974$0.8222
ETH<0.01%$0.001166697.6591$0.8136
ETH<0.01%$0.0005631,436.4884$0.808
ETH<0.01%$0.001966409.9898$0.806
ETH<0.01%$0.0000810,045.293$0.8047
ETH<0.01%$31.440.0251$0.7876
ETH<0.01%$1,510.790.00051767$0.782
ETH<0.01%$0.01407654.7598$0.7707
ETH<0.01%$0.006083126.108$0.7671
ETH<0.01%$0.05993612.794$0.7668
ETH<0.01%$0.274032.7718$0.7595
ETH<0.01%$0.01981938.2892$0.7588
ETH<0.01%$10.7506$0.7506
ETH<0.01%$0.00002431,318.9885$0.7478
ETH<0.01%$0.06385811.693$0.7466
ETH<0.01%$0.8722810.8556$0.7463
ETH<0.01%$1.150.636$0.7313
ETH<0.01%$0.001528464.6383$0.7097
ETH<0.01%$0.003384205.6274$0.6959
ETH<0.01%$0.02365129.4$0.6953
ETH<0.01%$0.04735514.6731$0.6948
ETH<0.01%$0.03458520.0323$0.6928
ETH<0.01%<$0.000001218,494,402.2159$0.6908
ETH<0.01%$0.001524446.6236$0.6807
ETH<0.01%$0.01611942.0478$0.6777
ETH<0.01%$0.1428434.7357$0.6764
ETH<0.01%$0.003506192.6119$0.6753
ETH<0.01%$0.0002462,716.815$0.6686
ETH<0.01%$0.002175299.7483$0.6518
ETH<0.01%$0.4038421.5982$0.6454
ETH<0.01%$0.003393189.5613$0.643
ETH<0.01%$0.00973865.3448$0.6363
ETH<0.01%$0.00708289.6685$0.635
ETH<0.01%$0.002115293.4568$0.6206
ETH<0.01%$0.0005051,216.3635$0.614
ETH<0.01%$0.0002942,076.9234$0.611
ETH<0.01%$0.2224792.7082$0.6025
ETH<0.01%$0.002407249.4889$0.6005
ETH<0.01%<$0.000001327,291,333.2845$0.5969
ETH<0.01%$0.0094262.6637$0.5902
ETH<0.01%$0.001738338.165$0.5877
ETH<0.01%$0.0915446.3882$0.5848
ETH<0.01%$0.0003091,885.3692$0.5823
ETH<0.01%$52.270.011$0.5763
ETH<0.01%$0.002611210.3059$0.549
ETH<0.01%$0.998820.5481$0.5474
ETH<0.01%$17.280.0315$0.5436
ETH<0.01%$0.004269125.5922$0.5362
ETH<0.01%$0.0001593,302.1818$0.5246
ETH<0.01%$0.2726321.9148$0.522
ETH<0.01%$19.20.027$0.5175
ETH<0.01%$0.002125241.0665$0.5121
ETH<0.01%$0.02725818.108$0.4935
ETH<0.01%$0.0068471.6744$0.4902
ETH<0.01%$0.00001630,618.1291$0.4852
ETH<0.01%$0.0923735.1463$0.4753
ETH<0.01%$1,986.440.00023768$0.4721
ETH<0.01%$0.0395811.8492$0.4689
ETH<0.01%$1,809.150.00025535$0.4619
ETH<0.01%$0.001022444.4753$0.4542
ETH<0.01%$0.02394418.8748$0.4519
ETH<0.01%$0.246351.7959$0.4424
ETH<0.01%$0.00000947,765.253$0.4423
ETH<0.01%$0.0000469,586.704$0.4372
ETH<0.01%$0.01545828.2455$0.4366
ETH<0.01%$1.320.3296$0.4347
ETH<0.01%$2.430.1758$0.4267
ETH<0.01%$0.00001823,745.7217$0.424
ETH<0.01%$1.210.3502$0.4237
ETH<0.01%$0.02134419.8455$0.4235
ETH<0.01%$0.01962621.3472$0.4189
ETH<0.01%$0.000409978.8493$0.4005
ETH<0.01%$15,086.920.00002642$0.3985
ETH<0.01%$0.000002237,452.4279$0.3985
ETH<0.01%$0.3496811.1353$0.3969
ETH<0.01%$9.040.0438$0.3956
ETH<0.01%$0.01264531.2651$0.3953
ETH<0.01%$0.183632.0945$0.3846
ETH<0.01%$0.00427190$0.3844
ETH<0.01%$0.000001327,713.1347$0.3768
ETH<0.01%$0.0002531,485.0793$0.3763
ETH<0.01%$0.0000419,032.2103$0.3731
ETH<0.01%$0.9994950.3699$0.3697
ETH<0.01%$0.2876451.2225$0.3516
ETH<0.01%$0.000392868.3866$0.3402
ETH<0.01%$0.000964350.6511$0.3378
ETH<0.01%$0.0846763.8835$0.3288
ETH<0.01%$0.001688193.9708$0.3275
ETH<0.01%$0.000761429.2628$0.3265
ETH<0.01%$0.00339595.4915$0.3241
ETH<0.01%$93,8790.00000335$0.3144
ETH<0.01%$0.001118281.094$0.3141
ETH<0.01%$0.4627070.6769$0.3132
ETH<0.01%$0.002369129.8033$0.3075
ETH<0.01%$0.000321943.4723$0.3032
ETH<0.01%$0.0001492,026.8591$0.3016
ETH<0.01%$0.002698111.6446$0.3011
ETH<0.01%$0.0899353.2707$0.2941
ETH<0.01%$0.0001342,192.0432$0.2939
ETH<0.01%$0.000499580.2264$0.2893
ETH<0.01%$0.1979791.4281$0.2827
ETH<0.01%$2.270.1228$0.2787
ETH<0.01%$0.0766073.6192$0.2772
ETH<0.01%$0.997650.2775$0.2768
ETH<0.01%$0.00000466,132$0.2605
ETH<0.01%$0.0017152.2352$0.2588
ETH<0.01%$10.2553$0.2553
ETH<0.01%<$0.000001335,574,268.7172$0.2517
ETH<0.01%$0.002001125.1558$0.2503
ETH<0.01%$0.000414599.517$0.2484
ETH<0.01%$0.0000852,780.9024$0.2373
ETH<0.01%$0.4669090.5009$0.2338
ETH<0.01%$0.01539815.0407$0.2315
ETH<0.01%$611.160.00036746$0.2245
ETH<0.01%$8,246.90.00002714$0.2237
ETH<0.01%$0.00728330.0587$0.2189
ETH<0.01%$0.0445894.8598$0.2166
ETH<0.01%$0.00001414,425.9823$0.2062
ETH<0.01%$3.510.0572$0.2009
ETH<0.01%$0.01975510.1512$0.2005
ETH<0.01%$0.0148413.4987$0.2003
ETH<0.01%$0.00400849.9692$0.2002
ETH<0.01%$0.000886221.4451$0.1961
ETH<0.01%$0.01163216.8537$0.196
ETH<0.01%$0.047644.1022$0.1954
ETH<0.01%$0.000958202.6034$0.1941
ETH<0.01%$0.0216628.8181$0.191
ETH<0.01%$0.0047538.2122$0.1815
ETH<0.01%$0.0368924.9$0.1807
ETH<0.01%$0.0340345.2313$0.178
ETH<0.01%$0.0345414.9682$0.1716
ETH<0.01%$0.00416340.4316$0.1682
ETH<0.01%$0.001175142.7827$0.1678
ETH<0.01%$0.000111,524.6155$0.1677
ETH<0.01%$0.1432121.1412$0.1634
ETH<0.01%$10.1625$0.1627
ETH<0.01%$0.000581270.9257$0.1575
ETH<0.01%<$0.0000013,558,115.116$0.1552
ETH<0.01%$0.00906916.5794$0.1503
ETH<0.01%$0.7272460.2015$0.1465
ETH<0.01%$0.1193141.2083$0.1441
ETH<0.01%$0.00000818,967.2434$0.143
ETH<0.01%$0.3283520.4349$0.1428
ETH<0.01%$0.00172279.1901$0.1363
ETH<0.01%$0.000133988.7193$0.1312
ETH<0.01%$0.00220259.3164$0.1306
ETH<0.01%$9.530.0136$0.1297
ETH<0.01%$1,953.930.00006625$0.1294
ETH<0.01%$0.00919313.2427$0.1217
ETH<0.01%$0.0389193.0607$0.1191
ETH<0.01%$569.690.00020918$0.1191
ETH<0.01%$0.000454260.5356$0.1183
ETH<0.01%$0.0169826.8966$0.1171
ETH<0.01%$2.040.053$0.1083
ETH<0.01%$0.002739.0406$0.1054
ETH<0.01%$0.0204625.126$0.1048
ARB9.32%$18,276.3264$8,276.33
ARB4.12%$1,812.342.0197$3,660.44
ARB1.99%$93,6870.0188$1,763.62
ARB0.62%$1,815.50.3009$546.33
ARB0.31%$167.441.6337$273.54
ARB0.27%$1,814.610.1297$235.29
ARB0.26%$1229.8428$229.84
ARB0.15%$1132.7711$132.77
ARB0.11%$15.166.2763$95.15
ARB0.08%$2,176.690.0312$68.02
ARB0.05%$0.0318831,304.5172$41.59
ARB0.03%$0.33240388.5276$29.43
ARB0.03%$122.8182$22.82
ARB0.02%$121.0319$21.03
ARB0.02%$15.121.3591$20.55
ARB0.02%$21.770.9175$19.97
ARB0.02%$2.745.8542$16.04
ARB0.02%$0.99993715.8292$15.83
ARB0.01%$0.000016647,959.6806$10.28
ARB<0.01%$0.0072561,142.9247$8.29
ARB<0.01%$43.550.1881$8.19
ARB<0.01%$0.00058811,781.8595$6.93
ARB<0.01%$0.000024280,669.7608$6.65
ARB<0.01%$0.21521629.846$6.42
ARB<0.01%$0.00056310,916.9386$6.14
ARB<0.01%$3.511.5086$5.3
ARB<0.01%<$0.00000113,263,509,025.7531$3.98
ARB<0.01%$0.683235.8052$3.97
ARB<0.01%$0.029765111.4082$3.32
ARB<0.01%$0.898983.6169$3.25
ARB<0.01%$0.9997093.0331$3.03
ARB<0.01%$1.112.5899$2.87
ARB<0.01%$0.9996262.6711$2.67
ARB<0.01%$382.630.00634329$2.43
ARB<0.01%$12.3953$2.4
ARB<0.01%$6.030.3622$2.18
ARB<0.01%$93,6630.00001823$1.71
ARB<0.01%$93,7810.00001531$1.44
ARB<0.01%$2.030.6935$1.41
ARB<0.01%$0.00010711,460.6857$1.23
ARB<0.01%$93,2710.00001251$1.17
ARB<0.01%$11.1568$1.16
ARB<0.01%$0.006524156.2754$1.02
ARB<0.01%$0.004874208.1864$1.01
ARB<0.01%$0.01466368.6671$1.01
ARB<0.01%$0.8005341.2299$0.9845
ARB<0.01%$0.0002823,391.2508$0.9562
ARB<0.01%$0.01491954.6335$0.815
ARB<0.01%$0.2030573.8346$0.7786
ARB<0.01%$0.9870460.7584$0.7486
ARB<0.01%$0.002939220.221$0.6471
ARB<0.01%$1,897.030.00024974$0.4737
ARB<0.01%$10.4644$0.4648
ARB<0.01%$0.9998350.3722$0.3721
ARB<0.01%$0.0448486.9832$0.3131
ARB<0.01%$0.0609355.0818$0.3096
ARB<0.01%$0.000002122,965.5823$0.2938
ARB<0.01%$0.01873214.1352$0.2647
ARB<0.01%$0.0328457.4531$0.2447
ARB<0.01%$0.5658580.4146$0.2345
ARB<0.01%$0.9996820.1779$0.1778
ARB<0.01%$1.010.1747$0.1755
ARB<0.01%$0.0057229.5442$0.1689
ARB<0.01%$0.00000917,748.5245$0.1627
ARB<0.01%$0.999020.1564$0.1562
ARB<0.01%$1,809.650.00008627$0.1561
ARB<0.01%$0.0923851.6623$0.1535
ARB<0.01%$0.00350240.2264$0.1408
ARB<0.01%$0.1025841.3656$0.14
ARB<0.01%$93,7060.00000138$0.1293
POL13.01%$0.44697525,838.2316$11,549.04
POL0.89%$1793.9374$793.94
POL0.49%$93,6220.0046249$432.99
POL0.47%$1,811.550.2283$413.62
POL0.18%$1161.2928$161.29
POL0.12%$1109.9841$109.98
POL0.05%$0.272062169.7193$46.17
POL0.05%$0.070152624.7536$43.83
POL0.05%$0.22248187.3419$41.68
POL0.03%$0.0070473,973.3497$28
POL0.02%$0.30052563.6517$19.13
POL0.02%$12.721.1847$15.07
POL0.01%$0.22839646.1883$10.55
POL<0.01%$0.045114145.6339$6.57
POL<0.01%$3,338.750.00196736$6.57
POL<0.01%$1.145.7057$6.5
POL<0.01%$1.145.7057$6.5
POL<0.01%$0.025354242.6187$6.15
POL<0.01%$0.0007716,818.3732$5.25
POL<0.01%$0.33797114.8158$5.01
POL<0.01%$0.12664133.9141$4.29
POL<0.01%$0.9996363.4921$3.49
POL<0.01%$0.06031351.35$3.1
POL<0.01%$0.006424445.14$2.86
POL<0.01%$0.02838680.7212$2.29
POL<0.01%$0.4944964.293$2.12
POL<0.01%$0.315126.0026$1.89
POL<0.01%$167.030.00942984$1.58
POL<0.01%$0.001737835.659$1.45
POL<0.01%$0.0001976,855.2296$1.35
POL<0.01%$0.003747351.7355$1.32
POL<0.01%$0.001318987.7914$1.3
POL<0.01%$0.5647862.1563$1.22
POL<0.01%$11.1898$1.19
POL<0.01%$0.004221272.9097$1.15
POL<0.01%$0.05775319.6911$1.14
POL<0.01%$0.003899281.5452$1.1
POL<0.01%$6.030.1809$1.09
POL<0.01%$0.01225787.4222$1.07
POL<0.01%$0.05094121.015$1.07
POL<0.01%$15.120.0658$0.9943
POL<0.01%<$0.0000019,810,976.2252$0.88
POL<0.01%$0.00835699.7466$0.8335
POL<0.01%$0.004409182.3338$0.8039
POL<0.01%$2,176.160.00035836$0.7798
POL<0.01%$0.2857482.6091$0.7455
POL<0.01%$10.6101$0.61
POL<0.01%$0.00962857$0.5487
POL<0.01%$0.0633948.164$0.5175
POL<0.01%$0.0001164,302.1588$0.5002
POL<0.01%$0.2568131.8999$0.4879
POL<0.01%$0.2221192.1716$0.482355
POL<0.01%$0.2028252.2533$0.457
POL<0.01%$0.8190280.5291$0.4333
POL<0.01%$10.4003$0.4014
POL<0.01%$0.1977341.7915$0.3542
POL<0.01%$0.3157371.116$0.3523
POL<0.01%$0.1204052.6806$0.3227
POL<0.01%$0.6814930.4518$0.3079
POL<0.01%$0.000866335.1815$0.2903
POL<0.01%$0.00104268.4248$0.2792
POL<0.01%$0.001879146.3589$0.2749
POL<0.01%$0.00284589.5683$0.2548
POL<0.01%$0.00000289,750$0.214
POL<0.01%$0.00192106.5258$0.2045
POL<0.01%$1,812.430.00009608$0.1741
POL<0.01%$0.0725812.0209$0.1466
POL<0.01%$0.000327416.1988$0.1361
POL<0.01%$0.7605460.1737$0.1321
POL<0.01%$0.0284644.62$0.1315
POL<0.01%$0.000293447.4083$0.131
POL<0.01%$0.000122969.3328$0.118
POL<0.01%$0.0923671.1633$0.1074
POL<0.01%$0.00225446.1363$0.1039
BASE3.52%$1,812.331.726$3,128.01
BASE3.03%$93,7960.0287$2,690.54
BASE2.80%$0.0003886,407,595.7102$2,487.11
BASE1.39%$0.06271919,690.2413$1,234.94
BASE1.10%$1978.544$979.52
BASE0.69%$0.906066673.5952$610.32
BASE0.35%$1,816.390.1708$310.33
BASE0.17%$0.999994155.1578$155.16
BASE0.14%$1.03116.776$120.4
BASE0.10%$93,8400.00097679$91.66
BASE0.10%$0.118444768.4758$91.02
BASE0.10%$0.99995389.8056$89.8
BASE0.10%$1.1477.9387$88.85
BASE0.08%$173.2281$73.24
BASE0.08%$0.000001109,445,679.492$67.75
BASE0.07%$0.556225116.5445$64.82
BASE0.07%$0.00392314,797.2362$58.05
BASE0.06%$0.03231,703.1798$55.01
BASE0.06%$0.0164323,220.4532$52.92
BASE0.06%$0.0230172,256.5397$51.94
BASE0.05%$0.0237921,974.8199$46.98
BASE0.04%$0.00338811,216.5041$38
BASE0.04%$1,984.070.0189$37.49
BASE0.04%$0.00335110,968.6325$36.75
BASE0.04%$2.9210.6616$31.13
BASE0.03%$0.125618246.8534$31.01
BASE0.03%$0.00195214,941.3642$29.17
BASE0.03%$2,176.440.0133$28.85
BASE0.03%$167.580.158$26.47
BASE0.03%$0.51220549.741$25.48
BASE0.03%$2.789.0673$25.21
BASE0.03%$0.00070834,099.2639$24.14
BASE0.03%$0.000083282,671.5339$23.57
BASE0.02%$0.00115116,624.2341$19.13
BASE0.02%$93,7940.00019588$18.37
BASE0.02%$0.0093121,736.9103$16.17
BASE0.02%$0.5653726.1006$14.76
BASE0.02%$52.110.2622$13.66
BASE0.01%$0.40245732.735$13.17
BASE0.01%$0.00055622,835.5108$12.7
BASE0.01%$0.050277251.1594$12.63
BASE0.01%$0.00009115,692.0711$10.38
BASE0.01%$0.00009115,692.0711$10.38
BASE<0.01%$0.0021563,760.4946$8.11
BASE<0.01%$0.2085538.493$8.03
BASE<0.01%$0.00362,223.3365$8
BASE<0.01%$0.0000061,310,951.7997$7.92
BASE<0.01%$0.018463416.1392$7.68
BASE<0.01%$0.009895771.0449$7.63
BASE<0.01%$0.034762210.249$7.31
BASE<0.01%$0.019729355.4702$7.01
BASE<0.01%$0.016722408.5113$6.83
BASE<0.01%$0.027148250.9394$6.81
BASE<0.01%$0.006543956.7573$6.26
BASE<0.01%$0.0010925,491.1213$6
BASE<0.01%$0.2481723.9393$5.94
BASE<0.01%$0.006805792.2942$5.39
BASE<0.01%$0.0005959,030.3216$5.37
BASE<0.01%$0.052675100.3125$5.28
BASE<0.01%$0.17218430.6361$5.28
BASE<0.01%$0.0044291,177.4705$5.22
BASE<0.01%$0.007761646.7284$5.02
BASE<0.01%<$0.000001220,697,009.9781$4.92
BASE<0.01%$0.06022280.819$4.87
BASE<0.01%$1,930.490.00250049$4.83
BASE<0.01%$0.038307124.8606$4.78
BASE<0.01%$0.05645684.613$4.78
BASE<0.01%$0.00034813,627.1972$4.74
BASE<0.01%$0.003971,129.6754$4.48
BASE<0.01%$0.000016268,438.6274$4.4
BASE<0.01%$0.001532,606.0313$3.99
BASE<0.01%$0.9987963.9816$3.98
BASE<0.01%$0.0005696,868.7355$3.91
BASE<0.01%$2.741.4084$3.86
BASE<0.01%$0.015918235.8745$3.75
BASE<0.01%$0.00006160,869.3497$3.73
BASE<0.01%$0.0004049,089.5793$3.67
BASE<0.01%$0.7178654.8171$3.46
BASE<0.01%$0.0004946,318.581$3.12
BASE<0.01%$0.0010622,895.075$3.07
BASE<0.01%$0.4694086.4156$3.01
BASE<0.01%$0.0007943,632.243$2.88
BASE<0.01%$0.03804775.2196$2.86
BASE<0.01%$0.5444275.1814$2.82
BASE<0.01%$0.0003168,887.3527$2.81
BASE<0.01%$0.003975702.3929$2.79
BASE<0.01%$0.00017615,564.1706$2.74
BASE<0.01%$0.012188224.214$2.73
BASE<0.01%$0.03755768.6473$2.58
BASE<0.01%$0.23010211.0937$2.55
BASE<0.01%$0.011386223.392$2.54
BASE<0.01%$0.00741316.1438$2.34
BASE<0.01%$0.002957775.1583$2.29
BASE<0.01%$0.006084367.2576$2.23
BASE<0.01%$0.000013168,677.0861$2.21
BASE<0.01%$0.2690537.371$1.98
BASE<0.01%$1.571.2489$1.96
BASE<0.01%$0.0019181,007.7051$1.93
BASE<0.01%$0.016695103.5181$1.73
BASE<0.01%$0.002529666.3458$1.68
BASE<0.01%$0.0015181,095.3394$1.66
BASE<0.01%$0.006281259.7105$1.63
BASE<0.01%$0.01664697.6533$1.63
BASE<0.01%$1.561.0312$1.61
BASE<0.01%$0.000013121,446.5446$1.58
BASE<0.01%$0.0005632,726.5213$1.53
BASE<0.01%$0.0002356,128.4817$1.44
BASE<0.01%$0.004554300.0104$1.37
BASE<0.01%$0.01912168.2493$1.3
BASE<0.01%$0.10112312.7597$1.29
BASE<0.01%$0.741991.6793$1.25
BASE<0.01%$0.011375108.974$1.24
BASE<0.01%$0.9977721.2326$1.23
BASE<0.01%$0.000004324,405.3477$1.21
BASE<0.01%$0.000002629,719.4708$1.11
BASE<0.01%$0.0005522,016.6229$1.11
BASE<0.01%$0.004667233.1437$1.09
BASE<0.01%$11.0699$1.07
BASE<0.01%$0.01103487.1164$0.9612
BASE<0.01%$0.00004322,346.4603$0.9582
BASE<0.01%$2.760.3126$0.8628
BASE<0.01%$0.003697223.257$0.8252
BASE<0.01%$0.000922838.0553$0.7728
BASE<0.01%$0.000006117,721.831$0.764
BASE<0.01%$0.006768111.3834$0.7538
BASE<0.01%<$0.0000011,232,468,578.9682$0.7394
BASE<0.01%$0.000895756.4326$0.6766
BASE<0.01%$0.00002428,000.816$0.6661
BASE<0.01%$0.000006117,788.3101$0.6572
BASE<0.01%$0.9785050.6559$0.6417
BASE<0.01%$0.03072620.6092$0.6332
BASE<0.01%<$0.0000011,041,701,264.8364$0.625
BASE<0.01%$0.01038857.5835$0.5981
BASE<0.01%$0.0672658.3165$0.5594
BASE<0.01%$0.0651848.4502$0.5508
BASE<0.01%$0.00132412.2009$0.544
BASE<0.01%$0.000732665.067$0.4867
BASE<0.01%$0.0003621,325.7756$0.4797
BASE<0.01%$0.00001337,174.677$0.4691
BASE<0.01%$0.3761891.2451$0.4683
BASE<0.01%$1,897.070.00019214$0.3644
BASE<0.01%$0.00616458.4126$0.36
BASE<0.01%$0.2465691.3772$0.3395
BASE<0.01%<$0.00000117,739,573.1625$0.337
BASE<0.01%$0.1694861.8957$0.3212
BASE<0.01%$0.0001192,587.4376$0.3072
BASE<0.01%$0.00002114,596.3911$0.2996
BASE<0.01%$0.0310959.5681$0.2975
BASE<0.01%$0.3161790.936$0.2959
BASE<0.01%$5.610.0505$0.2835
BASE<0.01%$1.330.198$0.2633
BASE<0.01%$0.001575164.9853$0.2598
BASE<0.01%$0.00350170.75$0.2476
BASE<0.01%$0.9996390.2396$0.2395
BASE<0.01%$0.01889712.6488$0.239
BASE<0.01%$0.00000830,575.3021$0.236
BASE<0.01%$0.000892219.5252$0.1957
BASE<0.01%$0.000256740.004$0.1893
BASE<0.01%$0.3226620.5579$0.18
BASE<0.01%$0.00000271,051.0938$0.1698
BASE<0.01%$0.00232672.429$0.1684
BASE<0.01%$0.0000513,326.7869$0.1683
BASE<0.01%$0.0981891.6338$0.1604
BASE<0.01%$1,953.810.00007775$0.1519
BASE<0.01%$0.00000263,255.5529$0.1508
BASE<0.01%$0.0253995.2537$0.1334
BASE<0.01%$0.5499650.2341$0.1287
BASE<0.01%$0.00341635.5081$0.1212
BASE<0.01%$0.5121550.228$0.1167
BASE<0.01%$1.010.1104$0.1116
GNO6.74%$1,812.333.3$5,980.76
GNO0.06%$114.560.4704$53.89
GNO<0.01%$1.141.4267$1.63
GNO<0.01%$1.141.4267$1.63
GNO<0.01%$0.03960534.6203$1.37
GNO<0.01%$0.9999961.1862$1.19
GNO
xDai (XDAI)
<0.01%$0.9999960.6863$0.686288
GNO<0.01%$0.9999940.6716$0.6716
GNO<0.01%$0.9999940.4554$0.4554
GNO<0.01%$0.9872810.1648$0.1626
BSC1.59%$0.0874816,103.375$1,408.72
BSC0.61%$611.160.892$545.17
BSC0.56%$1,811.010.276$499.89
BSC0.56%$2.28216.6304$494.92
BSC0.39%$93,789.910.00369124$346.2
BSC0.20%<$0.0000012,631,236,466.7135$179.9
BSC0.18%$1161.6679$161.67
BSC0.17%$0.0133811,043.0888$147.75
BSC0.14%$611.560.2031$124.21
BSC0.12%$0.999987109.0738$109.07
BSC0.08%$6.7410.2393$69.01
BSC0.05%$0.344254125.5302$43.21
BSC0.04%$0.99858939.2698$39.21
BSC0.04%$0.0111143,215.0765$35.73
BSC0.04%$43.580.8043$35.05
BSC0.04%$93,2670.00035628$33.23
BSC0.03%$2.0314.9897$30.43
BSC0.03%$0.07333308.0271$22.59
BSC0.02%$0.091544239.0546$21.88
BSC0.02%$0.14028145.8641$20.46
BSC0.02%$0.0134491,511.3389$20.33
BSC0.02%$0.000064315,842.7232$20.09
BSC0.02%$119.0407$19.05
BSC0.02%$0.018746900.1388$16.87
BSC0.02%$0.030859528.0811$16.3
BSC0.02%$0.026813588.9555$15.79
BSC0.02%$0.000108130,081.1789$14.04
BSC0.01%$0.020747614.0624$12.74
BSC0.01%$1.39.6229$12.54
BSC0.01%$0.000016789,706.2544$12.52
BSC0.01%$0.00018168,111.4536$12.3
BSC0.01%<$0.0000018,108,807,328.0775$11.97
BSC0.01%$0.013747859.8183$11.82
BSC0.01%$0.99999811.4649$11.46
BSC0.01%$152.20.0728$11.07
BSC0.01%$0.00014972,852.2054$10.83
BSC0.01%<$0.000001771,430,606.3369$10.57
BSC0.01%$0.24629342.7108$10.52
BSC0.01%$0.99874410.449$10.44
BSC0.01%$0.042312241.6952$10.23
BSC0.01%$0.0000091,086,148.9056$9.95
BSC0.01%$0.0024123,782.2884$9.12
BSC0.01%$0.12570770.8047$8.9
BSC<0.01%$0.0044122,005.7867$8.85
BSC<0.01%$93,6410.00009246$8.66
BSC<0.01%$0.0000025,155,398.1734$8.09
BSC<0.01%$0.0046491,693.5479$7.87
BSC<0.01%<$0.0000011,421,299,520.0492$7.78
BSC<0.01%<$0.0000013,065,236,324,868.9526$7.53
BSC<0.01%$2.762.7004$7.45
BSC<0.01%$6.041.1743$7.09
BSC<0.01%$0.000007959,077.8614$7.07
BSC<0.01%$0.01176593.3641$6.98
BSC<0.01%$2.742.515$6.89
BSC<0.01%$4.111.6733$6.88
BSC<0.01%<$0.000001487,871,614.9104$6.62
BSC<0.01%$5.571.1783$6.56
BSC<0.01%$0.8309377.5319$6.26
BSC<0.01%$0.21156429.4899$6.24
BSC<0.01%$0.07229784.2297$6.09
BSC<0.01%$3.131.9298$6.04
BSC<0.01%$0.026433228.4561$6.04
BSC<0.01%<$0.00000142,524,670.3113$6.01
BSC<0.01%$0.06151696.2058$5.92
BSC<0.01%$0.41800213.7788$5.76
BSC<0.01%$0.998685.686$5.68
BSC<0.01%$2.072.7241$5.64
BSC<0.01%$0.20306627.6934$5.62
BSC<0.01%$0.0029621,859.3139$5.51
BSC<0.01%$0.005615967.1948$5.43
BSC<0.01%$0.10643150.6588$5.39
BSC<0.01%$0.00032415,650.0852$5.08
BSC<0.01%$0.00009154,723.4487$5.01
BSC<0.01%$0.020577237.0817$4.88
BSC<0.01%$0.4964489.4205$4.68
BSC<0.01%$15.840.2932$4.64
BSC<0.01%$0.05591882.9886$4.64
BSC<0.01%$0.0008155,600.006$4.57
BSC<0.01%$0.000014325,299.6081$4.45
BSC<0.01%$0.030906143.395$4.43
BSC<0.01%$0.0016032,640.8726$4.23
BSC<0.01%$0.0019152,179.7536$4.17
BSC<0.01%$167.310.0244$4.08
BSC<0.01%$0.5166657.8803$4.07
BSC<0.01%$0.06432262.3111$4.01
BSC<0.01%$4.40.9001$3.96
BSC<0.01%$0.031947122.9794$3.93
BSC<0.01%$0.0004858,089.647$3.92
BSC<0.01%$5.350.7252$3.88
BSC<0.01%$0.019814193.4793$3.83
BSC<0.01%$0.020144190.279$3.83
BSC<0.01%$0.18492120.5065$3.79
BSC<0.01%$0.00013427,024.1134$3.61
BSC<0.01%$0.008904392.0843$3.49
BSC<0.01%$9.540.3645$3.48
BSC<0.01%$2.11.6336$3.43
BSC<0.01%$0.12144527.77$3.37
BSC<0.01%$0.031881105.0387$3.35
BSC<0.01%$0.07789742.0187$3.27
BSC<0.01%$22.780.1413$3.22
BSC<0.01%$0.5712995.5729$3.18
BSC<0.01%$0.05604155.0925$3.09
BSC<0.01%$0.00009431,467.8581$2.97
BSC<0.01%$0.07707538.0845$2.94
BSC<0.01%$0.08318435.0703$2.92
BSC<0.01%$0.005248517.6437$2.72
BSC<0.01%$0.004506601.3618$2.71
BSC<0.01%$0.0004485,903.226$2.65
BSC<0.01%$0.0003238,156.2513$2.64
BSC<0.01%$0.07484234.3649$2.57
BSC<0.01%<$0.00000161,569,609.966$2.57
BSC<0.01%$0.02627695.0777$2.5
BSC<0.01%$2.50.9896$2.47
BSC<0.01%$0.000007345,672.2415$2.46
BSC<0.01%$0.22302410.8763$2.43
BSC<0.01%$0.00019412,293.1272$2.39
BSC<0.01%$359.550.00645393$2.32
BSC<0.01%$0.2995187.7113$2.31
BSC<0.01%$0.0005773,925.6044$2.26
BSC<0.01%$2.161.0409$2.25
BSC<0.01%$0.002509894.5655$2.24
BSC<0.01%$0.00703318.7109$2.24
BSC<0.01%$0.20846810.4674$2.18
BSC<0.01%$0.021486100.8823$2.17
BSC<0.01%$0.000007310,873.7968$2.1
BSC<0.01%$0.3445196.0602$2.09
BSC<0.01%$0.6672093.108$2.07
BSC<0.01%$0.925672.2306$2.06
BSC<0.01%$0.007737261.0458$2.02
BSC<0.01%$0.002087948.2137$1.98
BSC<0.01%$178.630.011$1.96
BSC<0.01%$0.612283.1685$1.94
BSC<0.01%$0.09047621.2367$1.92
BSC<0.01%$0.03170760.4446$1.92
BSC<0.01%$0.007962240.4605$1.91
BSC<0.01%$0.0009521,981.791$1.89
BSC<0.01%$0.02616870.9101$1.86
BSC<0.01%$0.02164585.0802$1.84
BSC<0.01%$0.000003543,855.2572$1.83
BSC<0.01%$0.000004498,939.1251$1.81
BSC<0.01%$0.001181,529.1866$1.8
BSC<0.01%$0.2734756.5071$1.78
BSC<0.01%$0.0005543,197.9817$1.77
BSC<0.01%$0.010004175.4878$1.76
BSC<0.01%$0.01871593.102$1.74
BSC<0.01%$16.950.1026$1.74
BSC<0.01%$0.02540367.5003$1.71
BSC<0.01%$1.521.0807$1.64
BSC<0.01%$0.01671598.2185$1.64
BSC<0.01%$0.6763862.4137$1.63
BSC<0.01%$0.04337437.0429$1.61
BSC<0.01%$0.07613821.0452$1.6
BSC<0.01%$0.01695293.7478$1.59
BSC<0.01%$0.000002662,546.6992$1.58
BSC<0.01%$0.686112.2468$1.54
BSC<0.01%<$0.0000013,551,197.1764$1.54
BSC<0.01%$0.02315564.4789$1.49
BSC<0.01%$2.860.5211$1.49
BSC<0.01%$0.008668166.1626$1.44
BSC<0.01%$0.000014103,742.2749$1.41
BSC<0.01%$0.1811967.7977$1.41
BSC<0.01%$0.1726867.636$1.32
BSC<0.01%$0.02595850.6314$1.31
BSC<0.01%$0.3344043.8106$1.27
BSC<0.01%$0.05730122.18$1.27
BSC<0.01%$0.0000011,945,161.989$1.25
BSC<0.01%$0.3145793.9311$1.24
BSC<0.01%$0.00422288.8578$1.22
BSC<0.01%$0.0002255,343.7387$1.2
BSC<0.01%<$0.00000118,528,871.1116$1.2
BSC<0.01%$0.0000717,031.9558$1.19
BSC<0.01%$0.01586174.7406$1.19
BSC<0.01%$0.01350887.2842$1.18
BSC<0.01%$93,6240.00001245$1.17
BSC<0.01%$0.0003383,448.7063$1.17
BSC<0.01%$0.0005582,066.828$1.15
BSC<0.01%$0.010024113.1395$1.13
BSC<0.01%$0.004589245.3291$1.13
BSC<0.01%$0.04365725.7804$1.13
BSC<0.01%<$0.000001239,891,756.2121$1.13
BSC<0.01%$0.08467613.0575$1.11
BSC<0.01%$0.2761133.8761$1.07
BSC<0.01%$0.009551108.6674$1.04
BSC<0.01%$0.02450742.0194$1.03
BSC<0.01%$0.01987951.6951$1.03
BSC<0.01%<$0.0000019,855,764.0207$0.9616
BSC<0.01%$0.0001019,455.0365$0.9518
BSC<0.01%$15.180.0623$0.9453
BSC<0.01%<$0.00000183,057,882,794.6911$0.9331
BSC<0.01%$0.1476576.3105$0.9317
BSC<0.01%<$0.0000017,319,737.5529$0.9315
BSC<0.01%$0.1843995.034$0.9282
BSC<0.01%$33.670.0274$0.9228
BSC<0.01%$0.003956229.2854$0.9069
BSC<0.01%$0.0000959,469.292$0.9017
BSC<0.01%<$0.0000016,165,031,956.8236$0.8973
BSC<0.01%$0.0000011,398,201.2545$0.8939
BSC<0.01%$0.135516.5943$0.8935
BSC<0.01%$0.003326262.5633$0.8732
BSC<0.01%$0.004891174.4187$0.853
BSC<0.01%$0.01807446.0056$0.8315
BSC<0.01%$0.07450510.9315$0.8144
BSC<0.01%$668.890.00119399$0.7986
BSC<0.01%<$0.000001194,667,890,498.3453$0.7932
BSC<0.01%$0.6434611.1989$0.7714
BSC<0.01%$0.05778713.2946$0.7682
BSC<0.01%$0.001361559.2925$0.7612
BSC<0.01%$5.660.1335$0.7549
BSC<0.01%$0.02963324.8934$0.7376
BSC<0.01%$0.003511209.6768$0.7361
BSC<0.01%$0.01558347.1128$0.7341
BSC<0.01%<$0.0000013,819,904.8583$0.7189
BSC<0.01%<$0.000001710,081,679.8005$0.71
BSC<0.01%$0.000144,911.8636$0.6885
BSC<0.01%$0.0004841,393.923$0.6742
BSC<0.01%$0.7084410.9488$0.6721
BSC<0.01%<$0.0000017,835,672.7068$0.671
BSC<0.01%$0.5434791.2303$0.6686
BSC<0.01%$0.01168657.2071$0.6685
BSC<0.01%$0.01897534.9979$0.664
BSC<0.01%$0.01042258.7939$0.6127
BSC<0.01%$0.076178.038$0.6122
BSC<0.01%<$0.000001588,563,638.1595$0.6095
BSC<0.01%$0.00003815,763.987$0.598
BSC<0.01%$0.01972130.0755$0.5931
BSC<0.01%$92,3020.00000602$0.5556
BSC<0.01%$0.2515362.1926$0.5515
BSC<0.01%$0.000741729.0451$0.5398
BSC<0.01%$0.0810066.3168$0.5116
BSC<0.01%$0.002755185.4444$0.5108
BSC<0.01%$0.0001413,564.0747$0.5037
BSC<0.01%<$0.0000012,496,901.9508$0.4923
BSC<0.01%$0.00003713,223.5431$0.4902
BSC<0.01%$0.002502193.6684$0.4844
BSC<0.01%$0.1137784.208$0.4787
BSC<0.01%$0.001708272.9129$0.4661
BSC<0.01%$0.000987458.418$0.4522
BSC<0.01%$0.0000746,082.762$0.4499
BSC<0.01%$0.00869650.7493$0.4413
BSC<0.01%$0.1221613.607$0.4406
BSC<0.01%$0.00808254.449$0.44
BSC<0.01%$0.2857181.5278$0.4365
BSC<0.01%$0.001033421.944$0.436
BSC<0.01%$0.1957822.2175$0.4341
BSC<0.01%$0.01909822.5422$0.4305
BSC<0.01%$0.00486987.8984$0.428
BSC<0.01%$0.0480068.9138$0.4279
BSC<0.01%$0.1698652.5073$0.4259
BSC<0.01%$0.02539516.7643$0.4257
BSC<0.01%$0.3149161.3469$0.4241
BSC<0.01%$1.950.2164$0.422
BSC<0.01%$0.000003133,953.6713$0.4179
BSC<0.01%$0.01889421.5198$0.4065
BSC<0.01%$0.001546256.1898$0.3961
BSC<0.01%<$0.0000013,573,455,187,837.415$0.395
BSC<0.01%$0.01576625.028$0.3945
BSC<0.01%$0.001687232.731$0.3925
BSC<0.01%$0.0000137,995.2318$0.3795
BSC<0.01%$0.03185411.873$0.3782
BSC<0.01%$0.0000218,638.3325$0.3751
BSC<0.01%$0.002844130.9849$0.3724
BSC<0.01%$0.1199753.0494$0.3658
BSC<0.01%$0.02194616.5116$0.3623
BSC<0.01%$1,813.460.00019686$0.3569
BSC<0.01%$0.1892651.8035$0.3413
BSC<0.01%$0.564740.5968$0.337
BSC<0.01%$0.000405821.9505$0.3327
BSC<0.01%$0.2612241.2672$0.331
BSC<0.01%$0.9996640.3262$0.3261
BSC<0.01%$0.00002612,524.7802$0.3261
BSC<0.01%$0.000972326.3666$0.3173
BSC<0.01%$0.0924213.4174$0.3158
BSC<0.01%$0.01279824.4503$0.3129
BSC<0.01%$0.01021128.804$0.2941
BSC<0.01%$0.000361781.8536$0.2823
BSC<0.01%$0.6016330.4686$0.2819
BSC<0.01%$0.2135921.281$0.2736
BSC<0.01%$1,511.730.00018001$0.2721
BSC<0.01%$0.001118240.4827$0.2687
BSC<0.01%$0.0314868.3737$0.2636
BSC<0.01%$0.0325068.0881$0.2629
BSC<0.01%$1.030.2496$0.2576
BSC<0.01%$0.01604915.9021$0.2552
BSC<0.01%$0.1979791.2853$0.2544
BSC<0.01%$0.9839880.2541$0.25
BSC<0.01%<$0.0000011,216,162.4371$0.2481
BSC<0.01%$0.002029120.7831$0.245
BSC<0.01%$0.00316376.9492$0.2433
BSC<0.01%$0.002058116.6433$0.24
BSC<0.01%<$0.000001239,374,026.7776$0.2387
BSC<0.01%$0.000054,815.7212$0.2384
BSC<0.01%$40.880.00581775$0.2378
BSC<0.01%$0.0113420.7312$0.2351
BSC<0.01%$0.000492475.6592$0.2338
BSC<0.01%$0.01163920.053$0.2334
BSC<0.01%$0.01500815.5366$0.2331
BSC<0.01%$0.001783128.7066$0.2294
BSC<0.01%$5,175.890.00004354$0.2253
BSC<0.01%$0.0317177.0511$0.2236
BSC<0.01%$0.001166184.3751$0.2149
BSC<0.01%$0.0219539.7219$0.2134
BSC<0.01%$0.00292372.3841$0.2115
BSC<0.01%$0.0283167.3481$0.208
BSC<0.01%$1,897.010.00010669$0.2023
BSC<0.01%$0.279360.7233$0.202
BSC<0.01%$0.1431881.394$0.1996
BSC<0.01%<$0.0000012,399,646,590.5978$0.198
BSC<0.01%$0.00734526.6691$0.1958
BSC<0.01%$0.00001216,112.2139$0.1955
BSC<0.01%$0.00294861.894$0.1824
BSC<0.01%$0.0238447.4922$0.1786
BSC<0.01%$2.930.0584$0.1711
BSC<0.01%$0.000001133,592.5784$0.1709
BSC<0.01%$0.00882518.687$0.1649
BSC<0.01%<$0.000001110,945,398.557$0.1623
BSC<0.01%$0.00578427.9883$0.1618
BSC<0.01%$0.00565527.0678$0.153
BSC<0.01%<$0.000001222,358,110,651.4647$0.1525
BSC<0.01%$0.7172920.21$0.1506
BSC<0.01%$0.000248595.141$0.1475
BSC<0.01%<$0.000001615,901,569.853$0.1454
BSC<0.01%<$0.0000016,992,666,766.6272$0.1449
BSC<0.01%$0.00821117.5821$0.1443
BSC<0.01%$0.00196972.1503$0.142
BSC<0.01%$0.0915411.5373$0.1407
BSC<0.01%$2.550.0542$0.1381
BSC<0.01%$0.0231595.8511$0.1355
BSC<0.01%$0.00269649.257$0.1328
BSC<0.01%$0.0466172.8444$0.1325
BSC<0.01%$10.1311$0.1311
BSC<0.01%$1.260.1$0.126
BSC<0.01%$0.0000383,224.7999$0.1222
BSC<0.01%<$0.00000167,400,523,939.0429$0.1207
BSC<0.01%$0.00532722.3718$0.1191
BSC<0.01%$0.00133489.2908$0.119
BSC<0.01%$0.001131104.5115$0.1181
BSC<0.01%$0.9738130.1208$0.1176
BSC<0.01%$7.860.0149$0.1169
BSC<0.01%<$0.000001273,913.3635$0.1168
BSC<0.01%$0.00473224.4229$0.1155
BSC<0.01%$0.0863081.3189$0.1138
BSC<0.01%$0.6392510.1776$0.1135
BSC<0.01%$0.00965311.7449$0.1133
BSC<0.01%$0.0784661.4394$0.1129
BSC<0.01%$0.001038106.9857$0.1111
BSC<0.01%$0.000114950.5503$0.1081
BSC<0.01%$1.060.102$0.1077
BSC<0.01%$0.225070.461$0.1037
BSC<0.01%$0.3688150.2804$0.1034
BSC<0.01%$0.0069914.5388$0.1016
OP1.00%$1,814.710.4895$888.27
OP0.63%$1,812.340.3083$558.65
OP0.31%$0.999968273.4542$273.45
OP0.17%$0.761699199.4075$151.89
OP0.10%$93,7110.00094424$88.49
OP0.07%$93,6460.00061962$58.02
OP0.05%$0.99996846.7035$46.7
OP0.04%$137.7617$37.76
OP0.02%$2,176.630.00874574$19.04
OP<0.01%$0.050329127.2791$6.41
OP<0.01%$0.10214842.7712$4.37
OP<0.01%$2.741.4973$4.1
OP<0.01%$11.050.3507$3.88
OP<0.01%$0.09597338.9633$3.74
OP<0.01%$13.4436$3.44
OP<0.01%$0.22866711.3852$2.6
OP<0.01%$11.9525$1.96
OP<0.01%$0.0007471,885.8125$1.41
OP<0.01%$0.9996861.2118$1.21
OP<0.01%$1,798.960.00044648$0.8032
OP<0.01%$0.7192690.6903$0.4965
OP<0.01%$0.00702239.5529$0.2777
OP<0.01%$0.2476010.8162$0.202
OP<0.01%$10.1947$0.1947
OP<0.01%$0.0001161,602.345$0.1852
OP<0.01%$15.150.0096969$0.1469
OP<0.01%$0.00274746.7662$0.1284
OP<0.01%$0.00490925.086$0.1231
OP<0.01%$0.2030680.5952$0.1208
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.