xDAI Price: $1.00 (-0.00%)
Gas: 1 GWei

Contract

0x90CbE4BDd538D6e9b379bFF5fE72c3d67A521De5
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.47%$1,802.395.1204$9,229
ETH7.67%$0.9999646,763.6911$6,763.45
ETH2.93%$2.86904.0452$2,581.45
ETH1.60%$93,6590.015$1,409
ETH1.45%$11,281.4467$1,281.45
ETH0.49%$14.9528.7462$429.76
ETH0.46%$8.8145.6914$402.75
ETH0.42%$0.2416941,525.0423$368.59
ETH0.42%$0.377311973.8102$367.43
ETH0.29%$1,802.390.1439$259.38
ETH0.29%$0.0274629,209.6214$252.91
ETH0.21%$0.00829522,036.234$182.79
ETH0.20%$1,800.950.0985$177.33
ETH0.20%<$0.0000013,372,487,768.905$174.69
ETH0.18%<$0.00000110,965,879,701.2044$162.25
ETH0.18%$1,792.420.0884$158.37
ETH0.18%$0.0543912,901.3771$157.81
ETH0.18%$0.179125870.8871$156
ETH0.17%<$0.00000123,387,296,893.5196$148.06
ETH0.16%$3,348.870.0425$142.27
ETH0.16%$30.444.5394$138.16
ETH0.14%$0.559635228.1584$127.69
ETH0.13%$0.0498472,341.8674$116.74
ETH0.13%$0.0916151,235.8425$113.22
ETH0.13%$4.4324.9484$110.52
ETH0.12%$0.0231814,607.3937$106.81
ETH0.12%$21.854.7968$104.81
ETH0.11%$0.313058320.2314$100.25
ETH0.11%$0.0163336,114.1843$99.86
ETH0.10%$1.464.14$89.8
ETH0.10%$0.0000412,130,580.8711$88.36
ETH0.10%$0.0281753,076.9888$86.69
ETH0.10%$0.99975686.3864$86.37
ETH0.09%$0.171596481.4949$82.62
ETH0.09%$0.000317244,917.4772$77.65
ETH0.09%$2,002.720.0377$75.54
ETH0.08%$0.0000481,491,370.927$71.96
ETH0.08%$1.1761.2013$71.61
ETH0.08%$0.114439602.2738$68.92
ETH0.07%$161.350.4096$66.09
ETH0.07%$0.079166834.4139$66.06
ETH0.07%$106.310.6075$64.58
ETH0.07%$0.214876296.5226$63.72
ETH0.07%$0.052611,209.286$63.62
ETH0.07%$1.3446.3776$62.15
ETH0.07%$0.00000512,220,036.6073$60.44
ETH0.07%$0.354259170.4632$60.39
ETH0.07%$0.0280082,146.6931$60.12
ETH0.07%$27.242.1705$59.12
ETH0.07%$0.007327,969.0581$58.33
ETH0.07%$0.6803985.5382$58.2
ETH0.07%$0.0449921,280.3561$57.61
ETH0.07%$1.2147.5626$57.47
ETH0.06%$0.73298978.0481$57.21
ETH0.06%$0.035631,535.3398$54.7
ETH0.06%$0.077922691.7982$53.91
ETH0.06%<$0.000001113,371,423.8963$53.64
ETH0.06%$93,2970.00056201$52.43
ETH0.06%<$0.0000017,226,828,426.2352$51.56
ETH0.06%$0.066904765.496$51.21
ETH0.06%$0.0155783,140.2667$48.92
ETH0.05%$0.0192372,476.2554$47.64
ETH0.05%$0.013743,415.141$46.92
ETH0.05%$0.274094168.7082$46.24
ETH0.05%$0.00088850,128.5803$44.5
ETH0.05%$56.060.7808$43.77
ETH0.05%$0.0000143,172,889.1471$43.53
ETH0.05%$9.354.632$43.31
ETH0.05%$0.163281263.9462$43.1
ETH0.05%$0.99604243.1516$42.98
ETH0.05%$0.00241717,119.7154$41.38
ETH0.05%$0.0136163,026.5437$41.21
ETH0.05%$0.088885459.4101$40.83
ETH0.05%<$0.00000134,699,922,254,231.637$40.2
ETH0.05%$0.390496101.8899$39.79
ETH0.05%<$0.00000111,893,885,992.8863$39.74
ETH0.04%$0.0209091,895.6911$39.64
ETH0.04%<$0.0000011,118,495,740.2932$39.4
ETH0.04%$0.138717283.6802$39.35
ETH0.04%$0.145769269.1218$39.23
ETH0.04%$0.01083,559.0996$38.44
ETH0.04%$0.345047104.971$36.22
ETH0.04%$0.0295821,140.2451$33.73
ETH0.04%$0.00120627,946.3605$33.72
ETH0.04%$0.93705935.4477$33.22
ETH0.04%$0.51421564.5413$33.19
ETH0.04%$0.00227214,557.8943$33.08
ETH0.04%$0.00086337,205.5392$32.1
ETH0.04%$0.176706181.2161$32.02
ETH0.04%$0.26259120.3914$31.61
ETH0.04%$0.00272311,335.9099$30.87
ETH0.03%$0.051117601.0687$30.72
ETH0.03%$0.0064914,731.2371$30.71
ETH0.03%$2,161.640.0142$30.63
ETH0.03%$7.753.885$30.11
ETH0.03%$0.055963537.9922$30.11
ETH0.03%$0.99929829.95$29.93
ETH0.03%$0.0000231,293,231.1248$29.93
ETH0.03%$0.72364240.353$29.2
ETH0.03%$0.044302647.8706$28.7
ETH0.03%$0.97710428.8872$28.23
ETH0.03%$0.004366,394.5502$27.88
ETH0.03%$0.00051554,116.7565$27.86
ETH0.03%$0.035536783.765$27.85
ETH0.03%$0.89562830.6488$27.45
ETH0.03%$0.094184288.4283$27.17
ETH0.03%$0.0015817,039.7859$26.93
ETH0.03%<$0.00000181,208,968.3732$26.44
ETH0.03%$71.760.3641$26.13
ETH0.03%$0.054685462.0813$25.27
ETH0.03%$0.107093233.3017$24.98
ETH0.03%$0.0043825,669.5427$24.84
ETH0.03%$0.141416169.2456$23.93
ETH0.03%$0.25027394.332$23.61
ETH0.03%$0.014521,619.0331$23.51
ETH0.03%$0.122502191.0493$23.4
ETH0.03%$0.0000046,472,169.3055$23.3
ETH0.03%$0.186389123.3976$23
ETH0.03%$0.096268237.6316$22.88
ETH0.03%$0.28454279.11$22.51
ETH0.02%$0.032915666.2293$21.93
ETH0.02%$0.08179267.2844$21.86
ETH0.02%$0.0184781,176.6555$21.74
ETH0.02%$0.4183251.8463$21.69
ETH0.02%$0.0062963,426.9$21.58
ETH0.02%$0.023712886.8167$21.03
ETH0.02%$0.0000092,248,216.2564$20.8
ETH0.02%$2.0210.2913$20.79
ETH0.02%$2,027.170.01$20.27
ETH0.02%$0.100165200.2446$20.06
ETH0.02%$0.000062307,514.3034$19.02
ETH0.02%$0.99973518.8208$18.82
ETH0.02%$1.1416.4467$18.75
ETH0.02%$0.67671127.6447$18.71
ETH0.02%$0.31965758.5036$18.7
ETH0.02%$0.049533376.8234$18.67
ETH0.02%$17.681.0542$18.64
ETH0.02%<$0.000001384,952,362.8424$18.35
ETH0.02%$0.00144512,517.1902$18.09
ETH0.02%$2.966.1097$18.08
ETH0.02%$0.073175245.4476$17.96
ETH0.02%$0.00090619,806.5513$17.95
ETH0.02%$0.31361957.1794$17.93
ETH0.02%<$0.00000170,825,229.5005$17.43
ETH0.02%<$0.00000122,043,291,156,050.609$17.38
ETH0.02%$0.082879208.3516$17.27
ETH0.02%$1,793.440.00946692$16.98
ETH0.02%$0.078137216.2922$16.9
ETH0.02%$0.0063662,639.3199$16.8
ETH0.02%$116.553$16.6
ETH0.02%$0.0044063,767.8489$16.6
ETH0.02%$0.044973368.916$16.59
ETH0.02%<$0.00000175,064,754.4953$16.58
ETH0.02%$0.00123513,343.948$16.48
ETH0.02%$0.024859654.0883$16.26
ETH0.02%$0.0058462,747.5266$16.06
ETH0.02%$0.039833402.9503$16.05
ETH0.02%$0.81008319.8083$16.05
ETH0.02%$0.57053627.4722$15.67
ETH0.02%$2.985.2051$15.51
ETH0.02%$0.34818344.5281$15.5
ETH0.02%$0.00124512,351.1613$15.38
ETH0.02%$2,030.080.00730412$14.83
ETH0.02%$6.742.1947$14.79
ETH0.02%$0.0031684,637.5472$14.69
ETH0.02%$0.0033334,275.4795$14.25
ETH0.02%$0.17273380.2931$13.87
ETH0.02%$0.00014495,871.9587$13.76
ETH0.02%$10.311.3317$13.73
ETH0.02%$0.63218321.6248$13.67
ETH0.02%$0.093826145.1053$13.61
ETH0.02%$0.0000131,036,154.3846$13.59
ETH0.02%$0.72613318.2482$13.25
ETH0.01%<$0.000001321,663,377.1224$13.18
ETH0.01%<$0.000001210,504,516.5527$13
ETH0.01%$0.20597462.4475$12.86
ETH0.01%$0.031039413.0654$12.82
ETH0.01%$0.0061052,061.5057$12.58
ETH0.01%$0.092888135.3826$12.58
ETH0.01%$0.0103841,186.8662$12.32
ETH0.01%$0.00029641,244.4075$12.2
ETH0.01%$0.55515721.9756$12.2
ETH0.01%$0.20309559.982$12.18
ETH0.01%$4.492.6978$12.12
ETH0.01%$0.000078155,355.2785$12.12
ETH0.01%$0.0077241,555.0587$12.01
ETH0.01%$0.17066969.5294$11.87
ETH0.01%$0.63223418.4019$11.63
ETH0.01%$4.542.5509$11.58
ETH0.01%$0.000057202,092.1188$11.51
ETH0.01%$0.017915627.3099$11.24
ETH0.01%$0.0055471,999.9351$11.09
ETH0.01%$0.18875558.6843$11.08
ETH0.01%$0.00024345,328.7149$11
ETH0.01%$0.0091851,191.0161$10.94
ETH0.01%$0.0057161,894.4737$10.83
ETH0.01%$0.36689929.4359$10.8
ETH0.01%$0.00000114,955,275.2809$10.74
ETH0.01%<$0.0000013,349,185,467.444$10.67
ETH0.01%$0.93273411.3687$10.6
ETH0.01%$0.20807450.5109$10.51
ETH0.01%<$0.000001228,860,667.027$10.33
ETH0.01%$0.000066154,911.8661$10.21
ETH0.01%$0.26094539.069$10.19
ETH0.01%$0.00003340,399.9999$10.13
ETH0.01%<$0.00000179,163,870.6062$10.1
ETH0.01%$0.027288369.4645$10.08
ETH0.01%$0.0000033,635,434.7524$9.93
ETH0.01%$0.29850832.9514$9.84
ETH0.01%$0.072438135.649$9.83
ETH0.01%<$0.000001144,234,490.2313$9.77
ETH0.01%$0.094867102.6509$9.74
ETH0.01%$3,342.880.002902$9.7
ETH0.01%$4.582.1112$9.67
ETH0.01%$0.044718214.7004$9.6
ETH0.01%$1.37.3188$9.51
ETH0.01%$0.9999379.4032$9.4
ETH0.01%$0.18736550.0927$9.39
ETH0.01%$0.022502414.8915$9.34
ETH0.01%<$0.0000014,200,000,000$9.3
ETH0.01%$0.00017752,532.6871$9.28
ETH0.01%$1.167.8829$9.14
ETH0.01%$0.0025753,533.3034$9.1
ETH0.01%$0.000066136,222.7278$9.05
ETH0.01%$0.85962810.3917$8.93
ETH0.01%$93,6830.00009457$8.86
ETH<0.01%$0.00000113,972,248.6316$8.75
ETH<0.01%$0.54558915.7462$8.59
ETH<0.01%<$0.00000115,831,901,550.7711$8.46
ETH<0.01%$23.240.3639$8.46
ETH<0.01%$0.0008559,880.5685$8.45
ETH<0.01%<$0.000001129,865,764.6$8.36
ETH<0.01%$5,901.80.00140407$8.29
ETH<0.01%$0.0022793,632.8143$8.28
ETH<0.01%$0.00000111,936,626.4432$8.26
ETH<0.01%$0.00054615,077.5526$8.23
ETH<0.01%<$0.00000119,496,614.7805$8.23
ETH<0.01%$0.0037992,141.3314$8.14
ETH<0.01%$0.027008299.9598$8.1
ETH<0.01%$0.013877578.3415$8.03
ETH<0.01%$0.14020856.9362$7.98
ETH<0.01%$0.0022183,533.1137$7.84
ETH<0.01%$0.000022351,464.4258$7.74
ETH<0.01%$0.11479365.6829$7.54
ETH<0.01%$177.450.0417$7.4
ETH<0.01%$0.0013975,221.4836$7.29
ETH<0.01%$0.11334364.0012$7.25
ETH<0.01%$0.0040261,800$7.25
ETH<0.01%$0.0044331,598.9851$7.09
ETH<0.01%$0.7233229.7383$7.04
ETH<0.01%$0.22097931.7872$7.02
ETH<0.01%$0.023109302.4729$6.99
ETH<0.01%<$0.00000149,214,200.9468$6.91
ETH<0.01%$0.016692413.3976$6.9
ETH<0.01%$0.001394,927.9306$6.85
ETH<0.01%$0.0010046,819.6382$6.85
ETH<0.01%$0.0000041,712,359.4924$6.83
ETH<0.01%$0.3307920.5947$6.81
ETH<0.01%$0.0023172,930.4119$6.79
ETH<0.01%$0.029245230.6028$6.74
ETH<0.01%$0.00057311,617.317$6.66
ETH<0.01%$5,121.750.00129378$6.63
ETH<0.01%$0.031602206.0196$6.51
ETH<0.01%$0.0018963,426.6107$6.5
ETH<0.01%$0.29946521.3399$6.39
ETH<0.01%$0.031612201.615$6.37
ETH<0.01%$0.010499603.693$6.34
ETH<0.01%$0.0000019,908,761.5227$6.33
ETH<0.01%$0.0054821,153.6247$6.32
ETH<0.01%$0.006858918.5622$6.3
ETH<0.01%$0.21388429.3283$6.27
ETH<0.01%$0.026514234.9676$6.23
ETH<0.01%$0.10870756.5316$6.15
ETH<0.01%$0.06663191.6603$6.11
ETH<0.01%$0.00013445,465.7408$6.07
ETH<0.01%$0.0010675,606.094$5.98
ETH<0.01%$0.00018431,817.409$5.86
ETH<0.01%$0.002971,962.2114$5.83
ETH<0.01%$0.00009261,997.3857$5.7
ETH<0.01%$0.016869336.6136$5.68
ETH<0.01%$0.010853517.5964$5.62
ETH<0.01%$0.03774147.252$5.56
ETH<0.01%$0.50867510.6557$5.42
ETH<0.01%$0.011139483.0887$5.38
ETH<0.01%$0.11790945.3539$5.35
ETH<0.01%$0.613028.7157$5.34
ETH<0.01%$0.17378330.6898$5.33
ETH<0.01%$0.17339530.3947$5.27
ETH<0.01%$0.0008666,085.4152$5.27
ETH<0.01%$0.6737347.8169$5.27
ETH<0.01%$20.160.2593$5.23
ETH<0.01%$0.20807425.0621$5.21
ETH<0.01%$0.0000013,652,536.2332$5.21
ETH<0.01%$0.005268986.8868$5.2
ETH<0.01%$0.0013013,947.069$5.13
ETH<0.01%<$0.000001877,815,950.5989$5.09
ETH<0.01%$0.036243139.6146$5.06
ETH<0.01%$0.19815725.4138$5.04
ETH<0.01%$0.5064269.918$5.02
ETH<0.01%$0.000011442,788.5454$5.01
ETH<0.01%<$0.0000011,058,657,192.1424$4.98
ETH<0.01%$0.0015253,257.2649$4.97
ETH<0.01%$0.000014364,508.5843$4.96
ETH<0.01%$0.015855312.5849$4.96
ETH<0.01%$0.007242682.1386$4.94
ETH<0.01%$0.013863349.3272$4.84
ETH<0.01%$14.8189$4.82
ETH<0.01%$0.000027179,196.9239$4.78
ETH<0.01%$0.0001826,368.1474$4.74
ETH<0.01%$0.010032470.7145$4.72
ETH<0.01%$114.250.0411$4.7
ETH<0.01%$1,877.740.00249765$4.69
ETH<0.01%$0.006685689.6226$4.61
ETH<0.01%$0.005728798.4299$4.57
ETH<0.01%$0.007947573.8812$4.56
ETH<0.01%<$0.0000013,023,386,998.3823$4.56
ETH<0.01%$0.00021920,599.395$4.51
ETH<0.01%$0.0624772.181$4.51
ETH<0.01%$0.7792395.7052$4.45
ETH<0.01%$0.000022200,055.65$4.44
ETH<0.01%$0.06962362.1832$4.33
ETH<0.01%$0.09125647.06$4.29
ETH<0.01%$0.29955414.1666$4.24
ETH<0.01%$0.00026815,473.142$4.14
ETH<0.01%$0.5172947.9895$4.13
ETH<0.01%$0.0009414,373.8714$4.11
ETH<0.01%$0.19911320.5649$4.09
ETH<0.01%$0.8701674.5743$3.98
ETH<0.01%$6.390.6115$3.91
ETH<0.01%$0.7101955.4633$3.88
ETH<0.01%$0.019685197.086$3.88
ETH<0.01%$0.11082435.0041$3.88
ETH<0.01%$0.010713359.9096$3.86
ETH<0.01%$0.0007435,119.9911$3.8
ETH<0.01%$0.008646439.5502$3.8
ETH<0.01%$1.013.7638$3.79
ETH<0.01%$0.016816224.7484$3.78
ETH<0.01%<$0.00000114,405,947,890.6713$3.73
ETH<0.01%$0.004133898.38$3.71
ETH<0.01%$0.004345846.023$3.68
ETH<0.01%$13.666$3.67
ETH<0.01%$0.0011273,250.572$3.66
ETH<0.01%$0.06718153.7708$3.61
ETH<0.01%$0.00010234,844.179$3.54
ETH<0.01%$0.668385.2407$3.5
ETH<0.01%$1.312.674$3.49
ETH<0.01%$0.13753125.0872$3.45
ETH<0.01%$0.0009343,673.5176$3.43
ETH<0.01%$3,331.60.00102673$3.42
ETH<0.01%$0.065851.9188$3.42
ETH<0.01%$1,918.810.00177658$3.41
ETH<0.01%$0.0004487,566.4571$3.39
ETH<0.01%$0.07548344.734$3.38
ETH<0.01%$0.0024991,345.961$3.36
ETH<0.01%$0.024892134.8228$3.36
ETH<0.01%$0.11971427.8006$3.33
ETH<0.01%$0.9026433.4992$3.16
ETH<0.01%$0.0019751,578.5127$3.12
ETH<0.01%$0.009913308.7872$3.06
ETH<0.01%$0.0003418,875.173$3.03
ETH<0.01%$0.0007074,224.0433$2.99
ETH<0.01%$0.09149932.396$2.96
ETH<0.01%$0.17712316.697$2.96
ETH<0.01%$0.023711124.284$2.95
ETH<0.01%$0.03079595.6728$2.95
ETH<0.01%$0.9788082.9715$2.91
ETH<0.01%$0.002942986.5208$2.9
ETH<0.01%$0.006679432.3731$2.89
ETH<0.01%$0.795613.6099$2.87
ETH<0.01%$0.20025814.3075$2.87
ETH<0.01%$0.26535610.5037$2.79
ETH<0.01%$0.18492115$2.77
ETH<0.01%$0.016306169.5693$2.77
ETH<0.01%$0.7309553.7733$2.76
ETH<0.01%$0.6409314.2995$2.76
ETH<0.01%$0.00003480,820.0916$2.75
ETH<0.01%$2.90.9464$2.74
ETH<0.01%$0.001381,950.255$2.69
ETH<0.01%$0.0000021,101,160.4087$2.69
ETH<0.01%$0.0005624,782.519$2.69
ETH<0.01%$1.162.314$2.68
ETH<0.01%$0.016112164.3386$2.65
ETH<0.01%$0.0016071,624.5525$2.61
ETH<0.01%$0.00675385.8503$2.6
ETH<0.01%$0.09167728.1411$2.58
ETH<0.01%$0.16465315.4835$2.55
ETH<0.01%$6.160.41$2.53
ETH<0.01%$0.00018213,905.2682$2.53
ETH<0.01%$0.021812115.482$2.52
ETH<0.01%$0.03290176.524$2.52
ETH<0.01%$0.05181148.5301$2.51
ETH<0.01%$0.02079117.9173$2.45
ETH<0.01%$0.0075325.905$2.44
ETH<0.01%$0.00022610,559.5012$2.39
ETH<0.01%<$0.0000013,616,967,204.8345$2.38
ETH<0.01%$0.003776619.984$2.34
ETH<0.01%$0.16332314.2976$2.34
ETH<0.01%$0.17654413.1942$2.33
ETH<0.01%$0.009986232.4913$2.32
ETH<0.01%$0.0006483,516.9802$2.28
ETH<0.01%$0.0016181,408.3143$2.28
ETH<0.01%$43.390.052$2.26
ETH<0.01%$0.9976352.2616$2.26
ETH<0.01%<$0.00000142,352,269.9505$2.26
ETH<0.01%$0.0004794,694.0212$2.25
ETH<0.01%$0.002918759.7793$2.22
ETH<0.01%$0.07317230.1249$2.2
ETH<0.01%$0.015824137.2566$2.17
ETH<0.01%$0.14926314.5476$2.17
ETH<0.01%<$0.00000150,009,730.2367$2.17
ETH<0.01%$1.032.1026$2.17
ETH<0.01%$0.02368891.5885$2.17
ETH<0.01%$0.3043327.0094$2.13
ETH<0.01%$0.00675315.8616$2.13
ETH<0.01%$0.06061435.0564$2.12
ETH<0.01%$1.071.9927$2.12
ETH<0.01%$0.03402161.7085$2.1
ETH<0.01%$0.0000021,269,749.3285$2.1
ETH<0.01%$0.00002484,548.0277$2.06
ETH<0.01%$0.000005392,206.2812$2.04
ETH<0.01%$0.2178599.3202$2.03
ETH<0.01%$0.02330286.5307$2.02
ETH<0.01%$0.001481,362.1203$2.02
ETH<0.01%$0.5666633.5476$2.01
ETH<0.01%$0.2262318.8779$2.01
ETH<0.01%$0.003088648.7864$2
ETH<0.01%$0.00014214,074.8918$2
ETH<0.01%$0.04709742.4264$2
ETH<0.01%$0.00161,239.7682$1.98
ETH<0.01%$0.001911,037.1468$1.98
ETH<0.01%$0.003889508.177$1.98
ETH<0.01%$0.04286645.75$1.96
ETH<0.01%$0.02542876.621$1.95
ETH<0.01%$28.550.0674$1.93
ETH<0.01%$0.017154111.2998$1.91
ETH<0.01%$0.006092302.5351$1.84
ETH<0.01%$0.0147125.0333$1.84
ETH<0.01%$0.002133861.0283$1.84
ETH<0.01%$0.012872139.9702$1.8
ETH<0.01%$0.0002198,177.0134$1.79
ETH<0.01%$0.006986255.4389$1.78
ETH<0.01%$2.510.7095$1.78
ETH<0.01%$0.02463372.0792$1.78
ETH<0.01%$0.03290553.9569$1.78
ETH<0.01%$0.0014291,240.551$1.77
ETH<0.01%$0.00010716,522.029$1.77
ETH<0.01%$0.3888254.5381$1.76
ETH<0.01%$0.008297212.5023$1.76
ETH<0.01%$1.31.3549$1.76
ETH<0.01%$0.00006925,505.3597$1.76
ETH<0.01%$0.0000012,596,780.467$1.76
ETH<0.01%$0.2013148.6796$1.75
ETH<0.01%$0.03133255.4192$1.74
ETH<0.01%$0.0002048,442.684$1.72
ETH<0.01%$0.0014321,195.728$1.71
ETH<0.01%<$0.0000013,773,899,543.488$1.7
ETH<0.01%$0.3630974.6675$1.69
ETH<0.01%$0.00003253,288.7112$1.68
ETH<0.01%$0.0011761,429.2583$1.68
ETH<0.01%$0.005029329.307$1.66
ETH<0.01%$0.05845628.0191$1.64
ETH<0.01%$0.000364,470.1553$1.61
ETH<0.01%$0.0009891,618.2637$1.6
ETH<0.01%$0.006108261.8511$1.6
ETH<0.01%$0.13317911.9252$1.59
ETH<0.01%$0.13101611.9736$1.57
ETH<0.01%$0.009609161.5034$1.55
ETH<0.01%$1,858.220.00082935$1.54
ETH<0.01%$0.011208136.4815$1.53
ETH<0.01%$0.3119574.9012$1.53
ETH<0.01%$0.04891730.9946$1.52
ETH<0.01%$0.51952.8999$1.51
ETH<0.01%$0.07570819.0881$1.45
ETH<0.01%$0.2833345.099$1.44
ETH<0.01%$0.010477135.1273$1.42
ETH<0.01%$0.0002375,938.7363$1.41
ETH<0.01%$0.0000012,252,368.3192$1.39
ETH<0.01%$0.0010271,337.7158$1.37
ETH<0.01%$0.010897125.3424$1.37
ETH<0.01%$0.02086763.7368$1.33
ETH<0.01%$0.09229414.3838$1.33
ETH<0.01%$0.167987.8325$1.32
ETH<0.01%$0.2344875.5914$1.31
ETH<0.01%$0.0004552,879.4323$1.31
ETH<0.01%$4.630.2809$1.3
ETH<0.01%$0.01947265.7275$1.28
ETH<0.01%$8.870.1443$1.28
ETH<0.01%$0.01398691.2983$1.28
ETH<0.01%$2.10.6041$1.27
ETH<0.01%$0.00001130,547.2324$1.26
ETH<0.01%$0.3590273.5024$1.26
ETH<0.01%$0.0003423,662.8665$1.25
ETH<0.01%$0.0004672,651.5189$1.24
ETH<0.01%$0.443782.7599$1.22
ETH<0.01%$0.0008831,385.5434$1.22
ETH<0.01%$0.2319015.2436$1.22
ETH<0.01%$0.001667728.8689$1.21
ETH<0.01%$0.0003793,192.3867$1.21
ETH<0.01%$8.160.148$1.21
ETH<0.01%$0.004048298.2824$1.21
ETH<0.01%$0.007171165.7669$1.19
ETH<0.01%$0.06771317.4508$1.18
ETH<0.01%$0.0011331,036.0202$1.17
ETH<0.01%$0.01710368.3441$1.17
ETH<0.01%$0.005684203.4559$1.16
ETH<0.01%$0.003424334.8835$1.15
ETH<0.01%$0.11095910.2453$1.14
ETH<0.01%$0.2396644.6729$1.12
ETH<0.01%$0.01493674.3157$1.11
ETH<0.01%$0.000005241,968.6745$1.09
ETH<0.01%$0.08156213.3732$1.09
ETH<0.01%$0.0001357,964.8048$1.08
ETH<0.01%$0.0001367,795.3416$1.06
ETH<0.01%$0.000003321,049.6847$1.06
ETH<0.01%<$0.0000013,004,136.1399$1.06
ETH<0.01%$0.0005262,003.43$1.05
ETH<0.01%$0.4843252.1536$1.04
ETH<0.01%$0.010181102.3484$1.04
ETH<0.01%$0.02840836.5563$1.04
ETH<0.01%$0.002726374.973$1.02
ETH<0.01%$0.0001417,223.027$1.02
ETH<0.01%$0.0000011,566,743.1688$1
ETH<0.01%$0.0003233,064.1652$0.9909
ETH<0.01%$0.8099351.22$0.9881
ETH<0.01%$0.01241879.3529$0.9853
ETH<0.01%$93,3420.00001002$0.9352
ETH<0.01%$0.05254217.7261$0.9313
ETH<0.01%$0.4226372.1918$0.9263
ETH<0.01%$0.06622913.726$0.909
ETH<0.01%$0.7353511.2306$0.9049
ETH<0.01%$6.040.1491$0.9007
ETH<0.01%$0.0004751,857.4382$0.8823
ETH<0.01%$0.08660210.1388$0.878
ETH<0.01%$0.002147403.9538$0.8673
ETH<0.01%$0.01214171.2298$0.8648
ETH<0.01%$0.03932321.96$0.8635
ETH<0.01%$0.0001167,435.1659$0.859
ETH<0.01%$0.0002743,131.5381$0.8584
ETH<0.01%$0.03151727.17$0.8563
ETH<0.01%$0.003404247.4098$0.842
ETH<0.01%$0.0978888.5603$0.8379
ETH<0.01%$0.0331124.9721$0.8268
ETH<0.01%$0.0002024,067.1974$0.822
ETH<0.01%<$0.00000170,462,814.996$0.8182
ETH<0.01%$0.04355818.6625$0.8128
ETH<0.01%$0.00115697.6591$0.8021
ETH<0.01%$0.001948409.9898$0.7985
ETH<0.01%$0.00007910,045.293$0.7985
ETH<0.01%$31.220.0251$0.782
ETH<0.01%$1,503.770.00051767$0.7784
ETH<0.01%$0.0005411,436.4884$0.7771
ETH<0.01%$0.01405754.7598$0.7697
ETH<0.01%$0.006086126.108$0.7674
ETH<0.01%$0.01991738.2892$0.7626
ETH<0.01%$0.2729152.7718$0.7564
ETH<0.01%$0.05908112.794$0.7558
ETH<0.01%$10.7506$0.7506
ETH<0.01%$0.8708170.8556$0.745
ETH<0.01%$0.06345711.693$0.7419
ETH<0.01%$0.00002431,318.9885$0.7397
ETH<0.01%$1.150.636$0.7313
ETH<0.01%$0.001513464.6383$0.703
ETH<0.01%$0.01663642.0478$0.6994
ETH<0.01%$0.03481220.0323$0.6973
ETH<0.01%$0.04739314.6731$0.6954
ETH<0.01%$0.02365129.4$0.6953
ETH<0.01%$0.003379205.6274$0.6948
ETH<0.01%$0.003559192.6119$0.6854
ETH<0.01%<$0.000001218,494,402.2159$0.6801
ETH<0.01%$0.001511446.6236$0.6746
ETH<0.01%$0.0002472,716.815$0.6711
ETH<0.01%$0.1415284.7357$0.6702
ETH<0.01%$0.002155299.7483$0.646
ETH<0.01%$0.003389189.5613$0.6424
ETH<0.01%$0.00976965.3448$0.6383
ETH<0.01%$0.00705489.6685$0.6325
ETH<0.01%$0.3940131.5982$0.6297
ETH<0.01%$0.002127293.4568$0.6242
ETH<0.01%$0.0002942,076.9234$0.6096
ETH<0.01%$0.002419249.4889$0.6035
ETH<0.01%$0.2219832.7082$0.6011
ETH<0.01%<$0.000001327,291,333.2845$0.5969
ETH<0.01%$0.00940262.6637$0.5891
ETH<0.01%$0.0915366.3882$0.5847
ETH<0.01%$0.000311,885.3692$0.5835
ETH<0.01%$0.001723338.165$0.5825
ETH<0.01%$52.240.011$0.5759
ETH<0.01%$0.0004721,216.3635$0.5737
ETH<0.01%$0.9991990.5481$0.5476
ETH<0.01%$17.320.0315$0.5449
ETH<0.01%$0.002563210.3059$0.5389
ETH<0.01%$0.0001593,302.1818$0.5243
ETH<0.01%$19.390.027$0.5226
ETH<0.01%$0.004161125.5922$0.5225
ETH<0.01%$0.2710831.9148$0.519
ETH<0.01%$0.002128241.0665$0.513
ETH<0.01%$0.04312811.8492$0.511
ETH<0.01%$0.00001147,765.253$0.5039
ETH<0.01%$0.02738918.108$0.4959
ETH<0.01%$0.00001630,618.1291$0.4905
ETH<0.01%$0.00680471.6744$0.4876
ETH<0.01%$0.0913625.1463$0.4701
ETH<0.01%$1,976.90.00023768$0.4698
ETH<0.01%$0.001028444.4753$0.4568
ETH<0.01%$1,788.90.00025535$0.4567
ETH<0.01%$0.02357818.8748$0.445
ETH<0.01%$0.245451.7959$0.4407
ETH<0.01%$1.310.3296$0.4333
ETH<0.01%$0.01532328.2455$0.4328
ETH<0.01%$0.0000459,586.704$0.4323
ETH<0.01%$2.430.1758$0.427
ETH<0.01%$0.02134419.8455$0.4235
ETH<0.01%$0.00001823,745.7217$0.4217
ETH<0.01%$1.20.3502$0.4202
ETH<0.01%$0.01951521.3472$0.4165
ETH<0.01%$0.01280131.2651$0.4002
ETH<0.01%$15,145.560.00002642$0.4001
ETH<0.01%$9.080.0438$0.3973
ETH<0.01%$0.000002237,452.4279$0.394
ETH<0.01%$0.0004978.8493$0.3912
ETH<0.01%$0.3437721.1353$0.3902
ETH<0.01%$0.1831282.0945$0.3835
ETH<0.01%$0.00422390$0.38
ETH<0.01%$0.0002531,485.0793$0.3763
ETH<0.01%$0.0000419,032.2103$0.3727
ETH<0.01%$0.000001327,713.1347$0.3703
ETH<0.01%$0.9992580.3699$0.3696
ETH<0.01%$0.2856651.2225$0.3492
ETH<0.01%$0.000955350.6511$0.3347
ETH<0.01%$0.000385868.3866$0.3345
ETH<0.01%$0.0841343.8835$0.3267
ETH<0.01%$0.00340195.4915$0.3247
ETH<0.01%$0.001672193.9708$0.3242
ETH<0.01%$0.000739429.2628$0.3172
ETH<0.01%$93,5190.00000335$0.3132
ETH<0.01%$0.00111281.094$0.3119
ETH<0.01%$0.0001532,026.8591$0.3104
ETH<0.01%$0.000329943.4723$0.3102
ETH<0.01%$0.4581330.6769$0.3101
ETH<0.01%$0.002362129.8033$0.3065
ETH<0.01%$0.002671111.6446$0.2981
ETH<0.01%$0.0909233.2707$0.2973
ETH<0.01%$0.0001332,192.0432$0.2923
ETH<0.01%$0.000499580.2264$0.2893
ETH<0.01%$0.1977991.4281$0.2824
ETH<0.01%$2.260.1228$0.2775
ETH<0.01%$0.9998360.2775$0.2774
ETH<0.01%$0.0741993.6192$0.2685
ETH<0.01%$0.001712152.2352$0.2606
ETH<0.01%$0.00000466,132$0.2565
ETH<0.01%$0.9999050.2553$0.2553
ETH<0.01%<$0.000001335,574,268.7172$0.2517
ETH<0.01%$0.002004125.1558$0.2507
ETH<0.01%$0.0000872,780.9024$0.2406
ETH<0.01%$0.01587915.0407$0.2388
ETH<0.01%$0.4737450.5009$0.2373
ETH<0.01%$611.610.00036746$0.2247
ETH<0.01%$0.000371599.517$0.2221
ETH<0.01%$8,179.370.00002714$0.2219
ETH<0.01%$0.00734330.0587$0.2207
ETH<0.01%$0.0443574.8598$0.2155
ETH<0.01%$0.00001414,425.9823$0.2065
ETH<0.01%$0.00405349.9692$0.2025
ETH<0.01%$0.01975110.1512$0.2004
ETH<0.01%$0.0148413.4987$0.2003
ETH<0.01%$3.490.0572$0.1997
ETH<0.01%$0.000898221.4451$0.1989
ETH<0.01%$0.0474644.1022$0.1947
ETH<0.01%$0.01146416.8537$0.1932
ETH<0.01%$0.021628.8181$0.1906
ETH<0.01%$0.00093202.6034$0.1884
ETH<0.01%$0.00475138.2122$0.1815
ETH<0.01%$0.0341815.2313$0.1788
ETH<0.01%$0.0363914.9$0.1783
ETH<0.01%$0.0347564.9682$0.1726
ETH<0.01%$0.001175142.7827$0.1678
ETH<0.01%$0.000111,524.6155$0.1677
ETH<0.01%<$0.0000013,127,543,957.446$0.1644
ETH<0.01%$0.000604270.9257$0.1637
ETH<0.01%$1.010.1625$0.1633
ETH<0.01%$0.00402440.4316$0.1626
ETH<0.01%$0.1424091.1412$0.1625
ETH<0.01%<$0.0000013,558,115.116$0.1541
ETH<0.01%$0.00893516.5794$0.1481
ETH<0.01%$0.1192131.2083$0.144
ETH<0.01%$0.00000818,967.2434$0.143
ETH<0.01%$0.7069030.2015$0.1424
ETH<0.01%$0.3239120.4349$0.1408
ETH<0.01%$0.00172879.1901$0.1368
ETH<0.01%$0.00221759.3164$0.1315
ETH<0.01%$0.000133988.7193$0.1312
ETH<0.01%$9.570.0136$0.1302
ETH<0.01%$1,953.930.00006625$0.1294
ETH<0.01%$0.0183426.8966$0.1264
ETH<0.01%$0.00918513.2427$0.1216
ETH<0.01%$577.70.00020918$0.1208
ETH<0.01%$0.000454260.5356$0.1183
ETH<0.01%$0.0386513.0607$0.1182
ETH<0.01%$0.0206815.126$0.106
ETH<0.01%$20.053$0.1059
ETH<0.01%$0.00260139.0406$0.1015
ARB9.36%$0.9999548,256.3307$8,255.95
ARB4.13%$1,802.742.0197$3,641.01
ARB2.00%$93,6640.0188$1,763.16
ARB0.61%$1,801.380.3009$542.08
ARB0.31%$165.091.6337$269.7
ARB0.26%$1,792.030.1297$232.37
ARB0.26%$1229.8428$229.84
ARB0.15%$0.999954132.7711$132.76
ARB0.11%$14.956.2763$93.83
ARB0.08%$2,160.90.0312$67.53
ARB0.05%$0.0305541,304.5172$39.86
ARB0.03%$0.33088488.5276$29.29
ARB0.03%$122.8182$22.82
ARB0.02%$0.99974620.9621$20.96
ARB0.02%$15.051.3591$20.45
ARB0.02%$21.880.9175$20.08
ARB0.02%$2.725.8542$15.92
ARB0.02%$0.99993715.8292$15.83
ARB0.01%$0.000016647,959.6806$10.39
ARB<0.01%$43.40.1881$8.16
ARB<0.01%$0.0070571,142.9247$8.07
ARB<0.01%$0.00058211,781.8595$6.86
ARB<0.01%$0.000024280,669.7608$6.65
ARB<0.01%$0.21493529.5481$6.35
ARB<0.01%$0.00056110,916.9386$6.13
ARB<0.01%$3.491.5086$5.26
ARB<0.01%<$0.00000113,263,509,025.7531$3.98
ARB<0.01%$0.682515.8052$3.96
ARB<0.01%$0.029587111.4082$3.3
ARB<0.01%$0.898983.6169$3.25
ARB<0.01%$0.9995693.0331$3.03
ARB<0.01%$1.112.5899$2.87
ARB<0.01%$0.9997192.6711$2.67
ARB<0.01%$382.660.00634329$2.43
ARB<0.01%$0.9995022.3953$2.39
ARB<0.01%$6.040.3622$2.19
ARB<0.01%$93,4910.00001823$1.7
ARB<0.01%$93,6850.00001531$1.43
ARB<0.01%$2.020.6935$1.4
ARB<0.01%$0.00010811,460.6857$1.23
ARB<0.01%$93,2130.00001251$1.17
ARB<0.01%$11.1568$1.16
ARB<0.01%$0.004914208.1864$1.02
ARB<0.01%$0.006434156.2754$1.01
ARB<0.01%$0.01462468.6671$1
ARB<0.01%$0.7994181.2299$0.9831
ARB<0.01%$0.000283,391.2508$0.9504
ARB<0.01%$0.2031793.8346$0.7791
ARB<0.01%$0.0139554.6335$0.7621
ARB<0.01%$0.9886280.7584$0.7498
ARB<0.01%$0.00293220.221$0.6452
ARB<0.01%$1,884.080.00024974$0.4705
ARB<0.01%$10.4644$0.4658
ARB<0.01%$10.3722$0.3722
ARB<0.01%$0.0448336.9832$0.313
ARB<0.01%$0.0615555.0818$0.3128
ARB<0.01%$0.000002122,965.5823$0.30
ARB<0.01%$0.01877814.1352$0.2654
ARB<0.01%$0.0328237.4531$0.2446
ARB<0.01%$0.5671070.4146$0.235
ARB<0.01%$0.9997520.1779$0.1778
ARB<0.01%$1.010.1747$0.1761
ARB<0.01%$0.00574929.5442$0.1698
ARB<0.01%$0.00000917,748.5245$0.1643
ARB<0.01%$0.9985680.1564$0.1561
ARB<0.01%$1,792.970.00008627$0.1546
ARB<0.01%$0.091381.6623$0.1518
ARB<0.01%$0.00355640.2264$0.143
ARB<0.01%$0.1037021.3656$0.1416
ARB<0.01%$93,7210.00000138$0.1293
POL13.10%$0.44701225,838.2316$11,550
POL0.90%$1793.6692$793.67
POL0.49%$93,6170.0046249$432.97
POL0.46%$1,799.980.2276$409.65
POL0.18%$0.999996161.2928$161.29
POL0.12%$0.999996109.9841$109.98
POL0.05%$0.273198169.7193$46.37
POL0.05%$0.067508624.7536$42.18
POL0.05%$0.220916187.3419$41.39
POL0.03%$0.0070473,973.3497$28
POL0.02%$0.29859863.6517$19.01
POL0.02%$12.751.1847$15.1
POL0.01%$0.22928146.1883$10.59
POL<0.01%$3,352.40.00196736$6.6
POL<0.01%$0.044902145.6339$6.54
POL<0.01%$1.145.7057$6.5
POL<0.01%$1.145.7057$6.5
POL<0.01%$0.024862242.6187$6.03
POL<0.01%$0.0007696,818.3732$5.25
POL<0.01%$0.33632514.8158$4.98
POL<0.01%$0.12497933.9141$4.24
POL<0.01%$0.9997783.4921$3.49
POL<0.01%$0.06024951.35$3.09
POL<0.01%$0.006435445.14$2.86
POL<0.01%$0.02816980.7212$2.27
POL<0.01%$0.4939214.293$2.12
POL<0.01%$0.3116646.0026$1.87
POL<0.01%$1650.00942984$1.56
POL<0.01%$0.001646835.659$1.38
POL<0.01%$0.0001946,855.2296$1.33
POL<0.01%$0.003732351.7355$1.31
POL<0.01%$0.001328987.7914$1.31
POL<0.01%$0.5595442.1563$1.21
POL<0.01%$0.9999851.1898$1.19
POL<0.01%$0.05853919.6911$1.15
POL<0.01%$0.004219272.9097$1.15
POL<0.01%$6.030.1809$1.09
POL<0.01%$0.01234587.4222$1.08
POL<0.01%$0.0505521.015$1.06
POL<0.01%$0.003693281.5452$1.04
POL<0.01%$14.950.0658$0.9831
POL<0.01%<$0.0000019,810,976.2252$0.878
POL<0.01%$0.00830199.7466$0.828
POL<0.01%$0.004398182.3338$0.8018
POL<0.01%$2,155.230.00035836$0.7723
POL<0.01%$0.2832342.6091$0.7389
POL<0.01%$10.6101$0.61
POL<0.01%$0.00974657$0.5555
POL<0.01%$0.0621448.164$0.5073
POL<0.01%$0.0001164,302.1588$0.5002
POL<0.01%$0.222542.1716$0.483269
POL<0.01%$0.2541761.887$0.4796
POL<0.01%$0.2032672.2533$0.458
POL<0.01%$0.8102780.5291$0.4286
POL<0.01%$10.4003$0.4018
POL<0.01%$0.1961331.7915$0.3513
POL<0.01%$0.3142641.116$0.3507
POL<0.01%$0.1212892.6806$0.3251
POL<0.01%$0.6799060.4518$0.3072
POL<0.01%$0.000864335.1815$0.2896
POL<0.01%$0.001044268.4248$0.2801
POL<0.01%$0.001898146.3589$0.2778
POL<0.01%$0.00285989.5683$0.256
POL<0.01%$0.001932106.5258$0.2058
POL<0.01%$1,796.690.00009608$0.1726
POL<0.01%$0.071712.0209$0.1449
POL<0.01%$0.000327416.1988$0.1359
POL<0.01%$0.7652020.1737$0.1329
POL<0.01%$0.000293447.4083$0.1311
POL<0.01%$0.0283944.62$0.1311
POL<0.01%$0.000121969.3328$0.1173
POL<0.01%$0.00253146.1363$0.1167
POL<0.01%$0.0000166,792.8902$0.1109
POL<0.01%$0.0913291.1633$0.1062
POL<0.01%$0.00629416.12$0.1014
BASE3.46%$1,805.271.6889$3,048.96
BASE3.04%$93,3420.0287$2,677.52
BASE2.83%$0.000396,407,595.7102$2,496.01
BASE1.40%$0.06271919,690.2413$1,234.94
BASE1.11%$1978.4269$978.43
BASE0.68%$0.894604673.5952$602.6
BASE0.35%$1,801.740.1701$306.51
BASE0.14%$1.03116.776$120.51
BASE0.11%$0.778923126.7932$98.76
BASE0.10%$93,6830.00097429$91.27
BASE0.10%$0.117575768.4758$90.35
BASE0.10%$0.99993689.8056$89.8
BASE0.10%$1.1477.9387$88.85
BASE0.08%$173.0396$73.05
BASE0.07%$0.5646116.5445$65.8
BASE0.07%$0.000001109,445,679.492$64.03
BASE0.07%$0.00390414,797.2362$57.77
BASE0.06%$0.0317671,703.1798$54.1
BASE0.06%$0.99996453.2673$53.27
BASE0.06%$0.0163433,220.4532$52.63
BASE0.06%$0.0222182,256.5397$50.14
BASE0.05%$0.0230781,971.6052$45.5
BASE0.04%$1,974.430.0189$37.29
BASE0.04%$0.00331211,216.5041$37.14
BASE0.04%$0.00328910,958.8269$36.05
BASE0.04%$0.127583246.8534$31.49
BASE0.03%$2.8910.6616$30.81
BASE0.03%$0.00192414,941.3642$28.75
BASE0.03%$2,161.640.0132$28.64
BASE0.03%$165.140.158$26.09
BASE0.03%$2.779.0673$25.12
BASE0.03%$0.000082282,671.5339$23.26
BASE0.02%$0.00056634,099.2639$19.31
BASE0.02%$93,4700.00019588$18.31
BASE0.02%$0.00109916,624.2341$18.27
BASE0.02%$0.0089281,736.9103$15.51
BASE0.02%$0.55963526.1006$14.61
BASE0.02%$53.70.2622$14.08
BASE0.01%$0.39417132.735$12.9
BASE0.01%$0.046962251.1594$11.79
BASE0.01%$0.00050722,835.5108$11.59
BASE0.01%$0.00009115,692.0711$10.39
BASE0.01%$0.00009115,692.0711$10.39
BASE<0.01%$0.0022183,760.4946$8.34
BASE<0.01%$0.20807438.493$8.01
BASE<0.01%$0.003542,223.3365$7.87
BASE<0.01%$0.018486416.1392$7.69
BASE<0.01%$0.0000061,310,951.7997$7.54
BASE<0.01%$0.009674771.0449$7.46
BASE<0.01%$0.033175210.249$6.98
BASE<0.01%$0.019237355.4702$6.84
BASE<0.01%$0.016659408.5113$6.81
BASE<0.01%$0.025729250.9394$6.46
BASE<0.01%$0.006358956.7573$6.08
BASE<0.01%$0.0010985,491.1213$6.03
BASE<0.01%$0.24941223.9393$5.97
BASE<0.01%$0.055206100.3125$5.54
BASE<0.01%$0.17654430.6361$5.41
BASE<0.01%$0.006789792.2942$5.38
BASE<0.01%$0.49482910.6502$5.27
BASE<0.01%$0.0044061,177.4705$5.19
BASE<0.01%$0.007742646.7284$5.01
BASE<0.01%$0.06025980.819$4.87
BASE<0.01%<$0.000001220,697,009.9781$4.81
BASE<0.01%$1,918.810.00250049$4.8
BASE<0.01%$0.0003513,627.1972$4.76
BASE<0.01%$0.0005249,030.3216$4.74
BASE<0.01%$0.05542284.613$4.69
BASE<0.01%$0.036772124.8606$4.59
BASE<0.01%$0.003971,129.6754$4.48
BASE<0.01%$0.000016268,438.6274$4.19
BASE<0.01%$0.9994273.9816$3.98
BASE<0.01%$0.0015132,606.0313$3.94
BASE<0.01%$0.0005656,868.7355$3.88
BASE<0.01%$2.721.4084$3.83
BASE<0.01%$0.00006160,869.3497$3.72
BASE<0.01%$0.015578235.8745$3.67
BASE<0.01%$0.0004039,089.5793$3.66
BASE<0.01%$0.7206024.8171$3.47
BASE<0.01%$0.4737456.4156$3.04
BASE<0.01%$0.0010452,895.075$3.02
BASE<0.01%$0.0004726,318.581$2.98
BASE<0.01%$0.0007833,632.243$2.84
BASE<0.01%$0.03780175.2196$2.84
BASE<0.01%$0.5432445.1814$2.81
BASE<0.01%$0.003925702.3929$2.76
BASE<0.01%$0.00017515,564.1706$2.73
BASE<0.01%$0.0003028,887.3527$2.69
BASE<0.01%$0.23966411.0937$2.66
BASE<0.01%$0.011826224.214$2.65
BASE<0.01%$0.03755768.6473$2.58
BASE<0.01%$0.01102223.392$2.46
BASE<0.01%$0.00732316.1438$2.31
BASE<0.01%$0.006046367.2576$2.22
BASE<0.01%$0.000013168,677.0861$2.21
BASE<0.01%$0.002837775.1583$2.2
BASE<0.01%$0.001971,007.7051$1.98
BASE<0.01%$0.262597.371$1.94
BASE<0.01%$1.541.2489$1.92
BASE<0.01%$0.016692103.5181$1.73
BASE<0.01%$0.006555259.7105$1.7
BASE<0.01%$0.0015411,095.3394$1.69
BASE<0.01%$0.002506666.3458$1.67
BASE<0.01%$0.01648197.6533$1.61
BASE<0.01%$1.561.0312$1.61
BASE<0.01%$0.000013121,446.5446$1.55
BASE<0.01%$0.0005622,726.5213$1.53
BASE<0.01%$0.0002366,128.4817$1.45
BASE<0.01%$0.004363300.0104$1.31
BASE<0.01%$0.01903768.2493$1.3
BASE<0.01%$0.10167312.7597$1.3
BASE<0.01%$11.2326$1.24
BASE<0.01%$0.7346531.6793$1.23
BASE<0.01%$0.011319108.974$1.23
BASE<0.01%$0.000004324,405.3477$1.18
BASE<0.01%$0.0005542,016.6229$1.12
BASE<0.01%$0.004683233.1437$1.09
BASE<0.01%$0.9998791.0699$1.07
BASE<0.01%$0.000002627,499.4708$1.01
BASE<0.01%$0.00004422,346.4603$0.9803
BASE<0.01%$0.01089287.1164$0.9488
BASE<0.01%$2.750.3126$0.8597
BASE<0.01%$0.003516223.257$0.7848
BASE<0.01%$0.006806111.3834$0.758
BASE<0.01%$0.000006117,721.831$0.7416
BASE<0.01%<$0.0000011,232,468,578.9682$0.7394
BASE<0.01%$0.000006117,788.3101$0.6725
BASE<0.01%$0.000886756.4326$0.6703
BASE<0.01%$0.9774870.6559$0.641
BASE<0.01%$0.03091920.6092$0.6372
BASE<0.01%$0.00075838.0553$0.6287
BASE<0.01%<$0.0000011,041,701,264.8364$0.625
BASE<0.01%$0.00002228,000.816$0.6165
BASE<0.01%$0.01028657.5835$0.5922
BASE<0.01%$0.0662568.3165$0.551
BASE<0.01%$0.0641878.4502$0.5423
BASE<0.01%$0.001292412.2009$0.5324
BASE<0.01%$0.000739665.067$0.4913
BASE<0.01%$0.0003621,325.7756$0.4803
BASE<0.01%$0.3850771.2451$0.4794
BASE<0.01%$0.00001337,174.677$0.465
BASE<0.01%$1,886.420.00019214$0.3624
BASE<0.01%$0.00610858.4126$0.3567
BASE<0.01%$0.2453221.3772$0.3378
BASE<0.01%<$0.00000117,739,573.1625$0.3352
BASE<0.01%$0.1758581.8957$0.3333
BASE<0.01%$0.0001182,587.4376$0.3055
BASE<0.01%$0.0000214,596.3911$0.298
BASE<0.01%$0.0308979.5681$0.2956
BASE<0.01%$0.3152040.936$0.295
BASE<0.01%$5.610.0505$0.2835
BASE<0.01%$0.00355970.75$0.2517
BASE<0.01%$0.001509164.9853$0.2489
BASE<0.01%$0.01901612.6488$0.2405
BASE<0.01%$10.2396$0.2395
BASE<0.01%$0.00000830,575.3021$0.2311
BASE<0.01%$1.10.198$0.2175
BASE<0.01%$0.000894219.5252$0.1962
BASE<0.01%$0.000255740.004$0.1883
BASE<0.01%$0.00000271,051.0938$0.1733
BASE<0.01%$0.306210.5579$0.1708
BASE<0.01%$0.00231772.429$0.1678
BASE<0.01%$0.0000493,326.7869$0.1634
BASE<0.01%$0.0981771.6338$0.1604
BASE<0.01%$1,943.990.00007775$0.1511
BASE<0.01%$0.0246335.2537$0.1294
BASE<0.01%$0.5513360.2341$0.129
BASE<0.01%$0.00352835.5081$0.1252
BASE<0.01%$0.5049790.228$0.1151
BASE<0.01%$1.010.1104$0.1116
GNO6.76%$1,805.253.3$5,957.4
GNO0.04%$114.240.3294$37.63
GNO<0.01%$1.141.4267$1.63
GNO<0.01%$1.141.4267$1.63
GNO<0.01%$0.03962634.6203$1.37
GNO<0.01%$0.99991.1862$1.19
GNO
xDai (XDAI)
<0.01%$0.99990.6863$0.686222
GNO<0.01%$0.9999490.6716$0.6715
GNO<0.01%$0.9999490.4554$0.4554
GNO<0.01%$0.9797750.1648$0.1614
BSC1.60%$0.08786716,103.375$1,414.96
BSC0.62%$611.610.892$545.57
BSC0.56%$1,803.440.2758$497.42
BSC0.56%$2.27216.6304$491.48
BSC0.29%$93,624.70.00272293$254.93
BSC0.20%<$0.0000012,631,236,466.7135$178.27
BSC0.18%$1161.4629$161.46
BSC0.17%$0.01361711,043.0888$150.37
BSC0.14%$611.730.2018$123.42
BSC0.12%$0.999908109.0738$109.06
BSC0.08%$6.7410.2393$69.01
BSC0.05%$0.345047125.5302$43.31
BSC0.04%$0.99867639.2698$39.22
BSC0.04%$0.0111783,215.0765$35.94
BSC0.04%$43.420.8043$34.92
BSC0.04%$93,2330.00035628$33.22
BSC0.03%$2.0214.9897$30.28
BSC0.02%$0.071109308.0271$21.9
BSC0.02%$0.091536239.0546$21.88
BSC0.02%$0.139958145.8641$20.41
BSC0.02%$0.0132731,511.3389$20.06
BSC0.02%$0.000064312,245.7453$19.88
BSC0.02%$119.0407$19.05
BSC0.02%$0.018478900.1388$16.63
BSC0.02%$0.031295528.0811$16.53
BSC0.02%$0.026651588.9555$15.7
BSC0.02%$0.000108130,081.1789$14.04
BSC0.01%$0.000016789,706.2544$12.65
BSC0.01%$1.39.6229$12.54
BSC0.01%$0.020291614.0624$12.46
BSC0.01%$0.00017768,111.4536$12.04
BSC0.01%<$0.0000018,108,807,328.0775$11.92
BSC0.01%$0.013698859.8183$11.78
BSC0.01%$111.4649$11.47
BSC0.01%$152.890.0728$11.12
BSC0.01%$0.0001572,852.2054$10.89
BSC0.01%$0.24554542.7108$10.49
BSC0.01%$0.99859710.449$10.43
BSC0.01%<$0.000001771,430,606.3369$10.25
BSC0.01%$0.041741241.6952$10.09
BSC0.01%$0.0000091,086,148.9056$10.05
BSC0.01%$0.0024063,782.2884$9.1
BSC0.01%$0.12758370.8047$9.03
BSC0.01%$0.0044062,005.7867$8.84
BSC<0.01%$93,6590.00009246$8.66
BSC<0.01%<$0.0000011,421,299,520.0492$8.15
BSC<0.01%$0.0047681,693.5479$8.08
BSC<0.01%$0.0000025,155,398.1734$7.99
BSC<0.01%<$0.0000013,065,236,324,868.9526$7.63
BSC<0.01%$2.742.7004$7.4
BSC<0.01%$6.041.1743$7.09
BSC<0.01%$0.011868593.3641$7.04
BSC<0.01%$0.000007959,077.8614$6.91
BSC<0.01%$4.121.6733$6.9
BSC<0.01%$2.722.515$6.84
BSC<0.01%$5.541.1783$6.53
BSC<0.01%$0.8258487.5319$6.22
BSC<0.01%$0.21088129.4899$6.22
BSC<0.01%<$0.000001487,871,614.9104$6.19
BSC<0.01%$0.07225284.2297$6.09
BSC<0.01%$3.111.9298$6
BSC<0.01%$0.026227228.4561$5.99
BSC<0.01%<$0.00000142,524,670.3113$5.97
BSC<0.01%$0.06200196.2058$5.96
BSC<0.01%$0.4183213.7788$5.76
BSC<0.01%$0.9992985.686$5.68
BSC<0.01%$2.072.7241$5.64
BSC<0.01%$0.20309527.6934$5.62
BSC<0.01%$0.005627967.1948$5.44
BSC<0.01%$0.0029091,859.3139$5.41
BSC<0.01%$0.10595350.6588$5.37
BSC<0.01%$0.00032415,650.0852$5.08
BSC<0.01%$0.00009254,723.4487$5.01
BSC<0.01%$0.020556237.0817$4.87
BSC<0.01%$0.05647982.9886$4.69
BSC<0.01%$0.4965889.4205$4.68
BSC<0.01%$0.0008335,600.006$4.67
BSC<0.01%$15.80.2932$4.63
BSC<0.01%$0.000014325,299.6081$4.47
BSC<0.01%$0.0019022,179.7536$4.15
BSC<0.01%$0.028881143.395$4.14
BSC<0.01%$0.513197.8803$4.04
BSC<0.01%$165.140.0244$4.03
BSC<0.01%$0.06442762.3111$4.01
BSC<0.01%$0.0015092,640.8726$3.98
BSC<0.01%$4.370.9001$3.93
BSC<0.01%$0.0004838,089.647$3.9
BSC<0.01%$5.350.7252$3.88
BSC<0.01%$0.019952193.4793$3.86
BSC<0.01%$0.020137190.279$3.83
BSC<0.01%$0.031089122.9794$3.82
BSC<0.01%$0.18298520.5065$3.75
BSC<0.01%$0.00013527,024.1134$3.66
BSC<0.01%$0.008937392.0843$3.5
BSC<0.01%$9.570.3645$3.49
BSC<0.01%$2.11.6336$3.43
BSC<0.01%$0.12170727.77$3.38
BSC<0.01%$0.07789742.0187$3.27
BSC<0.01%$22.890.1413$3.23
BSC<0.01%$0.030483105.0387$3.2
BSC<0.01%$0.5697015.5729$3.17
BSC<0.01%$0.05750355.0925$3.17
BSC<0.01%$0.00009531,467.8581$2.97
BSC<0.01%$0.07792238.0845$2.97
BSC<0.01%$0.08324735.0703$2.92
BSC<0.01%$0.005593517.6437$2.9
BSC<0.01%$0.00446601.3618$2.68
BSC<0.01%$0.0003228,156.2513$2.63
BSC<0.01%$0.000445,903.226$2.6
BSC<0.01%<$0.00000161,569,609.966$2.57
BSC<0.01%$0.07455734.3649$2.56
BSC<0.01%$0.000007345,672.2415$2.49
BSC<0.01%$0.02613595.0777$2.48
BSC<0.01%$2.480.9896$2.46
BSC<0.01%$0.00019812,293.1272$2.43
BSC<0.01%$0.22150610.8763$2.41
BSC<0.01%$0.3081927.7113$2.38
BSC<0.01%$359.860.00645393$2.32
BSC<0.01%$0.1084121.0452$2.28
BSC<0.01%$0.0005753,925.6044$2.26
BSC<0.01%$2.161.0409$2.25
BSC<0.01%$0.006986318.7109$2.23
BSC<0.01%$0.002457894.5655$2.2
BSC<0.01%$0.20807410.4674$2.18
BSC<0.01%$0.021364100.8823$2.16
BSC<0.01%$0.000007310,873.7968$2.11
BSC<0.01%$0.0013821,529.1866$2.11
BSC<0.01%$0.3458516.0602$2.1
BSC<0.01%$0.668383.108$2.08
BSC<0.01%$0.9216312.2306$2.06
BSC<0.01%$0.007753261.0458$2.02
BSC<0.01%$0.002101948.2137$1.99
BSC<0.01%$177.450.011$1.95
BSC<0.01%$0.611423.1685$1.94
BSC<0.01%$0.000004498,939.1251$1.93
BSC<0.01%$0.00798240.4605$1.92
BSC<0.01%$0.09026121.2367$1.92
BSC<0.01%$0.0009571,981.791$1.9
BSC<0.01%$0.03090360.4446$1.87
BSC<0.01%$0.02615770.9101$1.85
BSC<0.01%$0.02157285.0802$1.84
BSC<0.01%$0.000003543,855.2572$1.83
BSC<0.01%$0.2726536.5071$1.77
BSC<0.01%$0.01902993.102$1.77
BSC<0.01%$0.0005543,197.9817$1.77
BSC<0.01%$0.009962175.4878$1.75
BSC<0.01%$16.960.1026$1.74
BSC<0.01%$0.02463367.5003$1.66
BSC<0.01%$1.521.0807$1.64
BSC<0.01%$0.01665998.2185$1.64
BSC<0.01%$0.000002662,546.6992$1.62
BSC<0.01%$0.669212.4137$1.62
BSC<0.01%$0.0431537.0429$1.6
BSC<0.01%$0.01660693.7478$1.56
BSC<0.01%$0.6851692.2468$1.54
BSC<0.01%<$0.0000013,551,197.1764$1.54
BSC<0.01%$2.880.5211$1.5
BSC<0.01%$0.02319464.4789$1.5
BSC<0.01%$0.008642166.1626$1.44
BSC<0.01%$0.000014103,742.2749$1.41
BSC<0.01%$0.1796237.7977$1.4
BSC<0.01%$0.1765447.636$1.35
BSC<0.01%$0.02597750.6314$1.32
BSC<0.01%$0.05813522.18$1.29
BSC<0.01%$0.3317993.8106$1.26
BSC<0.01%$0.0002335,343.7387$1.25
BSC<0.01%$0.004293288.8578$1.24
BSC<0.01%$0.3136193.9311$1.23
BSC<0.01%<$0.00000118,528,871.1116$1.2
BSC<0.01%$0.0000011,945,161.989$1.2
BSC<0.01%$0.01582374.7406$1.18
BSC<0.01%$0.0003423,448.7063$1.18
BSC<0.01%$0.01350887.2842$1.18
BSC<0.01%$0.00006917,031.9558$1.18
BSC<0.01%$93,3420.00001245$1.16
BSC<0.01%$0.0005582,066.828$1.15
BSC<0.01%$0.004599245.3291$1.13
BSC<0.01%$0.04367525.7804$1.13
BSC<0.01%<$0.000001239,891,756.2121$1.11
BSC<0.01%$0.009774113.1395$1.11
BSC<0.01%$0.08413413.0575$1.1
BSC<0.01%$0.2724753.8761$1.06
BSC<0.01%$0.009593108.6674$1.04
BSC<0.01%$0.0197951.6951$1.02
BSC<0.01%$0.02422242.0194$1.02
BSC<0.01%<$0.0000019,855,764.0207$0.9635
BSC<0.01%$0.0000999,455.0365$0.9379
BSC<0.01%<$0.0000017,319,737.5529$0.9339
BSC<0.01%<$0.00000183,057,882,794.6911$0.9334
BSC<0.01%$0.1476576.3105$0.9317
BSC<0.01%$14.950.0623$0.9313
BSC<0.01%$0.004022229.2854$0.9222
BSC<0.01%$0.1827535.034$0.9199
BSC<0.01%$33.330.0274$0.9133
BSC<0.01%$0.0000959,469.292$0.9017
BSC<0.01%$0.0000011,398,201.2545$0.8933
BSC<0.01%$0.1350456.5943$0.8905
BSC<0.01%<$0.0000016,165,031,956.8236$0.8802
BSC<0.01%$0.003328262.5633$0.8736
BSC<0.01%$0.004892174.4187$0.8533
BSC<0.01%$0.01791546.0056$0.8241
BSC<0.01%$0.07520310.9315$0.822
BSC<0.01%<$0.000001194,667,890,498.3453$0.8043
BSC<0.01%$668.820.00119399$0.7985
BSC<0.01%$0.05853713.2946$0.7782
BSC<0.01%$0.6467391.1989$0.7753
BSC<0.01%$0.001361559.2925$0.7614
BSC<0.01%$5.70.1335$0.7607
BSC<0.01%$0.01579347.1128$0.744
BSC<0.01%$0.003497209.6768$0.7331
BSC<0.01%$0.0293124.8934$0.7296
BSC<0.01%<$0.0000013,819,904.8583$0.7148
BSC<0.01%<$0.000001710,081,679.8005$0.71
BSC<0.01%$0.0001374,911.8636$0.6734
BSC<0.01%$0.01167757.2071$0.6679
BSC<0.01%$0.7030620.9488$0.667
BSC<0.01%$0.5418441.2303$0.6666
BSC<0.01%$0.01898434.9979$0.6644
BSC<0.01%$0.0004751,393.923$0.6621
BSC<0.01%<$0.0000017,835,672.7068$0.65
BSC<0.01%$0.01041658.7939$0.6124
BSC<0.01%<$0.000001588,563,638.1595$0.6106
BSC<0.01%$0.0757178.038$0.6086
BSC<0.01%$0.01975330.0755$0.594
BSC<0.01%$0.00003715,763.987$0.5807
BSC<0.01%$92,1430.00000602$0.5547
BSC<0.01%$0.2516772.1926$0.5518
BSC<0.01%$0.000737729.0451$0.5373
BSC<0.01%$0.081076.3168$0.5121
BSC<0.01%$0.002755185.4444$0.5108
BSC<0.01%$0.0001413,564.0747$0.5032
BSC<0.01%$0.00003813,223.5431$0.5023
BSC<0.01%$0.002587193.6684$0.501
BSC<0.01%<$0.0000012,496,901.9508$0.4923
BSC<0.01%$0.1133434.208$0.4769
BSC<0.01%$0.001705272.9129$0.4652
BSC<0.01%$0.000987458.418$0.4522
BSC<0.01%$0.0000746,082.762$0.449
BSC<0.01%$0.00812954.449$0.4426
BSC<0.01%$0.1225023.607$0.4418
BSC<0.01%$0.00869650.7493$0.4413
BSC<0.01%$0.001034421.944$0.436
BSC<0.01%$0.2845421.5278$0.4347
BSC<0.01%$0.01911922.5422$0.4309
BSC<0.01%$0.1940072.2175$0.4302
BSC<0.01%$0.00486887.8984$0.4278
BSC<0.01%$0.02539616.7643$0.4257
BSC<0.01%$0.1696492.5073$0.4253
BSC<0.01%$0.0474018.9138$0.4225
BSC<0.01%$1.950.2164$0.422
BSC<0.01%$0.3119571.3469$0.4201
BSC<0.01%$0.01853621.5198$0.3988
BSC<0.01%<$0.0000013,573,455,187,837.415$0.3973
BSC<0.01%$0.001542256.1898$0.3949
BSC<0.01%$0.01576125.028$0.3944
BSC<0.01%$0.000003133,953.6713$0.3911
BSC<0.01%$0.001644232.731$0.3826
BSC<0.01%$0.0000137,995.2318$0.3757
BSC<0.01%$0.0000218,638.3325$0.3751
BSC<0.01%$0.002839130.9849$0.3718
BSC<0.01%$0.03091511.873$0.367
BSC<0.01%$0.02194616.5116$0.3623
BSC<0.01%$1,805.480.00019686$0.3554
BSC<0.01%$0.1149013.0494$0.3503
BSC<0.01%$0.1887551.8035$0.3404
BSC<0.01%$0.000407821.9505$0.3342
BSC<0.01%$0.5596350.5968$0.334
BSC<0.01%$0.2609451.2672$0.3306
BSC<0.01%$0.9997640.3262$0.3261
BSC<0.01%$0.00002512,524.7802$0.3165
BSC<0.01%$0.000969326.3666$0.316
BSC<0.01%$0.0912563.4174$0.3118
BSC<0.01%$0.01273324.4503$0.3113
BSC<0.01%$0.01020728.804$0.2939
BSC<0.01%$0.000361781.8536$0.2823
BSC<0.01%$0.6008120.4686$0.2815
BSC<0.01%$0.2134031.281$0.2733
BSC<0.01%$1,505.410.00018001$0.2709
BSC<0.01%$0.00111240.4827$0.2668
BSC<0.01%$0.0324758.0881$0.2626
BSC<0.01%$0.0307768.3737$0.2577
BSC<0.01%$1.030.2496$0.2573
BSC<0.01%$0.01599515.9021$0.2543
BSC<0.01%$0.1977991.2853$0.2542
BSC<0.01%$0.9839880.2541$0.25
BSC<0.01%<$0.0000011,216,162.4371$0.2474
BSC<0.01%$0.002026120.7831$0.2446
BSC<0.01%$0.0000514,815.7212$0.2432
BSC<0.01%$0.00315276.9492$0.2425
BSC<0.01%$0.002059116.6433$0.2401
BSC<0.01%$40.880.00581775$0.2378
BSC<0.01%$0.01521815.5366$0.2364
BSC<0.01%<$0.000001239,374,026.7776$0.2346
BSC<0.01%$0.01167120.053$0.234
BSC<0.01%$0.01126220.7312$0.2334
BSC<0.01%$0.000488475.6592$0.2322
BSC<0.01%$0.0316837.0511$0.2234
BSC<0.01%$5,120.210.00004354$0.2229
BSC<0.01%$0.001722128.7066$0.2216
BSC<0.01%$0.001176184.3751$0.2168
BSC<0.01%$0.00295872.3841$0.2141
BSC<0.01%$0.0219479.7219$0.2133
BSC<0.01%$0.0284087.3481$0.2087
BSC<0.01%$1,886.420.00010669$0.2012
BSC<0.01%$0.1424971.394$0.1986
BSC<0.01%$0.00736326.6691$0.1963
BSC<0.01%<$0.0000012,399,646,590.5978$0.1957
BSC<0.01%$0.00001216,112.2139$0.1955
BSC<0.01%$0.269010.7233$0.1945
BSC<0.01%$0.00292561.894$0.181
BSC<0.01%$0.0238127.4922$0.1784
BSC<0.01%$2.930.0584$0.1711
BSC<0.01%$0.000001133,592.5784$0.1683
BSC<0.01%$0.0087518.687$0.1635
BSC<0.01%<$0.000001110,945,398.557$0.1633
BSC<0.01%$0.00580327.9883$0.1624
BSC<0.01%$0.00562827.0678$0.1523
BSC<0.01%<$0.000001222,358,110,651.4647$0.1523
BSC<0.01%$0.7172920.21$0.1506
BSC<0.01%$0.000249595.141$0.1484
BSC<0.01%<$0.000001615,901,569.853$0.147
BSC<0.01%<$0.0000016,992,666,766.6272$0.1449
BSC<0.01%$0.00823217.5821$0.1447
BSC<0.01%$0.0019772.1503$0.1421
BSC<0.01%$0.0922941.5373$0.1418
BSC<0.01%$2.540.0542$0.1376
BSC<0.01%$0.0230435.8511$0.1348
BSC<0.01%$0.00269649.257$0.1328
BSC<0.01%$0.9999870.1311$0.1311
BSC<0.01%$0.046062.8444$0.131
BSC<0.01%$1.260.1$0.126
BSC<0.01%$0.0000383,224.7999$0.1222
BSC<0.01%$0.00532722.3718$0.1191
BSC<0.01%$0.00133489.2908$0.1191
BSC<0.01%$7.990.0149$0.1189
BSC<0.01%$0.089521.3189$0.118
BSC<0.01%$0.0048224.4229$0.1177
BSC<0.01%$0.9707970.1208$0.1173
BSC<0.01%$0.001122104.5115$0.1172
BSC<0.01%<$0.000001273,913.3635$0.1162
BSC<0.01%<$0.00000167,400,523,939.0429$0.1156
BSC<0.01%$0.6390550.1776$0.1134
BSC<0.01%$0.00965511.7449$0.1133
BSC<0.01%$0.07811.4394$0.1124
BSC<0.01%$0.001037106.9857$0.1109
BSC<0.01%$0.000114950.5503$0.1084
BSC<0.01%$1.060.102$0.1084
BSC<0.01%$0.3668990.2804$0.1028
BSC<0.01%$0.2209850.461$0.1018
BSC<0.01%$0.00698314.5388$0.1015
OP1.00%$1,803.040.4894$882.47
OP0.63%$1,805.240.3083$556.47
OP0.31%$0.999999273.217$273.22
OP0.17%$0.758543199.019$150.96
OP0.10%$93,4530.00094424$88.24
OP0.07%$93,6880.00061962$58.05
OP0.05%$0.99999946.7035$46.7
OP0.04%$137.7347$37.73
OP0.02%$2,163.560.00874574$18.92
OP<0.01%$0.050018127.2791$6.37
OP<0.01%$0.10169842.7712$4.35
OP<0.01%$2.711.4973$4.06
OP<0.01%$10.960.3507$3.84
OP<0.01%$0.09533538.9633$3.71
OP<0.01%$13.4436$3.44
OP<0.01%$0.22626711.3852$2.58
OP<0.01%$11.9525$1.96
OP<0.01%$0.0007461,885.8125$1.41
OP<0.01%$0.9996391.2118$1.21
OP<0.01%$1,790.540.00044648$0.7994
OP<0.01%$0.7174650.6903$0.4952
OP<0.01%$0.0071839.5529$0.2839
OP<0.01%$0.2418310.8162$0.1973
OP<0.01%$10.1947$0.1947
OP<0.01%$0.0001151,602.345$0.1843
OP<0.01%$14.950.0096969$0.1449
OP<0.01%$0.00528225.086$0.1325
OP<0.01%$0.00274246.7662$0.1282
OP<0.01%$0.2028640.5952$0.1207
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.