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

Contract

0x90CbE4BDd538D6e9b379bFF5fE72c3d67A521De5
Age:90D
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.50%$1,813.95.14$9,323.46
ETH7.62%$0.9999726,763.7105$6,763.52
ETH2.90%$2.85904.0452$2,572.05
ETH1.59%$93,7250.015$1,409.99
ETH1.45%$11,289.2119$1,289.21
ETH0.49%$15.1528.7462$435.51
ETH0.46%$8.8545.6914$404.19
ETH0.42%$0.2463591,525.0423$375.71
ETH0.42%$0.376729985.3003$371.19
ETH0.31%$1,813.90.1499$271.97
ETH0.28%$0.0266759,209.6214$245.67
ETH0.21%$1,810.950.1051$190.33
ETH0.21%$0.00847322,036.234$186.72
ETH0.20%<$0.0000013,372,487,768.905$174.88
ETH0.19%<$0.00000111,358,667,173.5534$168.59
ETH0.19%$0.0576712,901.3771$167.33
ETH0.18%$0.180079894.3919$161.06
ETH0.18%$1,808.330.0884$159.78
ETH0.17%<$0.00000124,003,496,136.6935$149.4
ETH0.16%$0.1114261,309.4388$145.91
ETH0.16%$3,328.540.0425$141.4
ETH0.16%$30.744.5394$139.56
ETH0.14%$0.563723228.1584$128.62
ETH0.13%$0.043572,605.635$113.53
ETH0.13%$4.4525.0047$111.27
ETH0.12%$0.0234154,607.3937$107.88
ETH0.12%$21.774.7968$104.43
ETH0.12%$0.0167096,114.1843$102.16
ETH0.11%$0.314565320.2314$100.73
ETH0.10%$1.4264.14$91.08
ETH0.10%$0.0000412,130,580.8711$87.52
ETH0.10%$0.0283743,076.9888$87.31
ETH0.10%$186.3864$86.47
ETH0.09%$0.172988481.4949$83.29
ETH0.09%$0.000325244,917.4772$79.66
ETH0.09%$2,016.680.0377$76.06
ETH0.08%$1.1761.2013$71.61
ETH0.08%$0.0000481,491,370.927$71.57
ETH0.08%$0.115082602.2738$69.31
ETH0.08%$0.0551721,209.286$66.72
ETH0.07%$161.150.4096$66.01
ETH0.07%$0.079834.4139$65.92
ETH0.07%$106.420.6075$64.65
ETH0.07%$0.214641296.5226$63.65
ETH0.07%$1.3546.3776$62.61
ETH0.07%$0.000001120,295,172.7586$61.13
ETH0.07%$0.028442,146.6931$61.05
ETH0.07%$0.356183170.4632$60.72
ETH0.07%$0.00000512,220,036.6073$60.44
ETH0.07%$0.0074127,969.0581$59.06
ETH0.07%$0.68321185.5382$58.44
ETH0.07%$26.892.1705$58.36
ETH0.06%$0.0450761,280.3561$57.71
ETH0.06%$1.2147.5626$57.66
ETH0.06%$0.73549778.0481$57.4
ETH0.06%$0.037191,535.3398$57.1
ETH0.06%$0.078244691.7982$54.13
ETH0.06%$59.540.8873$52.83
ETH0.06%$92,9710.00056201$52.25
ETH0.06%<$0.0000017,226,828,426.2352$51.92
ETH0.06%$0.066904765.496$51.21
ETH0.06%$0.0162813,140.2667$51.13
ETH0.05%$0.0195942,476.2554$48.52
ETH0.05%$0.0138633,415.141$47.34
ETH0.05%$0.273339168.7082$46.11
ETH0.05%$0.00090350,128.5803$45.26
ETH0.05%$9.594.632$44.42
ETH0.05%$0.167456263.9462$44.2
ETH0.05%$0.0000143,172,889.1471$43.44
ETH0.05%$0.99622443.1516$42.99
ETH0.05%$0.092224459.4101$42.37
ETH0.05%$0.0216761,926.0545$41.75
ETH0.05%$0.0024117,119.7154$41.25
ETH0.05%$0.0133623,083.4245$41.2
ETH0.05%$0.39857101.8899$40.61
ETH0.05%<$0.00000134,699,922,254,231.637$40.36
ETH0.05%<$0.0000011,118,495,740.2932$40.11
ETH0.05%<$0.00000111,893,885,992.8863$40.02
ETH0.04%$0.147791269.1218$39.77
ETH0.04%$0.138811283.6802$39.38
ETH0.04%$0.010913,559.0996$38.83
ETH0.04%$0.343595104.971$36.07
ETH0.04%$0.0012227,946.3605$34.1
ETH0.04%$0.0298521,140.2451$34.04
ETH0.04%$0.00228914,557.8943$33.32
ETH0.04%$0.93905135.4477$33.29
ETH0.04%$0.51475664.5413$33.22
ETH0.04%$0.27406120.3914$32.99
ETH0.04%$0.178524181.2161$32.35
ETH0.04%$0.00084137,205.5392$31.3
ETH0.04%$0.0000241,293,231.1248$31.23
ETH0.04%$0.0045466,848.8724$31.13
ETH0.03%$0.00272311,335.9099$30.87
ETH0.03%$2,176.320.0142$30.84
ETH0.03%$0.05114601.0687$30.74
ETH0.03%$0.05607537.9922$30.17
ETH0.03%$7.733.885$30.03
ETH0.03%$0.0063314,731.2371$29.95
ETH0.03%$0.99861929.95$29.91
ETH0.03%$0.9439130.6488$28.93
ETH0.03%$0.71219640.353$28.74
ETH0.03%$0.98830128.8872$28.55
ETH0.03%$0.036274783.765$28.43
ETH0.03%$0.042756647.8706$27.7
ETH0.03%$0.00050354,116.7565$27.23
ETH0.03%$0.094184288.4283$27.17
ETH0.03%$0.00158917,039.7859$27.08
ETH0.03%<$0.00000181,208,968.3732$26.95
ETH0.03%$71.730.3641$26.12
ETH0.03%$0.054879462.0813$25.36
ETH0.03%$0.106661233.3017$24.88
ETH0.03%$0.0043795,669.5427$24.83
ETH0.03%$0.141491169.2456$23.95
ETH0.03%$0.0146971,619.0331$23.79
ETH0.03%$0.2509694.332$23.67
ETH0.03%$0.0000046,472,169.3055$23.49
ETH0.03%$0.122407191.0493$23.39
ETH0.03%$0.187414123.3976$23.13
ETH0.03%$0.28735779.11$22.73
ETH0.03%$0.08485267.2844$22.68
ETH0.03%$0.094901237.6316$22.55
ETH0.02%$0.0186571,176.6555$21.95
ETH0.02%$0.41790451.8463$21.67
ETH0.02%$0.0062643,426.9$21.46
ETH0.02%$0.032056666.2293$21.36
ETH0.02%$0.02383886.8167$21.13
ETH0.02%$0.100718208.2745$20.98
ETH0.02%$2.0310.2913$20.89
ETH0.02%$0.0000092,248,216.2564$20.68
ETH0.02%$2,027.170.01$20.27
ETH0.02%$0.7069127.6447$19.54
ETH0.02%$0.99993818.8208$18.82
ETH0.02%$0.32080458.5036$18.77
ETH0.02%$1.1416.4467$18.75
ETH0.02%$17.681.0542$18.64
ETH0.02%<$0.000001384,952,362.8424$18.56
ETH0.02%$0.00147912,517.1902$18.52
ETH0.02%$36.1097$18.33
ETH0.02%$0.048137376.8234$18.14
ETH0.02%$0.00091419,806.5513$18.09
ETH0.02%$0.31549457.1794$18.04
ETH0.02%<$0.00000122,043,291,156,050.609$17.89
ETH0.02%$0.000058307,514.3034$17.74
ETH0.02%$0.071558245.4476$17.56
ETH0.02%<$0.00000170,825,229.5005$17.56
ETH0.02%$0.084128208.3516$17.53
ETH0.02%$1,809.730.00946692$17.13
ETH0.02%$1.0116.553$16.77
ETH0.02%$0.07733216.2922$16.73
ETH0.02%$0.004433,767.8489$16.69
ETH0.02%$0.02543654.0883$16.63
ETH0.02%<$0.00000175,064,754.4953$16.61
ETH0.02%$0.044985368.916$16.6
ETH0.02%$0.0062832,639.3199$16.58
ETH0.02%$0.00123213,343.948$16.44
ETH0.02%$0.81701519.8083$16.18
ETH0.02%$0.03983402.9503$16.05
ETH0.02%$0.0058392,747.5266$16.04
ETH0.02%$0.57200227.4722$15.71
ETH0.02%$0.00125212,351.1613$15.46
ETH0.02%$0.34164944.5281$15.21
ETH0.02%$0.0126361,191.0161$15.05
ETH0.02%$2.885.2051$14.99
ETH0.02%$2,042.530.00730412$14.92
ETH0.02%$6.742.1947$14.79
ETH0.02%$0.0031784,637.5472$14.74
ETH0.02%$0.0033374,275.4795$14.27
ETH0.02%$0.1728680.2931$13.88
ETH0.02%$0.00014495,871.9587$13.8
ETH0.02%$10.351.3317$13.78
ETH0.02%$0.62999721.6248$13.62
ETH0.02%$0.0000131,036,154.3846$13.56
ETH0.01%$0.72808418.2482$13.29
ETH0.01%$0.091215145.1053$13.24
ETH0.01%$0.20757462.4475$12.96
ETH0.01%<$0.000001321,663,377.1224$12.94
ETH0.01%$0.030919413.0654$12.77
ETH0.01%$0.093838135.3826$12.7
ETH0.01%$0.0060912,061.5057$12.56
ETH0.01%$0.68179818.4019$12.55
ETH0.01%$0.0104371,186.8662$12.39
ETH0.01%$0.1890965.1885$12.33
ETH0.01%<$0.000001210,504,516.5527$12.28
ETH0.01%$4.552.6978$12.28
ETH0.01%$0.55821321.9756$12.27
ETH0.01%$0.20289159.982$12.17
ETH0.01%$0.17470369.5294$12.15
ETH0.01%$0.00029141,244.4075$12
ETH0.01%$0.0077081,555.0587$11.99
ETH0.01%$0.000058202,092.1188$11.65
ETH0.01%$4.542.5509$11.58
ETH0.01%$0.018147627.3099$11.38
ETH0.01%$0.0055961,999.9351$11.19
ETH0.01%$0.00000114,955,275.2809$11.16
ETH0.01%$0.0058251,894.4737$11.04
ETH0.01%$0.00024245,328.7149$10.97
ETH0.01%$0.36860129.4359$10.85
ETH0.01%<$0.0000013,349,185,467.444$10.67
ETH0.01%$0.20886850.5109$10.55
ETH0.01%$0.91281211.3687$10.38
ETH0.01%<$0.000001228,860,667.027$10.33
ETH0.01%$0.000066154,911.8661$10.28
ETH0.01%$0.26049939.069$10.18
ETH0.01%$0.027386369.4645$10.12
ETH0.01%$0.00003340,399.9999$10.08
ETH0.01%<$0.00000179,163,870.6062$10.05
ETH0.01%$0.0000033,635,434.7524$10.01
ETH0.01%$0.07358135.649$9.98
ETH0.01%<$0.000001144,234,490.2313$9.95
ETH0.01%<$0.0000014,200,000,000$9.94
ETH0.01%$0.30039732.9514$9.9
ETH0.01%$4.612.1112$9.73
ETH0.01%$0.094744102.6509$9.73
ETH0.01%$0.045112214.7004$9.69
ETH0.01%$3,325.70.002902$9.65
ETH0.01%$1.317.3188$9.59
ETH0.01%$0.19022550.0927$9.53
ETH0.01%$1.27.8829$9.46
ETH0.01%$0.0001852,532.6871$9.46
ETH0.01%$0.9999379.4032$9.4
ETH0.01%<$0.00000117,415,842,158.6329$9.39
ETH0.01%$0.00006155,355.2785$9.26
ETH0.01%$0.022178414.8915$9.2
ETH0.01%$0.0025943,533.3034$9.17
ETH0.01%$0.000067136,222.7278$9.07
ETH0.01%$24.80.3639$9.02
ETH0.01%$0.86730610.3917$9.01
ETH0.01%$93,9120.00009457$8.88
ETH<0.01%$0.00000113,972,248.6316$8.79
ETH<0.01%$0.54447715.7462$8.57
ETH<0.01%$0.0008539,880.5685$8.43
ETH<0.01%$0.0023183,632.8143$8.42
ETH<0.01%<$0.000001129,865,764.6$8.36
ETH<0.01%<$0.00000119,496,614.7805$8.35
ETH<0.01%$0.00000111,936,626.4432$8.33
ETH<0.01%$0.000024351,464.4258$8.32
ETH<0.01%$0.0005515,077.5526$8.3
ETH<0.01%$0.027588299.9598$8.28
ETH<0.01%$5,867.270.00140407$8.24
ETH<0.01%$0.0038252,141.3314$8.19
ETH<0.01%$0.013948578.3415$8.07
ETH<0.01%$0.1406856.9362$8.01
ETH<0.01%$0.0048571,598.9851$7.77
ETH<0.01%$0.0021873,533.1137$7.73
ETH<0.01%$0.11584765.6829$7.61
ETH<0.01%$0.0014365,221.4836$7.5
ETH<0.01%$178.670.0417$7.46
ETH<0.01%$0.11393664.0012$7.29
ETH<0.01%$0.2234431.7872$7.1
ETH<0.01%$0.0039431,800$7.1
ETH<0.01%$0.023287302.4729$7.04
ETH<0.01%<$0.00000149,214,200.9468$6.94
ETH<0.01%$0.016708413.3976$6.91
ETH<0.01%$0.0023452,930.4119$6.87
ETH<0.01%$0.3322720.5947$6.84
ETH<0.01%$0.0010026,819.6382$6.83
ETH<0.01%$0.0013834,927.9306$6.82
ETH<0.01%$0.0000041,712,359.4924$6.8
ETH<0.01%$0.694759.7383$6.77
ETH<0.01%$0.029205230.6028$6.73
ETH<0.01%$5,167.850.00129378$6.69
ETH<0.01%$0.00057211,617.317$6.65
ETH<0.01%$0.031533206.0196$6.5
ETH<0.01%$0.0000019,908,761.5227$6.44
ETH<0.01%$0.30191621.3399$6.44
ETH<0.01%$0.21806229.3283$6.4
ETH<0.01%$0.010586603.693$6.39
ETH<0.01%$0.0018643,426.6107$6.39
ETH<0.01%$0.026991234.9676$6.34
ETH<0.01%$0.006863918.5622$6.3
ETH<0.01%$0.0054481,153.6247$6.28
ETH<0.01%$0.031046201.615$6.26
ETH<0.01%$0.1080656.5316$6.11
ETH<0.01%$0.06649891.6603$6.1
ETH<0.01%$0.0010765,606.094$6.03
ETH<0.01%$0.00013145,465.7408$5.95
ETH<0.01%$0.0029811,962.2114$5.85
ETH<0.01%$0.00018231,817.409$5.8
ETH<0.01%$0.016634336.6136$5.6
ETH<0.01%$0.010812517.5964$5.6
ETH<0.01%$0.00008961,997.3857$5.55
ETH<0.01%$0.0013973,947.069$5.51
ETH<0.01%$0.037271147.252$5.49
ETH<0.01%$0.51285410.6557$5.46
ETH<0.01%$0.0008926,085.4152$5.43
ETH<0.01%$0.11907545.3539$5.4
ETH<0.01%$0.1751130.6898$5.37
ETH<0.01%$0.01109483.0887$5.36
ETH<0.01%$0.6119188.7157$5.33
ETH<0.01%$0.0000013,652,536.2332$5.28
ETH<0.01%$0.6747597.8169$5.27
ETH<0.01%$0.17245930.3947$5.24
ETH<0.01%$0.20886825.0621$5.23
ETH<0.01%$20.130.2593$5.22
ETH<0.01%<$0.0000011,058,657,192.1424$5.21
ETH<0.01%$0.005272986.8868$5.2
ETH<0.01%$0.036665139.6146$5.12
ETH<0.01%$0.01451349.3272$5.07
ETH<0.01%<$0.000001877,815,950.5989$5.07
ETH<0.01%$0.19756125.4138$5.02
ETH<0.01%$0.5057449.918$5.02
ETH<0.01%$0.000011442,788.5454$5.01
ETH<0.01%$0.0015293,257.2649$4.98
ETH<0.01%$0.007282682.1386$4.97
ETH<0.01%$0.015875312.5849$4.96
ETH<0.01%$0.000014364,508.5843$4.96
ETH<0.01%$14.8189$4.82
ETH<0.01%$0.000027179,196.9239$4.78
ETH<0.01%$1,895.560.00249765$4.73
ETH<0.01%$0.00017926,368.1474$4.72
ETH<0.01%$114.580.0411$4.71
ETH<0.01%$0.009934470.7145$4.68
ETH<0.01%<$0.0000013,023,386,998.3823$4.58
ETH<0.01%$0.06338672.181$4.58
ETH<0.01%$0.007948573.8812$4.56
ETH<0.01%$0.005704798.4299$4.55
ETH<0.01%$0.7979645.7052$4.55
ETH<0.01%$0.00021920,599.395$4.51
ETH<0.01%$0.000022200,055.65$4.44
ETH<0.01%$0.07131762.1832$4.43
ETH<0.01%$0.006428689.6226$4.43
ETH<0.01%$0.09155947.06$4.31
ETH<0.01%$0.30153614.1666$4.27
ETH<0.01%$0.0009644,373.8714$4.22
ETH<0.01%$0.525777.9895$4.2
ETH<0.01%$0.00026815,473.142$4.14
ETH<0.01%$0.19683620.5649$4.05
ETH<0.01%$6.570.6115$4.02
ETH<0.01%$0.8694174.5743$3.98
ETH<0.01%$0.0007635,119.9911$3.9
ETH<0.01%$0.7131785.4633$3.9
ETH<0.01%$0.11048735.0041$3.87
ETH<0.01%$0.019583197.086$3.86
ETH<0.01%<$0.00000114,405,947,890.6713$3.83
ETH<0.01%$0.01057359.9096$3.8
ETH<0.01%$1.013.7638$3.79
ETH<0.01%$0.008618439.5502$3.79
ETH<0.01%$0.004185898.38$3.76
ETH<0.01%$0.016687224.7484$3.75
ETH<0.01%$0.004373846.023$3.7
ETH<0.01%$1.382.674$3.69
ETH<0.01%$0.0011283,250.572$3.67
ETH<0.01%$0.9998733.666$3.67
ETH<0.01%$0.06746253.7708$3.63
ETH<0.01%$0.00010134,844.179$3.53
ETH<0.01%$0.09128538.4195$3.51
ETH<0.01%$0.665695.2407$3.49
ETH<0.01%$0.13788125.0872$3.46
ETH<0.01%$0.0009373,673.5176$3.44
ETH<0.01%$1,931.360.00177658$3.43
ETH<0.01%$0.025357134.8228$3.42
ETH<0.01%$3,316.880.00102673$3.41
ETH<0.01%$0.06545851.9188$3.4
ETH<0.01%$0.0025241,345.961$3.4
ETH<0.01%$0.000418,286.1044$3.4
ETH<0.01%$0.0007154,675.9695$3.34
ETH<0.01%$0.11973527.8006$3.33
ETH<0.01%$0.07435144.734$3.33
ETH<0.01%$0.0020671,578.5127$3.26
ETH<0.01%$0.9095653.4992$3.18
ETH<0.01%$0.00987308.7872$3.05
ETH<0.01%$0.0003428,875.173$3.04
ETH<0.01%$0.023998124.284$2.98
ETH<0.01%$0.17819516.697$2.98
ETH<0.01%$0.09158532.396$2.97
ETH<0.01%$0.002979986.5208$2.94
ETH<0.01%$0.006717432.3731$2.9
ETH<0.01%$0.20269414.3075$2.9
ETH<0.01%$0.7935843.6099$2.86
ETH<0.01%$0.9579082.9715$2.85
ETH<0.01%$0.18813915$2.82
ETH<0.01%$0.26541610.5037$2.79
ETH<0.01%$0.00003480,820.0916$2.78
ETH<0.01%$0.7342613.7733$2.77
ETH<0.01%$0.016172169.5693$2.74
ETH<0.01%$2.880.9464$2.73
ETH<0.01%$0.0013891,950.255$2.71
ETH<0.01%$0.0005634,782.519$2.69
ETH<0.01%$0.6195424.2995$2.66
ETH<0.01%$1.152.314$2.66
ETH<0.01%$0.006883385.8503$2.66
ETH<0.01%$0.02768995.6728$2.65
ETH<0.01%$0.0000021,101,160.4087$2.63
ETH<0.01%$0.015927164.3386$2.62
ETH<0.01%$0.0015981,624.5525$2.6
ETH<0.01%$0.1666715.4835$2.58
ETH<0.01%$6.180.41$2.53
ETH<0.01%$0.00018213,905.2682$2.53
ETH<0.01%$0.021853115.482$2.52
ETH<0.01%$0.0517848.5301$2.51
ETH<0.01%$0.03255976.524$2.49
ETH<0.01%$0.0007073,516.9802$2.49
ETH<0.01%$0.0075325.905$2.44
ETH<0.01%$0.020529117.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.010073232.4913$2.34
ETH<0.01%$0.003737619.984$2.32
ETH<0.01%$0.0016431,408.3143$2.31
ETH<0.01%$43.630.052$2.27
ETH<0.01%$0.0004824,694.0212$2.26
ETH<0.01%$0.9980692.2616$2.26
ETH<0.01%$0.1710613.1942$2.26
ETH<0.01%<$0.00000142,352,269.9505$2.26
ETH<0.01%$0.15780114.2976$2.26
ETH<0.01%$0.15379414.5476$2.24
ETH<0.01%$0.3165447.0094$2.22
ETH<0.01%$0.07310830.1249$2.2
ETH<0.01%$0.015902137.2566$2.18
ETH<0.01%$1.032.1026$2.17
ETH<0.01%<$0.00000150,009,730.2367$2.17
ETH<0.01%$0.002838759.7793$2.16
ETH<0.01%$1.081.9927$2.14
ETH<0.01%$0.0611235.0564$2.14
ETH<0.01%$0.00675315.8616$2.13
ETH<0.01%$0.03434561.7085$2.12
ETH<0.01%$0.02309791.5885$2.12
ETH<0.01%$0.0001514,074.8918$2.11
ETH<0.01%$0.0000021,269,749.3285$2.1
ETH<0.01%$0.00002584,548.0277$2.09
ETH<0.01%$0.000005392,206.2812$2.07
ETH<0.01%$0.2178599.3202$2.03
ETH<0.01%$0.5721073.5476$2.03
ETH<0.01%$0.02344186.5307$2.03
ETH<0.01%$0.22848.8779$2.03
ETH<0.01%$0.0016221,239.7682$2.01
ETH<0.01%$0.02610276.621$2
ETH<0.01%$0.04709842.4264$2
ETH<0.01%$0.003057648.7864$1.98
ETH<0.01%$0.003886508.177$1.97
ETH<0.01%$0.04309845.75$1.97
ETH<0.01%$0.0014221,362.1203$1.94
ETH<0.01%$28.650.0674$1.93
ETH<0.01%$0.0018611,037.1468$1.93
ETH<0.01%$0.017202111.2998$1.91
ETH<0.01%$0.006096302.5351$1.84
ETH<0.01%$0.002141861.0283$1.84
ETH<0.01%$0.008652212.5023$1.84
ETH<0.01%$0.014685125.0333$1.84
ETH<0.01%$0.0252272.0792$1.82
ETH<0.01%$2.540.7095$1.8
ETH<0.01%$0.0014451,240.551$1.79
ETH<0.01%$0.012798139.9702$1.79
ETH<0.01%$0.0002198,177.0134$1.79
ETH<0.01%$0.0000725,505.3597$1.79
ETH<0.01%$0.006997255.4389$1.79
ETH<0.01%$1.311.3549$1.77
ETH<0.01%$0.03287653.9569$1.77
ETH<0.01%$0.3883954.5381$1.76
ETH<0.01%$0.0000012,596,780.467$1.76
ETH<0.01%$0.2011998.6796$1.75
ETH<0.01%$0.0014521,195.728$1.74
ETH<0.01%$0.3660354.6675$1.71
ETH<0.01%$0.03077855.4192$1.71
ETH<0.01%$0.00003253,288.7112$1.68
ETH<0.01%<$0.0000013,773,899,543.488$1.67
ETH<0.01%$0.0011651,429.2583$1.67
ETH<0.01%$0.00503329.307$1.66
ETH<0.01%$0.05896728.0191$1.65
ETH<0.01%$0.006166261.8511$1.61
ETH<0.01%$0.0003614,470.1553$1.61
ETH<0.01%$0.0009921,618.2637$1.61
ETH<0.01%$0.13424111.9252$1.6
ETH<0.01%$0.13294211.9736$1.59
ETH<0.01%$0.05053530.9946$1.57
ETH<0.01%$0.00009516,522.029$1.56
ETH<0.01%$0.0001858,442.684$1.56
ETH<0.01%$0.009625161.5034$1.55
ETH<0.01%$0.3144614.9012$1.54
ETH<0.01%$1,858.220.00082935$1.54
ETH<0.01%$0.011262136.4815$1.54
ETH<0.01%$0.5296762.8999$1.54
ETH<0.01%$0.0000012,252,368.3192$1.46
ETH<0.01%$0.07608119.0881$1.45
ETH<0.01%$0.2833375.099$1.44
ETH<0.01%$0.0002415,938.7363$1.43
ETH<0.01%$0.010519135.1273$1.42
ETH<0.01%$0.0010271,337.7158$1.37
ETH<0.01%$0.010641125.3424$1.33
ETH<0.01%$0.02086763.7368$1.33
ETH<0.01%$0.1685777.8325$1.32
ETH<0.01%$0.2357765.5914$1.32
ETH<0.01%$0.0004572,879.4323$1.32
ETH<0.01%$4.680.2809$1.31
ETH<0.01%$0.09093514.3838$1.31
ETH<0.01%$8.930.1443$1.29
ETH<0.01%$0.0004852,651.5189$1.29
ETH<0.01%$0.01947265.7275$1.28
ETH<0.01%$0.00001130,547.2324$1.27
ETH<0.01%$0.01392691.2983$1.27
ETH<0.01%$0.0005392,355.039$1.27
ETH<0.01%$2.10.6041$1.27
ETH<0.01%$0.0003433,662.8665$1.25
ETH<0.01%$0.3582873.5024$1.25
ETH<0.01%$0.4470592.7599$1.23
ETH<0.01%$0.2352165.2436$1.23
ETH<0.01%$0.0008891,385.5434$1.23
ETH<0.01%$0.00167728.8689$1.22
ETH<0.01%$8.190.148$1.21
ETH<0.01%$0.0003793,192.3867$1.21
ETH<0.01%$0.004031298.2824$1.2
ETH<0.01%$0.06801417.4508$1.19
ETH<0.01%$0.0011351,036.0202$1.18
ETH<0.01%$0.007055165.7669$1.17
ETH<0.01%$0.0171168.3441$1.17
ETH<0.01%$0.003437334.8835$1.15
ETH<0.01%$0.11212310.2453$1.15
ETH<0.01%$0.005579203.4559$1.13
ETH<0.01%$0.0149474.3157$1.11
ETH<0.01%$0.08215713.3732$1.1
ETH<0.01%$0.000005241,968.6745$1.1
ETH<0.01%$0.0001357,964.8048$1.08
ETH<0.01%$0.2298784.6729$1.07
ETH<0.01%$0.000003321,049.6847$1.07
ETH<0.01%<$0.0000013,004,136.1399$1.07
ETH<0.01%$0.0001477,223.027$1.06
ETH<0.01%$0.0001367,795.3416$1.06
ETH<0.01%$0.010321102.3484$1.06
ETH<0.01%$0.0282736.5563$1.03
ETH<0.01%$0.002726374.973$1.02
ETH<0.01%$0.4719662.1536$1.02
ETH<0.01%$0.0000011,566,743.1688$1
ETH<0.01%$0.820341.22$1
ETH<0.01%$0.0003243,064.1652$0.9933
ETH<0.01%$0.01248479.3529$0.9906
ETH<0.01%$93,5460.00001002$0.9373
ETH<0.01%$0.05258517.7261$0.9321
ETH<0.01%$0.4224412.1918$0.9259
ETH<0.01%$0.7424881.2306$0.9136
ETH<0.01%$6.040.1491$0.9007
ETH<0.01%$0.0004841,857.4382$0.8995
ETH<0.01%$0.06498713.726$0.892
ETH<0.01%$0.08728210.1388$0.8849
ETH<0.01%$0.012271.2298$0.869
ETH<0.01%$0.002147403.9538$0.8673
ETH<0.01%$0.0001177,435.1659$0.8664
ETH<0.01%$0.03932321.96$0.8635
ETH<0.01%$0.03146527.17$0.8549
ETH<0.01%$0.0002723,131.5381$0.8525
ETH<0.01%$0.003404247.4098$0.842
ETH<0.01%$0.0450618.6625$0.8409
ETH<0.01%$0.0330524.9721$0.8253
ETH<0.01%<$0.00000170,462,814.996$0.8235
ETH<0.01%$0.0961158.5603$0.8227
ETH<0.01%$0.0002024,067.1974$0.8212
ETH<0.01%$0.001167697.6591$0.8139
ETH<0.01%$0.0005631,436.4884$0.8083
ETH<0.01%$0.001966409.9898$0.806
ETH<0.01%$0.0000810,045.293$0.8049
ETH<0.01%$31.440.0251$0.7876
ETH<0.01%$1,515.090.00051767$0.7843
ETH<0.01%$0.01403754.7598$0.7686
ETH<0.01%$0.06007712.794$0.7686
ETH<0.01%$0.006089126.108$0.7678
ETH<0.01%$0.01984238.2892$0.7597
ETH<0.01%$0.2738692.7718$0.7591
ETH<0.01%$10.7506$0.7506
ETH<0.01%$0.06407911.693$0.7492
ETH<0.01%$0.00002431,318.9885$0.7463
ETH<0.01%$1.150.636$0.7313
ETH<0.01%$0.8513820.8556$0.7284
ETH<0.01%$0.001532464.6383$0.7116
ETH<0.01%$0.003385205.6274$0.696
ETH<0.01%$0.04740514.6731$0.6955
ETH<0.01%$0.02365129.4$0.6953
ETH<0.01%$0.03469820.0323$0.695
ETH<0.01%$0.001524446.6236$0.6807
ETH<0.01%$0.01610442.0478$0.6771
ETH<0.01%$0.003507192.6119$0.6754
ETH<0.01%$0.1416674.7357$0.6708
ETH<0.01%$0.002176299.7483$0.6523
ETH<0.01%$0.0002392,716.815$0.6482
ETH<0.01%$0.003396189.5613$0.6437
ETH<0.01%$0.4018611.5982$0.6422
ETH<0.01%$0.00973865.3448$0.6363
ETH<0.01%$0.00708289.6685$0.635
ETH<0.01%$0.002115293.4568$0.6206
ETH<0.01%$0.0005051,216.3635$0.6147
ETH<0.01%$0.0002942,076.9234$0.6112
ETH<0.01%<$0.000001218,494,402.2159$0.6069
ETH<0.01%$0.2221422.7082$0.6016
ETH<0.01%$0.002408249.4889$0.6007
ETH<0.01%<$0.000001327,291,333.2845$0.5969
ETH<0.01%$0.00942662.6637$0.5906
ETH<0.01%$0.0921956.3882$0.5889
ETH<0.01%$0.001738338.165$0.5877
ETH<0.01%$0.0003091,885.3692$0.5832
ETH<0.01%$52.40.011$0.5777
ETH<0.01%$0.002611210.3059$0.549
ETH<0.01%$0.9991050.5481$0.5475
ETH<0.01%$0.004344125.5922$0.5456
ETH<0.01%$17.260.0315$0.543
ETH<0.01%$0.0001593,302.1818$0.5246
ETH<0.01%$0.2726671.9148$0.522
ETH<0.01%$19.20.027$0.5175
ETH<0.01%$0.002123241.0665$0.5118
ETH<0.01%$0.02726118.108$0.4936
ETH<0.01%$0.02608918.8748$0.4924
ETH<0.01%$0.00684271.6744$0.4903
ETH<0.01%$0.04099911.8492$0.4858
ETH<0.01%$0.00001630,618.1291$0.4849
ETH<0.01%$0.09235.1463$0.475
ETH<0.01%$1,987.660.00023768$0.4724
ETH<0.01%$1,809.420.00025535$0.462
ETH<0.01%$0.001022444.4753$0.4542
ETH<0.01%$0.2463711.7959$0.4424
ETH<0.01%$0.00000947,765.253$0.4423
ETH<0.01%$1.330.3296$0.4384
ETH<0.01%$0.0000469,586.704$0.4382
ETH<0.01%$0.01545328.2455$0.4364
ETH<0.01%$2.430.1758$0.4271
ETH<0.01%$0.00001823,745.7217$0.4245
ETH<0.01%$1.210.3502$0.4237
ETH<0.01%$0.02134419.8455$0.4235
ETH<0.01%$0.01960321.3472$0.4184
ETH<0.01%$0.00041978.8493$0.4009
ETH<0.01%$0.3519511.1353$0.3995
ETH<0.01%$0.000002237,452.4279$0.3995
ETH<0.01%$15,092.250.00002642$0.3987
ETH<0.01%$9.040.0438$0.3956
ETH<0.01%$0.01264131.2651$0.3952
ETH<0.01%$0.00427190$0.3844
ETH<0.01%$0.1833652.0945$0.384
ETH<0.01%$0.000001327,713.1347$0.3768
ETH<0.01%$0.0002531,485.0793$0.3763
ETH<0.01%$0.0000419,032.2103$0.3722
ETH<0.01%$0.9996040.3699$0.3698
ETH<0.01%$0.2880561.2225$0.3521
ETH<0.01%$0.000392868.3866$0.3401
ETH<0.01%$0.000967350.6511$0.339
ETH<0.01%$0.000771429.2628$0.3311
ETH<0.01%$0.0850773.8835$0.3303
ETH<0.01%$0.001691193.9708$0.3279
ETH<0.01%$0.00339695.4915$0.3242
ETH<0.01%$0.001121281.094$0.315
ETH<0.01%$93,8790.00000335$0.3144
ETH<0.01%$0.000333943.4723$0.3144
ETH<0.01%$0.4627670.6769$0.3132
ETH<0.01%$0.002371129.8033$0.3077
ETH<0.01%$0.002698111.6446$0.3011
ETH<0.01%$0.0001462,026.8591$0.2967
ETH<0.01%$0.0001342,192.0432$0.2939
ETH<0.01%$0.089873.2707$0.2939
ETH<0.01%$0.000499580.2264$0.2893
ETH<0.01%$0.1982351.4281$0.283
ETH<0.01%$2.270.1228$0.2787
ETH<0.01%$0.9996360.2775$0.2774
ETH<0.01%$0.0764513.6192$0.2766
ETH<0.01%$0.00000466,132$0.2598
ETH<0.01%$0.001688152.2352$0.2569
ETH<0.01%$10.2553$0.2553
ETH<0.01%$0.000418599.517$0.2503
ETH<0.01%$0.002001125.1558$0.2503
ETH<0.01%<$0.000001335,574,268.7172$0.2483
ETH<0.01%$0.01638115.0407$0.2463
ETH<0.01%$0.4699910.5009$0.2354
ETH<0.01%$0.0000842,780.9024$0.2343
ETH<0.01%$611.320.00036746$0.2246
ETH<0.01%$8,252.320.00002714$0.2239
ETH<0.01%$0.00740330.0587$0.2225
ETH<0.01%$0.0442664.8598$0.2151
ETH<0.01%$0.00001414,425.9823$0.2062
ETH<0.01%$3.510.0572$0.2009
ETH<0.01%$0.01976510.1512$0.2006
ETH<0.01%$0.0148413.4987$0.2003
ETH<0.01%$0.00400549.9692$0.2001
ETH<0.01%$0.0009221.4451$0.1992
ETH<0.01%$0.01163416.8537$0.196
ETH<0.01%$0.0476614.1022$0.1955
ETH<0.01%$0.000958202.6034$0.1941
ETH<0.01%$0.0216578.8181$0.1909
ETH<0.01%$0.00483938.2122$0.1848
ETH<0.01%$0.0372344.9$0.1824
ETH<0.01%$0.0340425.2313$0.178
ETH<0.01%$0.0345334.9682$0.1715
ETH<0.01%$0.00416440.4316$0.1683
ETH<0.01%$0.000111,524.6155$0.1678
ETH<0.01%$0.001176142.7827$0.1678
ETH<0.01%$0.1431611.1412$0.1633
ETH<0.01%$10.1625$0.1628
ETH<0.01%$0.000593270.9257$0.1607
ETH<0.01%<$0.0000013,558,115.116$0.1564
ETH<0.01%$0.00906916.5794$0.1503
ETH<0.01%$0.7273740.2015$0.1465
ETH<0.01%$0.00000818,967.2434$0.143
ETH<0.01%$0.3288770.4349$0.143
ETH<0.01%$0.1177261.2083$0.1422
ETH<0.01%$0.00172179.1901$0.1363
ETH<0.01%$0.000133988.7193$0.1312
ETH<0.01%$0.00220259.3164$0.1306
ETH<0.01%$9.540.0136$0.1298
ETH<0.01%$1,953.930.00006625$0.1294
ETH<0.01%$0.0091913.2427$0.1217
ETH<0.01%$0.0390543.0607$0.1195
ETH<0.01%$569.790.00020918$0.1191
ETH<0.01%$0.000454260.5356$0.1183
ETH<0.01%$0.0169876.8966$0.1171
ETH<0.01%$2.030.053$0.1077
ETH<0.01%$0.002739.0406$0.1054
ETH<0.01%$0.0204795.126$0.1049
ARB9.32%$18,276.3264$8,276.33
ARB4.12%$1,812.432.0197$3,660.62
ARB1.99%$93,8300.0188$1,766.32
ARB0.61%$1,814.30.3009$545.96
ARB0.31%$167.81.6337$274.13
ARB0.26%$1,814.610.1297$235.29
ARB0.26%$1229.8428$229.84
ARB0.15%$1132.7711$132.77
ARB0.11%$15.146.2763$95.02
ARB0.08%$2,176.720.0312$68.02
ARB0.05%$0.0319681,304.5172$41.7
ARB0.03%$0.33262488.5276$29.45
ARB0.03%$122.8182$22.82
ARB0.02%$121.0319$21.03
ARB0.02%$15.141.3591$20.58
ARB0.02%$21.770.9175$19.97
ARB0.02%$2.765.8542$16.16
ARB0.02%$0.99993715.8292$15.83
ARB0.01%$0.000016647,959.6806$10.28
ARB<0.01%$43.660.1881$8.21
ARB<0.01%$0.0070941,142.9247$8.11
ARB<0.01%$0.00058611,781.8595$6.91
ARB<0.01%$0.000024280,669.7608$6.67
ARB<0.01%$0.21611629.846$6.45
ARB<0.01%$0.00056410,916.9386$6.16
ARB<0.01%$3.511.5086$5.3
ARB<0.01%<$0.00000113,263,509,025.7531$3.98
ARB<0.01%$0.6834725.8052$3.97
ARB<0.01%$0.02999111.4082$3.34
ARB<0.01%$0.898983.6169$3.25
ARB<0.01%$0.9999933.0331$3.03
ARB<0.01%$1.112.5899$2.87
ARB<0.01%$0.9998642.6711$2.67
ARB<0.01%$383.650.00634329$2.43
ARB<0.01%$12.3953$2.4
ARB<0.01%$6.050.3622$2.19
ARB<0.01%$93,8210.00001823$1.71
ARB<0.01%$93,9950.00001531$1.44
ARB<0.01%$2.040.6935$1.41
ARB<0.01%$0.00010811,460.6857$1.24
ARB<0.01%$93,3270.00001251$1.17
ARB<0.01%$11.1568$1.16
ARB<0.01%$0.006543156.2754$1.02
ARB<0.01%$0.004867208.1864$1.01
ARB<0.01%$0.01465568.6671$1.01
ARB<0.01%$0.8014721.2299$0.9856
ARB<0.01%$0.0002823,391.2508$0.9571
ARB<0.01%$0.01510254.6335$0.825
ARB<0.01%$0.2031263.8346$0.7789
ARB<0.01%$0.9879520.7584$0.7493
ARB<0.01%$0.002939220.221$0.6472
ARB<0.01%$1,897.450.00024974$0.4738
ARB<0.01%$10.4644$0.4648
ARB<0.01%$10.3722$0.3726
ARB<0.01%$0.0448276.9832$0.313
ARB<0.01%$0.0611255.0818$0.3106
ARB<0.01%$0.000002122,965.5823$0.2926
ARB<0.01%$0.01879914.1352$0.2657
ARB<0.01%$0.0328527.4531$0.2448
ARB<0.01%$0.5678590.4146$0.2354
ARB<0.01%$0.9998310.1779$0.1778
ARB<0.01%$1.010.1747$0.1755
ARB<0.01%$0.00577329.5442$0.1705
ARB<0.01%$0.00000917,748.5245$0.1634
ARB<0.01%$0.9997990.1564$0.1563
ARB<0.01%$1,809.670.00008627$0.1561
ARB<0.01%$0.0923731.6623$0.1535
ARB<0.01%$0.00351440.2264$0.1413
ARB<0.01%$0.1026611.3656$0.1401
ARB<0.01%$93,7610.00000138$0.1293
POL13.01%$0.44697525,838.2316$11,549.04
POL0.89%$1793.9374$793.94
POL0.49%$93,7170.0046249$433.43
POL0.47%$1,814.890.2283$414.39
POL0.18%$0.999988161.2928$161.29
POL0.12%$0.999988109.9841$109.98
POL0.05%$0.273264169.7193$46.38
POL0.05%$0.069465624.7536$43.4
POL0.05%$0.22223187.3419$41.63
POL0.03%$0.0070473,973.3497$28
POL0.02%$0.30044563.6517$19.12
POL0.02%$12.721.1847$15.07
POL0.01%$0.22842246.1883$10.55
POL<0.01%$0.045087145.6339$6.57
POL<0.01%$3,331.80.00196736$6.55
POL<0.01%$1.145.7057$6.5
POL<0.01%$1.145.7057$6.5
POL<0.01%$0.025356242.6187$6.15
POL<0.01%$0.000776,818.3732$5.25
POL<0.01%$0.33934714.8158$5.03
POL<0.01%$0.12647933.9141$4.29
POL<0.01%$0.9998643.4921$3.49
POL<0.01%$0.06022351.35$3.09
POL<0.01%$0.006416445.14$2.86
POL<0.01%$0.0284480.7212$2.3
POL<0.01%$0.4950454.293$2.13
POL<0.01%$0.3150416.0026$1.89
POL<0.01%$167.710.00942984$1.58
POL<0.01%$0.001709835.659$1.43
POL<0.01%$0.0001966,855.2296$1.34
POL<0.01%$0.003749351.7355$1.32
POL<0.01%$0.001316987.7914$1.3
POL<0.01%$0.5660322.1563$1.22
POL<0.01%$11.1898$1.19
POL<0.01%$0.00423272.9097$1.15
POL<0.01%$0.05800119.6911$1.14
POL<0.01%$0.003901281.5452$1.1
POL<0.01%$6.040.1809$1.09
POL<0.01%$0.05092421.015$1.07
POL<0.01%$0.01221387.4222$1.07
POL<0.01%$15.160.0658$0.9969
POL<0.01%<$0.0000019,810,976.2252$0.88
POL<0.01%$0.00832399.7466$0.8302
POL<0.01%$0.004424182.3338$0.8065
POL<0.01%$2,176.460.00035836$0.7799
POL<0.01%$0.2859522.6091$0.746
POL<0.01%$10.6101$0.61
POL<0.01%$0.00958557$0.5463
POL<0.01%$0.0632818.164$0.5166
POL<0.01%$0.0001164,302.1588$0.5002
POL<0.01%$0.2575611.8999$0.4893
POL<0.01%$0.2223682.1716$0.482896
POL<0.01%$0.2031812.2533$0.4578
POL<0.01%$0.8202480.5291$0.4339
POL<0.01%$10.4003$0.4014
POL<0.01%$0.1976311.7915$0.354
POL<0.01%$0.3157261.116$0.3523
POL<0.01%$0.1206462.6806$0.3234
POL<0.01%$0.6831190.4518$0.3086
POL<0.01%$0.000867335.1815$0.2906
POL<0.01%$0.00104268.4248$0.2792
POL<0.01%$0.001878146.3589$0.2749
POL<0.01%$0.00284189.5683$0.2544
POL<0.01%$0.00000289,750$0.2103
POL<0.01%$0.00192106.5258$0.2045
POL<0.01%$1,812.430.00009608$0.1741
POL<0.01%$0.0726582.0209$0.1468
POL<0.01%$0.000327416.1988$0.1359
POL<0.01%$0.7649110.1737$0.1328
POL<0.01%$0.0285594.62$0.1319
POL<0.01%$0.000292447.4083$0.1305
POL<0.01%$0.000122969.3328$0.118
POL<0.01%$0.0924511.1633$0.1075
POL<0.01%$0.00225946.1363$0.1042
POL<0.01%$0.00621316.12$0.1001
BASE3.53%$1,812.831.7293$3,134.87
BASE3.02%$93,5460.0287$2,683.37
BASE2.81%$0.000396,407,595.7102$2,496.98
BASE1.39%$0.06271919,690.2413$1,234.94
BASE1.10%$1978.5447$979.52
BASE0.69%$0.907117673.5952$611.03
BASE0.35%$1,815.010.1709$310.2
BASE0.17%$0.999972155.1578$155.15
BASE0.14%$1.03116.776$120.63
BASE0.10%$0.119907768.4758$92.15
BASE0.10%$93,9120.00097679$91.73
BASE0.10%$0.9999989.8056$89.8
BASE0.10%$1.1477.9387$88.85
BASE0.08%$0.99997173.2281$73.23
BASE0.08%$0.000001109,445,679.492$67.54
BASE0.07%$0.556881116.5445$64.9
BASE0.07%$0.00391614,797.2362$57.95
BASE0.06%$0.0323181,703.1798$55.04
BASE0.06%$0.0166883,220.4532$53.74
BASE0.06%$0.0231092,256.5397$52.15
BASE0.05%$0.0237361,974.8199$46.87
BASE0.04%$1,983.430.0189$37.48
BASE0.04%$0.00337710,968.6325$37.04
BASE0.04%$0.00328711,216.5041$36.87
BASE0.04%$2.9210.6616$31.13
BASE0.03%$0.125546246.8534$30.99
BASE0.03%$0.00195214,941.3642$29.17
BASE0.03%$2,176.320.0133$28.85
BASE0.03%$167.730.158$26.5
BASE0.03%$0.51249249.741$25.49
BASE0.03%$2.789.0673$25.21
BASE0.03%$0.000085282,671.5339$24.04
BASE0.03%$0.00066534,099.2639$22.66
BASE0.02%$0.00115116,940.2496$19.5
BASE0.02%$93,7620.00019588$18.37
BASE0.02%$0.0092911,736.9103$16.14
BASE0.02%$0.56372326.1006$14.71
BASE0.02%$51.810.2622$13.58
BASE0.01%$0.40155332.735$13.14
BASE0.01%$0.05111251.1594$12.84
BASE0.01%$0.00055622,835.5108$12.7
BASE0.01%$0.00009115,692.0711$10.38
BASE0.01%$0.00009115,692.0711$10.38
BASE<0.01%$0.003662,223.3365$8.14
BASE<0.01%$0.002153,760.4946$8.08
BASE<0.01%$0.20886838.493$8.04
BASE<0.01%$0.0000061,310,951.7997$7.96
BASE<0.01%$0.018391416.1392$7.65
BASE<0.01%$0.009877771.0449$7.62
BASE<0.01%$0.034805210.249$7.32
BASE<0.01%$0.019594355.4702$6.97
BASE<0.01%$0.016729408.5113$6.83
BASE<0.01%$0.027176250.9394$6.82
BASE<0.01%$0.006557956.7573$6.27
BASE<0.01%$0.0010885,491.1213$5.97
BASE<0.01%$0.2481923.9393$5.94
BASE<0.01%$0.054026100.3125$5.42
BASE<0.01%$0.006807792.2942$5.39
BASE<0.01%$0.0005969,030.3216$5.38
BASE<0.01%$0.1710630.6361$5.24
BASE<0.01%$0.004431,177.4705$5.22
BASE<0.01%$0.007761646.7284$5.02
BASE<0.01%<$0.000001220,697,009.9781$4.92
BASE<0.01%$0.06029880.819$4.87
BASE<0.01%$1,931.360.00250049$4.83
BASE<0.01%$0.0567784.613$4.8
BASE<0.01%$0.038307124.8606$4.78
BASE<0.01%$0.00034513,627.1972$4.7
BASE<0.01%$0.003971,129.6754$4.48
BASE<0.01%$0.000016268,438.6274$4.41
BASE<0.01%$0.0015322,606.0313$3.99
BASE<0.01%$0.9992743.9816$3.98
BASE<0.01%$0.0005696,868.7355$3.91
BASE<0.01%$2.741.4084$3.86
BASE<0.01%$0.016281235.8745$3.84
BASE<0.01%$0.00006160,869.3497$3.73
BASE<0.01%$0.0004029,089.5793$3.66
BASE<0.01%$0.7135814.8171$3.44
BASE<0.01%$0.0004946,318.581$3.12
BASE<0.01%$0.4699916.4156$3.02
BASE<0.01%$0.0010332,895.075$2.99
BASE<0.01%$0.03858775.2196$2.9
BASE<0.01%$0.0007943,632.243$2.88
BASE<0.01%$0.004073702.3929$2.86
BASE<0.01%$0.5443325.1814$2.82
BASE<0.01%$0.0003168,887.3527$2.81
BASE<0.01%$0.00017615,564.1706$2.74
BASE<0.01%$0.01213224.214$2.72
BASE<0.01%$0.03755768.6473$2.58
BASE<0.01%$0.011519223.392$2.57
BASE<0.01%$0.22987811.0937$2.55
BASE<0.01%$0.007412316.1438$2.34
BASE<0.01%$0.002957775.1583$2.29
BASE<0.01%$0.006157367.2576$2.26
BASE<0.01%$0.000013168,677.0861$2.21
BASE<0.01%$0.274067.371$2.02
BASE<0.01%$1.571.2489$1.96
BASE<0.01%$0.0019181,007.7051$1.93
BASE<0.01%$0.016708103.5181$1.73
BASE<0.01%$0.002531666.3458$1.69
BASE<0.01%$0.0015161,095.3394$1.66
BASE<0.01%$0.006276259.7105$1.63
BASE<0.01%$0.01664997.6533$1.63
BASE<0.01%$1.561.0312$1.61
BASE<0.01%$0.000013121,446.5446$1.6
BASE<0.01%$0.0005632,726.5213$1.54
BASE<0.01%$0.0002366,128.4817$1.45
BASE<0.01%$0.004548300.0104$1.36
BASE<0.01%$0.01913868.2493$1.31
BASE<0.01%$0.10119912.7597$1.29
BASE<0.01%$0.7420341.6793$1.25
BASE<0.01%$0.01138108.974$1.24
BASE<0.01%$0.9978631.2326$1.23
BASE<0.01%$0.000004324,405.3477$1.19
BASE<0.01%$0.000002629,719.4708$1.13
BASE<0.01%$0.0005532,016.6229$1.12
BASE<0.01%$0.004669233.1437$1.09
BASE<0.01%$0.9995061.0699$1.07
BASE<0.01%$0.01104987.1164$0.9625
BASE<0.01%$0.00004322,346.4603$0.9539
BASE<0.01%$2.760.3126$0.8628
BASE<0.01%$0.003576223.257$0.7984
BASE<0.01%$0.000922838.0553$0.7728
BASE<0.01%$0.006751111.3834$0.7519
BASE<0.01%$0.000006117,721.831$0.7463
BASE<0.01%<$0.0000011,232,468,578.9682$0.7394
BASE<0.01%$0.000897756.4326$0.6782
BASE<0.01%$0.00002428,000.816$0.663
BASE<0.01%$0.000006117,788.3101$0.6501
BASE<0.01%$0.9798740.6559$0.6426
BASE<0.01%$0.03072120.6092$0.6331
BASE<0.01%<$0.0000011,041,701,264.8364$0.625
BASE<0.01%$0.01038157.5835$0.5977
BASE<0.01%$0.067348.3165$0.56
BASE<0.01%$0.0652688.4502$0.5515
BASE<0.01%$0.001321412.2009$0.5447
BASE<0.01%$0.000729665.067$0.485
BASE<0.01%$0.0003621,325.7756$0.4797
BASE<0.01%$0.00001337,174.677$0.4691
BASE<0.01%$0.3725481.2451$0.4638
BASE<0.01%$1,897.320.00019214$0.3645
BASE<0.01%$0.00616658.4126$0.3601
BASE<0.01%$0.2485951.3772$0.3423
BASE<0.01%<$0.00000117,739,573.1625$0.337
BASE<0.01%$0.1709961.8957$0.3241
BASE<0.01%$0.0001192,587.4376$0.3072
BASE<0.01%$0.00002114,596.3911$0.3002
BASE<0.01%$0.0310569.5681$0.2971
BASE<0.01%$0.316090.936$0.2958
BASE<0.01%$5.610.0505$0.2835
BASE<0.01%$1.320.198$0.2613
BASE<0.01%$0.001575164.9853$0.2598
BASE<0.01%$0.00350770.75$0.248
BASE<0.01%$10.2396$0.2398
BASE<0.01%$0.01889312.6488$0.2389
BASE<0.01%$0.00000830,575.3021$0.236
BASE<0.01%$0.000903219.5252$0.1981
BASE<0.01%$0.000256740.004$0.1897
BASE<0.01%$0.322610.5579$0.1799
BASE<0.01%$0.0000513,326.7869$0.1704
BASE<0.01%$0.00000271,051.0938$0.1698
BASE<0.01%$0.00233672.429$0.1692
BASE<0.01%$0.0981891.6338$0.1604
BASE<0.01%$1,954.880.00007775$0.1519
BASE<0.01%$0.00000263,255.5529$0.1484
BASE<0.01%$0.025225.2537$0.1324
BASE<0.01%$0.5500860.2341$0.1287
BASE<0.01%$0.00342335.5081$0.1215
BASE<0.01%$0.5121550.228$0.1167
BASE<0.01%$1.010.1104$0.1117
GNO6.74%$1,812.433.3$5,981.09
GNO0.06%$114.570.4704$53.89
GNO<0.01%$1.141.4267$1.63
GNO<0.01%$1.141.4267$1.63
GNO<0.01%$0.03964934.6203$1.37
GNO<0.01%$11.1862$1.19
GNO
xDai (XDAI)
<0.01%$10.6863$0.686324
GNO<0.01%$10.6716$0.6716
GNO<0.01%$10.4554$0.4554
GNO<0.01%$0.9825920.1648$0.1619
BSC1.59%$0.08772216,103.375$1,412.62
BSC0.61%$611.320.892$545.31
BSC0.56%$1,811.710.276$500.08
BSC0.56%$2.28216.6304$494.42
BSC0.39%$93,785.010.00369124$346.18
BSC0.20%<$0.0000012,631,236,466.7135$181.47
BSC0.18%$1161.6679$161.67
BSC0.17%$0.01337311,043.0888$147.68
BSC0.14%$613.360.2033$124.71
BSC0.12%$0.999995109.0738$109.07
BSC0.08%$6.7410.2393$69.01
BSC0.05%$0.343595125.5302$43.13
BSC0.04%$0.99858339.2698$39.21
BSC0.04%$0.0110813,215.0765$35.63
BSC0.04%$43.650.8043$35.11
BSC0.04%$93,2660.00035628$33.23
BSC0.03%$2.0314.9897$30.43
BSC0.03%$0.072493308.0271$22.33
BSC0.02%$0.092195239.0546$22.04
BSC0.02%$0.140939145.8641$20.56
BSC0.02%$0.000064315,842.7232$20.22
BSC0.02%$0.0133681,511.3389$20.2
BSC0.02%$119.0407$19.05
BSC0.02%$0.018657900.1388$16.79
BSC0.02%$0.030841528.0811$16.29
BSC0.02%$0.026696588.9555$15.72
BSC0.02%$0.000108130,081.1789$14.04
BSC0.01%$0.020448614.0624$12.56
BSC0.01%$1.39.6229$12.54
BSC0.01%$0.000016789,706.2544$12.51
BSC0.01%$0.0001868,111.4536$12.26
BSC0.01%<$0.0000018,108,807,328.0775$11.97
BSC0.01%$0.013784859.8183$11.85
BSC0.01%$0.99997111.4649$11.46
BSC0.01%$152.060.0728$11.06
BSC0.01%$0.00014972,852.2054$10.83
BSC0.01%$0.24633242.7108$10.52
BSC0.01%<$0.000001771,430,606.3369$10.48
BSC0.01%$0.99881310.449$10.44
BSC0.01%$0.041668241.6952$10.07
BSC0.01%$0.0000091,086,148.9056$9.99
BSC0.01%$0.0024123,782.2884$9.12
BSC0.01%$0.12554670.8047$8.89
BSC0.01%$0.004432,005.7867$8.89
BSC<0.01%$93,7250.00009246$8.67
BSC<0.01%$0.0000025,155,398.1734$8.09
BSC<0.01%<$0.0000011,421,299,520.0492$7.98
BSC<0.01%$0.0047131,693.5479$7.98
BSC<0.01%<$0.0000013,065,236,324,868.9526$7.56
BSC<0.01%$2.762.7004$7.46
BSC<0.01%$0.000007959,077.8614$7.15
BSC<0.01%$6.041.1743$7.09
BSC<0.01%$0.011734593.3641$6.96
BSC<0.01%$4.131.6733$6.91
BSC<0.01%$2.742.515$6.89
BSC<0.01%<$0.000001487,871,614.9104$6.63
BSC<0.01%$5.581.1783$6.57
BSC<0.01%$0.8318687.5319$6.27
BSC<0.01%$0.21033129.4899$6.2
BSC<0.01%$0.07233684.2297$6.09
BSC<0.01%$3.131.9298$6.04
BSC<0.01%$0.026437228.4561$6.04
BSC<0.01%<$0.00000142,524,670.3113$6
BSC<0.01%$0.06153296.2058$5.92
BSC<0.01%$0.41790413.7788$5.76
BSC<0.01%$0.9986195.686$5.68
BSC<0.01%$2.072.7241$5.64
BSC<0.01%$0.20289127.6934$5.62
BSC<0.01%$0.0029631,859.3139$5.51
BSC<0.01%$0.005614967.1948$5.43
BSC<0.01%$0.10655150.6588$5.4
BSC<0.01%$0.00032415,650.0852$5.08
BSC<0.01%$0.00009254,723.4487$5.02
BSC<0.01%$0.020874237.0817$4.95
BSC<0.01%$0.4964489.4205$4.68
BSC<0.01%$0.05611382.9886$4.66
BSC<0.01%$15.810.2932$4.64
BSC<0.01%$0.0008155,600.006$4.57
BSC<0.01%$0.000014325,299.6081$4.45
BSC<0.01%$0.030767143.395$4.41
BSC<0.01%$0.0016282,640.8726$4.3
BSC<0.01%$0.0019272,179.7536$4.2
BSC<0.01%$167.820.0244$4.09
BSC<0.01%$0.5189777.8803$4.09
BSC<0.01%$0.06428862.3111$4.01
BSC<0.01%$4.390.9001$3.95
BSC<0.01%$0.032114122.9794$3.95
BSC<0.01%$0.0004838,089.647$3.91
BSC<0.01%$5.350.7252$3.88
BSC<0.01%$0.020141190.279$3.83
BSC<0.01%$0.019716193.4793$3.81
BSC<0.01%$0.18494420.5065$3.79
BSC<0.01%$0.00013427,024.1134$3.61
BSC<0.01%$0.00891392.0843$3.49
BSC<0.01%$9.540.3645$3.48
BSC<0.01%$2.11.6336$3.43
BSC<0.01%$0.12226627.77$3.4
BSC<0.01%$0.031959105.0387$3.36
BSC<0.01%$0.07789742.0187$3.27
BSC<0.01%$22.780.1413$3.22
BSC<0.01%$0.5721355.5729$3.19
BSC<0.01%$0.05606855.0925$3.09
BSC<0.01%$0.07824438.0845$2.98
BSC<0.01%$0.00009431,467.8581$2.97
BSC<0.01%$0.08329135.0703$2.92
BSC<0.01%$0.005229517.6437$2.71
BSC<0.01%$0.004492601.3618$2.7
BSC<0.01%$0.0004575,903.226$2.7
BSC<0.01%$0.0003238,156.2513$2.63
BSC<0.01%$0.3343057.7113$2.58
BSC<0.01%$0.07490634.3649$2.57
BSC<0.01%<$0.00000161,569,609.966$2.57
BSC<0.01%$0.02623795.0777$2.49
BSC<0.01%$2.50.9896$2.47
BSC<0.01%$0.000007345,672.2415$2.45
BSC<0.01%$0.2224910.8763$2.42
BSC<0.01%$0.00019412,293.1272$2.39
BSC<0.01%$359.760.00645393$2.32
BSC<0.01%$0.0005773,925.6044$2.26
BSC<0.01%$0.002518894.5655$2.25
BSC<0.01%$0.10674721.0452$2.25
BSC<0.01%$2.161.0409$2.25
BSC<0.01%$0.006997318.7109$2.23
BSC<0.01%$0.20886810.4674$2.19
BSC<0.01%$0.0214100.8823$2.16
BSC<0.01%$0.000007310,873.7968$2.1
BSC<0.01%$0.3445276.0602$2.09
BSC<0.01%$0.665693.108$2.07
BSC<0.01%$0.9258692.2306$2.07
BSC<0.01%$0.007746261.0458$2.02
BSC<0.01%$0.002099948.2137$1.99
BSC<0.01%$178.670.011$1.96
BSC<0.01%$0.612563.1685$1.94
BSC<0.01%$0.032160.4446$1.94
BSC<0.01%$0.09064121.2367$1.92
BSC<0.01%$0.007996240.4605$1.92
BSC<0.01%$0.0009521,981.791$1.89
BSC<0.01%$0.02619370.9101$1.86
BSC<0.01%$0.02168485.0802$1.84
BSC<0.01%$0.000003543,855.2572$1.83
BSC<0.01%$0.0011881,529.1866$1.82
BSC<0.01%$0.000004498,939.1251$1.81
BSC<0.01%$0.2734756.5071$1.78
BSC<0.01%$0.0005543,197.9817$1.77
BSC<0.01%$0.010002175.4878$1.76
BSC<0.01%$0.01873893.102$1.74
BSC<0.01%$16.960.1026$1.74
BSC<0.01%$0.0252267.5003$1.7
BSC<0.01%$0.01672998.2185$1.64
BSC<0.01%$1.521.0807$1.64
BSC<0.01%$0.6764112.4137$1.63
BSC<0.01%$0.01699793.7478$1.59
BSC<0.01%$0.000002662,546.6992$1.58
BSC<0.01%$0.04272137.0429$1.58
BSC<0.01%<$0.0000013,551,197.1764$1.54
BSC<0.01%$0.6866782.2468$1.54
BSC<0.01%$2.880.5211$1.5
BSC<0.01%$0.02317464.4789$1.49
BSC<0.01%$0.000014103,742.2749$1.47
BSC<0.01%$0.008672166.1626$1.44
BSC<0.01%$0.1811427.7977$1.41
BSC<0.01%$0.02591650.6314$1.31
BSC<0.01%$0.171067.636$1.31
BSC<0.01%$0.3346783.8106$1.28
BSC<0.01%$0.05714222.18$1.27
BSC<0.01%$0.0000011,945,161.989$1.26
BSC<0.01%$0.3154943.9311$1.24
BSC<0.01%$0.004215288.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.0000717,031.9558$1.19
BSC<0.01%$0.0158674.7406$1.19
BSC<0.01%$0.01348887.2842$1.18
BSC<0.01%$93,5460.00001245$1.16
BSC<0.01%$0.0005562,066.828$1.15
BSC<0.01%$0.000333,448.7063$1.14
BSC<0.01%$0.01003113.1395$1.13
BSC<0.01%$0.004594245.3291$1.13
BSC<0.01%<$0.000001239,891,756.2121$1.12
BSC<0.01%$0.08507713.0575$1.11
BSC<0.01%$0.0429825.7804$1.11
BSC<0.01%$0.2769523.8761$1.07
BSC<0.01%$0.00956108.6674$1.04
BSC<0.01%$0.01995151.6951$1.03
BSC<0.01%$0.02448342.0194$1.03
BSC<0.01%<$0.0000019,855,764.0207$0.9616
BSC<0.01%$15.160.0623$0.944
BSC<0.01%$0.0000999,455.0365$0.9366
BSC<0.01%<$0.00000183,057,882,794.6911$0.9334
BSC<0.01%$0.1476576.3105$0.9317
BSC<0.01%<$0.0000017,319,737.5529$0.9289
BSC<0.01%$0.1844855.034$0.9287
BSC<0.01%$33.680.0274$0.9231
BSC<0.01%$0.003945229.2854$0.9045
BSC<0.01%$0.0000959,469.292$0.9017
BSC<0.01%<$0.0000016,165,031,956.8236$0.8973
BSC<0.01%$0.0000011,398,201.2545$0.8957
BSC<0.01%$0.135336.5943$0.8924
BSC<0.01%$0.003374262.5633$0.8858
BSC<0.01%$0.004891174.4187$0.8531
BSC<0.01%$0.01814746.0056$0.8348
BSC<0.01%$0.07442410.9315$0.8135
BSC<0.01%$668.890.00119399$0.7986
BSC<0.01%<$0.000001194,667,890,498.3453$0.7882
BSC<0.01%$0.6425691.1989$0.7703
BSC<0.01%$0.05792813.2946$0.7701
BSC<0.01%$0.001361559.2925$0.7613
BSC<0.01%$5.630.1335$0.7516
BSC<0.01%$0.003516209.6768$0.7372
BSC<0.01%$0.02958524.8934$0.7364
BSC<0.01%$0.01560947.1128$0.7353
BSC<0.01%<$0.0000013,819,904.8583$0.7186
BSC<0.01%<$0.000001710,081,679.8005$0.71
BSC<0.01%$0.000144,911.8636$0.6885
BSC<0.01%$0.0004841,393.923$0.675
BSC<0.01%$0.7082220.9488$0.6719
BSC<0.01%<$0.0000017,835,672.7068$0.671
BSC<0.01%$0.5433421.2303$0.6684
BSC<0.01%$0.0116757.2071$0.6676
BSC<0.01%$0.01892634.9979$0.6623
BSC<0.01%$0.0765118.038$0.6149
BSC<0.01%$0.01041158.7939$0.6121
BSC<0.01%<$0.000001588,563,638.1595$0.6113
BSC<0.01%$0.00003815,763.987$0.5999
BSC<0.01%$0.01973330.0755$0.5934
BSC<0.01%$92,3020.00000602$0.5556
BSC<0.01%$0.2505562.1926$0.5493
BSC<0.01%$0.000741729.0451$0.5398
BSC<0.01%$0.002755185.4444$0.5108
BSC<0.01%$0.0803076.3168$0.5072
BSC<0.01%<$0.0000012,496,901.9508$0.4923
BSC<0.01%$0.00003713,223.5431$0.4901
BSC<0.01%$0.0001363,564.0747$0.4841
BSC<0.01%$0.002499193.6684$0.484
BSC<0.01%$0.1139364.208$0.4794
BSC<0.01%$0.001703272.9129$0.4648
BSC<0.01%$0.000989458.418$0.4533
BSC<0.01%$0.0000746,082.762$0.4501
BSC<0.01%$0.1224073.607$0.4415
BSC<0.01%$0.00869650.7493$0.4413
BSC<0.01%$0.2873571.5278$0.439
BSC<0.01%$0.00806154.449$0.4389
BSC<0.01%$0.001033421.944$0.4359
BSC<0.01%$0.1959752.2175$0.4345
BSC<0.01%$0.01920222.5422$0.4328
BSC<0.01%$0.00487187.8984$0.4281
BSC<0.01%$0.001836232.731$0.4274
BSC<0.01%$0.1700752.5073$0.4264
BSC<0.01%$0.0477618.9138$0.4257
BSC<0.01%$0.02539916.7643$0.4257
BSC<0.01%$1.960.2164$0.4241
BSC<0.01%$0.3144611.3469$0.4235
BSC<0.01%$0.000003133,953.6713$0.4206
BSC<0.01%$0.01887521.5198$0.4061
BSC<0.01%$0.001548256.1898$0.3965
BSC<0.01%<$0.0000013,573,455,187,837.415$0.395
BSC<0.01%$0.01572925.028$0.3936
BSC<0.01%$0.0000137,995.2318$0.3769
BSC<0.01%$0.0000218,638.3325$0.3751
BSC<0.01%$0.03113411.873$0.3696
BSC<0.01%$0.002821130.9849$0.3695
BSC<0.01%$0.1202963.0494$0.3668
BSC<0.01%$0.02194616.5116$0.3623
BSC<0.01%$1,815.370.00019686$0.3573
BSC<0.01%$0.189091.8035$0.341
BSC<0.01%$0.5637230.5968$0.3364
BSC<0.01%$0.000404821.9505$0.3319
BSC<0.01%$0.2604991.2672$0.3301
BSC<0.01%$0.9999340.3262$0.3262
BSC<0.01%$0.00002612,524.7802$0.3261
BSC<0.01%$0.000967326.3666$0.3157
BSC<0.01%$0.01280924.4503$0.3131
BSC<0.01%$0.0915593.4174$0.3128
BSC<0.01%$0.01021128.804$0.2941
BSC<0.01%$0.604650.4686$0.2833
BSC<0.01%$0.000361781.8536$0.2823
BSC<0.01%$0.2135831.281$0.2735
BSC<0.01%$1,516.790.00018001$0.273
BSC<0.01%$0.001121240.4827$0.2695
BSC<0.01%$0.0325558.0881$0.2633
BSC<0.01%$1.030.2496$0.2573
BSC<0.01%$0.1982351.2853$0.2547
BSC<0.01%$0.01599715.9021$0.2543
BSC<0.01%$0.0302138.3737$0.2529
BSC<0.01%$0.9839880.2541$0.25
BSC<0.01%<$0.0000011,216,162.4371$0.2477
BSC<0.01%$0.002029120.7831$0.245
BSC<0.01%$0.00316376.9492$0.2433
BSC<0.01%$0.002065116.6433$0.2409
BSC<0.01%<$0.000001239,374,026.7776$0.239
BSC<0.01%$0.000054,815.7212$0.2389
BSC<0.01%$40.880.00581775$0.2378
BSC<0.01%$0.01517115.5366$0.2357
BSC<0.01%$0.0113420.7312$0.2351
BSC<0.01%$0.000493475.6592$0.2344
BSC<0.01%$0.01163920.053$0.2334
BSC<0.01%$0.00179128.7066$0.2303
BSC<0.01%$5,171.720.00004354$0.2251
BSC<0.01%$0.0317177.0511$0.2236
BSC<0.01%$0.0223649.7219$0.2174
BSC<0.01%$0.001165184.3751$0.2148
BSC<0.01%$0.00293872.3841$0.2126
BSC<0.01%$0.028277.3481$0.2077
BSC<0.01%$1,897.320.00010669$0.2024
BSC<0.01%$0.1431731.394$0.1995
BSC<0.01%<$0.0000012,399,646,590.5978$0.198
BSC<0.01%$0.2712880.7233$0.1962
BSC<0.01%$0.00001216,112.2139$0.1955
BSC<0.01%$0.00731626.6691$0.1951
BSC<0.01%$0.00294561.894$0.1823
BSC<0.01%$0.0238137.4922$0.1784
BSC<0.01%$2.930.0584$0.1711
BSC<0.01%$0.000001133,592.5784$0.1696
BSC<0.01%$0.0088418.687$0.1651
BSC<0.01%<$0.000001110,945,398.557$0.1622
BSC<0.01%$0.00578527.9883$0.1619
BSC<0.01%$0.00565127.0678$0.1529
BSC<0.01%<$0.000001222,358,110,651.4647$0.1528
BSC<0.01%$0.7172920.21$0.1506
BSC<0.01%$0.000249595.141$0.1479
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.00821217.5821$0.1443
BSC<0.01%$0.00197372.1503$0.1423
BSC<0.01%$0.0909351.5373$0.1397
BSC<0.01%$2.540.0542$0.1376
BSC<0.01%$0.023165.8511$0.1355
BSC<0.01%$0.00269649.257$0.1328
BSC<0.01%$0.0464312.8444$0.132
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.00532722.3718$0.1191
BSC<0.01%$0.00133489.2908$0.119
BSC<0.01%$0.001133104.5115$0.1184
BSC<0.01%$7.870.0149$0.1171
BSC<0.01%$0.9698240.1208$0.1171
BSC<0.01%<$0.000001273,913.3635$0.1171
BSC<0.01%<$0.00000167,400,523,939.0429$0.1171
BSC<0.01%$0.0872211.3189$0.115
BSC<0.01%$0.00470824.4229$0.1149
BSC<0.01%$0.6409250.1776$0.1138
BSC<0.01%$0.00965211.7449$0.1133
BSC<0.01%$0.0785151.4394$0.113
BSC<0.01%$0.001038106.9857$0.111
BSC<0.01%$0.000114950.5503$0.1083
BSC<0.01%$1.060.102$0.1079
BSC<0.01%$0.3686010.2804$0.1033
BSC<0.01%$0.2234270.461$0.1029
BSC<0.01%$0.00698814.5388$0.1015
OP1.00%$1,813.930.4895$887.89
OP0.63%$1,812.430.3083$558.68
OP0.31%$1273.4542$273.45
OP0.17%$0.760976199.4075$151.74
OP0.10%$93,8220.00094424$88.59
OP0.07%$93,8300.00061962$58.14
OP0.05%$146.7035$46.7
OP0.04%$137.7617$37.76
OP0.02%$2,176.770.00874574$19.04
OP<0.01%$0.05053127.2791$6.43
OP<0.01%$0.10121642.7712$4.33
OP<0.01%$2.761.4973$4.13
OP<0.01%$11.050.3507$3.88
OP<0.01%$0.0960738.9633$3.74
OP<0.01%$13.4436$3.44
OP<0.01%$0.22840311.3852$2.6
OP<0.01%$11.9525$1.96
OP<0.01%$0.0007471,885.8125$1.41
OP<0.01%$0.9998311.2118$1.21
OP<0.01%$1,801.160.00044648$0.8041
OP<0.01%$0.7189890.6903$0.4963
OP<0.01%$0.00708539.5529$0.2802
OP<0.01%$0.2461260.8162$0.2008
OP<0.01%$10.1947$0.1947
OP<0.01%$0.0001161,602.345$0.1854
OP<0.01%$15.140.0096969$0.1468
OP<0.01%$0.00273546.7662$0.1279
OP<0.01%$0.00491225.086$0.1232
OP<0.01%$0.2031180.5952$0.1208
OP<0.01%$0.0251653.9828$0.1002
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.