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

Contract

0x90CbE4BDd538D6e9b379bFF5fE72c3d67A521De5
Amount:Between 1-1M
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:1568 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
ETH9.48%$1,796.635.064$9,098.1
ETH7.05%$0.9998856,763.6901$6,762.91
ETH2.67%$2.83904.0452$2,557.59
ETH1.47%$93,5070.015$1,406.71
ETH1.33%$11,275.5526$1,275.55
ETH0.44%$14.5428.7462$417.97
ETH0.43%$8.9445.6914$408.4
ETH0.38%$0.386145949.3196$366.58
ETH0.37%$0.2367881,514.8051$358.69
ETH0.26%$0.0273729,209.6214$252.09
ETH0.25%$1,796.630.1336$239.99
ETH0.19%$0.00829622,036.234$182.82
ETH0.18%$1,795.990.0985$176.84
ETH0.18%<$0.0000013,372,487,768.905$175.84
ETH0.17%$0.057872,825.8005$163.53
ETH0.17%$1,802.130.0884$159.23
ETH0.16%$0.177871870.8871$154.91
ETH0.16%<$0.00000110,600,562,282.7483$153.59
ETH0.15%$0.0685242,162.988$148.22
ETH0.15%$3,345.490.0425$142.12
ETH0.14%$29.964.5394$135.98
ETH0.13%$0.564384228.1584$128.77
ETH0.13%<$0.00000120,416,611,154.7953$127.24
ETH0.11%$4.3924.9484$109.52
ETH0.11%$0.0233434,607.3937$107.55
ETH0.11%$21.794.7968$104.52
ETH0.10%$0.314047320.2314$100.57
ETH0.10%$0.0154126,114.1843$94.23
ETH0.09%$1.3864.14$88.51
ETH0.09%$0.0285443,076.9888$87.83
ETH0.09%$186.3864$86.47
ETH0.09%$0.000042,130,580.8711$85.5
ETH0.09%$0.170426480.3746$81.87
ETH0.08%$0.000331244,917.4772$80.95
ETH0.08%$0.081203942.8555$76.56
ETH0.08%$1,993.710.0377$75.2
ETH0.08%$0.0000491,491,370.927$73.45
ETH0.07%$1.1761.2013$71.61
ETH0.07%$0.114811602.2738$69.15
ETH0.07%$166.710.4096$68.29
ETH0.07%$0.054931,209.286$66.43
ETH0.07%$0.078809834.4139$65.76
ETH0.07%$106.280.6075$64.56
ETH0.06%$1.3446.3776$62.15
ETH0.06%$0.205833296.5226$61.03
ETH0.06%$0.351656170.4632$59.94
ETH0.06%$27.452.1705$59.58
ETH0.06%$0.0457551,280.3561$58.58
ETH0.06%$0.68297985.5382$58.42
ETH0.06%$0.00000512,220,036.6073$58.17
ETH0.06%$0.0369781,535.3398$56.77
ETH0.06%$1.1947.5626$56.6
ETH0.06%$0.71861278.0481$56.09
ETH0.06%$0.0274062,037.6368$55.84
ETH0.06%$0.078454691.7982$54.27
ETH0.06%$0.0068347,730.7419$52.83
ETH0.05%$93,2400.00056201$52.4
ETH0.05%<$0.0000017,226,828,426.2352$52.09
ETH0.05%$0.066904765.496$51.21
ETH0.05%$0.0161543,140.2667$50.73
ETH0.05%$0.0138923,415.141$47.44
ETH0.05%$0.0190742,476.2554$47.23
ETH0.05%$0.274848168.7082$46.37
ETH0.05%$0.00087750,128.5803$43.97
ETH0.05%$0.0253021,735.9257$43.92
ETH0.05%$0.095467459.4101$43.86
ETH0.05%$0.0000143,172,889.1471$43.72
ETH0.05%$9.334.632$43.22
ETH0.04%$0.99516243.1516$42.94
ETH0.04%$0.0140133,026.5437$42.41
ETH0.04%<$0.00000183,327,486.9481$40.63
ETH0.04%$0.152812263.9462$40.33
ETH0.04%<$0.00000134,699,922,254,231.637$39.85
ETH0.04%$0.00232817,119.7154$39.85
ETH0.04%<$0.0000011,118,495,740.2932$39.62
ETH0.04%$0.38824101.8899$39.56
ETH0.04%$0.138884283.6802$39.4
ETH0.04%$0.14577269.1218$39.23
ETH0.04%$0.0107633,559.0996$38.3
ETH0.04%<$0.00000111,070,948,507.2624$37.44
ETH0.04%$0.335417104.971$35.21
ETH0.04%$0.00124927,946.3605$34.9
ETH0.04%$0.0294641,140.2451$33.6
ETH0.03%$0.51893564.5413$33.49
ETH0.03%$0.94110135.4477$33.36
ETH0.03%$0.00089637,205.5392$33.32
ETH0.03%$0.00220814,557.8943$32.14
ETH0.03%$530.6014$31.87
ETH0.03%$0.174908181.2161$31.7
ETH0.03%$0.0000241,293,231.1248$31.02
ETH0.03%$0.257524120.3914$31
ETH0.03%$0.051437601.0687$30.92
ETH0.03%$0.0064914,731.2371$30.71
ETH0.03%$2,165.60.0142$30.69
ETH0.03%$7.753.885$30.11
ETH0.03%$0.055693537.9922$29.96
ETH0.03%$0.99868429.95$29.91
ETH0.03%$0.71576440.353$28.88
ETH0.03%$0.9844628.8872$28.44
ETH0.03%$0.037008767.6931$28.41
ETH0.03%$0.043442647.8706$28.14
ETH0.03%$0.0025211,046.3996$27.84
ETH0.03%$0.0043466,394.5502$27.79
ETH0.03%$0.094184288.4283$27.17
ETH0.03%$0.87699730.6488$26.88
ETH0.03%<$0.00000181,208,968.3732$26.36
ETH0.03%$0.055933462.0813$25.85
ETH0.03%$70.50.3641$25.67
ETH0.03%$0.0043835,669.5427$24.85
ETH0.03%$0.00149616,299.1741$24.38
ETH0.02%$0.141602169.2456$23.97
ETH0.02%$0.123205191.0493$23.54
ETH0.02%$0.0144631,619.0331$23.42
ETH0.02%$0.097962237.6316$23.28
ETH0.02%$0.18739123.3976$23.12
ETH0.02%$0.2424694.332$22.87
ETH0.02%$0.0000046,472,169.3055$22.65
ETH0.02%$0.28493879.11$22.54
ETH0.02%$0.083181267.2844$22.23
ETH0.02%$0.0184881,176.6555$21.75
ETH0.02%$0.0062923,426.9$21.56
ETH0.02%$0.023953886.8167$21.24
ETH0.02%$2.0610.2913$21.2
ETH0.02%$0.40432951.8463$20.96
ETH0.02%$0.10011206.9602$20.72
ETH0.02%$0.0000092,248,216.2564$20.44
ETH0.02%$0.032526625.3963$20.34
ETH0.02%$2,027.170.01$20.27
ETH0.02%$0.100059200.2446$20.04
ETH0.02%$0.44915844.5281$20
ETH0.02%$0.33596957.1794$19.21
ETH0.02%$0.32205358.5036$18.84
ETH0.02%$0.99932718.8208$18.81
ETH0.02%$1.1416.4467$18.75
ETH0.02%$0.049645376.8234$18.71
ETH0.02%$17.681.0542$18.64
ETH0.02%$0.00006307,514.3034$18.53
ETH0.02%<$0.000001384,952,362.8424$18.33
ETH0.02%$2.966.1097$18.08
ETH0.02%$0.64705727.6447$17.89
ETH0.02%$0.07216245.4476$17.71
ETH0.02%<$0.00000170,825,229.5005$17.49
ETH0.02%$0.00087719,806.5513$17.36
ETH0.02%$0.083008208.3516$17.29
ETH0.02%<$0.00000122,043,291,156,050.609$17.19
ETH0.02%$1,801.940.00946692$17.06
ETH0.02%$0.0043943,767.8489$16.56
ETH0.02%<$0.00000175,064,754.4953$16.56
ETH0.02%$0.99800116.553$16.52
ETH0.02%$0.00130612,517.1902$16.35
ETH0.02%$0.024883654.0883$16.28
ETH0.02%$0.0061232,639.3199$16.16
ETH0.02%$0.81129619.8083$16.07
ETH0.02%$0.0058442,747.5266$16.06
ETH0.02%$0.039647402.9503$15.98
ETH0.02%$0.073832216.2922$15.97
ETH0.02%$0.56832927.4722$15.61
ETH0.02%$0.00124312,519.5698$15.57
ETH0.02%$2.965.2051$15.41
ETH0.02%$0.041608368.916$15.35
ETH0.02%$0.0031974,637.5472$14.83
ETH0.02%$2,025.780.00730412$14.8
ETH0.02%$0.00124811,811.8599$14.74
ETH0.02%$6.682.1947$14.66
ETH0.02%$0.17940480.2931$14.4
ETH0.01%$0.0033134,275.4795$14.16
ETH0.01%$0.096493145.1053$14
ETH0.01%$0.00014495,871.9587$13.78
ETH0.01%$10.321.3317$13.74
ETH0.01%$0.6349121.6248$13.73
ETH0.01%$0.0000131,036,154.3846$13.42
ETH0.01%<$0.000001321,663,377.1224$13.13
ETH0.01%$0.2059762.4475$12.86
ETH0.01%$0.030813413.0654$12.73
ETH0.01%<$0.000001210,504,516.5527$12.68
ETH0.01%$0.09251135.3826$12.52
ETH0.01%$0.56829421.9756$12.49
ETH0.01%$0.68265718.2482$12.46
ETH0.01%$0.0104421,186.8662$12.39
ETH0.01%$0.20495359.982$12.29
ETH0.01%$0.000061202,092.1188$12.29
ETH0.01%$0.17675969.5294$12.29
ETH0.01%$0.00029741,244.4075$12.24
ETH0.01%$4.512.6978$12.17
ETH0.01%$0.0077521,555.0587$12.06
ETH0.01%$0.00000114,955,275.2809$11.91
ETH0.01%$0.0058891,999.9351$11.78
ETH0.01%$0.000076155,355.2785$11.74
ETH0.01%$4.582.5509$11.68
ETH0.01%$0.63084718.4019$11.61
ETH0.01%$0.017816627.3099$11.18
ETH0.01%$0.18874958.6843$11.08
ETH0.01%$0.0057751,894.4737$10.94
ETH0.01%$0.009171,191.0161$10.92
ETH0.01%$0.0057051,913.5828$10.92
ETH0.01%$0.94900211.3687$10.79
ETH0.01%$0.36525529.4359$10.75
ETH0.01%$0.20731150.5109$10.47
ETH0.01%<$0.0000013,349,185,467.444$10.34
ETH0.01%<$0.000001228,860,667.027$10.32
ETH0.01%$0.000066154,911.8661$10.24
ETH0.01%$0.027484369.4645$10.15
ETH0.01%$0.25892139.069$10.12
ETH0.01%<$0.00000179,163,870.6062$10.08
ETH0.01%$0.0000033,635,434.7524$9.97
ETH0.01%$0.072774135.649$9.87
ETH0.01%$4.672.1112$9.86
ETH0.01%$0.095337102.6509$9.79
ETH0.01%$0.29692432.9514$9.78
ETH0.01%$3,346.760.002902$9.71
ETH0.01%<$0.000001144,234,490.2313$9.71
ETH0.01%$0.045214.7004$9.66
ETH0.01%$0.00021944,120.5168$9.66
ETH<0.01%<$0.00000115,831,901,550.7711$9.48
ETH<0.01%$1.297.3188$9.44
ETH<0.01%$0.18816550.0927$9.43
ETH<0.01%$19.4032$9.4
ETH<0.01%$0.000027340,399.9999$9.19
ETH<0.01%$0.0025983,533.3034$9.18
ETH<0.01%$0.021993414.8915$9.12
ETH<0.01%$0.000066136,222.7278$9.04
ETH<0.01%$0.8669110.3917$9.01
ETH<0.01%$0.00017152,532.6871$9
ETH<0.01%$1.147.8829$8.99
ETH<0.01%$0.00000113,972,248.6316$8.89
ETH<0.01%$0.0008989,880.5685$8.87
ETH<0.01%$93,6770.00009457$8.86
ETH<0.01%$0.54193715.7462$8.53
ETH<0.01%$0.028134299.9598$8.44
ETH<0.01%$5,997.210.00140407$8.42
ETH<0.01%<$0.000001129,865,764.6$8.36
ETH<0.01%$0.00000111,936,626.4432$8.32
ETH<0.01%$0.00054415,077.5526$8.2
ETH<0.01%$0.0022553,632.8143$8.19
ETH<0.01%<$0.00000119,496,614.7805$8.19
ETH<0.01%$0.014777553.9107$8.19
ETH<0.01%$22.380.3639$8.14
ETH<0.01%$0.0037822,141.3314$8.1
ETH<0.01%$0.000022351,464.4258$7.67
ETH<0.01%$0.13429556.9362$7.65
ETH<0.01%$0.11564365.6829$7.6
ETH<0.01%$0.7742029.7383$7.54
ETH<0.01%$0.0021173,533.1137$7.48
ETH<0.01%$175.840.0417$7.34
ETH<0.01%$0.0013815,221.4836$7.21
ETH<0.01%$0.0039921,800$7.19
ETH<0.01%$0.023227302.4729$7.03
ETH<0.01%$0.21885231.7872$6.96
ETH<0.01%$0.030093230.6028$6.94
ETH<0.01%$0.0010146,819.6382$6.92
ETH<0.01%$0.0000041,712,359.4924$6.88
ETH<0.01%<$0.00000149,214,200.9468$6.87
ETH<0.01%$0.016425413.3976$6.79
ETH<0.01%$0.3294620.5947$6.79
ETH<0.01%$0.00058111,617.317$6.75
ETH<0.01%$0.11452758.8027$6.73
ETH<0.01%<$0.0000014,200,000,000$6.64
ETH<0.01%$0.0022542,930.4119$6.6
ETH<0.01%$5,065.290.00129378$6.55
ETH<0.01%$0.0013174,927.9306$6.49
ETH<0.01%$0.004051,598.9851$6.48
ETH<0.01%$0.30014821.3399$6.41
ETH<0.01%$0.006946918.5622$6.38
ETH<0.01%$0.0018623,426.6107$6.38
ETH<0.01%$0.030742206.0196$6.33
ETH<0.01%$0.031338201.615$6.32
ETH<0.01%$0.21268629.3283$6.24
ETH<0.01%$0.026257234.9676$6.17
ETH<0.01%$0.06728791.6603$6.17
ETH<0.01%$0.10857556.5316$6.14
ETH<0.01%$0.0000019,908,761.5227$6.07
ETH<0.01%$0.005161,153.6247$5.95
ETH<0.01%$0.0010485,606.094$5.88
ETH<0.01%$0.00012845,465.7408$5.8
ETH<0.01%$0.011082517.5964$5.74
ETH<0.01%$0.0028911,962.2114$5.67
ETH<0.01%$0.00017831,817.409$5.67
ETH<0.01%<$0.0000011,058,657,192.1424$5.64
ETH<0.01%$0.037017147.252$5.45
ETH<0.01%$0.011228483.0887$5.42
ETH<0.01%$20.850.2593$5.41
ETH<0.01%$0.50630610.6557$5.4
ETH<0.01%$0.11879445.3539$5.39
ETH<0.01%$0.038478139.6146$5.37
ETH<0.01%$0.0008746,085.4152$5.32
ETH<0.01%$0.005387986.8868$5.32
ETH<0.01%$0.015765336.6136$5.31
ETH<0.01%$0.17441330.3947$5.3
ETH<0.01%$0.010584500.4444$5.3
ETH<0.01%$0.6059268.7157$5.28
ETH<0.01%$0.17197130.6898$5.28
ETH<0.01%$0.6661827.8169$5.21
ETH<0.01%$0.20731125.0621$5.2
ETH<0.01%$0.0000013,652,536.2332$5.19
ETH<0.01%$0.00008361,997.3857$5.15
ETH<0.01%$0.0013013,947.069$5.13
ETH<0.01%$0.000012442,788.5454$5.13
ETH<0.01%$0.5148129.918$5.11
ETH<0.01%$0.0015483,257.2649$5.04
ETH<0.01%<$0.000001877,815,950.5989$5.02
ETH<0.01%$0.19656225.4138$5
ETH<0.01%$0.000014364,508.5843$4.96
ETH<0.01%$0.007222682.1386$4.93
ETH<0.01%$0.000027179,196.9239$4.82
ETH<0.01%$14.8189$4.82
ETH<0.01%$0.010226470.7145$4.81
ETH<0.01%$115.160.0411$4.74
ETH<0.01%$0.015143312.5849$4.73
ETH<0.01%$0.00017926,368.1474$4.72
ETH<0.01%$1,885.670.00249765$4.71
ETH<0.01%$0.005861798.4299$4.68
ETH<0.01%$0.06442872.181$4.65
ETH<0.01%$0.006689689.6226$4.61
ETH<0.01%<$0.0000013,023,386,998.3823$4.56
ETH<0.01%$0.007934573.8812$4.55
ETH<0.01%$0.00021920,599.395$4.51
ETH<0.01%$0.786095.7052$4.48
ETH<0.01%$0.000022200,055.65$4.44
ETH<0.01%$0.012405349.3272$4.33
ETH<0.01%$0.09201147.06$4.33
ETH<0.01%$0.5322217.9895$4.25
ETH<0.01%$0.29922114.1666$4.24
ETH<0.01%$0.06740262.1832$4.19
ETH<0.01%$0.20194620.5649$4.15
ETH<0.01%$0.00026815,473.142$4.14
ETH<0.01%$0.0009364,373.8714$4.09
ETH<0.01%$0.867394.5743$3.97
ETH<0.01%<$0.00000114,405,947,890.6713$3.93
ETH<0.01%$0.019742197.086$3.89
ETH<0.01%$0.008816439.5502$3.88
ETH<0.01%$0.7070465.4633$3.86
ETH<0.01%$0.010706359.9096$3.85
ETH<0.01%$0.0007525,119.9911$3.85
ETH<0.01%$0.017119224.7484$3.85
ETH<0.01%$1.432.674$3.82
ETH<0.01%$6.230.6115$3.81
ETH<0.01%$1.013.7638$3.78
ETH<0.01%$0.106135.0041$3.71
ETH<0.01%$0.0011283,250.572$3.67
ETH<0.01%$0.9996843.666$3.66
ETH<0.01%$0.004071898.38$3.66
ETH<0.01%$0.13079727.8006$3.64
ETH<0.01%$0.004293846.023$3.63
ETH<0.01%$0.00010134,844.179$3.53
ETH<0.01%$0.06476253.7708$3.48
ETH<0.01%$3,370.710.00102673$3.46
ETH<0.01%$0.13787425.0872$3.46
ETH<0.01%$0.6528425.2407$3.42
ETH<0.01%$1,924.360.00177658$3.42
ETH<0.01%$0.000933,673.5176$3.41
ETH<0.01%$0.0025361,345.961$3.41
ETH<0.01%$0.06568851.9188$3.41
ETH<0.01%$0.025037134.8228$3.38
ETH<0.01%$0.07215544.734$3.23
ETH<0.01%$0.0020241,578.5127$3.2
ETH<0.01%$0.88063.4992$3.08
ETH<0.01%$0.009886308.7872$3.05
ETH<0.01%$1.022.9715$3.02
ETH<0.01%$0.024192124.284$3.01
ETH<0.01%$0.0003368,875.173$2.98
ETH<0.01%$0.17826916.697$2.98
ETH<0.01%$0.030895.6728$2.95
ETH<0.01%$0.09026832.396$2.92
ETH<0.01%$0.006718432.3731$2.9
ETH<0.01%$0.20183814.3075$2.89
ETH<0.01%$0.002889986.5208$2.85
ETH<0.01%$0.7892163.6099$2.85
ETH<0.01%$0.6568984.2995$2.82
ETH<0.01%$0.016469169.5693$2.79
ETH<0.01%$0.2648910.5037$2.78
ETH<0.01%$0.016598164.3386$2.73
ETH<0.01%$0.00003480,820.0916$2.71
ETH<0.01%$2.860.9464$2.7
ETH<0.01%$0.0005624,782.519$2.69
ETH<0.01%$0.0013591,950.255$2.65
ETH<0.01%$0.0930628.1411$2.62
ETH<0.01%$0.0000021,101,160.4087$2.61
ETH<0.01%$0.0016031,624.5525$2.6
ETH<0.01%$0.17309915$2.6
ETH<0.01%$0.0003417,566.4571$2.58
ETH<0.01%$0.1651115.4835$2.56
ETH<0.01%$6.170.41$2.53
ETH<0.01%$0.00018213,905.2682$2.53
ETH<0.01%$0.05200248.5301$2.52
ETH<0.01%$0.00653385.8503$2.52
ETH<0.01%$0.021693115.482$2.51
ETH<0.01%$0.020713117.9173$2.44
ETH<0.01%$1.052.314$2.44
ETH<0.01%$0.007375325.905$2.4
ETH<0.01%$0.16768914.2976$2.4
ETH<0.01%<$0.0000013,616,967,204.8345$2.39
ETH<0.01%$0.010289232.4913$2.39
ETH<0.01%$0.0016941,408.3143$2.39
ETH<0.01%$0.02600591.5885$2.38
ETH<0.01%$0.17998613.1942$2.37
ETH<0.01%$0.0309976.524$2.37
ETH<0.01%$0.0006713,516.9802$2.36
ETH<0.01%$0.00022110,559.5012$2.34
ETH<0.01%$0.003698619.984$2.29
ETH<0.01%<$0.00000150,009,730.2367$2.28
ETH<0.01%$0.0754330.1249$2.27
ETH<0.01%$0.0004814,694.0212$2.26
ETH<0.01%$0.9981142.2616$2.26
ETH<0.01%<$0.00000142,352,269.9505$2.26
ETH<0.01%$43.30.052$2.25
ETH<0.01%$0.002963759.7793$2.25
ETH<0.01%$0.0007043,160.2623$2.22
ETH<0.01%$1.052.1026$2.2
ETH<0.01%$0.015905137.2566$2.18
ETH<0.01%$0.14944914.5476$2.17
ETH<0.01%$0.0000021,269,749.3285$2.17
ETH<0.01%$1.071.9927$2.13
ETH<0.01%$0.0605835.0564$2.12
ETH<0.01%$0.03425261.7085$2.11
ETH<0.01%$0.00002584,548.0277$2.11
ETH<0.01%$0.006622315.8616$2.09
ETH<0.01%$0.00014514,074.8918$2.04
ETH<0.01%$0.2178599.3202$2.03
ETH<0.01%$0.000005392,206.2812$2.01
ETH<0.01%$0.0014781,362.1203$2.01
ETH<0.01%$0.5653693.5476$2.01
ETH<0.01%$0.04711742.4264$2
ETH<0.01%$0.003071648.7864$1.99
ETH<0.01%$0.2240298.8779$1.99
ETH<0.01%$0.2814887.0094$1.97
ETH<0.01%$0.0019011,037.1468$1.97
ETH<0.01%$0.003856508.177$1.96
ETH<0.01%$0.02233886.5307$1.93
ETH<0.01%$0.0015581,239.7682$1.93
ETH<0.01%$0.02505576.621$1.92
ETH<0.01%$28.250.0674$1.91
ETH<0.01%$0.017055111.2998$1.9
ETH<0.01%$0.04118445.75$1.88
ETH<0.01%$0.002169861.0283$1.87
ETH<0.01%$0.006105302.5351$1.85
ETH<0.01%$0.014664125.0333$1.83
ETH<0.01%$0.007088255.4389$1.81
ETH<0.01%$0.000228,177.0134$1.8
ETH<0.01%$2.530.7095$1.8
ETH<0.01%$0.0246272.0792$1.77
ETH<0.01%$0.00010716,522.029$1.77
ETH<0.01%$0.3886194.5381$1.76
ETH<0.01%$1.31.3549$1.76
ETH<0.01%$0.0014181,240.551$1.76
ETH<0.01%$0.03248853.9569$1.75
ETH<0.01%$0.0000012,596,780.467$1.75
ETH<0.01%$0.00006825,505.3597$1.73
ETH<0.01%$0.008088212.5023$1.72
ETH<0.01%$0.197778.6796$1.72
ETH<0.01%$0.3644234.6675$1.7
ETH<0.01%$0.03063755.4192$1.7
ETH<0.01%$0.0011851,429.2583$1.69
ETH<0.01%$0.00003253,288.7112$1.68
ETH<0.01%$0.0013881,195.728$1.66
ETH<0.01%$0.05897228.0191$1.65
ETH<0.01%$0.005016329.307$1.65
ETH<0.01%$0.0001968,442.684$1.65
ETH<0.01%$0.0003694,470.1553$1.65
ETH<0.01%<$0.0000013,773,899,543.488$1.65
ETH<0.01%$0.0009831,618.2637$1.59
ETH<0.01%$0.13282711.9252$1.58
ETH<0.01%$0.01124139.9702$1.57
ETH<0.01%$0.006007261.8511$1.57
ETH<0.01%$0.00962161.5034$1.55
ETH<0.01%$0.01129136.4815$1.54
ETH<0.01%$1,855.720.00082935$1.54
ETH<0.01%$0.3110374.9012$1.52
ETH<0.01%$0.00002854,116.7565$1.52
ETH<0.01%$0.5204852.8999$1.51
ETH<0.01%$0.07632819.0881$1.46
ETH<0.01%$0.2832955.099$1.44
ETH<0.01%$0.011365125.3424$1.42
ETH<0.01%$0.01512691.2983$1.38
ETH<0.01%$0.0010271,337.7158$1.37
ETH<0.01%$0.0002315,938.7363$1.37
ETH<0.01%$0.009882135.1273$1.34
ETH<0.01%$0.7348351.8069$1.33
ETH<0.01%$0.02074763.7368$1.32
ETH<0.01%$0.0000012,252,368.3192$1.32
ETH<0.01%$0.2342255.5914$1.31
ETH<0.01%$0.00001130,547.2324$1.3
ETH<0.01%$0.1655857.8325$1.3
ETH<0.01%$0.08973314.3838$1.29
ETH<0.01%$0.01947265.7275$1.28
ETH<0.01%$4.550.2809$1.28
ETH<0.01%$8.750.1443$1.26
ETH<0.01%$0.3600743.5024$1.26
ETH<0.01%$2.080.6041$1.26
ETH<0.01%$0.001718728.8689$1.25
ETH<0.01%$0.0003413,662.8665$1.25
ETH<0.01%$0.000472,651.5189$1.25
ETH<0.01%$0.4470042.7599$1.23
ETH<0.01%$0.2337095.2436$1.23
ETH<0.01%$0.004082298.2824$1.22
ETH<0.01%$0.1315449.2459$1.22
ETH<0.01%$0.0008761,385.5434$1.21
ETH<0.01%$0.000383,192.3867$1.21
ETH<0.01%$0.0004142,879.4323$1.19
ETH<0.01%$7.990.148$1.18
ETH<0.01%$0.0011391,036.0202$1.18
ETH<0.01%$0.007114165.7669$1.18
ETH<0.01%$0.01720268.3441$1.18
ETH<0.01%$0.0672817.4508$1.17
ETH<0.01%$0.005747203.4559$1.17
ETH<0.01%$0.11391410.2453$1.17
ETH<0.01%$0.003433334.8835$1.15
ETH<0.01%$0.01491774.3157$1.11
ETH<0.01%$0.000005241,968.6745$1.1
ETH<0.01%$0.0001357,964.8048$1.08
ETH<0.01%$0.0001387,795.3416$1.07
ETH<0.01%$0.0005342,003.43$1.07
ETH<0.01%<$0.0000013,004,136.1399$1.07
ETH<0.01%$0.07957113.3732$1.06
ETH<0.01%$0.0003473,064.1652$1.06
ETH<0.01%$0.4866982.1536$1.05
ETH<0.01%$0.000003321,049.6847$1.05
ETH<0.01%$0.01315579.3529$1.04
ETH<0.01%$0.0001447,223.027$1.04
ETH<0.01%$0.002752374.973$1.03
ETH<0.01%$0.009979102.3484$1.02
ETH<0.01%$0.0000011,566,743.1688$1
ETH<0.01%$0.02739736.5563$1
ETH<0.01%$0.8162331.22$0.9958
ETH<0.01%$0.2022724.6729$0.9451
ETH<0.01%$0.05314517.7261$0.942
ETH<0.01%$93,2280.00001002$0.9341
ETH<0.01%$0.06724913.726$0.923
ETH<0.01%$0.4185392.1918$0.9173
ETH<0.01%$0.7311391.2306$0.8997
ETH<0.01%$5.950.1491$0.8872
ETH<0.01%$0.08703510.1388$0.8824
ETH<0.01%$0.0004741,857.4382$0.8813
ETH<0.01%$0.002147403.9538$0.8673
ETH<0.01%$0.01216971.2298$0.8667
ETH<0.01%$0.03932321.96$0.8635
ETH<0.01%$0.0001167,435.1659$0.8612
ETH<0.01%$0.03159127.17$0.8583
ETH<0.01%$0.0002733,131.5381$0.8563
ETH<0.01%$0.003404247.4098$0.842
ETH<0.01%<$0.00000170,462,814.996$0.822
ETH<0.01%$0.03286824.9721$0.8207
ETH<0.01%$0.0002024,067.1974$0.8199
ETH<0.01%$0.001973409.9898$0.8088
ETH<0.01%$0.0935188.5603$0.8005
ETH<0.01%$0.001145697.6591$0.7987
ETH<0.01%$0.04198618.6625$0.7835
ETH<0.01%$0.006164126.108$0.7773
ETH<0.01%$1,494.790.00051767$0.7738
ETH<0.01%$30.810.0251$0.7718
ETH<0.01%$0.01395554.7598$0.7641
ETH<0.01%$0.2747462.7718$0.7615
ETH<0.01%$0.0005291,436.4884$0.7601
ETH<0.01%$0.01984338.2892$0.7597
ETH<0.01%$0.05932212.794$0.7589
ETH<0.01%$0.88630.8556$0.7583
ETH<0.01%$10.7506$0.7506
ETH<0.01%$0.00002431,318.9885$0.745
ETH<0.01%$0.0634111.693$0.7414
ETH<0.01%$1.160.636$0.7377
ETH<0.01%$0.00007110,045.293$0.715
ETH<0.01%$0.03540920.0323$0.7093
ETH<0.01%$0.01070865.3448$0.6997
ETH<0.01%$0.02365129.4$0.6953
ETH<0.01%$0.00361192.6119$0.6952
ETH<0.01%$0.04712414.6731$0.6914
ETH<0.01%$0.00147464.6383$0.6829
ETH<0.01%$0.00152446.6236$0.6789
ETH<0.01%$0.1412314.7357$0.6688
ETH<0.01%$0.0002392,716.815$0.65
ETH<0.01%$0.0154542.0478$0.6496
ETH<0.01%$0.003426189.5613$0.6493
ETH<0.01%$0.4048621.5982$0.647
ETH<0.01%$0.002156299.7483$0.6462
ETH<0.01%$0.00708889.6685$0.6355
ETH<0.01%$0.003063205.6274$0.6299
ETH<0.01%$0.0002982,076.9234$0.6194
ETH<0.01%<$0.000001218,494,402.2159$0.6192
ETH<0.01%$0.002109293.4568$0.6188
ETH<0.01%$0.2206992.7082$0.5976
ETH<0.01%<$0.000001327,291,333.2845$0.5969
ETH<0.01%$0.0924416.3882$0.5905
ETH<0.01%$0.00937962.6637$0.5877
ETH<0.01%$0.002352249.4889$0.5867
ETH<0.01%$0.0003091,885.3692$0.5828
ETH<0.01%$0.001722338.165$0.5822
ETH<0.01%$52.530.011$0.5791
ETH<0.01%$0.0004741,216.3635$0.5766
ETH<0.01%$0.9996120.5481$0.5478
ETH<0.01%$0.002553210.3059$0.5369
ETH<0.01%$16.960.0315$0.5336
ETH<0.01%$0.000163,302.1818$0.5276
ETH<0.01%$0.2716911.9148$0.5202
ETH<0.01%$19.090.027$0.5145
ETH<0.01%$0.004094125.5922$0.5142
ETH<0.01%$0.002115241.0665$0.5099
ETH<0.01%$0.00001147,765.253$0.5067
ETH<0.01%$0.00695771.6744$0.4986
ETH<0.01%$0.04169811.8492$0.494
ETH<0.01%$0.00001630,618.1291$0.4837
ETH<0.01%$0.0912415.1463$0.4695
ETH<0.01%$1,971.930.00023768$0.4686
ETH<0.01%$0.001045444.4753$0.4643
ETH<0.01%$1,792.40.00025535$0.4576
ETH<0.01%$0.02401218.8748$0.4532
ETH<0.01%$0.0000479,586.704$0.4529
ETH<0.01%$0.2482721.7959$0.4458
ETH<0.01%$0.01536828.2455$0.434
ETH<0.01%$1.320.3296$0.4337
ETH<0.01%$2.430.1758$0.4279
ETH<0.01%$0.02134419.8455$0.4235
ETH<0.01%$0.0195221.3472$0.4167
ETH<0.01%$0.000422978.8493$0.4134
ETH<0.01%$0.01288431.2651$0.4028
ETH<0.01%$9.060.0438$0.3964
ETH<0.01%$1.130.3502$0.3957
ETH<0.01%$14,952.550.00002642$0.395
ETH<0.01%$0.000001327,713.1347$0.3899
ETH<0.01%$0.000002237,452.4279$0.3894
ETH<0.01%$0.340331.1353$0.3863
ETH<0.01%$0.182992.0945$0.3832
ETH<0.01%$0.00422890$0.3805
ETH<0.01%$0.00001623,745.7217$0.378
ETH<0.01%$0.0000419,032.2103$0.3732
ETH<0.01%$10.3699$0.3699
ETH<0.01%$0.0002491,485.0793$0.3698
ETH<0.01%$0.2884981.2225$0.3526
ETH<0.01%$0.000388868.3866$0.3368
ETH<0.01%$0.000941350.6511$0.33
ETH<0.01%$0.0840143.8835$0.3262
ETH<0.01%$0.00341295.4915$0.3258
ETH<0.01%$0.001654193.9708$0.3208
ETH<0.01%$0.000745429.2628$0.3198
ETH<0.01%$0.000335943.4723$0.3161
ETH<0.01%$0.001116281.094$0.3136
ETH<0.01%$0.4619190.6769$0.3126
ETH<0.01%$93,2710.00000335$0.3124
ETH<0.01%$0.0001532,026.8591$0.3091
ETH<0.01%$0.002354129.8033$0.3055
ETH<0.01%$0.002681111.6446$0.2992
ETH<0.01%$0.0902443.2707$0.2951
ETH<0.01%$0.081413.6192$0.2946
ETH<0.01%$0.000504580.2264$0.2921
ETH<0.01%$0.0001322,192.0432$0.2904
ETH<0.01%$0.1968881.4281$0.2811
ETH<0.01%$0.9990540.2775$0.2772
ETH<0.01%$2.240.1228$0.275
ETH<0.01%$0.001733152.2352$0.2638
ETH<0.01%<$0.000001335,574,268.7172$0.2584
ETH<0.01%$0.00000466,132$0.2579
ETH<0.01%$0.9995020.2553$0.2552
ETH<0.01%$0.002001125.1558$0.2504
ETH<0.01%$0.4837240.5009$0.2423
ETH<0.01%$0.01578215.0407$0.2373
ETH<0.01%$0.01352216.8537$0.2279
ETH<0.01%$617.40.00036746$0.2268
ETH<0.01%$0.000082,780.9024$0.2227
ETH<0.01%$8,177.590.00002714$0.2219
ETH<0.01%$0.00731430.0587$0.2198
ETH<0.01%$0.0448934.8598$0.2181
ETH<0.01%$0.000354599.517$0.2121
ETH<0.01%$0.00550538.2122$0.2103
ETH<0.01%$0.00001414,425.9823$0.2032
ETH<0.01%$3.550.0572$0.2032
ETH<0.01%$0.00402749.9692$0.2012
ETH<0.01%$0.01980510.1512$0.201
ETH<0.01%$0.000908221.4451$0.201
ETH<0.01%$0.0148413.4987$0.2003
ETH<0.01%$0.0471954.1022$0.1936
ETH<0.01%$0.0211758.8181$0.1867
ETH<0.01%$0.000877202.6034$0.1776
ETH<0.01%$0.0361684.9$0.1772
ETH<0.01%$0.0334635.2313$0.175
ETH<0.01%$0.0343784.9682$0.1707
ETH<0.01%$0.001175142.7827$0.1678
ETH<0.01%<$0.0000013,127,543,957.446$0.1644
ETH<0.01%$1.010.1625$0.1634
ETH<0.01%$0.0001071,524.6155$0.1634
ETH<0.01%$0.1430831.1412$0.1632
ETH<0.01%<$0.0000013,558,115.116$0.1607
ETH<0.01%$0.00932216.5794$0.1545
ETH<0.01%$0.000212721.8721$0.153
ETH<0.01%$0.000561270.9257$0.1518
ETH<0.01%$0.1221261.2083$0.1475
ETH<0.01%$0.00000818,967.2434$0.143
ETH<0.01%$0.7087220.2015$0.1428
ETH<0.01%$0.0196386.8966$0.1354
ETH<0.01%$0.0022859.3164$0.1352
ETH<0.01%$0.3030020.4349$0.1317
ETH<0.01%$0.000131988.7193$0.1294
ETH<0.01%$1,953.930.00006625$0.1294
ETH<0.01%$0.00319640.4316$0.1291
ETH<0.01%$9.40.0136$0.1279
ETH<0.01%$0.00154479.1901$0.1222
ETH<0.01%$576.840.00020918$0.1206
ETH<0.01%$0.00909713.2427$0.1204
ETH<0.01%$0.00046260.5356$0.1197
ETH<0.01%$0.0386393.0607$0.1182
ETH<0.01%$20.053$0.1061
ETH<0.01%$0.0204695.126$0.1049
ETH<0.01%$0.00260139.0406$0.1015
BASE10.24%$0.9999149,824.5654$9,823.72
BASE3.13%$1,794.561.6706$2,998.08
BASE2.79%$93,1360.0287$2,671.61
BASE2.61%$0.000396,407,595.7102$2,501.46
BASE1.29%$0.06271919,690.2413$1,234.94
BASE1.02%$0.9985977.469$976
BASE0.63%$0.891672673.5952$600.63
BASE0.31%$1,796.740.1667$299.5
BASE0.13%$1.05116.776$122.73
BASE0.10%$0.790264121.4323$95.96
BASE0.10%$0.482882197.9225$95.57
BASE0.09%$93,6750.00096488$90.39
BASE0.09%$0.99994889.8056$89.8
BASE0.09%$1.1477.9387$88.85
BASE0.09%$0.113433766.6264$86.96
BASE0.08%$0.99988172.5565$72.55
BASE0.07%$0.56495116.5445$65.84
BASE0.07%$0.000001109,445,679.492$63.38
BASE0.06%$0.00393714,797.2362$58.25
BASE0.05%$0.0300861,703.1798$51.24
BASE0.05%$0.015433,220.4532$49.69
BASE0.05%$0.0212452,256.5397$47.94
BASE0.05%$0.0233081,949.3561$45.44
BASE0.04%$1,969.780.0187$36.88
BASE0.04%$0.00327310,868.7262$35.57
BASE0.03%$0.00295111,216.5041$33.1
BASE0.03%$0.132409246.8534$32.69
BASE0.03%$0.00207714,941.3642$31.04
BASE0.03%$2.8910.6616$30.81
BASE0.03%$2,152.290.0132$28.32
BASE0.03%$2.869.0673$25.93
BASE0.03%$163.050.158$25.76
BASE0.02%$0.000083282,671.5339$23.51
BASE0.02%$0.00054734,099.2639$18.64
BASE0.02%$93,4630.00019588$18.31
BASE0.02%$0.00101615,852.3814$16.1
BASE0.02%$0.0089281,736.9103$15.51
BASE0.02%$0.5661826.1006$14.78
BASE0.01%$53.30.2622$13.98
BASE0.01%$0.40361832.735$13.21
BASE0.01%$0.00053822,835.5108$12.29
BASE0.01%$0.046063249.4209$11.49
BASE0.01%$0.00009115,692.0711$10.4
BASE0.01%$0.00009115,692.0711$10.4
BASE<0.01%$0.010594771.0449$8.17
BASE<0.01%$0.20729438.493$7.98
BASE<0.01%$0.0021153,760.4946$7.95
BASE<0.01%$0.018254416.1392$7.6
BASE<0.01%$0.0000061,310,951.7997$7.56
BASE<0.01%$0.0033252,223.3365$7.39
BASE<0.01%$0.017566408.5113$7.18
BASE<0.01%$0.027418250.9394$6.88
BASE<0.01%$0.032521210.249$6.84
BASE<0.01%$0.019064355.4702$6.78
BASE<0.01%$0.006731956.7573$6.44
BASE<0.01%$0.06074100.3125$6.09
BASE<0.01%$0.0011045,491.1213$6.06
BASE<0.01%$0.24542223.9393$5.88
BASE<0.01%$0.1798530.6361$5.51
BASE<0.01%$0.006762792.2942$5.36
BASE<0.01%$0.004391,177.4705$5.17
BASE<0.01%$0.007679646.7284$4.97
BASE<0.01%<$0.000001220,697,009.9781$4.97
BASE<0.01%$0.000559,030.3216$4.96
BASE<0.01%$0.06091280.819$4.92
BASE<0.01%$0.00035313,627.1972$4.82
BASE<0.01%$1,912.30.00250049$4.78
BASE<0.01%$0.003971,129.6754$4.48
BASE<0.01%$0.0509484.613$4.31
BASE<0.01%$0.000016268,438.6274$4.31
BASE<0.01%$0.034065124.8606$4.25
BASE<0.01%$0.9990323.9816$3.98
BASE<0.01%$0.0005786,868.7355$3.97
BASE<0.01%$2.731.4084$3.84
BASE<0.01%$0.0014632,606.0313$3.81
BASE<0.01%$0.016037235.8745$3.78
BASE<0.01%$0.0000660,869.3497$3.68
BASE<0.01%$0.00049,089.5793$3.64
BASE<0.01%$0.7147044.8171$3.44
BASE<0.01%$0.0005026,318.581$3.17
BASE<0.01%$0.48186.4156$3.09
BASE<0.01%$0.03872175.2196$2.91
BASE<0.01%$0.0007893,632.243$2.87
BASE<0.01%$0.5419365.1814$2.81
BASE<0.01%$0.003576775.1583$2.77
BASE<0.01%$0.003876702.3929$2.72
BASE<0.01%$0.000942,895.075$2.72
BASE<0.01%$0.03755768.6473$2.58
BASE<0.01%$0.00015915,564.1706$2.48
BASE<0.01%$0.010967223.392$2.45
BASE<0.01%$0.20217611.0937$2.24
BASE<0.01%$0.006082367.2576$2.23
BASE<0.01%$0.000013168,677.0861$2.18
BASE<0.01%$0.00687316.1438$2.17
BASE<0.01%$0.0002398,887.3527$2.13
BASE<0.01%$1.651.2489$2.06
BASE<0.01%$0.2575247.371$1.9
BASE<0.01%$0.0017941,007.7051$1.81
BASE<0.01%$0.016422103.5181$1.7
BASE<0.01%$0.0015441,095.3394$1.69
BASE<0.01%$0.002517666.3458$1.68
BASE<0.01%$0.0165697.6533$1.62
BASE<0.01%$0.006178259.7105$1.6
BASE<0.01%$1.551.0312$1.6
BASE<0.01%$0.0005592,726.5213$1.52
BASE<0.01%$0.000012121,446.5446$1.47
BASE<0.01%$0.0002276,128.4817$1.39
BASE<0.01%$0.10275312.7597$1.31
BASE<0.01%$0.004349300.0104$1.3
BASE<0.01%$0.01900268.2493$1.3
BASE<0.01%$0.011404108.974$1.24
BASE<0.01%$0.9994881.2326$1.23
BASE<0.01%$0.730651.6793$1.23
BASE<0.01%$0.000004324,405.3477$1.17
BASE<0.01%$0.0005792,016.6229$1.17
BASE<0.01%$11.065$1.07
BASE<0.01%$0.004464233.1437$1.04
BASE<0.01%$0.000002627,499.4708$1
BASE<0.01%$0.01087187.1164$0.947
BASE<0.01%$0.00004222,346.4603$0.9434
BASE<0.01%$0.003946223.257$0.8808
BASE<0.01%$2.750.3126$0.8597
BASE<0.01%$0.00688111.3834$0.7663
BASE<0.01%$0.000007117,721.831$0.7651
BASE<0.01%<$0.0000011,232,468,578.9682$0.7394
BASE<0.01%$0.00083838.0553$0.6953
BASE<0.01%$0.000888756.4326$0.6718
BASE<0.01%$0.000005117,788.3101$0.6454
BASE<0.01%$0.9575690.6559$0.628
BASE<0.01%$0.00002228,000.816$0.6095
BASE<0.01%$0.02919220.6092$0.6016
BASE<0.01%$0.01035557.5835$0.5962
BASE<0.01%$0.0640768.4502$0.5414
BASE<0.01%$0.0645278.3165$0.5366
BASE<0.01%$0.0013412.2009$0.5357
BASE<0.01%<$0.0000011,041,701,264.8364$0.5208
BASE<0.01%$0.4099591.2451$0.5104
BASE<0.01%$0.000727665.067$0.4833
BASE<0.01%$0.0003641,325.7756$0.4829
BASE<0.01%$0.00001337,174.677$0.4702
BASE<0.01%$1,887.220.00019214$0.3626
BASE<0.01%$0.00600458.4126$0.3507
BASE<0.01%$0.249211.3772$0.3432
BASE<0.01%<$0.00000117,739,573.1625$0.3405
BASE<0.01%$0.1699671.8957$0.3221
BASE<0.01%$0.0319049.5681$0.3052
BASE<0.01%$0.0001162,587.4376$0.2995
BASE<0.01%$0.0000214,596.3911$0.2987
BASE<0.01%$0.3134010.936$0.2933
BASE<0.01%$5.610.0505$0.2835
BASE<0.01%$0.00361270.75$0.2555
BASE<0.01%$0.00000830,575.3021$0.2436
BASE<0.01%$0.9987810.2396$0.2393
BASE<0.01%$0.01879312.6488$0.2377
BASE<0.01%$0.001309164.9853$0.2159
BASE<0.01%$1.080.198$0.2146
BASE<0.01%$0.000877219.5252$0.1925
BASE<0.01%$0.000255740.004$0.1888
BASE<0.01%$0.00235172.429$0.1702
BASE<0.01%$0.00000271,051.0938$0.1683
BASE<0.01%$0.0985811.6338$0.161
BASE<0.01%$0.2813460.5579$0.1569
BASE<0.01%$1,933.740.00007775$0.1503
BASE<0.01%$0.0000433,326.7869$0.1434
BASE<0.01%$0.0250145.2537$0.1314
BASE<0.01%$0.5596450.2341$0.131
BASE<0.01%$0.00336535.5081$0.1194
BASE<0.01%$0.4959880.228$0.113
BASE<0.01%$1.010.1104$0.1116
ARB7.04%$0.9999126,754.609$6,754.01
ARB3.78%$1,794.562.0197$3,624.49
ARB1.84%$93,5830.0188$1,761.64
ARB0.56%$1,794.810.3009$540.1
ARB0.28%$163.061.6337$266.39
ARB0.24%$1229.2428$229.24
ARB0.23%$1,805.50.1247$225.11
ARB0.14%$0.999912132.7363$132.72
ARB0.10%$14.546.2763$91.26
ARB0.07%$2,152.270.0312$67.26
ARB0.04%$0.0308751,304.5172$40.28
ARB0.03%$0.32990688.5276$29.21
ARB0.02%$122.8182$22.82
ARB0.02%$120.9621$20.96
ARB0.02%$14.951.3549$20.26
ARB0.02%$21.810.9175$20.01
ARB0.02%$2.735.8542$15.98
ARB0.02%$115.8292$15.83
ARB0.01%$0.000016647,959.6806$10.26
ARB<0.01%$43.330.1881$8.15
ARB<0.01%$0.0069621,142.9247$7.96
ARB<0.01%$0.00059111,781.8595$6.97
ARB<0.01%$0.000024280,669.7608$6.66
ARB<0.01%$0.21448129.5481$6.34
ARB<0.01%$0.00055910,916.9386$6.11
ARB<0.01%$3.541.5086$5.34
ARB<0.01%<$0.00000113,263,509,025.7531$3.98
ARB<0.01%$0.6833865.8052$3.97
ARB<0.01%$0.029488111.4082$3.29
ARB<0.01%$0.898983.6169$3.25
ARB<0.01%$0.9996373.0331$3.03
ARB<0.01%$1.112.5899$2.87
ARB<0.01%$0.9992852.6711$2.67
ARB<0.01%$383.920.00634329$2.44
ARB<0.01%$12.3953$2.4
ARB<0.01%$5.950.3622$2.16
ARB<0.01%$93,4590.00001823$1.7
ARB<0.01%$93,7210.00001531$1.43
ARB<0.01%$2.050.6935$1.42
ARB<0.01%$0.00011111,454.201$1.27
ARB<0.01%$93,6140.00001251$1.17
ARB<0.01%$0.9999961.1568$1.16
ARB<0.01%$0.004922208.1864$1.02
ARB<0.01%$0.00653156.2754$1.02
ARB<0.01%$0.01455768.6671$0.9995
ARB<0.01%$0.8047431.2299$0.9897
ARB<0.01%$0.000253,391.2508$0.8491
ARB<0.01%$0.2048473.8346$0.7855
ARB<0.01%$0.01428154.6335$0.7802
ARB<0.01%$0.988310.7584$0.7495
ARB<0.01%$0.002933220.221$0.6458
ARB<0.01%$1,876.150.00024974$0.4685
ARB<0.01%$10.4644$0.4648
ARB<0.01%$0.9993060.3722$0.3719
ARB<0.01%$0.0456186.9832$0.3185
ARB<0.01%$0.0605195.0818$0.3075
ARB<0.01%$0.000002122,965.5823$0.2914
ARB<0.01%$0.01870714.1352$0.2644
ARB<0.01%$0.0327427.4531$0.244
ARB<0.01%$0.5675680.4146$0.2352
ARB<0.01%$0.9999870.1779$0.1778
ARB<0.01%$0.9986210.1747$0.1744
ARB<0.01%$0.00589229.5442$0.174
ARB<0.01%$0.00000917,748.5245$0.1616
ARB<0.01%$10.1564$0.1563
ARB<0.01%$1,805.590.00008627$0.1557
ARB<0.01%$0.1121761.3656$0.1531
ARB<0.01%$0.0912281.6623$0.1516
ARB<0.01%$0.0036240.2264$0.1456
ARB<0.01%$93,6710.00000138$0.1292
POL12.04%$0.44703525,838.2316$11,550.59
POL0.83%$1792.2017$792.2
POL0.45%$93,5830.00461988$432.34
POL0.43%$1,797.070.2276$408.94
POL0.17%$0.999912161.2928$161.28
POL0.11%$0.999912109.9643$109.95
POL0.05%$0.275685169.7193$46.79
POL0.04%$0.220491187.3419$41.31
POL0.04%$0.064621624.7536$40.37
POL0.03%$0.0070523,973.3497$28.02
POL0.02%$0.2969763.6517$18.9
POL0.02%$12.791.1847$15.15
POL<0.01%$0.22553937.3409$8.42
POL<0.01%$0.046832145.6339$6.82
POL<0.01%$3,341.080.00196736$6.57
POL<0.01%$1.145.7057$6.5
POL<0.01%$1.145.7057$6.5
POL<0.01%$0.024952242.6187$6.05
POL<0.01%$0.000766,818.3732$5.18
POL<0.01%$0.34289614.8158$5.08
POL<0.01%$0.12641733.9141$4.29
POL<0.01%$0.9999873.4921$3.49
POL<0.01%$0.06091251.35$3.13
POL<0.01%$0.006263445.14$2.79
POL<0.01%$0.02847880.7212$2.3
POL<0.01%$0.4951154.293$2.13
POL<0.01%$0.3112226.0026$1.87
POL<0.01%$0.001899835.659$1.59
POL<0.01%$163.060.00942984$1.54
POL<0.01%$0.0002026,855.2296$1.38
POL<0.01%$0.001347987.7914$1.33
POL<0.01%$0.003727351.7355$1.31
POL<0.01%$0.5671512.1563$1.22
POL<0.01%$11.1898$1.19
POL<0.01%$0.05989519.6911$1.18
POL<0.01%$0.004242272.9097$1.16
POL<0.01%$5.950.1809$1.08
POL<0.01%$0.05071121.015$1.07
POL<0.01%$0.01216887.4222$1.06
POL<0.01%$0.003747281.5452$1.05
POL<0.01%$14.540.0658$0.9561
POL<0.01%<$0.0000019,810,976.2252$0.8771
POL<0.01%$0.00833899.7466$0.8317
POL<0.01%$0.004382182.3338$0.7989
POL<0.01%$2,152.270.00033952$0.7307
POL<0.01%$10.6101$0.6106
POL<0.01%$0.00986957$0.5625
POL<0.01%$0.0650088.164$0.5307
POL<0.01%$0.2544361.887$0.4801
POL<0.01%$0.2204382.1716$0.478705
POL<0.01%$0.000114,302.1588$0.4737
POL<0.01%$0.2045822.2533$0.4609
POL<0.01%$0.8119240.5291$0.4295
POL<0.01%$0.9971470.4003$0.3991
POL<0.01%$0.1966221.7915$0.3522
POL<0.01%$0.3136281.116$0.3499
POL<0.01%$0.1217972.6806$0.3264
POL<0.01%$0.6833860.4518$0.3087
POL<0.01%$0.000881335.1815$0.2953
POL<0.01%$0.001047268.4248$0.2811
POL<0.01%$0.001904146.3589$0.2786
POL<0.01%$0.00285589.5683$0.2557
POL<0.01%$0.001931106.5258$0.2057
POL<0.01%$0.2795380.6214$0.1737
POL<0.01%$1,801.60.00009608$0.1731
POL<0.01%$0.0722592.0209$0.146
POL<0.01%$0.000302447.4083$0.1351
POL<0.01%$0.000324416.1988$0.1347
POL<0.01%$0.760650.1737$0.1321
POL<0.01%$0.0283654.62$0.131
POL<0.01%$0.000122969.3328$0.1183
POL<0.01%$0.0000166,792.8902$0.1087
POL<0.01%$0.0912281.1633$0.1061
POL<0.01%$0.00222946.1363$0.1028
POL<0.01%$0.00631416.12$0.1017
GNO6.22%$1,807.213.3$5,963.86
GNO0.04%$114.940.3294$37.86
GNO<0.01%$1.141.4267$1.63
GNO<0.01%$1.141.4267$1.63
GNO<0.01%$0.03977234.6203$1.38
GNO<0.01%$0.9999341.1853$1.19
GNO
xDai (XDAI)
<0.01%$0.9999340.6863$0.686245
GNO<0.01%$0.9998740.6716$0.6715
GNO<0.01%$0.9998740.4554$0.4553
GNO<0.01%$0.9838350.1648$0.1621
BSC1.42%$0.0848316,103.375$1,366.05
BSC0.57%$617.40.8916$550.49
BSC0.50%$1,798.050.2689$483.48
BSC0.50%$2.22216.6304$481.95
BSC0.27%$93,452.320.00272293$254.46
BSC0.18%<$0.0000012,631,236,466.7135$177.17
BSC0.16%$0.01425511,043.0888$157.42
BSC0.16%$1156.9968$157
BSC0.13%$619.030.1977$122.4
BSC0.07%$6.6810.2393$68.4
BSC0.05%$0.99985951.9881$51.98
BSC0.04%$0.335417125.5302$42.1
BSC0.04%$0.9989439.2698$39.23
BSC0.04%$43.390.8043$34.9
BSC0.04%$0.0105083,215.0765$33.78
BSC0.03%$93,4900.00035628$33.31
BSC0.03%$2.0614.9897$30.88
BSC0.02%$0.092441239.0546$22.1
BSC0.02%$0.069496308.0271$21.41
BSC0.02%$0.0134351,511.3389$20.31
BSC0.02%$0.134463145.8641$19.61
BSC0.02%$119.0407$19.05
BSC0.02%$0.000061297,659.6284$18.09
BSC0.02%$0.018488900.1388$16.64
BSC0.02%$0.028135588.9555$16.57
BSC0.02%$0.03064528.0811$16.18
BSC0.01%$0.000109130,081.1789$14.21
BSC0.01%$1.39.6229$12.54
BSC0.01%$0.000016789,706.2544$12.48
BSC0.01%$0.019719614.0624$12.11
BSC0.01%$0.013691859.8183$11.77
BSC0.01%$0.00017168,111.4536$11.67
BSC0.01%<$0.0000018,108,807,328.0775$11.66
BSC0.01%$0.99988111.4649$11.46
BSC0.01%$151.350.0728$11.01
BSC0.01%$0.00014772,852.2054$10.68
BSC0.01%<$0.000001771,430,606.3369$10.59
BSC0.01%$0.2477942.7108$10.58
BSC0.01%$0.99933610.449$10.44
BSC0.01%$0.0000091,086,148.9056$9.87
BSC<0.01%$0.038277241.6952$9.25
BSC<0.01%$0.0024183,782.2884$9.15
BSC<0.01%$0.12863570.8047$9.11
BSC<0.01%$0.0043942,005.7867$8.81
BSC<0.01%$93,5070.00009246$8.65
BSC<0.01%$0.012939593.3641$7.68
BSC<0.01%$0.0045221,693.5479$7.66
BSC<0.01%$0.0000015,155,398.1734$7.58
BSC<0.01%$2.742.7004$7.39
BSC<0.01%<$0.0000013,065,236,324,868.9526$7.29
BSC<0.01%$5.961.1743$6.99
BSC<0.01%<$0.0000011,340,777,038.3322$6.85
BSC<0.01%$2.722.515$6.84
BSC<0.01%$4.071.6733$6.81
BSC<0.01%$5.511.1783$6.49
BSC<0.01%$0.000007959,077.8614$6.44
BSC<0.01%$0.21539329.4899$6.35
BSC<0.01%$0.8432157.5319$6.35
BSC<0.01%$0.0632596.2058$6.08
BSC<0.01%$0.07178784.2297$6.05
BSC<0.01%$3.121.9298$6.02
BSC<0.01%<$0.00000142,524,670.3113$5.94
BSC<0.01%$0.025066228.4561$5.73
BSC<0.01%$0.9986845.686$5.68
BSC<0.01%$0.20495327.6934$5.68
BSC<0.01%$2.072.7241$5.64
BSC<0.01%$0.40432913.7788$5.57
BSC<0.01%$0.002961,859.3139$5.5
BSC<0.01%$0.10347250.6588$5.24
BSC<0.01%$0.005415967.1948$5.24
BSC<0.01%<$0.000001487,871,614.9104$5.19
BSC<0.01%$0.00009454,723.4487$5.12
BSC<0.01%$0.00032415,650.0852$5.08
BSC<0.01%$0.4999099.4205$4.71
BSC<0.01%$0.019856237.0817$4.71
BSC<0.01%$0.0008335,600.006$4.67
BSC<0.01%$0.05573982.9886$4.63
BSC<0.01%$15.720.2932$4.61
BSC<0.01%$0.000014325,299.6081$4.48
BSC<0.01%$0.0020352,179.7536$4.44
BSC<0.01%$0.514617.8803$4.06
BSC<0.01%$0.028266143.395$4.05
BSC<0.01%$0.06493462.3111$4.05
BSC<0.01%$0.0004958,089.647$4.01
BSC<0.01%$163.530.0244$3.99
BSC<0.01%$4.360.9001$3.93
BSC<0.01%$0.020269193.4793$3.92
BSC<0.01%$0.0014832,640.8726$3.92
BSC<0.01%$5.350.7252$3.88
BSC<0.01%$0.020198190.279$3.84
BSC<0.01%$0.18437120.5065$3.78
BSC<0.01%$0.00013527,024.1134$3.65
BSC<0.01%$0.00893392.0843$3.5
BSC<0.01%$0.028094122.9794$3.45
BSC<0.01%$9.40.3645$3.43
BSC<0.01%$2.081.6336$3.4
BSC<0.01%$0.12239727.1663$3.33
BSC<0.01%$0.07790342.0187$3.27
BSC<0.01%$0.030901105.0387$3.25
BSC<0.01%$0.05879355.0925$3.24
BSC<0.01%$22.650.1413$3.2
BSC<0.01%$0.5683275.5729$3.17
BSC<0.01%$0.005791517.6437$3
BSC<0.01%$0.07845438.0845$2.99
BSC<0.01%$0.08379135.0703$2.94
BSC<0.01%$0.00009231,467.8581$2.89
BSC<0.01%$0.0017891,529.1866$2.74
BSC<0.01%$0.004524601.3618$2.72
BSC<0.01%<$0.00000161,569,609.966$2.57
BSC<0.01%$0.0003148,156.2513$2.56
BSC<0.01%$0.07429634.3649$2.55
BSC<0.01%$0.026195.0777$2.48
BSC<0.01%$0.000007345,672.2415$2.48
BSC<0.01%$0.000212,293.1272$2.46
BSC<0.01%$2.470.9896$2.44
BSC<0.01%$0.22267710.8763$2.42
BSC<0.01%$361.170.00645393$2.33
BSC<0.01%$0.007088318.7109$2.26
BSC<0.01%$0.0005753,925.6044$2.26
BSC<0.01%$0.0003825,903.226$2.26
BSC<0.01%$2.161.0409$2.25
BSC<0.01%$0.10616521.0452$2.23
BSC<0.01%$0.002483894.5655$2.22
BSC<0.01%$0.2846287.7113$2.19
BSC<0.01%$0.021607100.8823$2.18
BSC<0.01%$0.20731110.4674$2.17
BSC<0.01%$0.000007310,873.7968$2.12
BSC<0.01%$0.3488396.0602$2.11
BSC<0.01%$0.9219482.2306$2.06
BSC<0.01%$0.000004498,939.1251$2.03
BSC<0.01%$0.6528423.108$2.03
BSC<0.01%$0.007755261.0458$2.02
BSC<0.01%$0.002133948.2137$2.02
BSC<0.01%$175.840.011$1.93
BSC<0.01%$0.6060523.1685$1.92
BSC<0.01%$0.09014621.2367$1.91
BSC<0.01%$0.007779240.4605$1.87
BSC<0.01%$0.02626670.9101$1.86
BSC<0.01%$0.02187785.0802$1.86
BSC<0.01%$0.0009361,981.791$1.86
BSC<0.01%$0.000003543,855.2572$1.83
BSC<0.01%$0.01909793.102$1.78
BSC<0.01%$0.0005543,197.9817$1.77
BSC<0.01%$0.02901860.4446$1.75
BSC<0.01%$0.2676866.5071$1.74
BSC<0.01%$0.01767498.2185$1.74
BSC<0.01%$16.880.1026$1.73
BSC<0.01%$0.009774175.4878$1.72
BSC<0.01%$0.0246267.5003$1.66
BSC<0.01%<$0.0000013,551,197.1764$1.64
BSC<0.01%$1.511.0807$1.63
BSC<0.01%$0.6752432.4137$1.63
BSC<0.01%$0.04328237.0429$1.6
BSC<0.01%$0.000002662,546.6992$1.57
BSC<0.01%$0.01645193.7478$1.54
BSC<0.01%$2.950.5211$1.54
BSC<0.01%$0.6816322.2468$1.53
BSC<0.01%$0.02299564.4789$1.48
BSC<0.01%$0.008641166.1626$1.44
BSC<0.01%$0.1834787.7977$1.43
BSC<0.01%$0.000014103,742.2749$1.41
BSC<0.01%$0.1799867.636$1.37
BSC<0.01%$0.3359693.9311$1.32
BSC<0.01%$0.02602450.6314$1.32
BSC<0.01%$0.004404288.8578$1.27
BSC<0.01%$0.05684622.18$1.26
BSC<0.01%$0.3281393.8106$1.25
BSC<0.01%$0.0002315,343.7387$1.24
BSC<0.01%$0.010728113.1395$1.21
BSC<0.01%$0.0003493,448.7063$1.2
BSC<0.01%<$0.00000118,528,871.1116$1.2
BSC<0.01%$0.01602274.7406$1.2
BSC<0.01%$0.01360887.2842$1.19
BSC<0.01%$0.0005672,066.828$1.17
BSC<0.01%$93,2280.00001245$1.16
BSC<0.01%$0.00006817,031.9558$1.16
BSC<0.01%$0.0000011,945,161.989$1.14
BSC<0.01%$0.004546245.3291$1.12
BSC<0.01%$0.0428325.7804$1.1
BSC<0.01%$0.08401413.0575$1.1
BSC<0.01%$0.00968108.6674$1.05
BSC<0.01%$0.2698263.8761$1.05
BSC<0.01%$0.02003551.6951$1.04
BSC<0.01%$0.02444842.0194$1.03
BSC<0.01%<$0.0000019,855,764.0207$0.9658
BSC<0.01%$0.00019,455.0365$0.942
BSC<0.01%<$0.0000017,319,737.5529$0.9318
BSC<0.01%$0.1476576.3105$0.9317
BSC<0.01%<$0.00000183,057,882,794.6911$0.9293
BSC<0.01%$0.003516262.5633$0.923
BSC<0.01%$0.004008229.2854$0.9189
BSC<0.01%$0.1821555.034$0.9169
BSC<0.01%$33.080.0274$0.9066
BSC<0.01%$14.530.0623$0.9051
BSC<0.01%$0.1366086.5943$0.9008
BSC<0.01%<$0.0000016,165,031,956.8236$0.8985
BSC<0.01%$0.0000011,398,201.2545$0.8941
BSC<0.01%$0.0000939,469.292$0.8842
BSC<0.01%$0.00496174.4187$0.8651
BSC<0.01%$0.01781646.0056$0.8196
BSC<0.01%$677.140.00119399$0.8084
BSC<0.01%$0.05984913.2946$0.7956
BSC<0.01%<$0.000001194,667,890,498.3453$0.7942
BSC<0.01%$0.07235310.9315$0.7909
BSC<0.01%$0.6470581.1989$0.7757
BSC<0.01%$5.710.1335$0.762
BSC<0.01%$0.02988724.8934$0.7439
BSC<0.01%<$0.000001160,612,052.0339$0.7428
BSC<0.01%$0.01564147.1128$0.7368
BSC<0.01%$0.003514209.6768$0.7368
BSC<0.01%$0.001295559.2925$0.7241
BSC<0.01%<$0.000001710,081,679.8005$0.71
BSC<0.01%<$0.0000013,819,904.8583$0.6839
BSC<0.01%$0.5444521.2303$0.6698
BSC<0.01%$0.01912634.9979$0.6693
BSC<0.01%$0.0004741,393.923$0.6613
BSC<0.01%$0.0001344,911.8636$0.6589
BSC<0.01%$0.6938270.9488$0.6583
BSC<0.01%$0.01140957.2071$0.6526
BSC<0.01%<$0.000001588,563,638.1595$0.6384
BSC<0.01%<$0.0000017,835,672.7068$0.6258
BSC<0.01%$0.0760448.038$0.6112
BSC<0.01%$0.01027458.7939$0.604
BSC<0.01%$0.01981330.0755$0.5958
BSC<0.01%$0.00003715,763.987$0.5908
BSC<0.01%$92,0410.00000602$0.554
BSC<0.01%$0.2466392.1926$0.5407
BSC<0.01%$0.00074729.0451$0.5394
BSC<0.01%$0.0001483,564.0747$0.5268
BSC<0.01%$0.002755185.4444$0.5108
BSC<0.01%$0.0797446.3168$0.5037
BSC<0.01%$0.002568193.6684$0.4973
BSC<0.01%<$0.0000012,496,901.9508$0.4923
BSC<0.01%$0.00003713,223.5431$0.4899
BSC<0.01%$0.1145274.208$0.4819
BSC<0.01%$0.001698272.9129$0.4633
BSC<0.01%$0.000987458.418$0.4522
BSC<0.01%$0.0000746,082.762$0.4475
BSC<0.01%$0.1232053.607$0.4444
BSC<0.01%$0.01967122.5422$0.4434
BSC<0.01%$0.00869650.7493$0.4413
BSC<0.01%$0.00808354.449$0.4401
BSC<0.01%$0.001034421.944$0.436
BSC<0.01%$0.2849381.5278$0.4353
BSC<0.01%$0.1933162.2175$0.4286
BSC<0.01%$0.00485587.8984$0.4267
BSC<0.01%$0.02539616.7643$0.4257
BSC<0.01%$0.3110371.3469$0.4189
BSC<0.01%$0.0469868.9138$0.4188
BSC<0.01%$0.1660642.5073$0.4163
BSC<0.01%$1.910.2164$0.4133
BSC<0.01%<$0.0000013,573,455,187,837.415$0.4001
BSC<0.01%$0.001544256.1898$0.3954
BSC<0.01%$0.01560925.028$0.3906
BSC<0.01%$0.01777621.5198$0.3825
BSC<0.01%$0.0000137,995.2318$0.378
BSC<0.01%$0.000003133,953.6713$0.3697
BSC<0.01%$0.002819130.9849$0.3692
BSC<0.01%$0.0000218,638.3325$0.3675
BSC<0.01%$0.02194616.5116$0.3623
BSC<0.01%$1,798.320.00019686$0.354
BSC<0.01%$0.001488232.731$0.3463
BSC<0.01%$0.1123333.0494$0.3425
BSC<0.01%$0.1887491.8035$0.3403
BSC<0.01%$0.5643840.5968$0.3368
BSC<0.01%$0.000409821.9505$0.3364
BSC<0.01%$0.00002712,524.7802$0.3319
BSC<0.01%$0.2589211.2672$0.3281
BSC<0.01%$10.3262$0.3262
BSC<0.01%$0.0920113.4174$0.3144
BSC<0.01%$0.0127224.4503$0.311
BSC<0.01%$0.000948326.3666$0.3094
BSC<0.01%$0.01018328.804$0.2933
BSC<0.01%$0.5999060.4686$0.281
BSC<0.01%$0.000358781.8536$0.2798
BSC<0.01%$0.2142831.281$0.2744
BSC<0.01%$1,495.130.00018001$0.2691
BSC<0.01%$0.001116240.4827$0.2683
BSC<0.01%<$0.000001239,374,026.7776$0.2656
BSC<0.01%$1.050.2496$0.2621
BSC<0.01%$0.01643815.9021$0.2613
BSC<0.01%$0.0311128.3737$0.2605
BSC<0.01%$0.0320148.0881$0.2589
BSC<0.01%$0.00332876.9492$0.256
BSC<0.01%$0.1968881.2853$0.253
BSC<0.01%<$0.0000011,216,162.4371$0.2508
BSC<0.01%$0.9839880.2541$0.25
BSC<0.01%$0.00205120.7831$0.2476
BSC<0.01%$0.0000514,815.7212$0.2466
BSC<0.01%$0.01561115.5366$0.2425
BSC<0.01%$40.880.00581775$0.2378
BSC<0.01%$0.002017116.6433$0.2352
BSC<0.01%$0.01126220.7312$0.2334
BSC<0.01%$0.001745128.7066$0.2246
BSC<0.01%$0.031747.0511$0.2238
BSC<0.01%$0.000469475.6592$0.2229
BSC<0.01%$5,067.560.00004354$0.2206
BSC<0.01%$0.001185184.3751$0.2184
BSC<0.01%$0.01086820.053$0.2179
BSC<0.01%$0.00289172.3841$0.2092
BSC<0.01%$0.00771326.6691$0.2057
BSC<0.01%$0.0209459.7219$0.2036
BSC<0.01%$1,888.850.00010669$0.2015
BSC<0.01%$0.0273977.3481$0.2013
BSC<0.01%$0.143191.394$0.1996
BSC<0.01%$0.00001216,112.2139$0.1978
BSC<0.01%<$0.0000012,399,646,590.5978$0.1952
BSC<0.01%$0.00294661.894$0.1823
BSC<0.01%$2.930.0584$0.1711
BSC<0.01%$0.000001133,592.5784$0.1709
BSC<0.01%<$0.000001110,945,398.557$0.1669
BSC<0.01%$0.022257.4922$0.1667
BSC<0.01%$0.00582627.9883$0.163
BSC<0.01%$0.00846318.687$0.1581
BSC<0.01%<$0.000001222,358,110,651.4647$0.1546
BSC<0.01%$0.00560827.0678$0.1517
BSC<0.01%$0.7166420.21$0.1504
BSC<0.01%<$0.000001615,901,569.853$0.147
BSC<0.01%<$0.0000016,992,666,766.6272$0.1449
BSC<0.01%$0.00196172.1503$0.1414
BSC<0.01%$0.0897331.5373$0.1379
BSC<0.01%$0.000231595.141$0.1376
BSC<0.01%$2.520.0542$0.1365
BSC<0.01%$0.00776317.5821$0.1364
BSC<0.01%$0.0232115.8511$0.1358
BSC<0.01%$0.00269649.257$0.1328
BSC<0.01%$10.1311$0.1311
BSC<0.01%$0.0459112.8444$0.1305
BSC<0.01%$1.260.1$0.126
BSC<0.01%$0.0000383,224.7999$0.1222
BSC<0.01%$0.00134489.2908$0.12
BSC<0.01%$0.00535422.3718$0.1197
BSC<0.01%$8.020.0149$0.1193
BSC<0.01%$0.0898161.3189$0.1184
BSC<0.01%<$0.000001273,913.3635$0.1178
BSC<0.01%$0.9744060.1208$0.1177
BSC<0.01%$0.001113104.5115$0.1163
BSC<0.01%$0.00965411.7449$0.1133
BSC<0.01%<$0.00000167,400,523,939.0429$0.1133
BSC<0.01%$0.00463524.4229$0.1132
BSC<0.01%$0.6341340.1776$0.1126
BSC<0.01%$0.0776391.4394$0.1117
BSC<0.01%$0.001032106.9857$0.1104
BSC<0.01%$1.040.102$0.1057
BSC<0.01%$0.000108950.5503$0.1031
BSC<0.01%$0.3652550.2804$0.1024
BSC<0.01%$0.218950.461$0.1009
OP0.91%$1,793.880.4877$874.83
OP0.58%$1,794.560.3082$553.08
OP0.27%$0.999914261.888$261.87
OP0.16%$0.759385197.3377$149.86
OP0.09%$93,4630.00094424$88.25
OP0.06%$93,6000.00061962$58
OP0.05%$0.99991443.8834$43.88
OP0.03%$127.7211$27.72
OP0.02%$2,152.290.00874574$18.82
OP<0.01%$0.049096127.2785$6.25
OP<0.01%$0.10275342.7712$4.39
OP<0.01%$2.731.4973$4.09
OP<0.01%$10.910.3507$3.83
OP<0.01%$0.09592638.9633$3.74
OP<0.01%$13.4436$3.44
OP<0.01%$0.22432911.3852$2.55
OP<0.01%$0.0007461,885.8125$1.41
OP<0.01%$11.3964$1.4
OP<0.01%$0.9999931.2118$1.21
OP<0.01%$1,792.740.00044648$0.8004
OP<0.01%$0.7000460.6903$0.4832
OP<0.01%$0.00711739.5529$0.2815
OP<0.01%$10.1947$0.1947
OP<0.01%$0.2368970.8162$0.1933
OP<0.01%$0.0001151,602.345$0.1834
OP<0.01%$14.550.0096969$0.141
OP<0.01%$0.00279346.7662$0.1306
OP<0.01%$0.00512925.086$0.1286
OP<0.01%$0.2048460.5952$0.1219
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.