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

Contract

0x90CbE4BDd538D6e9b379bFF5fE72c3d67A521De5
Age:180D
Amount:Between 1-10k
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.43%$1,799.085.1422$9,251.16
ETH7.63%$0.999996,763.7105$6,763.64
ETH2.90%$2.84904.0452$2,570.9
ETH1.58%$93,3740.015$1,404.71
ETH1.47%$11,299.7995$1,299.8
ETH0.49%$14.9928.7462$430.91
ETH0.45%$0.406238985.3003$400.27
ETH0.45%$8.7245.6914$398.51
ETH0.43%$0.2476591,525.0423$377.69
ETH0.31%$1,799.080.1546$278.13
ETH0.28%$0.026729,209.6214$246.08
ETH0.21%$1,797.670.1051$188.93
ETH0.21%$0.00830722,036.234$183.05
ETH0.20%<$0.0000013,372,487,768.905$173.84
ETH0.19%<$0.00000111,358,667,173.5534$169.69
ETH0.19%$0.0576882,901.3771$167.37
ETH0.18%$0.178446894.3919$159.6
ETH0.18%$1,799.10.0884$158.96
ETH0.17%<$0.00000124,003,496,136.6935$147.14
ETH0.16%$30.984.5394$140.63
ETH0.16%$0.1067591,309.4388$139.79
ETH0.16%$3,290.70.0425$139.79
ETH0.15%$0.564356228.1584$128.76
ETH0.13%$0.0418092,727.4752$114.03
ETH0.12%$4.425.0047$110.02
ETH0.12%$0.0232034,607.3937$106.91
ETH0.12%$21.734.7968$104.23
ETH0.11%$0.314207320.2314$100.62
ETH0.11%$0.0160826,114.1843$98.33
ETH0.10%$1.4364.14$91.72
ETH0.10%$186.3864$86.39
ETH0.10%$0.0279373,076.9888$85.96
ETH0.10%$0.000042,130,580.8711$84.41
ETH0.09%$0.172118481.4949$82.87
ETH0.09%$0.000323244,917.4772$79.17
ETH0.09%$2,015.090.0377$76
ETH0.08%$1.1761.2013$71.61
ETH0.08%$0.114139602.2738$68.74
ETH0.08%$0.0000451,491,370.927$66.95
ETH0.07%$161.920.4096$66.33
ETH0.07%$0.078469834.4139$65.48
ETH0.07%$106.420.6075$64.65
ETH0.07%$0.0532671,209.286$64.42
ETH0.07%$0.214384296.5226$63.57
ETH0.07%$1.3346.3776$61.68
ETH0.07%$0.00000512,220,036.6073$60.82
ETH0.07%$0.349527170.4632$59.58
ETH0.07%$27.432.1705$59.54
ETH0.07%<$0.000001120,295,172.7586$59.01
ETH0.07%$1.2247.5626$57.79
ETH0.06%$0.0072317,969.0581$57.62
ETH0.06%$0.0449771,280.3561$57.59
ETH0.06%$0.66963485.5382$57.28
ETH0.06%$0.0370861,535.3398$56.94
ETH0.06%$0.72654878.0481$56.71
ETH0.06%$0.0263422,146.6931$56.55
ETH0.06%$0.076847691.7982$53.16
ETH0.06%$58.220.8873$51.66
ETH0.06%$91,5620.00056201$51.46
ETH0.06%$0.066904765.496$51.21
ETH0.06%<$0.0000017,226,828,426.2352$51.15
ETH0.06%$0.0202382,476.2554$50.11
ETH0.06%$0.0155363,140.2667$48.79
ETH0.05%$0.013763,415.141$46.99
ETH0.05%$0.27036168.7082$45.61
ETH0.05%$0.00090450,128.5803$45.34
ETH0.05%$9.414.632$43.59
ETH0.05%$0.0000143,172,889.1471$43.06
ETH0.05%$0.99504243.1516$42.94
ETH0.05%$0.16225263.9462$42.83
ETH0.05%$0.092658459.4101$42.57
ETH0.05%$0.0133623,133.3902$41.87
ETH0.05%$0.00240617,119.7154$41.19
ETH0.05%$0.0213341,926.0545$41.09
ETH0.05%<$0.00000134,699,922,254,231.637$40.14
ETH0.05%<$0.00000111,893,885,992.8863$40.06
ETH0.05%$0.393043101.8899$40.05
ETH0.04%$0.139215283.6802$39.49
ETH0.04%<$0.0000011,118,495,740.2932$39.22
ETH0.04%$0.0110023,559.0996$39.16
ETH0.04%$0.323747120.3914$38.98
ETH0.04%$0.141132269.1218$37.98
ETH0.04%$0.337955104.971$35.48
ETH0.04%$0.0297681,140.2451$33.94
ETH0.04%$0.93476635.4477$33.14
ETH0.04%$0.51240564.5413$33.07
ETH0.04%$0.00226514,557.8943$32.98
ETH0.04%$0.00117227,946.3605$32.77
ETH0.04%$0.179331181.2161$32.5
ETH0.04%$0.0008437,205.5392$31.27
ETH0.03%$0.00272311,335.9099$30.87
ETH0.03%$0.0045016,848.8724$30.83
ETH0.03%$0.051005601.0687$30.66
ETH0.03%$2,150.650.0142$30.47
ETH0.03%$0.056246537.9922$30.26
ETH0.03%$0.9976329.95$29.88
ETH0.03%$7.693.885$29.88
ETH0.03%$0.0000231,293,231.1248$29.73
ETH0.03%$0.006254,731.2371$29.57
ETH0.03%$0.70850440.353$28.59
ETH0.03%$0.03588783.765$28.12
ETH0.03%$0.97313828.8872$28.11
ETH0.03%$0.043207647.8706$27.99
ETH0.03%$0.91181330.6488$27.95
ETH0.03%$0.00051154,116.7565$27.67
ETH0.03%$0.094184288.4283$27.17
ETH0.03%$0.00157717,039.7859$26.87
ETH0.03%<$0.00000181,208,968.3732$26.39
ETH0.03%$71.330.3641$25.97
ETH0.03%$0.054644462.0813$25.25
ETH0.03%$0.0043695,669.5427$24.77
ETH0.03%$0.106065233.3017$24.75
ETH0.03%$0.0148561,619.0331$24.05
ETH0.03%$0.140368169.2456$23.76
ETH0.03%$0.122568191.0493$23.42
ETH0.03%$0.24581894.332$23.19
ETH0.03%$0.0000046,472,169.3055$23.11
ETH0.03%$0.187178123.3976$23.1
ETH0.03%$0.28853879.11$22.83
ETH0.03%$0.084301267.2844$22.53
ETH0.03%$0.094352237.6316$22.42
ETH0.03%$0.0188531,176.6555$22.18
ETH0.02%$0.41767351.8463$21.65
ETH0.02%$0.0062463,426.9$21.41
ETH0.02%$0.023639886.8167$20.96
ETH0.02%$0.099866208.2745$20.8
ETH0.02%$0.031184666.2293$20.78
ETH0.02%$2.0110.2913$20.69
ETH0.02%$0.0000092,248,216.2564$20.32
ETH0.02%$2,027.170.01$20.27
ETH0.02%$0.70026127.6447$19.36
ETH0.02%$0.99985218.8208$18.82
ETH0.02%$0.00094619,806.5513$18.74
ETH0.02%$17.681.0542$18.64
ETH0.02%$1.1316.4467$18.58
ETH0.02%$0.31745458.5036$18.57
ETH0.02%<$0.000001384,952,362.8424$18.42
ETH0.02%$2.976.1097$18.15
ETH0.02%$0.047577376.8234$17.93
ETH0.02%$0.31138657.1794$17.8
ETH0.02%<$0.00000170,825,229.5005$17.49
ETH0.02%$0.071099245.4476$17.45
ETH0.02%<$0.00000122,043,291,156,050.609$17.35
ETH0.02%$0.082834208.3516$17.26
ETH0.02%$0.046258368.916$17.07
ETH0.02%$1,796.60.00946692$17.01
ETH0.02%$0.000055307,514.3034$16.99
ETH0.02%$0.0064092,639.3199$16.92
ETH0.02%$0.077285216.2922$16.72
ETH0.02%$0.025549654.0883$16.71
ETH0.02%$0.0044353,767.8489$16.71
ETH0.02%$0.00133312,517.1902$16.68
ETH0.02%<$0.00000175,064,754.4953$16.56
ETH0.02%$0.99070116.553$16.4
ETH0.02%$0.00122513,343.948$16.35
ETH0.02%$0.81508419.8083$16.15
ETH0.02%$0.039629402.9503$15.97
ETH0.02%$0.57243827.4722$15.73
ETH0.02%$0.0056952,747.5266$15.65
ETH0.02%$0.00125712,351.1613$15.52
ETH0.02%$2.95.2051$15.09
ETH0.02%$0.33715544.5281$15.01
ETH0.02%$6.742.1947$14.79
ETH0.02%$2,018.960.00730412$14.75
ETH0.02%$0.0031544,637.5472$14.63
ETH0.02%$0.0033514,275.4795$14.33
ETH0.02%$0.17282680.2931$13.88
ETH0.02%$10.321.3317$13.74
ETH0.02%$0.00014395,871.9587$13.68
ETH0.02%$0.62520521.6248$13.52
ETH0.02%$0.092979145.1053$13.49
ETH0.02%$0.0000131,036,154.3846$13.47
ETH0.01%$0.18735670.6293$13.23
ETH0.01%$0.21013262.4475$13.12
ETH0.01%$0.71369218.2482$13.02
ETH0.01%$0.031448413.0654$12.99
ETH0.01%$0.006262,061.5057$12.91
ETH0.01%$0.0106461,191.0161$12.68
ETH0.01%<$0.000001321,663,377.1224$12.65
ETH0.01%$0.09322135.3826$12.62
ETH0.01%$0.68228118.4019$12.56
ETH0.01%$0.0104111,186.8662$12.36
ETH0.01%$0.55857521.9756$12.28
ETH0.01%<$0.000001210,504,516.5527$12.24
ETH0.01%$4.512.6978$12.16
ETH0.01%$0.20251759.982$12.15
ETH0.01%$0.007741,555.0587$12.04
ETH0.01%$0.17242569.5294$11.99
ETH0.01%$0.00028841,244.4075$11.87
ETH0.01%$0.000058202,092.1188$11.63
ETH0.01%$4.532.5509$11.56
ETH0.01%$0.01811627.3099$11.36
ETH0.01%$0.0058541,894.4737$11.09
ETH0.01%$0.0002445,328.7149$10.89
ETH0.01%$0.0000033,956,743.1871$10.87
ETH0.01%$0.0054261,999.9351$10.85
ETH0.01%$0.367229.4359$10.81
ETH0.01%$0.00000114,955,275.2809$10.8
ETH0.01%$0.21083950.5109$10.65
ETH0.01%<$0.0000013,349,185,467.444$10.62
ETH0.01%$0.92793511.3687$10.55
ETH0.01%<$0.000001228,860,667.027$10.52
ETH0.01%$0.26089439.069$10.19
ETH0.01%$0.027549369.4645$10.18
ETH0.01%$25.660.3965$10.17
ETH0.01%$0.000065154,911.8661$10.01
ETH0.01%<$0.000001144,234,490.2313$9.96
ETH0.01%<$0.00000179,163,870.6062$9.95
ETH0.01%$0.073262135.649$9.94
ETH0.01%$0.29926232.9514$9.86
ETH0.01%$0.095435102.6509$9.8
ETH0.01%<$0.0000014,200,000,000$9.77
ETH0.01%$0.045218214.7004$9.71
ETH0.01%$0.000029340,399.9999$9.7
ETH0.01%$4.562.1112$9.63
ETH0.01%$0.19103350.0927$9.57
ETH0.01%$3,290.240.002902$9.55
ETH0.01%$0.00018252,532.6871$9.55
ETH0.01%$1.37.3188$9.51
ETH0.01%$1.27.8829$9.46
ETH0.01%$0.9999379.4032$9.4
ETH0.01%<$0.00000117,415,842,158.6329$9.38
ETH0.01%$0.022392414.8915$9.29
ETH0.01%$0.0025683,533.3034$9.07
ETH0.01%$0.000067136,222.7278$9.06
ETH0.01%$0.86627810.3917$9
ETH0.01%$0.000058155,355.2785$8.98
ETH<0.01%$93,5900.00009457$8.85
ETH<0.01%$0.00000113,972,248.6316$8.78
ETH<0.01%$0.54038215.7462$8.51
ETH<0.01%$0.000869,880.5685$8.5
ETH<0.01%$0.005251,598.9851$8.39
ETH<0.01%<$0.000001129,865,764.6$8.36
ETH<0.01%<$0.00000119,496,614.7805$8.35
ETH<0.01%$0.000024351,464.4258$8.28
ETH<0.01%$0.00000111,936,626.4432$8.28
ETH<0.01%$0.0022783,632.8143$8.28
ETH<0.01%$0.00054815,077.5526$8.26
ETH<0.01%$0.027489299.9598$8.25
ETH<0.01%$5,833.70.00140407$8.19
ETH<0.01%$0.0038212,141.3314$8.18
ETH<0.01%$0.14307556.9362$8.15
ETH<0.01%$0.013914578.3415$8.05
ETH<0.01%$0.0013655,772.6959$7.88
ETH<0.01%$0.0021233,533.1137$7.5
ETH<0.01%$0.11397765.6829$7.49
ETH<0.01%$0.0000041,712,359.4924$7.48
ETH<0.01%$177.710.0417$7.42
ETH<0.01%$0.11360164.0012$7.27
ETH<0.01%$0.023319302.4729$7.05
ETH<0.01%$0.0038931,800$7.01
ETH<0.01%$0.21964731.7872$6.98
ETH<0.01%<$0.00000149,214,200.9468$6.88
ETH<0.01%$0.0166413.3976$6.86
ETH<0.01%$0.0010056,819.6382$6.85
ETH<0.01%$0.0013914,927.9306$6.85
ETH<0.01%$0.0023362,930.4119$6.84
ETH<0.01%$0.33145620.5947$6.83
ETH<0.01%$0.6878579.7383$6.7
ETH<0.01%$0.028992230.6028$6.69
ETH<0.01%$5,140.290.00129378$6.65
ETH<0.01%$0.00057211,617.317$6.65
ETH<0.01%$0.0019373,426.6107$6.64
ETH<0.01%$0.031647206.0196$6.52
ETH<0.01%$0.0000019,908,761.5227$6.44
ETH<0.01%$0.17820735.9144$6.4
ETH<0.01%$0.29948221.3399$6.39
ETH<0.01%$0.010575603.693$6.38
ETH<0.01%$0.00689918.5622$6.33
ETH<0.01%$0.026697234.9676$6.27
ETH<0.01%$0.031102201.615$6.27
ETH<0.01%$0.21369929.3283$6.27
ETH<0.01%$0.0053921,153.6247$6.22
ETH<0.01%$0.10818956.5316$6.12
ETH<0.01%$0.06660591.6603$6.11
ETH<0.01%$0.0001345,465.7408$5.92
ETH<0.01%$0.0010485,606.094$5.88
ETH<0.01%$0.00018231,817.409$5.77
ETH<0.01%$0.0029061,962.2114$5.7
ETH<0.01%$0.038103147.252$5.61
ETH<0.01%$0.016609336.6136$5.59
ETH<0.01%$0.010768517.5964$5.57
ETH<0.01%$0.0013813,947.069$5.45
ETH<0.01%$0.51012210.6557$5.44
ETH<0.01%$0.11919145.3539$5.41
ETH<0.01%$0.17514130.6898$5.38
ETH<0.01%$0.011056483.0887$5.34
ETH<0.01%$0.17492230.3947$5.32
ETH<0.01%$0.0000013,652,536.2332$5.29
ETH<0.01%$0.21083925.0621$5.28
ETH<0.01%$0.0008666,085.4152$5.27
ETH<0.01%$0.6728327.8169$5.26
ETH<0.01%$0.6028018.7157$5.25
ETH<0.01%$20.060.2593$5.2
ETH<0.01%$0.005267986.8868$5.2
ETH<0.01%$0.00008361,997.3857$5.16
ETH<0.01%$0.036827139.6146$5.14
ETH<0.01%<$0.000001877,815,950.5989$5.08
ETH<0.01%<$0.0000011,058,657,192.1424$5.06
ETH<0.01%$0.5085879.918$5.04
ETH<0.01%$0.000011442,788.5454$5.01
ETH<0.01%$0.007282682.1386$4.97
ETH<0.01%$0.000014364,508.5843$4.96
ETH<0.01%$0.0015023,257.2649$4.89
ETH<0.01%$0.015552312.5849$4.86
ETH<0.01%$0.013895349.3272$4.85
ETH<0.01%$0.00018426,368.1474$4.85
ETH<0.01%$14.8189$4.82
ETH<0.01%$0.18877425.4138$4.8
ETH<0.01%$0.010179470.7145$4.79
ETH<0.01%$0.000027179,196.9239$4.75
ETH<0.01%$1,891.190.00249765$4.72
ETH<0.01%$114.470.0411$4.71
ETH<0.01%$0.809855.7052$4.62
ETH<0.01%$0.06385772.181$4.61
ETH<0.01%$0.005728798.4299$4.57
ETH<0.01%$0.00794573.8812$4.56
ETH<0.01%<$0.0000013,023,386,998.3823$4.55
ETH<0.01%$0.00021920,599.395$4.51
ETH<0.01%$0.006457689.6226$4.45
ETH<0.01%$0.000022200,055.65$4.44
ETH<0.01%$0.07088662.1832$4.41
ETH<0.01%$0.0925347.06$4.35
ETH<0.01%$0.29789214.1666$4.22
ETH<0.01%$0.5268737.9895$4.21
ETH<0.01%$0.00026815,473.142$4.14
ETH<0.01%$0.000944,373.8714$4.11
ETH<0.01%$0.1994520.5649$4.1
ETH<0.01%$6.560.6115$4.01
ETH<0.01%$0.8668534.5743$3.97
ETH<0.01%$0.01979197.086$3.9
ETH<0.01%$0.11082535.0041$3.88
ETH<0.01%$0.7056065.4633$3.85
ETH<0.01%$0.0007525,119.9911$3.85
ETH<0.01%$0.008658439.5502$3.81
ETH<0.01%$1.013.7638$3.81
ETH<0.01%$0.010555359.9096$3.8
ETH<0.01%<$0.00000114,405,947,890.6713$3.8
ETH<0.01%$0.004197898.38$3.77
ETH<0.01%$0.016339224.7484$3.67
ETH<0.01%$0.9998213.666$3.67
ETH<0.01%$0.004293846.023$3.63
ETH<0.01%$0.06694153.7708$3.6
ETH<0.01%$1.342.674$3.59
ETH<0.01%$0.00010134,844.179$3.53
ETH<0.01%$0.09131838.4195$3.51
ETH<0.01%$0.0010783,250.572$3.5
ETH<0.01%$0.0004178,286.1044$3.46
ETH<0.01%$0.13774225.0872$3.46
ETH<0.01%$0.6580135.2407$3.45
ETH<0.01%$0.0009383,673.5176$3.45
ETH<0.01%$0.002541,345.961$3.42
ETH<0.01%$1,908.80.00177658$3.39
ETH<0.01%$3,274.30.00102673$3.36
ETH<0.01%$0.06466951.9188$3.36
ETH<0.01%$0.0007144,675.9695$3.34
ETH<0.01%$0.024732134.8228$3.33
ETH<0.01%$0.026787124.284$3.33
ETH<0.01%$0.07372744.734$3.3
ETH<0.01%$0.0020541,578.5127$3.24
ETH<0.01%$0.11572327.8006$3.22
ETH<0.01%$0.9131783.4992$3.2
ETH<0.01%$0.18327216.697$3.06
ETH<0.01%$0.009811308.7872$3.03
ETH<0.01%$0.0003418,875.173$3.02
ETH<0.01%$0.09096132.396$2.95
ETH<0.01%$0.002944986.5208$2.9
ETH<0.01%$0.006641432.3731$2.87
ETH<0.01%$0.7924163.6099$2.86
ETH<0.01%$0.19918514.3075$2.85
ETH<0.01%$0.18772315$2.82
ETH<0.01%$0.9411622.9715$2.8
ETH<0.01%$0.26484710.5037$2.78
ETH<0.01%$0.00003480,820.0916$2.76
ETH<0.01%$0.7308343.7733$2.76
ETH<0.01%$0.016189169.5693$2.75
ETH<0.01%$0.00141,950.255$2.73
ETH<0.01%$2.880.9464$2.72
ETH<0.01%$0.0000021,101,160.4087$2.69
ETH<0.01%$0.0005594,782.519$2.67
ETH<0.01%$0.006889385.8503$2.66
ETH<0.01%$0.02770895.6728$2.65
ETH<0.01%$1.132.314$2.61
ETH<0.01%$0.6080064.2995$2.61
ETH<0.01%$0.05371448.5301$2.61
ETH<0.01%$0.0015841,624.5525$2.57
ETH<0.01%$6.230.41$2.55
ETH<0.01%$0.015498164.3386$2.55
ETH<0.01%$0.00018113,905.2682$2.51
ETH<0.01%$0.16145315.4835$2.5
ETH<0.01%$0.03254776.524$2.49
ETH<0.01%$0.00073,516.9802$2.46
ETH<0.01%$0.021207115.482$2.45
ETH<0.01%$0.0075325.905$2.44
ETH<0.01%$0.020497117.9173$2.42
ETH<0.01%$0.00022810,559.5012$2.4
ETH<0.01%<$0.0000013,616,967,204.8345$2.38
ETH<0.01%$0.010101232.4913$2.35
ETH<0.01%$0.003744619.984$2.32
ETH<0.01%$0.0016281,408.3143$2.29
ETH<0.01%$43.430.052$2.26
ETH<0.01%$0.9977792.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.15672914.2976$2.24
ETH<0.01%$0.002927759.7793$2.22
ETH<0.01%$0.07354130.1249$2.22
ETH<0.01%$0.14995514.5476$2.18
ETH<0.01%$0.015874137.2566$2.18
ETH<0.01%$1.032.1026$2.16
ETH<0.01%<$0.00000150,009,730.2367$2.15
ETH<0.01%$0.3046947.0094$2.14
ETH<0.01%$0.06091235.0564$2.14
ETH<0.01%$0.006752315.8616$2.13
ETH<0.01%$0.03427961.7085$2.12
ETH<0.01%$0.0000021,269,749.3285$2.11
ETH<0.01%$1.061.9927$2.11
ETH<0.01%$0.0016851,239.7682$2.09
ETH<0.01%$0.02274591.5885$2.08
ETH<0.01%$0.000005392,206.2812$2.07
ETH<0.01%$0.00014514,074.8918$2.04
ETH<0.01%$0.2178599.3202$2.03
ETH<0.01%$0.00002484,548.0277$2.02
ETH<0.01%$0.02327686.5307$2.01
ETH<0.01%$0.5676493.5476$2.01
ETH<0.01%$0.226738.8779$2.01
ETH<0.01%$0.02610276.621$2
ETH<0.01%$0.04370145.75$2
ETH<0.01%$0.003063648.7864$1.99
ETH<0.01%$0.04649142.4264$1.97
ETH<0.01%$0.003865508.177$1.96
ETH<0.01%$0.0018741,037.1468$1.94
ETH<0.01%$0.0014171,362.1203$1.93
ETH<0.01%$28.610.0674$1.93
ETH<0.01%$0.017068111.2998$1.9
ETH<0.01%$0.006099302.5351$1.85
ETH<0.01%$0.00007225,505.3597$1.83
ETH<0.01%$0.014652125.0333$1.83
ETH<0.01%$0.008557212.5023$1.82
ETH<0.01%$0.00211861.0283$1.82
ETH<0.01%$2.550.7095$1.81
ETH<0.01%$0.007067255.4389$1.81
ETH<0.01%$0.0014541,240.551$1.8
ETH<0.01%$0.02572.0792$1.8
ETH<0.01%$0.0002198,177.0134$1.79
ETH<0.01%$0.012782139.9702$1.79
ETH<0.01%$0.03304853.9569$1.78
ETH<0.01%$0.3919584.5381$1.78
ETH<0.01%$1.31.3549$1.76
ETH<0.01%$0.0000012,596,780.467$1.76
ETH<0.01%$0.03154355.4192$1.75
ETH<0.01%$0.2006438.6796$1.74
ETH<0.01%$0.0014541,195.728$1.74
ETH<0.01%$0.3668484.6675$1.71
ETH<0.01%$0.00003253,288.7112$1.68
ETH<0.01%$0.0011671,429.2583$1.67
ETH<0.01%<$0.0000013,773,899,543.488$1.66
ETH<0.01%$0.05900128.0191$1.65
ETH<0.01%$0.004992329.307$1.64
ETH<0.01%$0.0003624,470.1553$1.62
ETH<0.01%$0.006158261.8511$1.61
ETH<0.01%$0.0009951,618.2637$1.61
ETH<0.01%$0.13257311.9252$1.58
ETH<0.01%$0.00009516,522.029$1.57
ETH<0.01%$0.0001858,442.684$1.56
ETH<0.01%$0.13020511.9736$1.56
ETH<0.01%$0.05029930.9946$1.56
ETH<0.01%$0.009618161.5034$1.55
ETH<0.01%$0.011319136.4815$1.54
ETH<0.01%$1,858.220.00082935$1.54
ETH<0.01%$0.5255382.8999$1.52
ETH<0.01%$0.3107114.9012$1.52
ETH<0.01%$0.07633519.0881$1.46
ETH<0.01%$0.0000012,252,368.3192$1.45
ETH<0.01%$0.283265.099$1.44
ETH<0.01%$0.010519135.1273$1.42
ETH<0.01%$0.0002395,938.7363$1.42
ETH<0.01%$0.0010271,337.7158$1.37
ETH<0.01%$0.1685567.8325$1.32
ETH<0.01%$0.010528125.3424$1.32
ETH<0.01%$0.02067863.7368$1.32
ETH<0.01%$0.2341455.5914$1.31
ETH<0.01%$4.660.2809$1.31
ETH<0.01%$0.09085214.3838$1.31
ETH<0.01%$8.870.1443$1.28
ETH<0.01%$0.01947265.7275$1.28
ETH<0.01%$0.0004442,879.4323$1.28
ETH<0.01%$0.01399291.2983$1.28
ETH<0.01%$0.0004782,651.5189$1.27
ETH<0.01%$2.090.6041$1.26
ETH<0.01%$0.0005362,355.039$1.26
ETH<0.01%$0.00001130,547.2324$1.25
ETH<0.01%$0.001715728.8689$1.25
ETH<0.01%$0.000343,662.8665$1.25
ETH<0.01%$0.2361275.2436$1.24
ETH<0.01%$0.3520893.5024$1.23
ETH<0.01%$0.4459192.7599$1.23
ETH<0.01%$0.260354.6729$1.22
ETH<0.01%$0.004062298.2824$1.21
ETH<0.01%$0.0008741,385.5434$1.21
ETH<0.01%$0.000005241,968.6745$1.21
ETH<0.01%$0.0003793,192.3867$1.21
ETH<0.01%$8.110.148$1.2
ETH<0.01%$0.00719165.7669$1.19
ETH<0.01%$0.06794917.4508$1.19
ETH<0.01%$0.0011361,036.0202$1.18
ETH<0.01%$0.01720368.3441$1.18
ETH<0.01%$0.005597203.4559$1.14
ETH<0.01%$0.0034334.8835$1.14
ETH<0.01%$0.1108810.2453$1.14
ETH<0.01%$0.01494174.3157$1.11
ETH<0.01%$0.08220513.3732$1.1
ETH<0.01%$0.0001357,964.8048$1.08
ETH<0.01%<$0.0000013,004,136.1399$1.06
ETH<0.01%$0.0001367,795.3416$1.06
ETH<0.01%$0.0001467,223.027$1.05
ETH<0.01%$0.01024102.3484$1.05
ETH<0.01%$0.000003321,049.6847$1.05
ETH<0.01%$0.0003343,064.1652$1.02
ETH<0.01%$0.002726374.973$1.02
ETH<0.01%$0.02786436.5563$1.02
ETH<0.01%$0.0000011,566,743.1688$1
ETH<0.01%$0.4646472.1536$1
ETH<0.01%$0.8118961.22$0.9905
ETH<0.01%$0.0124179.3529$0.9847
ETH<0.01%$93,4510.00001002$0.9363
ETH<0.01%$0.05280517.7261$0.936
ETH<0.01%$0.4192672.1918$0.9189
ETH<0.01%$0.7375141.2306$0.9075
ETH<0.01%$60.1491$0.8947
ETH<0.01%$0.06513713.726$0.894
ETH<0.01%$0.0004791,857.4382$0.8906
ETH<0.01%$0.08578910.1388$0.8697
ETH<0.01%$0.0001177,435.1659$0.8687
ETH<0.01%$0.002147403.9538$0.8673
ETH<0.01%$0.01216371.2298$0.8664
ETH<0.01%$0.0002763,131.5381$0.8656
ETH<0.01%$0.03932321.96$0.8635
ETH<0.01%$0.03128327.17$0.8499
ETH<0.01%$0.04529718.6625$0.8453
ETH<0.01%<$0.00000170,462,814.996$0.8423
ETH<0.01%$0.003404247.4098$0.842
ETH<0.01%$0.0002024,067.1974$0.8222
ETH<0.01%$0.0956888.5603$0.8191
ETH<0.01%$0.03277424.9721$0.8184
ETH<0.01%$0.001168697.6591$0.8146
ETH<0.01%$0.0005631,436.4884$0.8083
ETH<0.01%$0.001958409.9898$0.8026
ETH<0.01%$0.0000810,045.293$0.80
ETH<0.01%$1,505.630.00051767$0.7794
ETH<0.01%$31.060.0251$0.778
ETH<0.01%$0.006092126.108$0.7683
ETH<0.01%$0.05959812.794$0.7624
ETH<0.01%$0.0139154.7598$0.7616
ETH<0.01%$0.01984338.2892$0.7597
ETH<0.01%$0.2712092.7718$0.7517
ETH<0.01%$10.7506$0.7506
ETH<0.01%$0.00002431,318.9885$0.7428
ETH<0.01%$0.06341111.693$0.7414
ETH<0.01%$1.150.636$0.7313
ETH<0.01%$0.8357780.8556$0.715
ETH<0.01%$0.001525464.6383$0.7085
ETH<0.01%$0.01667642.0478$0.7011
ETH<0.01%$0.02365129.4$0.6953
ETH<0.01%$0.001555446.6236$0.6946
ETH<0.01%$0.003372205.6274$0.6933
ETH<0.01%$0.0345720.0323$0.6925
ETH<0.01%$0.0469214.6731$0.6884
ETH<0.01%$0.0002532,716.815$0.6867
ETH<0.01%$0.00353192.6119$0.6799
ETH<0.01%$0.143554.7357$0.6798
ETH<0.01%$0.002194299.7483$0.6576
ETH<0.01%$0.003396189.5613$0.6437
ETH<0.01%$0.00982265.3448$0.6418
ETH<0.01%$0.4015281.5982$0.6417
ETH<0.01%$0.00708289.6685$0.635
ETH<0.01%$0.002091293.4568$0.6134
ETH<0.01%$0.0002942,076.9234$0.6111
ETH<0.01%$0.00244249.4889$0.6086
ETH<0.01%<$0.000001218,494,402.2159$0.6056
ETH<0.01%$0.0004961,216.3635$0.6028
ETH<0.01%$0.2223152.7082$0.602
ETH<0.01%<$0.000001327,291,333.2845$0.5969
ETH<0.01%$0.0921236.3882$0.5884
ETH<0.01%$0.001737338.165$0.5874
ETH<0.01%$0.000311,885.3692$0.5836
ETH<0.01%$0.00926262.6637$0.5803
ETH<0.01%$52.380.011$0.5775
ETH<0.01%$0.002611210.3059$0.5491
ETH<0.01%$0.9984810.5481$0.5472
ETH<0.01%$0.004354125.5922$0.5468
ETH<0.01%$170.0315$0.5348
ETH<0.01%$0.0001583,302.1818$0.5232
ETH<0.01%$0.2706121.9148$0.5181
ETH<0.01%$0.002137241.0665$0.5151
ETH<0.01%$19.060.027$0.5137
ETH<0.01%$0.02718518.108$0.4922
ETH<0.01%$0.02589418.8748$0.4887
ETH<0.01%$0.00001630,618.1291$0.4871
ETH<0.01%$0.04046611.8492$0.4794
ETH<0.01%$0.0916015.1463$0.4714
ETH<0.01%$0.00655371.6744$0.4696
ETH<0.01%$1,965.350.00023768$0.4671
ETH<0.01%$1,799.420.00025535$0.4594
ETH<0.01%$0.001027444.4753$0.4563
ETH<0.01%$0.2458721.7959$0.4415
ETH<0.01%$0.01560128.2455$0.4406
ETH<0.01%$0.00000947,765.253$0.436
ETH<0.01%$0.0000459,586.704$0.4343
ETH<0.01%$1.310.3296$0.4329
ETH<0.01%$2.440.1758$0.4286
ETH<0.01%$0.02134419.8455$0.4235
ETH<0.01%$0.00001823,745.7217$0.4207
ETH<0.01%$1.190.3502$0.4167
ETH<0.01%$0.000002237,452.4279$0.4056
ETH<0.01%$0.01898121.3472$0.4051
ETH<0.01%$0.0128531.2651$0.4017
ETH<0.01%$0.000409978.8493$0.40
ETH<0.01%$0.3489551.1353$0.3961
ETH<0.01%$9.030.0438$0.3951
ETH<0.01%$14,950.840.00002642$0.395
ETH<0.01%$0.00427290$0.3844
ETH<0.01%$0.1832922.0945$0.3839
ETH<0.01%$0.0002531,485.0793$0.3763
ETH<0.01%$0.0000419,032.2103$0.3723
ETH<0.01%$0.000001327,713.1347$0.3703
ETH<0.01%$0.999570.3699$0.3697
ETH<0.01%$0.2860521.2225$0.3496
ETH<0.01%$0.000964350.6511$0.3379
ETH<0.01%$0.000387868.3866$0.3363
ETH<0.01%$0.000771429.2628$0.3308
ETH<0.01%$0.0842323.8835$0.3271
ETH<0.01%$0.001677193.9708$0.3253
ETH<0.01%$0.00340195.4915$0.3248
ETH<0.01%$0.001129281.094$0.3174
ETH<0.01%$0.4623490.6769$0.3129
ETH<0.01%$93,3970.00000335$0.3128
ETH<0.01%$0.000329943.4723$0.3108
ETH<0.01%$0.002352129.8033$0.3053
ETH<0.01%$0.002682111.6446$0.2994
ETH<0.01%$0.0001462,026.8591$0.2957
ETH<0.01%$0.0001342,192.0432$0.2932
ETH<0.01%$0.0894853.2707$0.2926
ETH<0.01%$0.000499580.2264$0.2893
ETH<0.01%$0.1970281.4281$0.2813
ETH<0.01%$0.9968480.2775$0.2766
ETH<0.01%$2.240.1228$0.275
ETH<0.01%$0.0750883.6192$0.2717
ETH<0.01%$0.00000466,132$0.2638
ETH<0.01%<$0.000001335,574,268.7172$0.2584
ETH<0.01%$0.001682152.2352$0.2561
ETH<0.01%$0.9998840.2553$0.2553
ETH<0.01%$0.002003125.1558$0.2506
ETH<0.01%$0.000404599.517$0.2423
ETH<0.01%$0.01581115.0407$0.2378
ETH<0.01%$0.4704480.5009$0.2356
ETH<0.01%$0.0000842,780.9024$0.234
ETH<0.01%$609.950.00036746$0.2241
ETH<0.01%$8,203.420.00002714$0.2226
ETH<0.01%$0.00740530.0587$0.2225
ETH<0.01%$0.0436494.8598$0.2121
ETH<0.01%$0.00001414,425.9823$0.2031
ETH<0.01%$0.00403449.9692$0.2015
ETH<0.01%$0.0148413.4987$0.2003
ETH<0.01%$0.01964910.1512$0.1994
ETH<0.01%$0.0009221.4451$0.1992
ETH<0.01%$3.460.0572$0.198
ETH<0.01%$0.01169316.8537$0.197
ETH<0.01%$0.0473324.1022$0.1941
ETH<0.01%$0.000955202.6034$0.1935
ETH<0.01%$0.0216228.8181$0.1906
ETH<0.01%$0.0367054.9$0.1798
ETH<0.01%$0.0340995.2313$0.1783
ETH<0.01%$0.00427840.4316$0.1729
ETH<0.01%$0.0344444.9682$0.1711
ETH<0.01%$0.00444538.2122$0.1698
ETH<0.01%$0.001187142.7827$0.1694
ETH<0.01%$0.000111,524.6155$0.1679
ETH<0.01%$10.1625$0.1629
ETH<0.01%$0.141881.1412$0.1619
ETH<0.01%$0.000578270.9257$0.1567
ETH<0.01%<$0.0000013,558,115.116$0.1541
ETH<0.01%$0.00906916.5794$0.1503
ETH<0.01%$0.7273740.2015$0.1465
ETH<0.01%$0.3294210.4349$0.1432
ETH<0.01%$0.00000818,967.2434$0.143
ETH<0.01%$0.1182311.2083$0.1428
ETH<0.01%$0.000144988.7193$0.1418
ETH<0.01%$0.00172379.1901$0.1364
ETH<0.01%$0.0021959.3164$0.1299
ETH<0.01%$9.550.0136$0.1299
ETH<0.01%$1,953.930.00006625$0.1294
ETH<0.01%$0.0091713.2427$0.1214
ETH<0.01%$0.0391163.0607$0.1197
ETH<0.01%$0.000454260.5356$0.1183
ETH<0.01%$561.820.00020918$0.1175
ETH<0.01%$0.0170046.8966$0.1172
ETH<0.01%$2.010.053$0.1065
ETH<0.01%$0.0204995.126$0.105
ETH<0.01%$0.00268439.0406$0.1047
ARB9.33%$0.999998,276.7294$8,276.65
ARB4.10%$1,801.592.0199$3,638.97
ARB1.98%$93,3520.0188$1,757.32
ARB0.61%$1,798.230.3009$541.13
ARB0.30%$165.041.6337$269.62
ARB0.26%$1,795.920.1297$232.87
ARB0.26%$1229.8428$229.84
ARB0.15%$0.99999132.7711$132.77
ARB0.11%$15.016.2763$94.21
ARB0.08%$2,156.290.0312$67.38
ARB0.05%$0.0318721,304.5172$41.58
ARB0.03%$0.33129288.5276$29.33
ARB0.03%$122.8182$22.82
ARB0.02%$121.1227$21.14
ARB0.02%$15.091.3591$20.51
ARB0.02%$21.770.9175$19.97
ARB0.02%$2.755.8542$16.1
ARB0.02%$0.99993715.8292$15.83
ARB0.01%$0.007191,742.9182$12.53
ARB0.01%$0.000016647,959.6806$10.31
ARB<0.01%$43.460.1881$8.18
ARB<0.01%$0.00058211,781.8595$6.85
ARB<0.01%$0.000024280,669.7608$6.6
ARB<0.01%$0.21550229.846$6.43
ARB<0.01%$0.00055910,916.9386$6.11
ARB<0.01%$3.451.5086$5.2
ARB<0.01%<$0.00000113,263,509,025.7531$3.98
ARB<0.01%$0.6704725.8052$3.89
ARB<0.01%$0.029791111.4082$3.32
ARB<0.01%$0.898983.6169$3.25
ARB<0.01%$0.9997513.0331$3.03
ARB<0.01%$1.112.5899$2.87
ARB<0.01%$0.9998252.6711$2.67
ARB<0.01%$383.680.00634329$2.43
ARB<0.01%$12.3953$2.4
ARB<0.01%$60.3622$2.17
ARB<0.01%$93,5110.00001823$1.7
ARB<0.01%$93,5650.00001531$1.43
ARB<0.01%$2.010.6935$1.39
ARB<0.01%$0.00010811,460.6857$1.24
ARB<0.01%$93,8660.00001251$1.17
ARB<0.01%$11.1568$1.16
ARB<0.01%$0.004829208.1864$1.01
ARB<0.01%$0.006424156.2754$1
ARB<0.01%$0.01461868.6671$1
ARB<0.01%$0.7977461.2299$0.9811
ARB<0.01%$0.0002793,391.2508$0.9451
ARB<0.01%$0.01487754.6335$0.8127
ARB<0.01%$0.2024823.8346$0.7764
ARB<0.01%$0.9827550.7584$0.7453
ARB<0.01%$0.002951220.221$0.6497
ARB<0.01%$1,881.540.00024974$0.4699
ARB<0.01%$0.9952760.4644$0.4622
ARB<0.01%$10.3722$0.3726
ARB<0.01%$0.0447586.9832$0.3125
ARB<0.01%$0.0610775.0818$0.3103
ARB<0.01%$0.000002122,965.5823$0.30
ARB<0.01%$0.01872914.1352$0.2647
ARB<0.01%$0.0348267.4531$0.2595
ARB<0.01%$0.5676460.4146$0.2353
ARB<0.01%$0.9998190.1779$0.1778
ARB<0.01%$10.1747$0.175
ARB<0.01%$0.00576729.5442$0.1703
ARB<0.01%$0.00000917,748.5245$0.1604
ARB<0.01%$0.9994670.1564$0.1562
ARB<0.01%$1,796.550.00008627$0.1549
ARB<0.01%$0.0916171.6623$0.1522
ARB<0.01%$0.0035340.2264$0.142
ARB<0.01%$0.1016541.3656$0.1388
ARB<0.01%$92,8000.00000138$0.128
POL12.99%$0.44587125,838.2316$11,520.52
POL0.90%$1794.9079$794.91
POL0.49%$93,3080.0046249$431.54
POL0.46%$1,786.720.2289$408.98
POL0.18%$0.99999161.2928$161.29
POL0.12%$0.99999109.9841$109.98
POL0.05%$0.267664169.7193$45.43
POL0.05%$0.070384624.7536$43.97
POL0.05%$0.221074187.3419$41.42
POL0.03%$0.0070413,973.3497$27.98
POL0.02%$0.2977463.6517$18.95
POL0.02%$12.751.1847$15.1
POL0.01%$0.22832446.1883$10.55
POL<0.01%$0.044864145.6339$6.53
POL<0.01%$1.145.7057$6.5
POL<0.01%$1.145.7057$6.5
POL<0.01%$3,295.950.00196736$6.48
POL<0.01%$0.024736242.6187$6
POL<0.01%$0.0007686,818.3732$5.24
POL<0.01%$0.33606414.8158$4.98
POL<0.01%$0.12391733.9141$4.2
POL<0.01%$0.9997763.4921$3.49
POL<0.01%$0.06154751.35$3.16
POL<0.01%$0.006115445.14$2.72
POL<0.01%$0.02799280.7212$2.26
POL<0.01%$0.5016324.293$2.15
POL<0.01%$0.3101516.0026$1.86
POL<0.01%$164.480.00942984$1.55
POL<0.01%$0.001808835.659$1.51
POL<0.01%$0.0001956,855.2296$1.34
POL<0.01%$0.003737351.7355$1.31
POL<0.01%$0.001319987.7914$1.3
POL<0.01%$0.5620632.1563$1.21
POL<0.01%$0.9999621.1898$1.19
POL<0.01%$0.004222272.9097$1.15
POL<0.01%$0.05751319.6911$1.13
POL<0.01%$0.003901281.5452$1.1
POL<0.01%$5.970.1809$1.08
POL<0.01%$0.01224687.4222$1.07
POL<0.01%$0.05069921.015$1.07
POL<0.01%$14.980.0658$0.9851
POL<0.01%<$0.0000019,810,976.2252$0.8771
POL<0.01%$0.00841299.7466$0.839
POL<0.01%$0.00444182.3338$0.8096
POL<0.01%$2,156.610.00035836$0.7728
POL<0.01%$0.2547313.0098$0.7666
POL<0.01%$0.2909492.6091$0.7591
POL<0.01%$10.6101$0.6119
POL<0.01%$0.00956957$0.5454
POL<0.01%$0.2231272.4317$0.54257
POL<0.01%$0.0640068.164$0.5225
POL<0.01%$0.0001164,302.1588$0.5003
POL<0.01%$0.2029262.2533$0.4572
POL<0.01%$0.8081730.5291$0.4275
POL<0.01%$0.9991760.4003$0.3999
POL<0.01%$0.3129411.116$0.3492
POL<0.01%$0.186341.7915$0.3338
POL<0.01%$0.1219652.6806$0.3269
POL<0.01%$0.6660980.4518$0.3009
POL<0.01%$0.00086335.1815$0.288
POL<0.01%$0.001041268.4248$0.2795
POL<0.01%$0.001872146.3589$0.274
POL<0.01%$0.00283689.5683$0.254
POL<0.01%$0.00192106.5258$0.2045
POL<0.01%$1,806.920.00009608$0.1736
POL<0.01%$0.0722362.0209$0.1459
POL<0.01%$0.000327416.1988$0.1361
POL<0.01%$0.7628450.1737$0.1325
POL<0.01%$0.0284834.62$0.1315
POL<0.01%$0.000292447.4083$0.1305
POL<0.01%$0.000122969.3328$0.118
POL<0.01%$0.0912421.1633$0.1061
POL<0.01%$0.00224246.1363$0.1034
POL<0.01%$0.0062416.12$0.1005
BASE3.49%$1,788.551.7318$3,097.41
BASE3.02%$93,4510.0287$2,680.64
BASE2.86%$0.0003966,407,595.7102$2,540.16
BASE1.39%$0.06271919,690.2413$1,234.94
BASE1.10%$0.99987978.5613$978.43
BASE0.69%$0.907137673.5952$611.04
BASE0.35%$1,798.880.1711$307.77
BASE0.32%$0.99999283.2821$283.28
BASE0.14%$1.03116.776$119.93
BASE0.10%$93,5900.00097679$91.42
BASE0.10%$0.99999689.8056$89.81
BASE0.10%$1.1377.9387$88.07
BASE0.08%$0.99998373.2281$73.23
BASE0.07%$0.000001109,445,679.492$65.63
BASE0.07%$0.0253652,548.2061$64.64
BASE0.07%$0.553288116.5445$64.48
BASE0.07%$0.50934120.3185$61.28
BASE0.07%$0.00391314,797.2362$57.9
BASE0.06%$0.0322651,703.1798$54.95
BASE0.06%$0.0160733,220.4532$51.76
BASE0.06%$0.0224752,256.5397$50.72
BASE0.04%$1,966.390.0189$37.16
BASE0.04%$0.00329310,981.59$36.16
BASE0.04%$0.00297111,216.5041$33.33
BASE0.04%$2.9810.6616$31.77
BASE0.04%$0.12765246.8534$31.51
BASE0.03%$0.00206814,941.3642$30.9
BASE0.03%$2,150.650.0133$28.51
BASE0.03%$165.010.158$26.07
BASE0.03%$2.779.0673$25.12
BASE0.03%$0.000086282,671.5339$24.26
BASE0.02%$0.00063234,099.2639$21.57
BASE0.02%$0.00119516,940.2496$20.24
BASE0.02%$93,4290.00019588$18.3
BASE0.02%$0.0092031,736.9103$15.98
BASE0.02%$0.56435626.1006$14.73
BASE0.02%$0.00057823,862.5779$13.79
BASE0.01%$0.40291132.735$13.19
BASE0.01%$49.010.2623$12.85
BASE0.01%$0.050767251.1594$12.75
BASE0.01%$0.000091115,692.0711$10.51
BASE0.01%$0.000091115,692.0711$10.51
BASE<0.01%$0.0038392,223.3365$8.54
BASE<0.01%$0.21083938.493$8.12
BASE<0.01%$0.0021393,760.4946$8.04
BASE<0.01%$0.018319416.1392$7.62
BASE<0.01%$0.009776771.0449$7.54
BASE<0.01%$0.0000061,310,951.7997$7.47
BASE<0.01%$0.034445210.249$7.24
BASE<0.01%$0.020238355.4702$7.19
BASE<0.01%$0.0067871,044.7547$7.09
BASE<0.01%$0.016686408.5113$6.82
BASE<0.01%$0.027071250.9394$6.79
BASE<0.01%$0.25041723.9393$5.99
BASE<0.01%$0.059144100.3125$5.93
BASE<0.01%$0.0010785,491.1213$5.92
BASE<0.01%$0.0006119,030.3216$5.51
BASE<0.01%$0.17820730.6361$5.46
BASE<0.01%$0.006816792.2942$5.4
BASE<0.01%$0.0044351,177.4705$5.22
BASE<0.01%$0.007779646.7284$5.03
BASE<0.01%$0.06124180.819$4.95
BASE<0.01%<$0.000001220,697,009.9781$4.88
BASE<0.01%$0.05705684.613$4.83
BASE<0.01%$1,908.80.00250049$4.77
BASE<0.01%$0.00034713,627.1972$4.73
BASE<0.01%$0.037147124.8606$4.64
BASE<0.01%$0.003971,129.6754$4.48
BASE<0.01%$0.000016268,438.6274$4.37
BASE<0.01%$0.0006016,868.7355$4.13
BASE<0.01%$0.9989933.9816$3.98
BASE<0.01%$0.0015252,606.0313$3.97
BASE<0.01%$2.751.4084$3.87
BASE<0.01%$0.00006160,869.3497$3.69
BASE<0.01%$0.015536235.8745$3.66
BASE<0.01%$0.0004029,089.5793$3.66
BASE<0.01%$0.7095974.8171$3.42
BASE<0.01%$0.0004946,318.581$3.12
BASE<0.01%$0.12819523.8738$3.06
BASE<0.01%$0.4704486.4156$3.02
BASE<0.01%$0.0010012,895.075$2.9
BASE<0.01%$0.2603511.0937$2.89
BASE<0.01%$0.0007933,632.243$2.88
BASE<0.01%$0.03830175.2196$2.88
BASE<0.01%$0.00398702.3929$2.8
BASE<0.01%$0.538725.1814$2.79
BASE<0.01%$0.012308224.214$2.76
BASE<0.01%$0.0003078,887.3527$2.73
BASE<0.01%$0.00017515,564.1706$2.72
BASE<0.01%$0.011647223.392$2.6
BASE<0.01%$0.003331775.1583$2.58
BASE<0.01%$0.03755768.6473$2.58
BASE<0.01%$0.3237477.371$2.39
BASE<0.01%$0.007231316.1438$2.29
BASE<0.01%$0.006041367.2576$2.22
BASE<0.01%$0.000013168,677.0861$2.19
BASE<0.01%$1.571.2489$1.96
BASE<0.01%$0.0018991,007.7051$1.91
BASE<0.01%$0.0166103.5181$1.72
BASE<0.01%$0.002503666.3458$1.67
BASE<0.01%$0.0015151,095.3394$1.66
BASE<0.01%$0.006316259.7105$1.64
BASE<0.01%$0.01655897.6533$1.62
BASE<0.01%$0.000013121,446.5446$1.62
BASE<0.01%$1.551.0312$1.6
BASE<0.01%$0.0005592,726.5213$1.52
BASE<0.01%$0.0002376,128.4817$1.45
BASE<0.01%$0.00449300.0104$1.35
BASE<0.01%$0.01911268.2493$1.3
BASE<0.01%$0.10100312.7597$1.29
BASE<0.01%$0.7349411.6793$1.23
BASE<0.01%$0.011316108.974$1.23
BASE<0.01%$0.9992961.2326$1.23
BASE<0.01%$0.000004324,405.3477$1.19
BASE<0.01%$0.0005742,016.6229$1.16
BASE<0.01%$0.000002629,719.4708$1.13
BASE<0.01%$0.004677233.1437$1.09
BASE<0.01%$11.0699$1.07
BASE<0.01%$0.01105187.1164$0.9627
BASE<0.01%$2.760.3126$0.8628
BASE<0.01%$0.00003822,346.4603$0.8422
BASE<0.01%$0.001838.0553$0.8384
BASE<0.01%$0.003622223.257$0.8086
BASE<0.01%$0.000006117,721.831$0.7628
BASE<0.01%$0.006769111.3834$0.7539
BASE<0.01%<$0.0000011,232,468,578.9682$0.7394
BASE<0.01%$0.000892756.4326$0.675
BASE<0.01%$0.000006117,788.3101$0.6702
BASE<0.01%$0.00002428,000.816$0.6594
BASE<0.01%$0.9796040.6559$0.6424
BASE<0.01%$0.03046520.6092$0.6278
BASE<0.01%$0.01030557.5835$0.5934
BASE<0.01%$0.0669638.3165$0.5568
BASE<0.01%$0.0636558.4502$0.5378
BASE<0.01%$0.001266412.2009$0.5217
BASE<0.01%<$0.0000011,041,701,264.8364$0.5208
BASE<0.01%$0.0003641,325.7756$0.4826
BASE<0.01%$0.000725665.067$0.4823
BASE<0.01%$0.00001337,174.677$0.4713
BASE<0.01%$0.358611.2451$0.4465
BASE<0.01%$1,881.780.00019214$0.3615
BASE<0.01%$0.00615858.4126$0.3596
BASE<0.01%$0.2495611.3772$0.3436
BASE<0.01%<$0.00000117,739,573.1625$0.3264
BASE<0.01%$0.1716061.8957$0.3253
BASE<0.01%$0.0001182,587.4376$0.3053
BASE<0.01%$0.00002114,596.3911$0.2996
BASE<0.01%$0.0312079.5681$0.2985
BASE<0.01%$0.3144260.936$0.2943
BASE<0.01%$5.610.0505$0.2835
BASE<0.01%$1.320.198$0.2613
BASE<0.01%$0.001524164.9853$0.2513
BASE<0.01%$0.0035370.75$0.2497
BASE<0.01%$0.00000830,575.3021$0.2461
BASE<0.01%$0.01896912.6488$0.2399
BASE<0.01%$0.9989090.2396$0.2393
BASE<0.01%$0.000902219.5252$0.198
BASE<0.01%$0.000256740.004$0.1893
BASE<0.01%$0.00000271,051.0938$0.1733
BASE<0.01%$0.3083860.5579$0.172
BASE<0.01%$0.0000513,326.7869$0.1708
BASE<0.01%$0.00232972.429$0.1686
BASE<0.01%$0.0981891.6338$0.1604
BASE<0.01%$1,939.40.00007775$0.1507
BASE<0.01%$0.0255.2537$0.1313
BASE<0.01%$0.5520910.2341$0.1292
BASE<0.01%$0.00337135.5081$0.1196
BASE<0.01%$0.5183580.228$0.1181
BASE<0.01%$1.010.1104$0.1116
GNO6.70%$1,801.63.3$5,945.35
GNO0.06%$114.960.4704$54.07
GNO<0.01%$1.141.4267$1.63
GNO<0.01%$1.141.4267$1.63
GNO<0.01%$0.03938434.6203$1.36
GNO<0.01%$0.9999691.2158$1.22
GNO
xDai (XDAI)
<0.01%$0.9999690.6863$0.686269
GNO<0.01%$0.9999740.6716$0.6716
GNO<0.01%$0.9999740.4569$0.4568
GNO<0.01%$0.9733150.1648$0.1603
GNO<0.01%$2,158.40.00004707$0.1016
BSC1.65%$0.09101116,103.375$1,465.58
BSC0.61%$609.950.892$544.09
BSC0.56%$1,800.010.2773$499.06
BSC0.55%$2.26216.6304$488.54
BSC0.39%$93,253.720.00369124$344.22
BSC0.20%<$0.0000012,631,236,466.7135$181.77
BSC0.18%$1162.0398$162.04
BSC0.17%$0.01334511,043.0888$147.37
BSC0.14%$610.370.2041$124.55
BSC0.12%$0.999541109.0738$109.02
BSC0.08%$6.7410.2393$69.01
BSC0.05%$0.337955125.5302$42.42
BSC0.04%$0.99810639.2698$39.2
BSC0.04%$0.0109063,215.0765$35.06
BSC0.04%$43.380.8043$34.89
BSC0.04%$93,8980.00035628$33.45
BSC0.03%$2.0114.9897$30.13
BSC0.03%$0.071998308.0271$22.18
BSC0.02%$0.092123239.0546$22.02
BSC0.02%$0.143783145.8641$20.97
BSC0.02%$0.0131611,511.3389$19.89
BSC0.02%$0.000063315,842.7232$19.79
BSC0.02%$119.0407$19.05
BSC0.02%$0.018853900.1388$16.97
BSC0.02%$0.03112528.0811$16.43
BSC0.02%$0.026885588.9555$15.83
BSC0.02%$0.000108130,081.1789$14.04
BSC0.01%$0.000016789,706.2544$12.56
BSC0.01%$1.39.6229$12.54
BSC0.01%$0.00018268,111.4536$12.38
BSC0.01%$0.020002614.0624$12.28
BSC0.01%<$0.0000018,108,807,328.0775$11.89
BSC0.01%$0.013668859.8183$11.75
BSC0.01%$0.99998311.4649$11.46
BSC0.01%$151.330.0728$11.01
BSC0.01%$0.00014872,852.2054$10.81
BSC0.01%$0.24587942.7108$10.5
BSC0.01%$0.99843810.449$10.43
BSC0.01%<$0.000001771,430,606.3369$10.22
BSC0.01%$0.04222241.6952$10.2
BSC0.01%$0.0000091,086,148.9056$9.82
BSC0.01%$0.0024113,782.2884$9.12
BSC0.01%$0.1276570.8047$9.04
BSC0.01%$0.0044352,005.7867$8.9
BSC<0.01%$93,3740.00009246$8.63
BSC<0.01%$0.0000025,155,398.1734$8.3
BSC<0.01%<$0.0000011,421,299,520.0492$7.89
BSC<0.01%$0.0046461,693.5479$7.87
BSC<0.01%<$0.0000013,065,236,324,868.9526$7.66
BSC<0.01%$2.742.7004$7.4
BSC<0.01%$0.000008959,077.8614$7.21
BSC<0.01%$5.991.1743$7.03
BSC<0.01%$2.752.515$6.92
BSC<0.01%$4.111.6733$6.87
BSC<0.01%$0.011549593.3641$6.85
BSC<0.01%$5.511.1783$6.49
BSC<0.01%$0.8265437.5319$6.23
BSC<0.01%$0.20849629.4899$6.15
BSC<0.01%$0.07228384.2297$6.09
BSC<0.01%$3.111.9298$6
BSC<0.01%<$0.00000142,524,670.3113$5.94
BSC<0.01%$0.06148296.2058$5.91
BSC<0.01%<$0.000001487,871,614.9104$5.9
BSC<0.01%$0.025777228.4561$5.89
BSC<0.01%$0.41767313.7788$5.76
BSC<0.01%$0.997635.686$5.67
BSC<0.01%$2.072.7241$5.64
BSC<0.01%$0.20251727.6934$5.61
BSC<0.01%$0.0029551,859.3139$5.49
BSC<0.01%$0.005631967.1948$5.45
BSC<0.01%$0.10658650.6588$5.4
BSC<0.01%$0.00032415,650.0852$5.08
BSC<0.01%$0.00009154,723.4487$5
BSC<0.01%$0.4964489.4205$4.68
BSC<0.01%$0.05588182.9886$4.64
BSC<0.01%$15.660.2932$4.59
BSC<0.01%$0.0008155,600.006$4.57
BSC<0.01%$0.019203237.0817$4.55
BSC<0.01%$0.03098143.395$4.44
BSC<0.01%$0.000014325,299.6081$4.4
BSC<0.01%$0.0019882,179.7536$4.33
BSC<0.01%$0.0015632,640.8726$4.13
BSC<0.01%$0.5135967.8803$4.05
BSC<0.01%$164.310.0244$4.01
BSC<0.01%$0.06417762.3111$4
BSC<0.01%$0.0004868,089.647$3.93
BSC<0.01%$4.350.9001$3.92
BSC<0.01%$5.350.7252$3.88
BSC<0.01%$0.031527122.9794$3.88
BSC<0.01%$0.18837720.5065$3.86
BSC<0.01%$0.02013190.279$3.83
BSC<0.01%$0.019736193.4793$3.82
BSC<0.01%$0.0004658,156.2513$3.8
BSC<0.01%$0.00013327,024.1134$3.59
BSC<0.01%$9.560.3645$3.48
BSC<0.01%$0.008862392.0843$3.47
BSC<0.01%$0.12451627.77$3.46
BSC<0.01%$2.091.6336$3.41
BSC<0.01%$0.031876105.0387$3.35
BSC<0.01%$0.07789742.0187$3.27
BSC<0.01%$0.5729995.5729$3.19
BSC<0.01%$22.440.1413$3.17
BSC<0.01%$0.005779517.6437$2.99
BSC<0.01%$0.00009531,467.8581$2.97
BSC<0.01%$0.05386855.0925$2.97
BSC<0.01%$0.07684738.0845$2.93
BSC<0.01%$0.08313535.0703$2.92
BSC<0.01%$0.00448601.3618$2.69
BSC<0.01%$0.3380647.7113$2.61
BSC<0.01%<$0.00000161,569,609.966$2.57
BSC<0.01%$0.07343734.3649$2.52
BSC<0.01%$0.0004285,903.226$2.52
BSC<0.01%$0.02616295.0777$2.49
BSC<0.01%$2.50.9896$2.47
BSC<0.01%$0.000007345,672.2415$2.45
BSC<0.01%$0.22288810.8763$2.42
BSC<0.01%$0.00019612,293.1272$2.41
BSC<0.01%$356.90.00645393$2.3
BSC<0.01%$0.0005793,925.6044$2.27
BSC<0.01%$0.10743521.0452$2.26
BSC<0.01%$0.007067318.7109$2.25
BSC<0.01%$2.161.0409$2.25
BSC<0.01%$0.002509894.5655$2.24
BSC<0.01%$0.21083910.4674$2.21
BSC<0.01%$0.020913100.8823$2.11
BSC<0.01%$0.000007310,873.7968$2.1
BSC<0.01%$0.3432596.0602$2.08
BSC<0.01%$0.9248812.2306$2.06
BSC<0.01%$0.6580133.108$2.05
BSC<0.01%$0.007733261.0458$2.02
BSC<0.01%$177.710.011$1.95
BSC<0.01%$0.09079921.2367$1.93
BSC<0.01%$0.007997240.4605$1.92
BSC<0.01%$0.6047883.1685$1.92
BSC<0.01%$0.002019948.2137$1.91
BSC<0.01%$0.0009541,981.791$1.89
BSC<0.01%$0.03036660.4446$1.84
BSC<0.01%$0.02584770.9101$1.83
BSC<0.01%$0.000003543,855.2572$1.83
BSC<0.01%$0.02150685.0802$1.83
BSC<0.01%$0.0011731,529.1866$1.79
BSC<0.01%$0.0005523,197.9817$1.76
BSC<0.01%$0.2700136.5071$1.76
BSC<0.01%$0.010007175.4878$1.76
BSC<0.01%$0.01867893.102$1.74
BSC<0.01%$16.830.1026$1.73
BSC<0.01%$0.02567.5003$1.69
BSC<0.01%$0.01668698.2185$1.64
BSC<0.01%$0.01731493.7478$1.62
BSC<0.01%$0.000002662,546.6992$1.62
BSC<0.01%$0.6693492.4137$1.62
BSC<0.01%$1.491.0807$1.61
BSC<0.01%$0.000003498,939.1251$1.56
BSC<0.01%$0.04199637.0429$1.56
BSC<0.01%<$0.0000013,551,197.1764$1.55
BSC<0.01%$0.6832862.2468$1.54
BSC<0.01%$0.02318664.4789$1.5
BSC<0.01%$2.860.5211$1.49
BSC<0.01%$0.008665166.1626$1.44
BSC<0.01%$0.000014103,742.2749$1.41
BSC<0.01%$0.1803537.7977$1.41
BSC<0.01%$0.1782077.636$1.36
BSC<0.01%$0.025950.6314$1.31
BSC<0.01%$0.3312083.8106$1.26
BSC<0.01%$0.05640622.18$1.25
BSC<0.01%$0.0000011,945,161.989$1.25
BSC<0.01%$0.0005982,066.828$1.24
BSC<0.01%$0.3113863.9311$1.22
BSC<0.01%$0.00007217,031.9558$1.22
BSC<0.01%$0.004209288.8578$1.22
BSC<0.01%$0.0002265,343.7387$1.21
BSC<0.01%<$0.00000118,528,871.1116$1.2
BSC<0.01%$0.01588874.7406$1.19
BSC<0.01%$0.01348887.2842$1.18
BSC<0.01%$93,4510.00001245$1.16
BSC<0.01%$0.004677245.3291$1.15
BSC<0.01%$0.0003313,448.7063$1.14
BSC<0.01%$0.010017113.1395$1.13
BSC<0.01%<$0.000001239,891,756.2121$1.12
BSC<0.01%$0.04319725.7804$1.11
BSC<0.01%$0.08423213.0575$1.1
BSC<0.01%$0.2769483.8761$1.07
BSC<0.01%$0.009512108.6674$1.03
BSC<0.01%$0.01979951.6951$1.02
BSC<0.01%$0.02419342.0194$1.02
BSC<0.01%$0.01888252.1476$0.9846
BSC<0.01%<$0.0000019,855,764.0207$0.9589
BSC<0.01%$0.0001019,455.0365$0.9584
BSC<0.01%$14.990.0623$0.9336
BSC<0.01%$0.1476576.3105$0.9317
BSC<0.01%<$0.00000183,057,882,794.6911$0.9304
BSC<0.01%$0.003533262.5633$0.9275
BSC<0.01%<$0.0000017,319,737.5529$0.9203
BSC<0.01%$33.440.0274$0.9163
BSC<0.01%<$0.0000016,165,031,956.8236$0.9091
BSC<0.01%$0.1804325.034$0.9083
BSC<0.01%$0.0000959,469.292$0.9017
BSC<0.01%$0.0000011,398,201.2545$0.8941
BSC<0.01%$0.003898229.2854$0.8937
BSC<0.01%$0.1337356.5943$0.8818
BSC<0.01%$0.004878174.4187$0.8508
BSC<0.01%$0.0181146.0056$0.8331
BSC<0.01%$0.07398310.9315$0.8087
BSC<0.01%$666.120.00119399$0.7953
BSC<0.01%<$0.000001194,667,890,498.3453$0.7942
BSC<0.01%$0.6406971.1989$0.7681
BSC<0.01%$0.05774413.2946$0.7676
BSC<0.01%$0.001357559.2925$0.7591
BSC<0.01%$5.640.1335$0.7533
BSC<0.01%$0.01557347.1128$0.7336
BSC<0.01%$0.02928624.8934$0.729
BSC<0.01%$0.003448209.6768$0.723
BSC<0.01%<$0.0000013,819,904.8583$0.7184
BSC<0.01%<$0.000001710,081,679.8005$0.71
BSC<0.01%$0.0001414,911.8636$0.6933
BSC<0.01%$0.7052110.9488$0.6691
BSC<0.01%$0.0004791,393.923$0.6683
BSC<0.01%$0.01167457.2071$0.6678
BSC<0.01%$0.5388791.2303$0.6629
BSC<0.01%<$0.0000017,835,672.7068$0.6437
BSC<0.01%<$0.000001588,563,638.1595$0.6122
BSC<0.01%$0.01040158.7939$0.6115
BSC<0.01%$0.075668.038$0.6081
BSC<0.01%$0.01959230.0755$0.5892
BSC<0.01%$0.00003715,763.987$0.576
BSC<0.01%$92,3860.00000602$0.5561
BSC<0.01%$0.2491652.1926$0.5463
BSC<0.01%$0.000748729.0451$0.5454
BSC<0.01%$0.002755185.4444$0.5108
BSC<0.01%$0.0802326.3168$0.5068
BSC<0.01%<$0.0000012,496,901.9508$0.4923
BSC<0.01%$0.00003713,223.5431$0.49
BSC<0.01%$0.002489193.6684$0.482
BSC<0.01%$0.1136014.208$0.478
BSC<0.01%$0.0001343,564.0747$0.4765
BSC<0.01%$0.001698272.9129$0.4633
BSC<0.01%$0.000003133,953.6713$0.4608
BSC<0.01%$0.000989458.418$0.4533
BSC<0.01%$0.0000746,082.762$0.4518
BSC<0.01%$0.1225683.607$0.4421
BSC<0.01%$0.00869650.7493$0.4413
BSC<0.01%$0.2885381.5278$0.4408
BSC<0.01%$0.001034421.944$0.4361
BSC<0.01%$0.00795354.449$0.433
BSC<0.01%$0.1936922.2175$0.4295
BSC<0.01%$1.980.2164$0.4284
BSC<0.01%$0.01899622.5422$0.4282
BSC<0.01%$0.00486387.8984$0.4274
BSC<0.01%$0.02539816.7643$0.4257
BSC<0.01%$0.0476278.9138$0.4245
BSC<0.01%$0.1685152.5073$0.4225
BSC<0.01%$0.3107111.3469$0.4184
BSC<0.01%$0.001745232.731$0.4061
BSC<0.01%$0.01867521.5198$0.4018
BSC<0.01%<$0.0000013,573,455,187,837.415$0.3939
BSC<0.01%$0.001535256.1898$0.3932
BSC<0.01%$0.01543225.028$0.3862
BSC<0.01%$0.03192811.873$0.379
BSC<0.01%$0.0000137,995.2318$0.378
BSC<0.01%$0.0000218,638.3325$0.3751
BSC<0.01%$0.002825130.9849$0.37
BSC<0.01%$0.02194616.5116$0.3623
BSC<0.01%$0.1185013.0494$0.3613
BSC<0.01%$1,802.410.00019686$0.3548
BSC<0.01%$0.00002712,524.7802$0.3398
BSC<0.01%$0.1873561.8035$0.3378
BSC<0.01%$0.5643560.5968$0.3368
BSC<0.01%$0.000403821.9505$0.3314
BSC<0.01%$0.2608941.2672$0.3306
BSC<0.01%$0.9998590.3262$0.3261
BSC<0.01%$0.000971326.3666$0.3169
BSC<0.01%$0.092533.4174$0.3162
BSC<0.01%$0.01270924.4503$0.3107
BSC<0.01%$0.01022828.804$0.2946
BSC<0.01%$0.000362781.8536$0.2831
BSC<0.01%$0.5899650.4686$0.2764
BSC<0.01%$0.2132831.281$0.2732
BSC<0.01%$1,508.930.00018001$0.2716
BSC<0.01%$0.001129240.4827$0.2715
BSC<0.01%$0.0326228.0881$0.2638
BSC<0.01%$1.030.2496$0.2563
BSC<0.01%$0.01602415.9021$0.2548
BSC<0.01%$0.1970281.2853$0.2532
BSC<0.01%$0.0301618.3737$0.2525
BSC<0.01%$0.9839880.2541$0.25
BSC<0.01%<$0.0000011,216,162.4371$0.2474
BSC<0.01%$0.002029120.7831$0.245
BSC<0.01%$0.00314876.9492$0.2422
BSC<0.01%$0.002062116.6433$0.2405
BSC<0.01%$0.01544515.5366$0.2399
BSC<0.01%$0.000054,815.7212$0.2398
BSC<0.01%$40.880.00581775$0.2378
BSC<0.01%$0.0113420.7312$0.2351
BSC<0.01%$0.01167120.053$0.234
BSC<0.01%<$0.000001239,374,026.7776$0.2334
BSC<0.01%$0.000489475.6592$0.2326
BSC<0.01%$0.001801128.7066$0.2318
BSC<0.01%$5,132.780.00004354$0.2235
BSC<0.01%$0.0316257.0511$0.2229
BSC<0.01%$0.0223039.7219$0.2168
BSC<0.01%$0.001167184.3751$0.215
BSC<0.01%$0.00290272.3841$0.21
BSC<0.01%$0.0278647.3481$0.2047
BSC<0.01%$1,881.780.00010669$0.2007
BSC<0.01%<$0.0000012,399,646,590.5978$0.1993
BSC<0.01%$0.1417011.394$0.1975
BSC<0.01%$0.2720980.7233$0.1968
BSC<0.01%$0.00001216,112.2139$0.1955
BSC<0.01%$0.00729526.6691$0.1945
BSC<0.01%$0.00295161.894$0.1826
BSC<0.01%$0.0237527.4922$0.1779
BSC<0.01%$2.930.0584$0.1711
BSC<0.01%$0.000001133,592.5784$0.1696
BSC<0.01%$0.00901218.687$0.1684
BSC<0.01%<$0.000001110,945,398.557$0.1623
BSC<0.01%$0.00573927.9883$0.1606
BSC<0.01%$0.00562927.0678$0.1523
BSC<0.01%<$0.000001222,358,110,651.4647$0.1519
BSC<0.01%$0.7172920.21$0.1506
BSC<0.01%$0.00841217.5821$0.1478
BSC<0.01%$0.000248595.141$0.1475
BSC<0.01%<$0.000001615,901,569.853$0.1454
BSC<0.01%<$0.0000016,992,666,766.6272$0.1449
BSC<0.01%$0.0908521.5373$0.1396
BSC<0.01%$0.00192872.1503$0.1391
BSC<0.01%$0.0233535.8511$0.1366
BSC<0.01%$2.520.0542$0.1365
BSC<0.01%$0.00269649.257$0.1328
BSC<0.01%$0.0466042.8444$0.1325
BSC<0.01%$10.1311$0.1311
BSC<0.01%$1.260.1$0.126
BSC<0.01%$0.0000383,224.7999$0.1222
BSC<0.01%$0.999610.1208$0.1207
BSC<0.01%$0.00532822.3718$0.1191
BSC<0.01%$0.0013389.2908$0.1187
BSC<0.01%<$0.00000167,400,523,939.0429$0.1184
BSC<0.01%$7.880.0149$0.1172
BSC<0.01%$0.001122104.5115$0.1172
BSC<0.01%<$0.000001273,913.3635$0.1169
BSC<0.01%$0.0872171.3189$0.115
BSC<0.01%$0.00966111.7449$0.1134
BSC<0.01%$0.00462624.4229$0.1129
BSC<0.01%$0.0784181.4394$0.1128
BSC<0.01%$0.001039106.9857$0.1111
BSC<0.01%$0.000115950.5503$0.1089
BSC<0.01%$0.6086080.1776$0.108
BSC<0.01%$1.050.102$0.1074
BSC<0.01%$0.36720.2804$0.1029
BSC<0.01%$0.0069914.5388$0.1016
BSC<0.01%$0.2182560.461$0.1006
OP0.99%$1,798.710.4896$880.71
OP0.63%$1,801.640.3083$555.36
OP0.32%$0.99999280.0867$280.08
OP0.17%$0.75836199.4075$151.22
OP0.10%$93,2430.00094424$88.04
OP0.07%$93,3210.00061962$57.82
OP0.05%$0.9999946.7306$46.73
OP0.04%$137.7887$37.79
OP0.02%$2,156.560.00874574$18.86
OP<0.01%$0.050088127.2791$6.38
OP<0.01%$0.10050442.7712$4.3
OP<0.01%$2.731.4973$4.09
OP<0.01%$0.10348738.9633$4.03
OP<0.01%$10.890.3507$3.82
OP<0.01%$0.9999723.4436$3.44
OP<0.01%$0.22581111.3852$2.57
OP<0.01%$11.9525$1.96
OP<0.01%$0.0007461,885.8125$1.41
OP<0.01%$0.99981.2118$1.21
OP<0.01%$1,790.250.00044648$0.7993
OP<0.01%$0.7121920.6903$0.4916
OP<0.01%$0.00737839.5529$0.2918
OP<0.01%$0.245190.8162$0.2001
OP<0.01%$10.1947$0.1947
OP<0.01%$0.0001161,602.345$0.1854
OP<0.01%$14.990.0096969$0.1453
OP<0.01%$0.0027346.7662$0.1276
OP<0.01%$0.00487825.086$0.1223
OP<0.01%$0.2022820.5952$0.1203
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.