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

Contract

0x90CbE4BDd538D6e9b379bFF5fE72c3d67A521De5
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.45%$1,797.175.1088$9,181.47
ETH7.70%$0.9999956,763.6911$6,763.66
ETH2.91%$2.83904.0452$2,554.08
ETH1.61%$94,2930.015$1,418.54
ETH1.45%$11,276.2515$1,276.25
ETH0.49%$14.8928.7462$428.03
ETH0.46%$8.8245.6914$403.07
ETH0.43%$0.392484953.4937$374.23
ETH0.42%$0.2442721,525.0423$372.53
ETH0.29%$1,797.170.1421$255.3
ETH0.28%$0.026629,209.6214$245.16
ETH0.21%$0.00828522,036.234$182.57
ETH0.20%$1,790.920.0985$176.34
ETH0.20%<$0.00000123,387,296,893.5196$175.29
ETH0.20%<$0.0000013,372,487,768.905$173.01
ETH0.18%$0.0545932,901.3771$158.39
ETH0.18%$1,786.720.0884$157.87
ETH0.18%<$0.00000110,798,764,801.2914$156.16
ETH0.18%$0.177768870.8871$154.82
ETH0.16%$3,343.330.0425$142.03
ETH0.15%$29.734.5394$134.94
ETH0.15%$0.560308228.1584$127.84
ETH0.12%$4.3724.9484$109.02
ETH0.12%$0.0232844,607.3937$107.28
ETH0.12%$0.0485162,169.5737$105.26
ETH0.12%$21.864.7968$104.86
ETH0.12%$0.0170996,114.1843$104.55
ETH0.11%$0.313283320.2314$100.32
ETH0.10%$1.3964.14$89.15
ETH0.10%$0.089767987.7198$88.66
ETH0.10%$0.0281063,076.9888$86.48
ETH0.10%$186.3864$86.39
ETH0.10%$0.000042,130,580.8711$85.18
ETH0.09%$0.000336244,917.4772$82.41
ETH0.09%$0.170569481.4949$82.13
ETH0.09%$2,002.520.0377$75.53
ETH0.08%$0.0000481,491,370.927$72.29
ETH0.08%$1.1761.2013$71.61
ETH0.08%$0.114424602.2738$68.91
ETH0.08%$161.240.4096$66.05
ETH0.08%$0.079134834.4139$66.03
ETH0.07%$0.218009296.5226$64.64
ETH0.07%$106.330.6075$64.6
ETH0.07%$0.0522871,209.286$63.23
ETH0.07%$1.3346.3776$61.68
ETH0.07%$0.0279842,146.6931$60.07
ETH0.07%$0.351624170.4632$59.94
ETH0.07%$27.562.1705$59.82
ETH0.07%$0.045261,280.3561$57.95
ETH0.07%$0.0072677,969.0581$57.91
ETH0.07%$0.67691485.5382$57.9
ETH0.07%$0.00000512,220,036.6073$57.46
ETH0.07%$0.73339678.0481$57.24
ETH0.06%$1.247.5626$56.91
ETH0.06%$0.0369091,535.3398$56.67
ETH0.06%$0.078609691.7982$54.38
ETH0.06%$93,7120.00056201$52.67
ETH0.06%$0.0163113,140.2667$51.22
ETH0.06%$0.066904765.496$51.21
ETH0.06%<$0.0000017,226,828,426.2352$50.57
ETH0.05%$0.0192232,476.2554$47.6
ETH0.05%$0.0137673,415.141$47.02
ETH0.05%$0.275451168.7082$46.47
ETH0.05%$0.0008950,128.5803$44.62
ETH0.05%$0.0000143,172,889.1471$43.63
ETH0.05%$9.294.632$43.03
ETH0.05%$0.99648843.1516$43
ETH0.05%$0.161371263.9462$42.59
ETH0.05%$0.0140293,026.5437$42.46
ETH0.05%$56.120.7313$41.04
ETH0.05%$0.089151459.4101$40.96
ETH0.05%$0.00237517,119.7154$40.66
ETH0.05%<$0.00000111,893,885,992.8863$40.25
ETH0.05%$0.393836101.8899$40.13
ETH0.05%<$0.00000134,699,922,254,231.637$39.96
ETH0.05%<$0.0000011,118,495,740.2932$39.59
ETH0.05%<$0.00000183,327,486.9481$39.54
ETH0.04%$0.137849283.6802$39.11
ETH0.04%$0.0216351,790.8911$38.75
ETH0.04%$0.010763,559.0996$38.29
ETH0.04%$0.140491269.1218$37.81
ETH0.04%$0.339636104.971$35.65
ETH0.04%$0.0295431,140.2451$33.69
ETH0.04%$0.94854435.4477$33.62
ETH0.04%$0.51674664.5413$33.35
ETH0.04%$0.0011927,946.3605$33.24
ETH0.04%$0.00085537,205.5392$31.83
ETH0.04%$0.175155181.2161$31.74
ETH0.04%$0.00216814,557.8943$31.56
ETH0.04%$0.0000241,293,231.1248$31.24
ETH0.04%$0.051364601.0687$30.87
ETH0.03%$0.25461120.3914$30.65
ETH0.03%$0.0064464,731.2371$30.5
ETH0.03%$2,151.140.0142$30.48
ETH0.03%$7.733.885$30.03
ETH0.03%$0.99812829.95$29.89
ETH0.03%$0.054844537.9922$29.51
ETH0.03%$0.71490240.353$28.85
ETH0.03%$0.97924428.8872$28.29
ETH0.03%$0.036087783.765$28.28
ETH0.03%$0.043374647.8706$28.1
ETH0.03%$0.0025211,046.3996$27.84
ETH0.03%$0.00051454,116.7565$27.83
ETH0.03%$0.90504730.6488$27.74
ETH0.03%$0.0043296,394.5502$27.69
ETH0.03%$0.094184288.4283$27.17
ETH0.03%$0.00156217,039.7859$26.61
ETH0.03%<$0.00000181,208,968.3732$26.55
ETH0.03%$72.20.3641$26.29
ETH0.03%$0.055747462.0813$25.76
ETH0.03%$0.107645233.3017$25.11
ETH0.03%$0.0043925,669.5427$24.9
ETH0.03%$0.0149461,619.0331$24.2
ETH0.03%$0.140536169.2456$23.79
ETH0.03%$0.123077191.0493$23.51
ETH0.03%$0.24478894.332$23.09
ETH0.03%$0.186465123.3976$23.01
ETH0.03%$0.096822237.6316$23.01
ETH0.03%$0.0000046,472,169.3055$22.91
ETH0.03%$0.28398679.11$22.47
ETH0.03%$0.00653,426.9$22.27
ETH0.03%$0.033211666.2293$22.13
ETH0.02%$0.0185081,176.6555$21.78
ETH0.02%$0.41881851.8463$21.71
ETH0.02%$0.079891267.2844$21.35
ETH0.02%$0.023843886.8167$21.14
ETH0.02%$2.0210.2913$20.79
ETH0.02%$0.0000092,248,216.2564$20.59
ETH0.02%$2,027.170.01$20.27
ETH0.02%$0.099731200.2446$19.97
ETH0.02%$0.000063307,514.3034$19.41
ETH0.02%$0.33087557.1794$18.92
ETH0.02%$0.050028376.8234$18.85
ETH0.02%$0.99959118.8208$18.81
ETH0.02%$0.32052458.5036$18.75
ETH0.02%$1.1416.4467$18.75
ETH0.02%$17.681.0542$18.64
ETH0.02%<$0.000001384,952,362.8424$18.22
ETH0.02%$0.64645427.6447$17.87
ETH0.02%$2.916.1097$17.78
ETH0.02%$0.07218245.4476$17.72
ETH0.02%$0.081515216.2922$17.63
ETH0.02%<$0.00000170,825,229.5005$17.35
ETH0.02%<$0.00000122,043,291,156,050.609$17.27
ETH0.02%$0.00137412,517.1902$17.2
ETH0.02%$0.082423208.3516$17.17
ETH0.02%$1,790.740.00946692$16.95
ETH0.02%$0.00084519,806.5513$16.74
ETH0.02%$0.37164244.5281$16.55
ETH0.02%$0.0043833,767.8489$16.51
ETH0.02%<$0.00000175,064,754.4953$16.45
ETH0.02%$0.99319616.553$16.44
ETH0.02%$0.025126654.0883$16.43
ETH0.02%$0.0061852,639.3199$16.32
ETH0.02%$0.04423368.916$16.32
ETH0.02%$0.81170219.8083$16.08
ETH0.02%$0.039701402.9503$16
ETH0.02%$0.005772,747.5266$15.85
ETH0.02%$0.5678927.4722$15.6
ETH0.02%$0.0012412,519.5698$15.52
ETH0.02%$2.985.2051$15.51
ETH0.02%$0.00121612,351.1613$15.02
ETH0.02%$6.742.1947$14.79
ETH0.02%$2,017.760.00730412$14.74
ETH0.02%$0.0031714,637.5472$14.7
ETH0.02%$0.0033254,275.4795$14.22
ETH0.02%$0.17578180.2931$14.11
ETH0.02%$0.63763621.6248$13.79
ETH0.02%$10.31.3317$13.71
ETH0.02%$0.00014395,871.9587$13.66
ETH0.02%$0.0000131,036,154.3846$13.57
ETH0.02%$0.09313145.1053$13.51
ETH0.02%<$0.000001321,663,377.1224$13.27
ETH0.02%$0.72211618.2482$13.18
ETH0.01%$0.20616562.4475$12.87
ETH0.01%<$0.000001210,504,516.5527$12.84
ETH0.01%$0.0061382,061.5057$12.65
ETH0.01%$0.03055413.0654$12.62
ETH0.01%$0.092868135.3826$12.57
ETH0.01%$0.56641921.9756$12.45
ETH0.01%$0.0103781,186.8662$12.32
ETH0.01%$0.20406859.982$12.24
ETH0.01%$0.00029641,244.4075$12.19
ETH0.01%$4.492.6978$12.11
ETH0.01%$0.0077371,555.0587$12.03
ETH0.01%$0.17068569.5294$11.87
ETH0.01%$0.000058202,092.1188$11.63
ETH0.01%$4.552.5509$11.61
ETH0.01%$0.6287218.4019$11.57
ETH0.01%$0.018208627.3099$11.42
ETH0.01%<$0.0000014,200,000,000$11.36
ETH0.01%$0.00025444,120.5168$11.22
ETH0.01%$0.000072155,355.2785$11.2
ETH0.01%$0.005561,999.9351$11.12
ETH0.01%$0.1891458.6843$11.1
ETH0.01%$0.0091971,191.0161$10.95
ETH0.01%$0.36740629.4359$10.81
ETH0.01%$0.94645111.3687$10.76
ETH0.01%$0.00000114,955,275.2809$10.69
ETH0.01%$0.0056431,894.4737$10.69
ETH0.01%$0.20964750.5109$10.59
ETH0.01%<$0.000001228,860,667.027$10.41
ETH0.01%<$0.0000013,349,185,467.444$10.28
ETH0.01%$0.027634369.4645$10.21
ETH0.01%$0.26036639.069$10.17
ETH0.01%$0.000066154,911.8661$10.16
ETH0.01%<$0.00000179,163,870.6062$10.14
ETH0.01%$0.0000033,635,434.7524$9.89
ETH0.01%$0.072562135.649$9.84
ETH0.01%$0.29867832.9514$9.84
ETH0.01%<$0.000001144,234,490.2313$9.83
ETH0.01%$0.04554214.7004$9.78
ETH0.01%$4.622.1112$9.75
ETH0.01%$0.094714102.6509$9.72
ETH0.01%$3,339.70.002902$9.69
ETH0.01%$1.317.3188$9.59
ETH0.01%$0.000028340,399.9999$9.44
ETH0.01%$0.9999379.4032$9.4
ETH0.01%$0.18478450.0927$9.26
ETH0.01%$0.022283414.8915$9.24
ETH0.01%$1.167.8829$9.14
ETH0.01%$0.000066136,222.7278$9.05
ETH0.01%$0.0025473,533.3034$9
ETH0.01%$94,3190.00009457$8.92
ETH0.01%$0.00016952,532.6871$8.9
ETH0.01%$0.85195910.3917$8.85
ETH0.01%$0.0008959,880.5685$8.85
ETH<0.01%$0.00000113,972,248.6316$8.7
ETH<0.01%$0.54511415.7462$8.58
ETH<0.01%<$0.00000115,831,901,550.7711$8.46
ETH<0.01%$5,975.410.00140407$8.39
ETH<0.01%<$0.000001129,865,764.6$8.36
ETH<0.01%$22.940.3639$8.35
ETH<0.01%$0.00000111,936,626.4432$8.31
ETH<0.01%$0.00054615,077.5526$8.23
ETH<0.01%$0.000023351,464.4258$8.22
ETH<0.01%$0.0022453,632.8143$8.16
ETH<0.01%$0.003792,141.3314$8.12
ETH<0.01%<$0.00000119,496,614.7805$8.09
ETH<0.01%$0.014555553.9107$8.06
ETH<0.01%$0.026562299.9598$7.97
ETH<0.01%$0.0021773,533.1137$7.69
ETH<0.01%$0.11641165.6829$7.65
ETH<0.01%$0.1335256.9362$7.6
ETH<0.01%$177.990.0417$7.43
ETH<0.01%$0.11374664.0012$7.28
ETH<0.01%$0.0013925,221.4836$7.27
ETH<0.01%$0.0040321,800$7.26
ETH<0.01%$0.723299.7383$7.04
ETH<0.01%$0.023071302.4729$6.98
ETH<0.01%$0.0023772,930.4119$6.96
ETH<0.01%$0.016781413.3976$6.94
ETH<0.01%$0.21744431.7872$6.91
ETH<0.01%<$0.00000149,214,200.9468$6.91
ETH<0.01%$0.0010056,819.6382$6.86
ETH<0.01%$0.0000041,712,359.4924$6.83
ETH<0.01%$0.32983520.5947$6.79
ETH<0.01%$0.00057511,617.317$6.68
ETH<0.01%$0.028903230.6028$6.67
ETH<0.01%$5,102.060.00129378$6.6
ETH<0.01%$0.0019243,426.6107$6.59
ETH<0.01%$0.0041021,598.9851$6.56
ETH<0.01%$0.031527206.0196$6.5
ETH<0.01%$0.0013134,927.9306$6.47
ETH<0.01%$0.3009521.3399$6.42
ETH<0.01%$0.031475201.615$6.35
ETH<0.01%$0.0054411,153.6247$6.28
ETH<0.01%$0.010369603.693$6.26
ETH<0.01%$0.21275129.3283$6.24
ETH<0.01%$0.006759918.5622$6.21
ETH<0.01%$0.00013645,465.7408$6.18
ETH<0.01%$0.10851956.5316$6.13
ETH<0.01%$0.06659891.6603$6.1
ETH<0.01%$0.025879234.9676$6.08
ETH<0.01%$0.0000019,908,761.5227$6.06
ETH<0.01%$0.0010765,606.094$6.03
ETH<0.01%$0.0029921,962.2114$5.87
ETH<0.01%$0.011245517.5964$5.82
ETH<0.01%$0.00018131,817.409$5.76
ETH<0.01%$0.037224147.252$5.48
ETH<0.01%<$0.0000011,058,657,192.1424$5.43
ETH<0.01%$0.50810110.6557$5.41
ETH<0.01%$0.016003336.6136$5.39
ETH<0.01%$0.01112483.0887$5.37
ETH<0.01%$0.11842645.3539$5.37
ETH<0.01%$0.17374330.6898$5.33
ETH<0.01%$20.540.2593$5.33
ETH<0.01%$0.6073698.7157$5.29
ETH<0.01%$0.0008686,085.4152$5.28
ETH<0.01%$0.1735630.3947$5.28
ETH<0.01%$0.20964725.0621$5.25
ETH<0.01%$0.6697887.8169$5.24
ETH<0.01%$0.03742139.6146$5.22
ETH<0.01%$0.0000013,652,536.2332$5.22
ETH<0.01%$0.005264986.8868$5.19
ETH<0.01%$0.00008361,997.3857$5.17
ETH<0.01%$0.0013013,947.069$5.13
ETH<0.01%$0.5114749.918$5.07
ETH<0.01%<$0.000001877,815,950.5989$5.07
ETH<0.01%$0.0015433,257.2649$5.02
ETH<0.01%$0.000011442,788.5454$5.01
ETH<0.01%$0.19645625.4138$4.99
ETH<0.01%$0.000014364,508.5843$4.96
ETH<0.01%$0.015858312.5849$4.96
ETH<0.01%$0.007231682.1386$4.93
ETH<0.01%$0.010355470.7145$4.87
ETH<0.01%$14.8189$4.82
ETH<0.01%$0.000027179,196.9239$4.77
ETH<0.01%$0.00017926,368.1474$4.72
ETH<0.01%$1,881.470.00249765$4.7
ETH<0.01%$114.240.0411$4.7
ETH<0.01%$0.06385172.181$4.61
ETH<0.01%$0.006682689.6226$4.61
ETH<0.01%$0.007922573.8812$4.55
ETH<0.01%$0.012965349.3272$4.53
ETH<0.01%<$0.0000013,023,386,998.3823$4.52
ETH<0.01%$0.00021920,599.395$4.51
ETH<0.01%$0.005581798.4299$4.46
ETH<0.01%$0.000022200,055.65$4.44
ETH<0.01%$0.7624045.7052$4.35
ETH<0.01%$0.09091847.06$4.28
ETH<0.01%$0.06808862.1832$4.23
ETH<0.01%$0.298514.1666$4.23
ETH<0.01%$0.00026815,473.142$4.14
ETH<0.01%$0.516157.9895$4.12
ETH<0.01%$0.19913320.5649$4.1
ETH<0.01%$0.0009334,373.8714$4.08
ETH<0.01%$1.512.674$4.03
ETH<0.01%$6.50.6115$3.97
ETH<0.01%$0.8641114.5743$3.95
ETH<0.01%$0.019787197.086$3.9
ETH<0.01%$0.017286224.7484$3.89
ETH<0.01%$0.7097125.4633$3.88
ETH<0.01%$0.010682359.9096$3.84
ETH<0.01%$0.008696439.5502$3.82
ETH<0.01%$0.10891735.0041$3.81
ETH<0.01%$0.0007435,119.9911$3.8
ETH<0.01%$13.7638$3.78
ETH<0.01%$0.004169898.38$3.74
ETH<0.01%<$0.00000114,405,947,890.6713$3.7
ETH<0.01%$0.0011283,250.572$3.67
ETH<0.01%$0.9998093.666$3.67
ETH<0.01%$0.004324846.023$3.66
ETH<0.01%$0.06689153.7708$3.6
ETH<0.01%$0.00010134,844.179$3.53
ETH<0.01%$0.6723225.2407$3.52
ETH<0.01%$0.13608725.0872$3.41
ETH<0.01%$0.0009293,673.5176$3.41
ETH<0.01%$3,319.260.00102673$3.41
ETH<0.01%$1,909.50.00177658$3.39
ETH<0.01%$0.06526651.9188$3.39
ETH<0.01%$0.07550444.734$3.38
ETH<0.01%$0.1210927.8006$3.37
ETH<0.01%$0.0024861,345.961$3.35
ETH<0.01%$0.024764134.8228$3.34
ETH<0.01%$0.8955393.4992$3.13
ETH<0.01%$0.0019621,578.5127$3.1
ETH<0.01%$0.18291116.697$3.05
ETH<0.01%$0.009876308.7872$3.05
ETH<0.01%$0.000348,875.173$3.02
ETH<0.01%$0.0003957,566.4571$2.99
ETH<0.01%$0.0007074,224.0433$2.99
ETH<0.01%$0.9988362.9715$2.97
ETH<0.01%$0.023854124.284$2.96
ETH<0.01%$0.09099832.396$2.95
ETH<0.01%$0.006638432.3731$2.87
ETH<0.01%$0.20049514.3075$2.87
ETH<0.01%$0.002883986.5208$2.84
ETH<0.01%$0.7848373.6099$2.83
ETH<0.01%$0.6550534.2995$2.82
ETH<0.01%$0.26558510.5037$2.79
ETH<0.01%$0.016283169.5693$2.76
ETH<0.01%$0.00003380,820.0916$2.7
ETH<0.01%$2.840.9464$2.69
ETH<0.01%$0.0005594,782.519$2.67
ETH<0.01%$0.0013711,950.255$2.67
ETH<0.01%$0.0000021,101,160.4087$2.66
ETH<0.01%$0.016065164.3386$2.64
ETH<0.01%$1.142.314$2.64
ETH<0.01%$0.09370128.1411$2.64
ETH<0.01%$0.02755295.6728$2.64
ETH<0.01%$0.0016111,624.5525$2.62
ETH<0.01%$0.17282215$2.59
ETH<0.01%$0.006702385.8503$2.59
ETH<0.01%$0.16441915.4835$2.55
ETH<0.01%$0.05202448.5301$2.52
ETH<0.01%$0.021829115.482$2.52
ETH<0.01%$0.03281976.524$2.51
ETH<0.01%$0.0001813,905.2682$2.51
ETH<0.01%$6.110.41$2.51
ETH<0.01%$0.020658117.9173$2.44
ETH<0.01%$0.007448325.905$2.43
ETH<0.01%$0.010439232.4913$2.43
ETH<0.01%$0.18105113.1942$2.39
ETH<0.01%<$0.0000013,616,967,204.8345$2.38
ETH<0.01%$0.003782619.984$2.34
ETH<0.01%$0.0016581,408.3143$2.33
ETH<0.01%$0.0006473,516.9802$2.28
ETH<0.01%<$0.00000142,352,269.9505$2.26
ETH<0.01%$0.9975872.2616$2.26
ETH<0.01%$0.002967759.7793$2.25
ETH<0.01%$43.350.052$2.25
ETH<0.01%$0.0004794,694.0212$2.25
ETH<0.01%$0.15204214.5476$2.21
ETH<0.01%$0.15430114.2976$2.21
ETH<0.01%$1.052.1026$2.2
ETH<0.01%$0.07282230.1249$2.19
ETH<0.01%$0.015887137.2566$2.18
ETH<0.01%$0.00020610,559.5012$2.18
ETH<0.01%$0.0000021,269,749.3285$2.17
ETH<0.01%$0.02356791.5885$2.16
ETH<0.01%$1.081.9927$2.14
ETH<0.01%<$0.00000150,009,730.2367$2.14
ETH<0.01%$0.006746315.8616$2.13
ETH<0.01%$0.06044535.0564$2.12
ETH<0.01%$0.3009527.0094$2.11
ETH<0.01%$0.03400561.7085$2.1
ETH<0.01%$0.00002584,548.0277$2.09
ETH<0.01%$0.00014714,074.8918$2.07
ETH<0.01%$0.0014931,362.1203$2.03
ETH<0.01%$0.2178599.3202$2.03
ETH<0.01%$0.000005392,206.2812$2.01
ETH<0.01%$0.02319486.5307$2.01
ETH<0.01%$0.003089648.7864$2
ETH<0.01%$0.04708542.4264$2
ETH<0.01%$0.5626273.5476$2
ETH<0.01%$0.2242478.8779$1.99
ETH<0.01%$0.003869508.177$1.97
ETH<0.01%$0.04286645.75$1.96
ETH<0.01%$0.001881,037.1468$1.95
ETH<0.01%$0.0015681,239.7682$1.94
ETH<0.01%$0.0252976.621$1.94
ETH<0.01%$0.017157111.2998$1.91
ETH<0.01%$28.220.0674$1.9
ETH<0.01%$0.002153861.0283$1.85
ETH<0.01%$0.006099302.5351$1.85
ETH<0.01%$0.014714125.0333$1.84
ETH<0.01%$0.000228,177.0134$1.8
ETH<0.01%$2.530.7095$1.8
ETH<0.01%$0.007002255.4389$1.79
ETH<0.01%$0.02479972.0792$1.79
ETH<0.01%$0.012758139.9702$1.79
ETH<0.01%$0.03281853.9569$1.77
ETH<0.01%$0.00010716,522.029$1.77
ETH<0.01%$0.008293212.5023$1.76
ETH<0.01%$0.3880394.5381$1.76
ETH<0.01%$0.0000012,596,780.467$1.75
ETH<0.01%$1.291.3549$1.75
ETH<0.01%$0.0014091,240.551$1.75
ETH<0.01%$0.03145355.4192$1.74
ETH<0.01%$0.00006825,505.3597$1.73
ETH<0.01%$0.1993398.6796$1.73
ETH<0.01%$0.0002058,442.684$1.73
ETH<0.01%<$0.0000013,773,899,543.488$1.72
ETH<0.01%$0.00121,429.2583$1.72
ETH<0.01%$0.0014271,195.728$1.71
ETH<0.01%$0.3631964.6675$1.7
ETH<0.01%$0.00003253,288.7112$1.68
ETH<0.01%$0.0003734,470.1553$1.67
ETH<0.01%$0.05902128.0191$1.65
ETH<0.01%$0.004985329.307$1.64
ETH<0.01%$0.13307911.9252$1.59
ETH<0.01%$0.0009781,618.2637$1.58
ETH<0.01%$0.006031261.8511$1.58
ETH<0.01%$0.009625161.5034$1.55
ETH<0.01%$1,855.670.00082935$1.54
ETH<0.01%$0.3126294.9012$1.53
ETH<0.01%$0.011156136.4815$1.52
ETH<0.01%$0.522.8999$1.51
ETH<0.01%$0.2832855.099$1.44
ETH<0.01%$0.0747819.0881$1.43
ETH<0.01%$0.0002325,938.7363$1.38
ETH<0.01%$0.0010271,337.7158$1.37
ETH<0.01%$0.010887125.3424$1.36
ETH<0.01%$0.02099663.7368$1.34
ETH<0.01%$0.0000012,252,368.3192$1.34
ETH<0.01%$0.7391741.8069$1.34
ETH<0.01%$0.009882135.1273$1.34
ETH<0.01%$0.0145791.2983$1.33
ETH<0.01%$0.09238614.3838$1.33
ETH<0.01%$0.1676487.8325$1.31
ETH<0.01%$0.2343945.5914$1.31
ETH<0.01%$4.620.2809$1.3
ETH<0.01%$2.140.6041$1.29
ETH<0.01%$0.0004842,651.5189$1.28
ETH<0.01%$0.01947265.7275$1.28
ETH<0.01%$0.00001130,547.2324$1.27
ETH<0.01%$8.770.1443$1.26
ETH<0.01%$0.0004392,879.4323$1.26
ETH<0.01%$0.3580333.5024$1.25
ETH<0.01%$0.001719728.8689$1.25
ETH<0.01%$0.000343,662.8665$1.25
ETH<0.01%$0.000891,385.5434$1.23
ETH<0.01%$0.4464112.7599$1.23
ETH<0.01%$0.004082298.2824$1.22
ETH<0.01%$0.2321545.2436$1.22
ETH<0.01%$0.000383,192.3867$1.21
ETH<0.01%$0.1312269.2459$1.21
ETH<0.01%$0.00722165.7669$1.2
ETH<0.01%$8.050.148$1.19
ETH<0.01%$0.06742717.4508$1.18
ETH<0.01%$0.001131,036.0202$1.17
ETH<0.01%$0.01702868.3441$1.16
ETH<0.01%$0.005701203.4559$1.16
ETH<0.01%$0.11222410.2453$1.15
ETH<0.01%$0.01510474.3157$1.12
ETH<0.01%$0.00334334.8835$1.12
ETH<0.01%$0.2344634.6729$1.1
ETH<0.01%$0.000005241,968.6745$1.09
ETH<0.01%$0.0001357,964.8048$1.08
ETH<0.01%$0.07977813.3732$1.07
ETH<0.01%$0.0001367,795.3416$1.06
ETH<0.01%$0.0005262,003.43$1.05
ETH<0.01%<$0.0000013,004,136.1399$1.05
ETH<0.01%$0.000003321,049.6847$1.05
ETH<0.01%$0.4806642.1536$1.04
ETH<0.01%$0.0003343,064.1652$1.02
ETH<0.01%$0.002726374.973$1.02
ETH<0.01%$0.009981102.3484$1.02
ETH<0.01%$0.000147,223.027$1.01
ETH<0.01%$0.02744936.5563$1
ETH<0.01%$0.0000011,566,743.1688$1
ETH<0.01%$0.8197341.22$1
ETH<0.01%$0.01233879.3529$0.979
ETH<0.01%$94,1520.00001002$0.9434
ETH<0.01%$0.05255717.7261$0.9316
ETH<0.01%$0.4195722.1918$0.9196
ETH<0.01%$0.7364121.2306$0.9062
ETH<0.01%$0.06556713.726$0.8999
ETH<0.01%$0.0004841,857.4382$0.8982
ETH<0.01%$5.970.1491$0.8902
ETH<0.01%$0.08626710.1388$0.8746
ETH<0.01%$0.002147403.9538$0.8673
ETH<0.01%$0.01214271.2298$0.8648
ETH<0.01%$0.03932321.96$0.8635
ETH<0.01%$0.0001167,435.1659$0.8604
ETH<0.01%$0.03147527.17$0.8551
ETH<0.01%$0.003404247.4098$0.842
ETH<0.01%$0.0002673,131.5381$0.8345
ETH<0.01%$0.0002044,067.1974$0.8289
ETH<0.01%$0.096438.5603$0.8254
ETH<0.01%$0.03291724.9721$0.822
ETH<0.01%<$0.00000170,462,814.996$0.8201
ETH<0.01%$0.001939409.9898$0.7947
ETH<0.01%$0.001135697.6591$0.792
ETH<0.01%$0.00007810,045.293$0.7853
ETH<0.01%$31.340.0251$0.785
ETH<0.01%$0.04165518.6625$0.7773
ETH<0.01%$0.006117126.108$0.7713
ETH<0.01%$1,481.310.00051767$0.7668
ETH<0.01%$0.01395254.7598$0.764
ETH<0.01%$0.01994838.2892$0.7637
ETH<0.01%$0.05956212.794$0.762
ETH<0.01%$0.000531,436.4884$0.7614
ETH<0.01%$0.2744632.7718$0.7607
ETH<0.01%$0.9999590.7506$0.7505
ETH<0.01%$0.06320811.693$0.739
ETH<0.01%$1.160.636$0.7377
ETH<0.01%$0.8567430.8556$0.733
ETH<0.01%$0.00002331,318.9885$0.7328
ETH<0.01%$0.04811114.6731$0.7059
ETH<0.01%$0.003628192.6119$0.6987
ETH<0.01%$0.03485620.0323$0.6982
ETH<0.01%$0.01066565.3448$0.6969
ETH<0.01%$0.02365129.4$0.6953
ETH<0.01%$0.001477464.6383$0.6864
ETH<0.01%$0.001531446.6236$0.6837
ETH<0.01%$0.01607742.0478$0.676
ETH<0.01%$0.1411114.7357$0.6682
ETH<0.01%$0.0002422,716.815$0.657
ETH<0.01%$0.003403189.5613$0.645
ETH<0.01%$0.002134299.7483$0.6397
ETH<0.01%$0.00707189.6685$0.634
ETH<0.01%$0.00307205.6274$0.6311
ETH<0.01%$0.3940681.5982$0.6298
ETH<0.01%<$0.000001218,494,402.2159$0.6137
ETH<0.01%$0.002089293.4568$0.6129
ETH<0.01%$0.0002942,076.9234$0.6095
ETH<0.01%$0.002419249.4889$0.6035
ETH<0.01%<$0.000001327,291,333.2845$0.5969
ETH<0.01%$0.00949562.6637$0.5949
ETH<0.01%$0.0004881,216.3635$0.5938
ETH<0.01%$0.2191652.7082$0.5935
ETH<0.01%$0.0913056.3882$0.5832
ETH<0.01%$0.0003091,885.3692$0.5822
ETH<0.01%$0.001719338.165$0.5814
ETH<0.01%$52.430.011$0.578
ETH<0.01%$0.9996310.5481$0.5478
ETH<0.01%$17.030.0315$0.5358
ETH<0.01%$0.002543210.3059$0.5347
ETH<0.01%$0.0001593,302.1818$0.5234
ETH<0.01%$0.2716611.9148$0.5201
ETH<0.01%$19.270.027$0.5194
ETH<0.01%$0.004133125.5922$0.519
ETH<0.01%$0.002147241.0665$0.5176
ETH<0.01%$0.00001147,765.253$0.5039
ETH<0.01%$0.00676171.6744$0.4845
ETH<0.01%$0.00001630,618.1291$0.4761
ETH<0.01%$0.03969611.8492$0.4703
ETH<0.01%$0.0911285.1463$0.4689
ETH<0.01%$1,964.60.00023768$0.4669
ETH<0.01%$0.001028444.4753$0.4568
ETH<0.01%$1,788.060.00025535$0.4565
ETH<0.01%$0.02399918.8748$0.4529
ETH<0.01%$0.2464531.7959$0.4425
ETH<0.01%$0.0000469,586.704$0.4377
ETH<0.01%$1.320.3296$0.434
ETH<0.01%$0.015328.2455$0.4321
ETH<0.01%$2.430.1758$0.427
ETH<0.01%$0.02134419.8455$0.4235
ETH<0.01%$1.20.3502$0.4202
ETH<0.01%$0.00001823,745.7217$0.4188
ETH<0.01%$0.01944421.3472$0.415
ETH<0.01%$15,144.860.00002642$0.4001
ETH<0.01%$9.060.0438$0.3964
ETH<0.01%$0.000404978.8493$0.3955
ETH<0.01%$0.000002237,452.4279$0.3909
ETH<0.01%$0.01246431.2651$0.3896
ETH<0.01%$0.3418631.1353$0.3881
ETH<0.01%$0.000001327,713.1347$0.3867
ETH<0.01%$0.1831132.0945$0.3835
ETH<0.01%$0.00424690$0.382
ETH<0.01%$0.0002531,485.0793$0.3763
ETH<0.01%$0.0000419,032.2103$0.373
ETH<0.01%$0.9990610.3699$0.3695
ETH<0.01%$0.2858551.2225$0.3494
ETH<0.01%$0.000385868.3866$0.3344
ETH<0.01%$0.0841893.8835$0.3269
ETH<0.01%$0.000931350.6511$0.3265
ETH<0.01%$0.00168193.9708$0.3258
ETH<0.01%$0.00339995.4915$0.3245
ETH<0.01%$94,2660.00000335$0.3157
ETH<0.01%$0.000731429.2628$0.3137
ETH<0.01%$0.4600470.6769$0.3114
ETH<0.01%$0.001105281.094$0.3107
ETH<0.01%$0.0001532,026.8591$0.3106
ETH<0.01%$0.000328943.4723$0.3097
ETH<0.01%$0.00234129.8033$0.3036
ETH<0.01%$0.0915463.2707$0.2994
ETH<0.01%$0.002682111.6446$0.2994
ETH<0.01%$0.000499580.2264$0.2896
ETH<0.01%$0.0001322,192.0432$0.2891
ETH<0.01%$0.200281.4281$0.286
ETH<0.01%$2.290.1228$0.2811
ETH<0.01%$0.9975720.2775$0.2768
ETH<0.01%$0.0742653.6192$0.2687
ETH<0.01%$0.001753152.2352$0.2669
ETH<0.01%$0.00000466,132$0.2565
ETH<0.01%$0.9993820.2553$0.2551
ETH<0.01%$0.002125.1558$0.2503
ETH<0.01%<$0.000001335,574,268.7172$0.245
ETH<0.01%$0.0000872,780.9024$0.2407
ETH<0.01%$0.01584215.0407$0.2382
ETH<0.01%$0.4729810.5009$0.2369
ETH<0.01%$615.070.00036746$0.226
ETH<0.01%$8,150.650.00002714$0.2211
ETH<0.01%$0.00730330.0587$0.2195
ETH<0.01%$0.044474.8598$0.2161
ETH<0.01%$0.01274916.8537$0.2148
ETH<0.01%$0.000354599.517$0.2123
ETH<0.01%$0.00001414,425.9823$0.2071
ETH<0.01%$0.00405949.9692$0.2028
ETH<0.01%$3.510.0572$0.2009
ETH<0.01%$0.0197510.1512$0.2004
ETH<0.01%$0.0148413.4987$0.2003
ETH<0.01%$0.000884221.4451$0.1958
ETH<0.01%$0.0471844.1022$0.1935
ETH<0.01%$0.0211678.8181$0.1866
ETH<0.01%$0.000881202.6034$0.1784
ETH<0.01%$0.00466438.2122$0.1782
ETH<0.01%$0.0340475.2313$0.1781
ETH<0.01%$0.0363054.9$0.1778
ETH<0.01%$0.0345754.9682$0.1717
ETH<0.01%$0.000111,524.6155$0.1672
ETH<0.01%$0.001171142.7827$0.1672
ETH<0.01%<$0.0000013,127,543,957.446$0.1644
ETH<0.01%$0.143831.1412$0.1641
ETH<0.01%$1.010.1625$0.1639
ETH<0.01%$0.000587270.9257$0.159
ETH<0.01%$0.00392440.4316$0.1586
ETH<0.01%<$0.0000013,558,115.116$0.1533
ETH<0.01%$0.000212721.8721$0.153
ETH<0.01%$0.00916916.5794$0.152
ETH<0.01%$0.00000818,967.2434$0.143
ETH<0.01%$0.1169271.2083$0.1412
ETH<0.01%$0.7005360.2015$0.1411
ETH<0.01%$0.3218540.4349$0.1399
ETH<0.01%$0.00223359.3164$0.1324
ETH<0.01%$0.000133988.7193$0.1312
ETH<0.01%$1,953.930.00006625$0.1294
ETH<0.01%$0.0186716.8966$0.1287
ETH<0.01%$9.40.0136$0.1279
ETH<0.01%$0.00153679.1901$0.1216
ETH<0.01%$0.00914113.2427$0.121
ETH<0.01%$576.020.00020918$0.1204
ETH<0.01%$0.000454260.5356$0.1183
ETH<0.01%$0.0383923.0607$0.1175
ETH<0.01%$20.053$0.106
ETH<0.01%$0.0205095.126$0.1051
ETH<0.01%$0.00260139.0406$0.1015
ARB9.40%$0.9999388,255.2249$8,254.71
ARB4.12%$1,791.422.0197$3,618.15
ARB2.02%$94,2990.0188$1,775.12
ARB0.62%$1,797.460.3009$540.9
ARB0.30%$163.741.6337$267.5
ARB0.26%$1,792.230.1297$232.39
ARB0.26%$1229.2428$229.24
ARB0.15%$0.999938132.7657$132.76
ARB0.11%$14.926.2763$93.64
ARB0.08%$2,152.240.0312$67.26
ARB0.05%$0.0304991,304.5172$39.79
ARB0.03%$0.33017288.5276$29.23
ARB0.03%$122.8182$22.82
ARB0.02%$0.99999920.9621$20.96
ARB0.02%$15.211.3591$20.67
ARB0.02%$21.860.9175$20.06
ARB0.02%$2.725.8542$15.92
ARB0.02%$0.99993715.8292$15.83
ARB0.01%$0.000016647,959.6806$10.08
ARB<0.01%$43.380.1881$8.16
ARB<0.01%$0.0070871,142.9247$8.1
ARB<0.01%$0.00058811,781.8595$6.93
ARB<0.01%$0.000024280,669.7608$6.61
ARB<0.01%$0.21328629.5481$6.3
ARB<0.01%$0.00055910,916.9386$6.11
ARB<0.01%$3.511.5086$5.3
ARB<0.01%<$0.00000113,263,509,025.7531$3.98
ARB<0.01%$0.6785165.8052$3.94
ARB<0.01%$0.029583111.4082$3.3
ARB<0.01%$0.898983.6169$3.25
ARB<0.01%$0.9988153.0331$3.03
ARB<0.01%$1.112.5899$2.87
ARB<0.01%$0.9996812.6711$2.67
ARB<0.01%$383.040.00634329$2.43
ARB<0.01%$12.3953$2.4
ARB<0.01%$5.980.3622$2.17
ARB<0.01%$94,1350.00001823$1.72
ARB<0.01%$94,1960.00001531$1.44
ARB<0.01%$2.030.6935$1.41
ARB<0.01%$0.00010911,460.6857$1.25
ARB<0.01%$94,2810.00001251$1.18
ARB<0.01%$11.1568$1.16
ARB<0.01%$0.005058208.1864$1.05
ARB<0.01%$0.006436156.2754$1.01
ARB<0.01%$0.014668.6671$1
ARB<0.01%$0.8045381.2299$0.9894
ARB<0.01%$0.0002793,391.2508$0.9456
ARB<0.01%$0.01435254.6335$0.784
ARB<0.01%$0.2040853.8346$0.7825
ARB<0.01%$0.988490.7584$0.7497
ARB<0.01%$0.002944220.221$0.6482
ARB<0.01%$1,876.060.00024974$0.4685
ARB<0.01%$0.9962410.4644$0.4626
ARB<0.01%$0.9984240.3722$0.3716
ARB<0.01%$0.0614915.0818$0.3124
ARB<0.01%$0.0445886.9832$0.3113
ARB<0.01%$0.000002122,965.5823$0.2975
ARB<0.01%$0.01883514.1352$0.2662
ARB<0.01%$0.0328247.4531$0.2446
ARB<0.01%$0.5671060.4146$0.235
ARB<0.01%$0.9998090.1779$0.1778
ARB<0.01%$10.1747$0.175
ARB<0.01%$0.00575229.5442$0.1699
ARB<0.01%$0.00000917,748.5245$0.1627
ARB<0.01%$0.9990630.1564$0.1562
ARB<0.01%$1,790.810.00008627$0.1544
ARB<0.01%$0.0912151.6623$0.1516
ARB<0.01%$0.00362840.2264$0.1459
ARB<0.01%$0.106821.3656$0.1458
ARB<0.01%$94,3000.00000138$0.1301
POL13.11%$0.44561825,838.2316$11,513.98
POL0.90%$1792.5673$792.57
POL0.50%$94,2710.0046249$435.99
POL0.46%$1,791.530.2276$407.68
POL0.18%$1161.2928$161.29
POL0.13%$1109.9841$109.98
POL0.05%$0.274245169.7193$46.54
POL0.05%$0.068932624.7536$43.07
POL0.05%$0.218577187.3419$40.95
POL0.03%$0.0070563,973.3497$28.04
POL0.02%$0.29913863.6517$19.04
POL0.02%$12.751.1847$15.1
POL0.01%$0.23004746.1883$10.63
POL<0.01%$0.047351145.6339$6.9
POL<0.01%$3,342.190.00196736$6.58
POL<0.01%$1.145.7057$6.5
POL<0.01%$1.145.7057$6.5
POL<0.01%$0.024828242.6187$6.02
POL<0.01%$0.0007646,818.3732$5.21
POL<0.01%$0.34502914.8158$5.11
POL<0.01%$0.12439233.9141$4.22
POL<0.01%$0.9997433.4921$3.49
POL<0.01%$0.06092951.35$3.13
POL<0.01%$0.006173445.14$2.75
POL<0.01%$0.02808980.7212$2.27
POL<0.01%$0.4898114.293$2.1
POL<0.01%$0.3123876.0026$1.88
POL<0.01%$163.190.00942984$1.54
POL<0.01%$0.001817835.659$1.52
POL<0.01%$0.0001936,855.2296$1.32
POL<0.01%$0.003727351.7355$1.31
POL<0.01%$0.001325987.7914$1.31
POL<0.01%$0.5591732.1563$1.21
POL<0.01%$11.1898$1.19
POL<0.01%$0.05919919.6911$1.17
POL<0.01%$0.004236272.9097$1.16
POL<0.01%$5.960.1809$1.08
POL<0.01%$0.05084321.015$1.07
POL<0.01%$0.01221487.4222$1.07
POL<0.01%$0.003616281.5452$1.02
POL<0.01%$14.870.0658$0.9778
POL<0.01%<$0.0000019,810,976.2252$0.878
POL<0.01%$0.00828399.7466$0.8261
POL<0.01%$0.004382182.3338$0.7989
POL<0.01%$2,151.680.00033952$0.7305
POL<0.01%$10.6101$0.61
POL<0.01%$0.00992357$0.5655
POL<0.01%$0.0638658.164$0.5213
POL<0.01%$0.0001164,302.1588$0.5002
POL<0.01%$0.2545011.887$0.4802
POL<0.01%$0.2202152.1716$0.478221
POL<0.01%$0.2041372.2533$0.4599
POL<0.01%$0.8110930.5291$0.4291
POL<0.01%$10.4003$0.4006
POL<0.01%$0.1964751.7915$0.3519
POL<0.01%$0.3143541.116$0.3508
POL<0.01%$0.121832.6806$0.3265
POL<0.01%$0.6768060.4518$0.3057
POL<0.01%$0.000865335.1815$0.2899
POL<0.01%$0.00104268.4248$0.2792
POL<0.01%$0.001888146.3589$0.2762
POL<0.01%$0.00285289.5683$0.2554
POL<0.01%$0.001943106.5258$0.207
POL<0.01%$0.2764490.6214$0.1717
POL<0.01%$1,783.990.00009608$0.1714
POL<0.01%$0.0725172.0209$0.1465
POL<0.01%$0.000325416.1988$0.1353
POL<0.01%$0.7591340.1737$0.1318
POL<0.01%$0.000293447.4083$0.1311
POL<0.01%$0.0282354.62$0.1304
POL<0.01%$0.00253546.1363$0.1169
POL<0.01%$0.00012969.3328$0.1166
POL<0.01%$0.0000166,792.8902$0.108
POL<0.01%$0.091121.1633$0.1059
POL<0.01%$0.006516.12$0.1047
BASE3.40%$1,785.431.675$2,990.68
BASE3.06%$93,6180.0287$2,685.44
BASE2.82%$0.0003866,407,595.7102$2,475.64
BASE1.41%$0.06271919,690.2413$1,234.94
BASE1.11%$1978.2833$978.28
BASE0.68%$0.881788673.5952$593.97
BASE0.34%$1,796.610.1684$302.49
BASE0.14%$1.04116.776$121.68
BASE0.11%$0.48267203.9419$98.44
BASE0.11%$0.76597126.7376$97.08
BASE0.10%$94,0480.00097305$91.51
BASE0.10%$0.99989689.8056$89.8
BASE0.10%$1.1477.9387$88.85
BASE0.10%$0.110521767.2319$84.8
BASE0.08%$0.99982472.8151$72.8
BASE0.07%$0.554199116.5445$64.59
BASE0.07%$0.000001109,445,679.492$63.16
BASE0.07%$0.00392214,797.2362$58.04
BASE0.06%$0.0299041,703.1798$50.93
BASE0.06%$0.0157953,220.4532$50.87
BASE0.06%$0.0214632,256.5397$48.43
BASE0.05%$0.0227371,957.3725$44.5
BASE0.04%$1,963.030.0189$37.01
BASE0.04%$0.00326210,949.093$35.71
BASE0.04%$0.00310711,216.5041$34.85
BASE0.04%$0.00219414,941.3642$32.78
BASE0.04%$0.127677246.8534$31.52
BASE0.04%$2.9210.6616$31.13
BASE0.03%$2,144.410.0132$28.32
BASE0.03%$162.970.158$25.75
BASE0.03%$2.829.0673$25.57
BASE0.03%$0.000081282,671.5339$22.89
BASE0.02%$0.00056334,099.2639$19.19
BASE0.02%$93,9400.00019588$18.4
BASE0.02%$0.00100615,852.3814$15.94
BASE0.02%$0.0088281,736.9103$15.33
BASE0.02%$0.55832126.1006$14.57
BASE0.02%$53.480.2622$14.02
BASE0.01%$0.40114632.735$13.13
BASE0.01%$0.00051722,835.5108$11.81
BASE0.01%$0.044735251.1594$11.24
BASE0.01%$0.00009115,692.0711$10.43
BASE0.01%$0.00009115,692.0711$10.43
BASE<0.01%$0.2107338.493$8.11
BASE<0.01%$0.002153,760.4946$8.09
BASE<0.01%$0.0035282,223.3365$7.84
BASE<0.01%$0.018359416.1392$7.64
BASE<0.01%$0.0000061,310,951.7997$7.47
BASE<0.01%$0.009561771.0449$7.37
BASE<0.01%$0.017396408.5113$7.11
BASE<0.01%$0.032462210.249$6.83
BASE<0.01%$0.027061250.9394$6.79
BASE<0.01%$0.018697355.4702$6.65
BASE<0.01%$0.006559956.7573$6.27
BASE<0.01%$0.0010945,491.1213$6.01
BASE<0.01%$0.2433723.9393$5.83
BASE<0.01%$0.057008100.3125$5.72
BASE<0.01%$0.17956430.6361$5.5
BASE<0.01%$0.006781792.2942$5.37
BASE<0.01%$0.0043691,177.4705$5.14
BASE<0.01%$0.007749646.7284$5.01
BASE<0.01%<$0.000001220,697,009.9781$4.94
BASE<0.01%$0.06097280.819$4.93
BASE<0.01%$1,903.010.00250049$4.76
BASE<0.01%$0.00034513,627.1972$4.7
BASE<0.01%$0.000529,030.3216$4.7
BASE<0.01%$0.03754124.8606$4.69
BASE<0.01%$0.003971,129.6754$4.48
BASE<0.01%$0.000016268,438.6274$4.17
BASE<0.01%$0.04910684.613$4.15
BASE<0.01%$0.9991193.9816$3.98
BASE<0.01%$0.0005766,868.7355$3.96
BASE<0.01%$0.9999053.9438$3.94
BASE<0.01%$0.01636235.8745$3.86
BASE<0.01%$0.0014652,606.0313$3.82
BASE<0.01%$2.71.4084$3.8
BASE<0.01%$0.00006160,869.3497$3.68
BASE<0.01%$0.0003999,089.5793$3.63
BASE<0.01%$0.7103124.8171$3.42
BASE<0.01%$0.0004936,318.581$3.12
BASE<0.01%$0.473916.4156$3.04
BASE<0.01%$0.03885275.2196$2.92
BASE<0.01%$0.0012,895.075$2.9
BASE<0.01%$0.5397965.1814$2.8
BASE<0.01%$0.0007683,632.243$2.79
BASE<0.01%$0.003939702.3929$2.77
BASE<0.01%$0.00017315,564.1706$2.7
BASE<0.01%$0.03755768.6473$2.58
BASE<0.01%$0.003256775.1583$2.52
BASE<0.01%$0.22639911.0937$2.51
BASE<0.01%$0.010957223.392$2.45
BASE<0.01%$0.007115316.1438$2.25
BASE<0.01%$0.006035367.2576$2.22
BASE<0.01%$0.000013168,677.0861$2.2
BASE<0.01%$0.0002458,887.3527$2.18
BASE<0.01%$1.571.2489$1.96
BASE<0.01%$0.2563757.371$1.89
BASE<0.01%$0.0018721,007.7051$1.89
BASE<0.01%$0.016682103.5181$1.73
BASE<0.01%$0.0015421,095.3394$1.69
BASE<0.01%$0.002535666.3458$1.69
BASE<0.01%$0.01652197.6533$1.61
BASE<0.01%$0.006199259.7105$1.61
BASE<0.01%$1.551.0312$1.6
BASE<0.01%$0.0005592,726.5213$1.52
BASE<0.01%$0.000012121,446.5446$1.52
BASE<0.01%$0.0002336,128.4817$1.43
BASE<0.01%$0.10313212.7597$1.32
BASE<0.01%$0.01898568.2493$1.3
BASE<0.01%$0.004315300.0104$1.29
BASE<0.01%$0.011306108.974$1.23
BASE<0.01%$0.9995461.2326$1.23
BASE<0.01%$0.7328811.6793$1.23
BASE<0.01%$0.000004324,405.3477$1.18
BASE<0.01%$0.0005522,016.6229$1.11
BASE<0.01%$0.9995081.0699$1.07
BASE<0.01%$0.0044233.1437$1.03
BASE<0.01%$0.000002627,499.4708$1.02
BASE<0.01%$0.00004322,346.4603$0.9617
BASE<0.01%$0.01079387.1164$0.9402
BASE<0.01%$0.003896223.257$0.8697
BASE<0.01%$2.750.3126$0.8597
BASE<0.01%$0.006829111.3834$0.7606
BASE<0.01%<$0.0000011,232,468,578.9682$0.7394
BASE<0.01%$0.000006117,721.831$0.7369
BASE<0.01%$0.000881756.4326$0.6667
BASE<0.01%$0.000785838.0553$0.6577
BASE<0.01%$0.000006117,788.3101$0.6537
BASE<0.01%$0.00002328,000.816$0.6526
BASE<0.01%$0.03053820.6092$0.6293
BASE<0.01%$0.9579960.6559$0.6283
BASE<0.01%$0.01032757.5835$0.5946
BASE<0.01%$0.065098.3165$0.5413
BASE<0.01%$0.063978.4502$0.5405
BASE<0.01%$0.001282412.2009$0.5284
BASE<0.01%<$0.0000011,041,701,264.8364$0.5208
BASE<0.01%$0.3966821.2451$0.4939
BASE<0.01%$0.000732665.067$0.4867
BASE<0.01%$0.0003641,325.7756$0.4829
BASE<0.01%$0.00001237,174.677$0.4643
BASE<0.01%$1,867.580.00019214$0.3588
BASE<0.01%$0.00608358.4126$0.3553
BASE<0.01%$0.2492581.3772$0.3432
BASE<0.01%<$0.00000117,739,573.1625$0.3335
BASE<0.01%$0.1715841.8957$0.3252
BASE<0.01%$0.0001172,587.4376$0.3026
BASE<0.01%$0.0314519.5681$0.3009
BASE<0.01%$0.0000214,596.3911$0.2961
BASE<0.01%$0.3140660.936$0.2939
BASE<0.01%$5.610.0505$0.2835
BASE<0.01%$0.00358770.75$0.2537
BASE<0.01%$10.2396$0.2395
BASE<0.01%$0.01878612.6488$0.2376
BASE<0.01%$0.00000830,575.3021$0.2357
BASE<0.01%$1.090.198$0.2166
BASE<0.01%$0.001284164.9853$0.2117
BASE<0.01%$0.000879219.5252$0.1928
BASE<0.01%$0.000253740.004$0.1871
BASE<0.01%$0.00000271,051.0938$0.1676
BASE<0.01%$0.00231472.429$0.1676
BASE<0.01%$0.3002250.5579$0.1674
BASE<0.01%$0.0978051.6338$0.1597
BASE<0.01%$1,926.730.00007775$0.1498
BASE<0.01%$0.0000423,326.7869$0.1389
BASE<0.01%$0.0251485.2537$0.1321
BASE<0.01%$0.5586080.2341$0.1307
BASE<0.01%$0.00327235.5081$0.1161
BASE<0.01%$0.4916650.228$0.1121
BASE<0.01%$1.010.1104$0.1116
GNO6.74%$1,794.413.3$5,921.62
GNO0.04%$114.170.3294$37.6
GNO<0.01%$1.121.4267$1.6
GNO<0.01%$1.121.4267$1.6
GNO<0.01%$0.03965234.6203$1.37
GNO<0.01%$11.1862$1.19
GNO
xDai (XDAI)
<0.01%$10.6863$0.686321
GNO<0.01%$0.9999330.6716$0.6715
GNO<0.01%$0.9999330.4554$0.4554
GNO<0.01%$0.9782040.1648$0.1611
BSC1.55%$0.08434616,103.375$1,358.26
BSC0.62%$615.070.8916$548.41
BSC0.56%$2.29216.6304$495.63
BSC0.56%$1,791.450.2742$491.28
BSC0.29%$94,257.370.00272293$256.66
BSC0.20%<$0.0000012,631,236,466.7135$179.36
BSC0.18%$1161.1029$161.1
BSC0.17%$0.01391311,043.0888$153.64
BSC0.14%$616.170.2001$123.29
BSC0.12%$0.999928109.0738$109.07
BSC0.08%$6.7410.2393$69.01
BSC0.05%$0.339636125.5302$42.63
BSC0.04%$0.99924339.2698$39.24
BSC0.04%$43.350.8043$34.87
BSC0.04%$0.0106743,215.0765$34.32
BSC0.04%$94,2780.00035628$33.59
BSC0.03%$2.0214.9897$30.28
BSC0.02%$0.070953308.0271$21.86
BSC0.02%$0.091305239.0546$21.83
BSC0.02%$0.0133621,511.3389$20.19
BSC0.02%$0.133644145.8641$19.49
BSC0.02%$119.0407$19.05
BSC0.02%$0.000061301,346.2604$18.45
BSC0.02%$0.018508900.1388$16.66
BSC0.02%$0.030802528.0811$16.27
BSC0.02%$0.026292588.9555$15.48
BSC0.02%$0.000109130,081.1789$14.14
BSC0.01%$0.020612614.0624$12.66
BSC0.01%$1.39.6229$12.54
BSC0.01%$0.000016789,706.2544$12.28
BSC0.01%$0.013722859.8183$11.8
BSC0.01%<$0.0000018,108,807,328.0775$11.76
BSC0.01%$0.00016968,111.4536$11.54
BSC0.01%$0.99997211.4649$11.46
BSC0.01%$152.210.0728$11.07
BSC0.01%$0.00014772,852.2054$10.74
BSC0.01%$0.24659542.7108$10.53
BSC0.01%$0.9989610.449$10.44
BSC0.01%$0.041669241.6952$10.07
BSC0.01%$0.0000091,086,148.9056$9.95
BSC0.01%<$0.000001771,430,606.3369$9.73
BSC0.01%$0.0024213,782.2884$9.16
BSC0.01%$0.12800270.8047$9.06
BSC0.01%$0.0043832,005.7867$8.79
BSC<0.01%$94,2930.00009246$8.72
BSC<0.01%$0.0048171,693.5479$8.16
BSC<0.01%$0.0000015,155,398.1734$7.68
BSC<0.01%<$0.0000013,065,236,324,868.9526$7.51
BSC<0.01%$2.742.7004$7.39
BSC<0.01%<$0.0000011,421,299,520.0492$7.3
BSC<0.01%$0.011827593.3641$7.02
BSC<0.01%$5.961.1743$7
BSC<0.01%$4.161.6733$6.96
BSC<0.01%$2.712.515$6.82
BSC<0.01%$0.000007959,077.8614$6.6
BSC<0.01%$5.581.1783$6.57
BSC<0.01%$0.8313587.5319$6.26
BSC<0.01%$0.20901529.4899$6.16
BSC<0.01%$0.07206384.2297$6.07
BSC<0.01%$3.121.9298$6.02
BSC<0.01%$0.06215696.2058$5.98
BSC<0.01%<$0.00000142,524,670.3113$5.97
BSC<0.01%$0.025675228.4561$5.87
BSC<0.01%$0.41881813.7788$5.77
BSC<0.01%$0.9981285.686$5.68
BSC<0.01%$0.20406827.6934$5.65
BSC<0.01%$2.072.7241$5.64
BSC<0.01%$0.0029141,859.3139$5.42
BSC<0.01%$0.10534550.6588$5.34
BSC<0.01%$0.005423967.1948$5.25
BSC<0.01%<$0.000001487,871,614.9104$5.18
BSC<0.01%$0.00032415,650.0852$5.08
BSC<0.01%$0.00009254,723.4487$5.03
BSC<0.01%$0.020137237.0817$4.77
BSC<0.01%$0.5000429.4205$4.71
BSC<0.01%$0.0008335,600.006$4.67
BSC<0.01%$15.890.2932$4.66
BSC<0.01%$0.05580382.9886$4.63
BSC<0.01%$0.000014325,299.6081$4.47
BSC<0.01%$0.0019312,179.7536$4.21
BSC<0.01%$0.029289143.395$4.2
BSC<0.01%$0.0005018,089.647$4.05
BSC<0.01%$0.06479562.3111$4.04
BSC<0.01%$0.5118277.8803$4.03
BSC<0.01%$163.240.0244$3.98
BSC<0.01%$0.0014872,640.8726$3.93
BSC<0.01%$4.360.9001$3.92
BSC<0.01%$0.020193193.4793$3.91
BSC<0.01%$5.350.7252$3.88
BSC<0.01%$0.020201190.279$3.84
BSC<0.01%$0.18254820.5065$3.74
BSC<0.01%$0.030266122.9794$3.72
BSC<0.01%$0.00013627,024.1134$3.68
BSC<0.01%$0.008926392.0843$3.5
BSC<0.01%$2.141.6336$3.5
BSC<0.01%$9.440.3645$3.44
BSC<0.01%$0.12231527.77$3.4
BSC<0.01%$0.07789542.0187$3.27
BSC<0.01%$22.930.1413$3.24
BSC<0.01%$0.030499105.0387$3.2
BSC<0.01%$0.05802255.0925$3.2
BSC<0.01%$0.5662315.5729$3.16
BSC<0.01%$0.005817517.6437$3.01
BSC<0.01%$0.00009531,467.8581$3
BSC<0.01%$0.07860938.0845$2.99
BSC<0.01%$0.08370835.0703$2.94
BSC<0.01%$0.004498601.3618$2.7
BSC<0.01%$0.0004565,903.226$2.69
BSC<0.01%$0.0003218,156.2513$2.62
BSC<0.01%<$0.00000161,569,609.966$2.57
BSC<0.01%$0.02635195.0777$2.51
BSC<0.01%$0.000007345,672.2415$2.47
BSC<0.01%$2.490.9896$2.46
BSC<0.01%$0.07157434.3649$2.46
BSC<0.01%$0.21950710.8763$2.39
BSC<0.01%$0.00019412,293.1272$2.38
BSC<0.01%$0.023415100.8823$2.36
BSC<0.01%$360.580.00645393$2.33
BSC<0.01%$0.0015061,529.1866$2.3
BSC<0.01%$0.2965197.7113$2.29
BSC<0.01%$0.1081821.0452$2.28
BSC<0.01%$0.0005743,925.6044$2.25
BSC<0.01%$2.161.0409$2.25
BSC<0.01%$0.007002318.7109$2.23
BSC<0.01%$0.002473894.5655$2.21
BSC<0.01%$0.20964710.4674$2.19
BSC<0.01%$0.000007310,873.7968$2.12
BSC<0.01%$0.3470566.0602$2.1
BSC<0.01%$0.6723223.108$2.09
BSC<0.01%$0.9242172.2306$2.06
BSC<0.01%$0.007743261.0458$2.02
BSC<0.01%$0.002129948.2137$2.02
BSC<0.01%$0.000004498,939.1251$1.96
BSC<0.01%$177.990.011$1.95
BSC<0.01%$0.6075933.1685$1.93
BSC<0.01%$0.09024721.2367$1.92
BSC<0.01%$0.0009581,981.791$1.9
BSC<0.01%$0.007888240.4605$1.9
BSC<0.01%$0.0262270.9101$1.86
BSC<0.01%$0.03045460.4446$1.84
BSC<0.01%$0.02157785.0802$1.84
BSC<0.01%$0.000003543,855.2572$1.83
BSC<0.01%$0.01927393.102$1.79
BSC<0.01%$0.000563,197.9817$1.79
BSC<0.01%$0.2726246.5071$1.77
BSC<0.01%$16.960.1026$1.74
BSC<0.01%$0.009682175.4878$1.7
BSC<0.01%$0.01723298.2185$1.69
BSC<0.01%$0.02479967.5003$1.67
BSC<0.01%$0.670962.4137$1.62
BSC<0.01%$0.000002662,546.6992$1.6
BSC<0.01%$1.461.0807$1.58
BSC<0.01%<$0.0000013,551,197.1764$1.56
BSC<0.01%$0.04210937.0429$1.56
BSC<0.01%$0.01647393.7478$1.54
BSC<0.01%$0.685742.2468$1.54
BSC<0.01%$2.90.5211$1.51
BSC<0.01%$0.02304964.4789$1.49
BSC<0.01%$0.008648166.1626$1.44
BSC<0.01%$0.000014103,742.2749$1.42
BSC<0.01%$0.1792267.7977$1.4
BSC<0.01%$0.1810517.636$1.38
BSC<0.01%$0.02602650.6314$1.32
BSC<0.01%$0.3308753.9311$1.3
BSC<0.01%$0.05802322.18$1.29
BSC<0.01%$0.004404288.8578$1.27
BSC<0.01%$0.3335983.8106$1.27
BSC<0.01%$0.0002315,343.7387$1.24
BSC<0.01%$0.010849113.1395$1.23
BSC<0.01%<$0.00000118,528,871.1116$1.21
BSC<0.01%$0.01593874.7406$1.19
BSC<0.01%$0.01360987.2842$1.19
BSC<0.01%$94,1520.00001245$1.17
BSC<0.01%$0.00006817,031.9558$1.16
BSC<0.01%$0.0000011,945,161.989$1.16
BSC<0.01%$0.0005562,066.828$1.15
BSC<0.01%$0.0003293,448.7063$1.14
BSC<0.01%$0.04391325.7804$1.13
BSC<0.01%$0.004587245.3291$1.13
BSC<0.01%<$0.000001239,891,756.2121$1.11
BSC<0.01%$0.08418913.0575$1.1
BSC<0.01%$0.270893.8761$1.05
BSC<0.01%$0.009635108.6674$1.05
BSC<0.01%$0.01987351.6951$1.03
BSC<0.01%$0.02425142.0194$1.02
BSC<0.01%<$0.0000019,855,764.0207$0.9653
BSC<0.01%$0.0001019,469.292$0.96
BSC<0.01%$0.00019,455.0365$0.9489
BSC<0.01%<$0.0000017,319,737.5529$0.9375
BSC<0.01%<$0.00000183,057,882,794.6911$0.9364
BSC<0.01%$0.1476576.3105$0.9317
BSC<0.01%$14.870.0623$0.9261
BSC<0.01%$0.004038229.2854$0.9259
BSC<0.01%$0.1826415.034$0.9194
BSC<0.01%$33.330.0274$0.9134
BSC<0.01%$0.1359976.5943$0.8968
BSC<0.01%$0.0000011,398,201.2545$0.8943
BSC<0.01%<$0.0000016,165,031,956.8236$0.8856
BSC<0.01%$0.003334262.5633$0.8752
BSC<0.01%$0.004936174.4187$0.8609
BSC<0.01%$0.01820846.0056$0.8376
BSC<0.01%$0.0753910.9315$0.8241
BSC<0.01%$672.730.00119399$0.8032
BSC<0.01%<$0.000001194,667,890,498.3453$0.7897
BSC<0.01%$0.05924913.2946$0.7876
BSC<0.01%$0.6473241.1989$0.776
BSC<0.01%$0.001371559.2925$0.7667
BSC<0.01%$5.680.1335$0.758
BSC<0.01%$0.01598747.1128$0.7532
BSC<0.01%$0.003529209.6768$0.74
BSC<0.01%$0.0291124.8934$0.7246
BSC<0.01%<$0.000001710,081,679.8005$0.71
BSC<0.01%<$0.0000013,819,904.8583$0.7051
BSC<0.01%$0.0004841,393.923$0.6741
BSC<0.01%<$0.0000017,835,672.7068$0.6711
BSC<0.01%$0.5438831.2303$0.6691
BSC<0.01%$0.704180.9488$0.6681
BSC<0.01%$0.01901434.9979$0.6654
BSC<0.01%$0.0001354,911.8636$0.6617
BSC<0.01%$0.01134857.2071$0.6491
BSC<0.01%<$0.000001588,563,638.1595$0.6421
BSC<0.01%$0.01038258.7939$0.6103
BSC<0.01%$0.0750228.038$0.603
BSC<0.01%$0.0197330.0755$0.5933
BSC<0.01%$0.00003715,763.987$0.5864
BSC<0.01%$92,6610.00000602$0.5578
BSC<0.01%$0.2509032.1926$0.5501
BSC<0.01%$0.000737729.0451$0.537
BSC<0.01%$0.0001483,564.0747$0.5285
BSC<0.01%$0.002755185.4444$0.5108
BSC<0.01%$0.0802656.3168$0.507
BSC<0.01%$0.002608193.6684$0.505
BSC<0.01%<$0.0000012,496,901.9508$0.4923
BSC<0.01%$0.00003713,223.5431$0.4865
BSC<0.01%$0.1137464.208$0.4786
BSC<0.01%$0.001702272.9129$0.4645
BSC<0.01%$0.000987458.418$0.4522
BSC<0.01%$0.0000746,082.762$0.4481
BSC<0.01%$0.1230773.607$0.4439
BSC<0.01%$0.00869650.7493$0.4413
BSC<0.01%$0.197232.2175$0.4373
BSC<0.01%$0.001034421.944$0.436
BSC<0.01%$0.2839861.5278$0.4338
BSC<0.01%$0.01920922.5422$0.433
BSC<0.01%$0.00790654.449$0.4304
BSC<0.01%$0.00486287.8984$0.4273
BSC<0.01%$0.02539816.7643$0.4257
BSC<0.01%$0.168342.5073$0.422
BSC<0.01%$0.3126291.3469$0.421
BSC<0.01%$0.0465938.9138$0.4153
BSC<0.01%$1.880.2164$0.4068
BSC<0.01%<$0.0000013,573,455,187,837.415$0.3981
BSC<0.01%$0.001543256.1898$0.3951
BSC<0.01%$0.001693232.731$0.394
BSC<0.01%$0.01570125.028$0.3929
BSC<0.01%$0.01771921.5198$0.3812
BSC<0.01%$0.0000218,638.3325$0.3751
BSC<0.01%$0.002843130.9849$0.3724
BSC<0.01%$0.0000137,995.2318$0.3712
BSC<0.01%$0.000003133,953.6713$0.3697
BSC<0.01%$0.02194616.5116$0.3623
BSC<0.01%$1,791.510.00019686$0.3526
BSC<0.01%$0.1150983.0494$0.3509
BSC<0.01%$0.189141.8035$0.3411
BSC<0.01%$0.000409821.9505$0.3363
BSC<0.01%$0.5603080.5968$0.3344
BSC<0.01%$0.2603661.2672$0.3299
BSC<0.01%$0.9996960.3262$0.3261
BSC<0.01%$0.000969326.3666$0.3162
BSC<0.01%$0.00002512,524.7802$0.3157
BSC<0.01%$0.01274224.4503$0.3115
BSC<0.01%$0.0909183.4174$0.3107
BSC<0.01%$0.01021128.804$0.2941
BSC<0.01%$0.000361781.8536$0.282
BSC<0.01%$0.5997880.4686$0.281
BSC<0.01%$0.2132811.281$0.2732
BSC<0.01%$1,481.010.00018001$0.2665
BSC<0.01%$0.001105240.4827$0.2658
BSC<0.01%$0.0322688.0881$0.2609
BSC<0.01%$1.040.2496$0.2596
BSC<0.01%$0.200281.2853$0.2574
BSC<0.01%$0.01603315.9021$0.2549
BSC<0.01%$0.9839880.2541$0.25
BSC<0.01%<$0.0000011,216,162.4371$0.2494
BSC<0.01%$0.0000524,815.7212$0.2485
BSC<0.01%$0.029678.3737$0.2484
BSC<0.01%$0.00204120.7831$0.2463
BSC<0.01%$0.00316176.9492$0.2432
BSC<0.01%$0.01563415.5366$0.2429
BSC<0.01%$0.002082116.6433$0.2428
BSC<0.01%<$0.000001239,374,026.7776$0.2385
BSC<0.01%$40.880.00581775$0.2378
BSC<0.01%$0.01173520.053$0.2353
BSC<0.01%$0.01126220.7312$0.2334
BSC<0.01%$0.000471475.6592$0.2238
BSC<0.01%$0.0316397.0511$0.223
BSC<0.01%$5,099.980.00004354$0.222
BSC<0.01%$0.0012184.3751$0.2213
BSC<0.01%$0.001715128.7066$0.2207
BSC<0.01%$0.0221019.7219$0.2148
BSC<0.01%$0.00294472.3841$0.213
BSC<0.01%$0.0274497.3481$0.2016
BSC<0.01%$0.1438961.394$0.2005
BSC<0.01%$1,872.950.00010669$0.1998
BSC<0.01%$0.00747626.6691$0.1993
BSC<0.01%$0.00001216,112.2139$0.1978
BSC<0.01%<$0.0000012,399,646,590.5978$0.1963
BSC<0.01%$0.0245397.4922$0.1838
BSC<0.01%$0.00293861.894$0.1818
BSC<0.01%$2.930.0584$0.1711
BSC<0.01%$0.000001133,592.5784$0.1683
BSC<0.01%<$0.000001110,945,398.557$0.1657
BSC<0.01%$0.00580427.9883$0.1624
BSC<0.01%$0.00866718.687$0.1619
BSC<0.01%<$0.000001222,358,110,651.4647$0.1532
BSC<0.01%$0.00562727.0678$0.1523
BSC<0.01%$0.7172920.21$0.1506
BSC<0.01%<$0.000001615,901,569.853$0.147
BSC<0.01%$0.000244595.141$0.145
BSC<0.01%<$0.0000016,992,666,766.6272$0.1449
BSC<0.01%$0.0923861.5373$0.142
BSC<0.01%$0.0019672.1503$0.1414
BSC<0.01%$0.00787417.5821$0.1384
BSC<0.01%$2.520.0542$0.1365
BSC<0.01%$0.0230575.8511$0.1349
BSC<0.01%$0.00269649.257$0.1328
BSC<0.01%$0.0461132.8444$0.1311
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.00535322.3718$0.1197
BSC<0.01%$8.030.0149$0.1194
BSC<0.01%$0.00133789.2908$0.1193
BSC<0.01%$0.0898221.3189$0.1184
BSC<0.01%$0.9725210.1208$0.1175
BSC<0.01%$0.001119104.5115$0.1169
BSC<0.01%<$0.000001273,913.3635$0.1169
BSC<0.01%$0.00471624.4229$0.1151
BSC<0.01%<$0.00000167,400,523,939.0429$0.1144
BSC<0.01%$0.00965311.7449$0.1133
BSC<0.01%$0.6370850.1776$0.1131
BSC<0.01%$0.0775031.4394$0.1115
BSC<0.01%$0.001039106.9857$0.1111
BSC<0.01%$1.060.102$0.1083
BSC<0.01%$0.000109950.5503$0.1037
BSC<0.01%$0.3674060.2804$0.103
BSC<0.01%$0.2173890.461$0.1002
OP1.00%$1,795.620.4891$878.31
OP0.63%$1,794.780.3082$553.15
OP0.31%$0.999939272.6628$272.65
OP0.17%$0.756778199.019$150.61
OP0.10%$94,2660.00094424$89.01
OP0.07%$94,3490.00061962$58.46
OP0.05%$0.99993946.7035$46.7
OP0.04%$137.7347$37.73
OP0.02%$2,154.320.00874574$18.84
OP<0.01%$0.049898127.2791$6.35
OP<0.01%$0.10308742.7712$4.41
OP<0.01%$2.721.4973$4.07
OP<0.01%$10.950.3507$3.84
OP<0.01%$0.09516138.9633$3.71
OP<0.01%$13.4436$3.44
OP<0.01%$0.2243911.3852$2.55
OP<0.01%$11.9525$1.96
OP<0.01%$0.0007461,885.8125$1.41
OP<0.01%$0.9998591.2118$1.21
OP<0.01%$1,787.070.00044648$0.7978
OP<0.01%$0.714850.6903$0.4934
OP<0.01%$0.00722139.5529$0.2856
OP<0.01%$0.2440740.8162$0.1992
OP<0.01%$0.999930.1947$0.1947
OP<0.01%$0.0001141,602.345$0.1834
OP<0.01%$14.930.0096969$0.1447
OP<0.01%$0.00524125.086$0.1314
OP<0.01%$0.00278846.7662$0.1303
OP<0.01%$0.2043720.5952$0.1216
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.