xDAI Price: $0.999775 (-0.03%)
Gas: 1 GWei

Contract

0x90CbE4BDd538D6e9b379bFF5fE72c3d67A521De5
Transaction Hash
Method
Block
From
To

There are no matching entries

4 Internal Transactions and > 10 Token Transfers found.

Latest 4 internal transactions

Parent Transaction Hash Block From To
391889062025-03-23 20:46:2030 days ago1742762780
0x90CbE4BD...67A521De5
0.14629078 xDAI
385378142025-02-13 7:13: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.52%$1,796.245.0371$9,047.8
ETH7.09%$0.9999556,740.1901$6,739.89
ETH2.75%$2.89904.0452$2,610.82
ETH1.47%$92,6890.015$1,394.4
ETH1.34%$11,268.5799$1,268.58
ETH0.43%$14.1928.7462$407.91
ETH0.41%$8.7244.169$385.26
ETH0.38%$0.2384681,510.0293$360.09
ETH0.33%$0.350707901.3769$316.12
ETH0.31%$0.1440752,069.5534$298.17
ETH0.27%$0.0278769,209.6214$256.73
ETH0.24%$1,796.240.1276$229.15
ETH0.19%$0.00825422,036.234$181.89
ETH0.18%$1,769.550.0985$174.24
ETH0.18%<$0.0000013,372,487,768.905$172.97
ETH0.17%$0.0567062,825.8005$160.24
ETH0.16%$1,764.310.0884$155.89
ETH0.16%$0.174201870.8871$151.71
ETH0.15%<$0.00000110,401,603,727.3684$144.59
ETH0.15%$3,397.940.0425$144.35
ETH0.14%$30.554.2185$128.89
ETH0.13%$0.540745228.1584$123.38
ETH0.12%<$0.00000119,798,425,197.575$114.81
ETH0.11%$4.3124.9484$107.53
ETH0.11%$0.0229914,607.3937$105.93
ETH0.11%$21.864.7968$104.86
ETH0.10%$0.305172320.2314$97.73
ETH0.10%$0.014956,114.1843$91.41
ETH0.09%$0.0281443,076.9888$86.6
ETH0.09%$0.99994186.3864$86.38
ETH0.09%$1.3762.85$86.1
ETH0.09%$0.169058480.3746$81.21
ETH0.08%$0.000316244,917.4772$77.4
ETH0.08%$0.0000352,130,580.8711$75.53
ETH0.08%$1,978.850.0377$74.64
ETH0.08%$1.1761.2013$71.61
ETH0.07%$0.081106861.0467$69.84
ETH0.07%$0.113314602.2738$68.25
ETH0.07%$0.0000441,491,370.927$66.32
ETH0.07%$0.078279834.4139$65.32
ETH0.07%$159.330.4096$65.26
ETH0.07%$105.580.6075$64.14
ETH0.07%$0.0526571,209.286$63.68
ETH0.07%$1.3446.3776$62.15
ETH0.06%$0.349013170.4632$59.49
ETH0.06%$0.200062296.5226$59.32
ETH0.06%$0.68953585.5382$58.98
ETH0.06%$0.0289072,037.6368$58.9
ETH0.06%$0.0455411,280.3561$58.31
ETH0.06%$26.852.1705$58.28
ETH0.06%$0.0369291,535.3398$56.7
ETH0.06%$0.71385778.0481$55.72
ETH0.06%$0.078706691.7982$54.45
ETH0.06%$1.1347.5626$53.94
ETH0.06%$0.0067827,730.7419$52.43
ETH0.05%$91,7970.00056201$51.59
ETH0.05%$0.066904765.496$51.21
ETH0.05%<$0.0000017,226,828,426.2352$49.24
ETH0.05%$0.0151243,140.2667$47.49
ETH0.05%$0.0000059,794,118.5691$47.27
ETH0.05%$0.0137563,415.141$46.98
ETH0.05%$0.273176168.7082$46.09
ETH0.05%$0.0185362,476.2554$45.9
ETH0.05%$0.0144123,026.5437$43.62
ETH0.05%$0.0000143,172,889.1471$43.21
ETH0.05%$0.0008650,128.5803$43.11
ETH0.05%$9.294.632$43.03
ETH0.05%$0.99605843.1516$42.98
ETH0.04%$0.0245171,735.9257$42.56
ETH0.04%$0.092276459.4101$42.39
ETH0.04%$0.149076263.9462$39.35
ETH0.04%$0.0109873,559.0996$39.1
ETH0.04%<$0.00000134,699,922,254,231.637$39
ETH0.04%$0.380681101.8899$38.79
ETH0.04%$0.00224217,119.7154$38.38
ETH0.04%$0.135124283.6802$38.33
ETH0.04%$0.141376269.1218$38.05
ETH0.04%<$0.00000183,327,486.9481$37.54
ETH0.04%<$0.0000011,028,282,804.5022$35.81
ETH0.04%$0.337014104.971$35.38
ETH0.04%<$0.00000110,585,851,253.0259$35.28
ETH0.04%$0.00089937,205.5392$33.46
ETH0.03%$0.0290481,140.2451$33.12
ETH0.03%$0.51185664.5413$33.04
ETH0.03%$0.91551335.4477$32.45
ETH0.03%$0.177078181.2161$32.09
ETH0.03%$0.00219514,557.8943$31.95
ETH0.03%$0.00057354,116.7565$31.02
ETH0.03%$0.25668120.3914$30.9
ETH0.03%$0.050918601.0687$30.61
ETH0.03%$2,119.740.0142$30.04
ETH0.03%$0.99831229.95$29.9
ETH0.03%$7.693.885$29.88
ETH0.03%$0.00106527,946.3605$29.75
ETH0.03%$53.030.5607$29.74
ETH0.03%$0.0000231,293,231.1248$29.5
ETH0.03%$0.054588537.9922$29.37
ETH0.03%$0.0061164,731.2371$28.94
ETH0.03%$0.043806647.8706$28.38
ETH0.03%$0.9667828.8872$27.93
ETH0.03%$0.0025211,046.3996$27.84
ETH0.03%$0.0043156,394.5502$27.59
ETH0.03%$0.094184288.4283$27.17
ETH0.03%$0.87222130.6488$26.73
ETH0.03%$0.034298756.9783$25.96
ETH0.03%$69.60.3641$25.34
ETH0.03%$0.054735462.0813$25.29
ETH0.03%$0.00156616,089.6215$25.2
ETH0.03%<$0.00000181,208,968.3732$25.04
ETH0.03%$0.004335,669.5427$24.55
ETH0.02%$0.122989191.0493$23.5
ETH0.02%$0.0143231,619.0331$23.19
ETH0.02%$0.09747237.6316$23.16
ETH0.02%$0.185627123.3976$22.91
ETH0.02%$0.0000036,472,169.3055$22.39
ETH0.02%$0.23733494.332$22.39
ETH0.02%$0.0187421,176.6555$22.05
ETH0.02%$0.27872779.11$22.05
ETH0.02%$0.7499829.142$21.86
ETH0.02%$0.081093267.2844$21.67
ETH0.02%$0.129217166.5761$21.52
ETH0.02%$0.0062463,426.9$21.41
ETH0.02%$2.0410.2913$20.99
ETH0.02%$0.40120151.8463$20.8
ETH0.02%$0.099276206.9602$20.55
ETH0.02%$2,027.170.01$20.27
ETH0.02%$0.0000092,248,216.2564$20.26
ETH0.02%$0.022806886.8167$20.22
ETH0.02%$0.032981608.8963$20.08
ETH0.02%$0.097405200.2446$19.5
ETH0.02%$0.33612657.1794$19.22
ETH0.02%$0.99982218.8208$18.82
ETH0.02%$1.1416.4467$18.75
ETH0.02%<$0.000001384,952,362.8424$18.66
ETH0.02%$17.681.0542$18.64
ETH0.02%$0.31601758.5036$18.49
ETH0.02%$2.946.1097$17.96
ETH0.02%$0.047636376.8234$17.95
ETH0.02%$0.40301144.5281$17.95
ETH0.02%$0.64166627.6447$17.74
ETH0.02%$0.071044245.4476$17.44
ETH0.02%$0.000056307,514.3034$17.21
ETH0.02%<$0.00000170,825,229.5005$17.19
ETH0.02%$0.082214208.3516$17.13
ETH0.02%$0.00086419,806.5513$17.12
ETH0.02%<$0.00000122,043,291,156,050.609$16.88
ETH0.02%$1,765.010.00946692$16.71
ETH0.02%$0.0059962,747.5266$16.47
ETH0.02%<$0.00000175,064,754.4953$16.37
ETH0.02%$0.98435616.553$16.29
ETH0.02%$0.0043193,683.5543$15.91
ETH0.02%$0.039461402.9503$15.9
ETH0.02%$0.024187654.0883$15.82
ETH0.02%$0.79439419.8083$15.74
ETH0.02%$0.00123112,519.5698$15.41
ETH0.02%$0.071208216.2922$15.4
ETH0.02%$0.55796227.4722$15.33
ETH0.02%$0.040355368.916$14.89
ETH0.02%$2.95.0385$14.61
ETH0.02%$0.0031484,637.5472$14.6
ETH0.02%$1,992.50.00730412$14.55
ETH0.02%$0.1806180.2931$14.5
ETH0.02%$0.00115312,517.1902$14.43
ETH0.02%$0.00121111,811.8599$14.3
ETH0.01%$6.412.1947$14.07
ETH0.01%$0.0057712,407.0164$13.89
ETH0.01%$0.0032334,275.4795$13.82
ETH0.01%$0.63360921.6248$13.7
ETH0.01%$10.241.3317$13.64
ETH0.01%$0.093795145.1053$13.61
ETH0.01%$0.00014295,871.9587$13.58
ETH0.01%$0.0000121,036,154.3846$12.94
ETH0.01%<$0.000001210,504,516.5527$12.93
ETH0.01%$0.20620562.4475$12.88
ETH0.01%$0.17988869.5294$12.51
ETH0.01%<$0.000001321,663,377.1224$12.5
ETH0.01%$0.092203135.3826$12.48
ETH0.01%$0.0103311,186.8662$12.26
ETH0.01%$0.000061202,092.1188$12.23
ETH0.01%$0.029568413.0654$12.21
ETH0.01%$0.66523618.2482$12.14
ETH0.01%$0.0063061,913.5828$12.07
ETH0.01%$0.000077155,355.2785$12.02
ETH0.01%$0.19979759.982$11.98
ETH0.01%$4.432.6978$11.94
ETH0.01%$0.0076051,555.0587$11.83
ETH0.01%$0.00028641,244.4075$11.79
ETH0.01%$0.53587921.9756$11.78
ETH0.01%$0.0057821,999.9351$11.56
ETH0.01%$4.492.5509$11.45
ETH0.01%$0.6174118.4019$11.36
ETH0.01%$0.017739627.3099$11.13
ETH0.01%$0.00000114,955,275.2809$11.03
ETH0.01%$0.18639658.6843$10.94
ETH0.01%$0.0091661,191.0161$10.92
ETH0.01%$0.35925729.4359$10.58
ETH0.01%$0.20479350.5109$10.34
ETH0.01%$0.90964811.3687$10.34
ETH0.01%$0.26034539.069$10.17
ETH0.01%$0.027098369.4645$10.01
ETH0.01%<$0.0000013,349,185,467.444$9.86
ETH0.01%$0.000064154,911.8661$9.86
ETH0.01%$3,394.80.002902$9.85
ETH0.01%$4.642.1112$9.8
ETH0.01%<$0.00000179,163,870.6062$9.75
ETH0.01%$0.0000033,635,434.7524$9.75
ETH0.01%$0.071625135.649$9.72
ETH0.01%$0.29458232.9514$9.71
ETH0.01%$0.09439102.6509$9.69
ETH<0.01%$0.044224214.7004$9.49
ETH<0.01%$19.4032$9.4
ETH<0.01%$0.00021244,120.5168$9.36
ETH<0.01%<$0.000001144,234,490.2313$9.34
ETH<0.01%$1.277.3188$9.29
ETH<0.01%$0.00000111,936,626.4432$9.21
ETH<0.01%$0.0061061,493.1072$9.12
ETH<0.01%$0.18338449.6132$9.1
ETH<0.01%$0.00017352,532.6871$9.09
ETH<0.01%$0.0025593,533.3034$9.04
ETH<0.01%$0.000065136,222.7278$8.9
ETH<0.01%$0.85623410.3917$8.9
ETH<0.01%$1.127.8829$8.83
ETH<0.01%$0.000026340,399.9999$8.8
ETH<0.01%$92,8450.00009457$8.78
ETH<0.01%$0.021098414.8915$8.75
ETH<0.01%$0.0008859,880.5685$8.75
ETH<0.01%$0.00000113,972,248.6316$8.64
ETH<0.01%$6,007.160.00140407$8.43
ETH<0.01%<$0.00000115,831,901,550.7711$8.41
ETH<0.01%$0.53270415.7462$8.39
ETH<0.01%$0.000024351,464.4258$8.37
ETH<0.01%<$0.000001129,865,764.6$8.36
ETH<0.01%$0.027708299.9598$8.31
ETH<0.01%$22.640.3639$8.24
ETH<0.01%$0.00054215,077.5526$8.17
ETH<0.01%$0.0037692,141.3314$8.07
ETH<0.01%$0.014211553.9107$7.87
ETH<0.01%$0.0021413,632.8143$7.78
ETH<0.01%<$0.00000119,496,614.7805$7.69
ETH<0.01%$0.13205556.9362$7.52
ETH<0.01%$0.11407165.6829$7.49
ETH<0.01%$0.0013985,221.4836$7.3
ETH<0.01%$174.250.0417$7.27
ETH<0.01%$0.0020253,533.1137$7.15
ETH<0.01%$0.0039711,800$7.15
ETH<0.01%$0.03021230.6028$6.97
ETH<0.01%$0.21585331.7872$6.86
ETH<0.01%$0.0000041,712,359.4924$6.85
ETH<0.01%$0.022561302.4729$6.82
ETH<0.01%<$0.00000149,214,200.9468$6.82
ETH<0.01%$0.0009936,819.6382$6.77
ETH<0.01%$0.0005811,617.317$6.74
ETH<0.01%$0.016206413.3976$6.7
ETH<0.01%$0.32407620.5947$6.67
ETH<0.01%<$0.0000014,200,000,000$6.54
ETH<0.01%$5,046.90.00129378$6.53
ETH<0.01%$0.007065918.5622$6.49
ETH<0.01%$0.0013164,927.9306$6.48
ETH<0.01%$0.0022122,930.4119$6.48
ETH<0.01%$0.29953621.3399$6.39
ETH<0.01%$0.0018363,426.6107$6.29
ETH<0.01%$0.10673758.8027$6.28
ETH<0.01%$0.031084201.615$6.27
ETH<0.01%$0.030211206.0196$6.22
ETH<0.01%$0.06712591.6603$6.15
ETH<0.01%$0.10843456.5316$6.13
ETH<0.01%$0.025812234.9676$6.06
ETH<0.01%$0.0052011,153.6247$6
ETH<0.01%$0.20233729.3283$5.93
ETH<0.01%$0.0010485,606.094$5.88
ETH<0.01%$0.011119517.5964$5.76
ETH<0.01%$0.00017931,817.409$5.7
ETH<0.01%$0.0028811,962.2114$5.65
ETH<0.01%$0.0000019,908,761.5227$5.61
ETH<0.01%$0.00012245,465.7408$5.52
ETH<0.01%$0.036637147.252$5.39
ETH<0.01%$0.11780745.3539$5.34
ETH<0.01%$20.530.2593$5.32
ETH<0.01%$0.005387986.8868$5.32
ETH<0.01%$0.037976139.6146$5.3
ETH<0.01%$0.015729336.6136$5.29
ETH<0.01%$0.5431629.7383$5.29
ETH<0.01%$0.49573610.6557$5.28
ETH<0.01%$0.17164130.6898$5.27
ETH<0.01%$0.0008885,882.5623$5.22
ETH<0.01%$0.010407500.4444$5.21
ETH<0.01%$0.5952228.7157$5.19
ETH<0.01%$0.00133,947.069$5.13
ETH<0.01%$0.20479325.0621$5.13
ETH<0.01%$0.16885530.3947$5.13
ETH<0.01%$0.6560067.8169$5.13
ETH<0.01%$0.514129.918$5.1
ETH<0.01%$0.000011442,788.5454$5.06
ETH<0.01%$0.010467483.0887$5.06
ETH<0.01%$0.0000013,652,536.2332$4.98
ETH<0.01%$0.000014364,508.5843$4.97
ETH<0.01%$0.19485125.4138$4.95
ETH<0.01%<$0.000001877,815,950.5989$4.91
ETH<0.01%$0.00712682.1386$4.86
ETH<0.01%$0.06688672.181$4.83
ETH<0.01%$0.0014823,257.2649$4.83
ETH<0.01%$14.8189$4.82
ETH<0.01%$0.010002470.7145$4.71
ETH<0.01%$0.000028166,366.4459$4.7
ETH<0.01%$0.015023312.5849$4.7
ETH<0.01%$113.930.0411$4.68
ETH<0.01%$0.005776798.4299$4.61
ETH<0.01%<$0.0000013,023,386,998.3823$4.59
ETH<0.01%$1,826.140.00249765$4.56
ETH<0.01%$0.00017326,368.1474$4.56
ETH<0.01%$0.00007361,997.3857$4.55
ETH<0.01%$0.007892573.8812$4.53
ETH<0.01%$0.00021720,599.395$4.47
ETH<0.01%$0.000022200,055.65$4.44
ETH<0.01%$1.652.674$4.42
ETH<0.01%<$0.0000011,058,657,192.1424$4.3
ETH<0.01%$0.012314349.3272$4.3
ETH<0.01%$0.0032871,286.0733$4.23
ETH<0.01%$0.0009654,373.8714$4.22
ETH<0.01%$0.5265557.9895$4.21
ETH<0.01%$0.29532714.1666$4.18
ETH<0.01%$0.08823247.06$4.15
ETH<0.01%$0.06667262.1832$4.15
ETH<0.01%$0.00026715,473.142$4.13
ETH<0.01%$0.7161735.7052$4.09
ETH<0.01%$0.19698420.5649$4.05
ETH<0.01%$0.00585689.6226$4.03
ETH<0.01%$0.008888439.5502$3.91
ETH<0.01%$0.019707197.086$3.88
ETH<0.01%<$0.00000114,405,947,890.6713$3.84
ETH<0.01%$0.6992675.4633$3.82
ETH<0.01%$1.013.7638$3.81
ETH<0.01%$0.010517359.9096$3.79
ETH<0.01%$0.0007355,119.9911$3.76
ETH<0.01%$0.1060735.0041$3.71
ETH<0.01%$6.020.6115$3.68
ETH<0.01%$0.0011283,250.572$3.67
ETH<0.01%$13.666$3.67
ETH<0.01%$0.016281224.7484$3.66
ETH<0.01%$0.004035898.38$3.63
ETH<0.01%<$0.000001228,860,667.027$3.62
ETH<0.01%$0.004146846.023$3.51
ETH<0.01%$3,370.940.00102673$3.46
ETH<0.01%$0.06416753.7708$3.45
ETH<0.01%$0.00009934,844.179$3.44
ETH<0.01%$0.000933,673.5176$3.42
ETH<0.01%$0.13609125.0872$3.41
ETH<0.01%$0.6390925.2407$3.35
ETH<0.01%$1,882.50.00177658$3.34
ETH<0.01%$0.0024741,345.961$3.33
ETH<0.01%$0.06359851.9188$3.3
ETH<0.01%$0.023944134.8228$3.23
ETH<0.01%$0.07194644.734$3.22
ETH<0.01%$0.19218916.697$3.21
ETH<0.01%$0.115427.8006$3.21
ETH<0.01%$0.0020011,578.5127$3.16
ETH<0.01%$0.8649773.4992$3.03
ETH<0.01%$0.009773308.7872$3.02
ETH<0.01%$0.0003378,875.173$3
ETH<0.01%$0.9809072.9715$2.91
ETH<0.01%$0.023333124.284$2.9
ETH<0.01%$0.03004395.6728$2.87
ETH<0.01%$0.08849232.396$2.87
ETH<0.01%$0.006576432.3731$2.84
ETH<0.01%$0.19755814.3075$2.83
ETH<0.01%$0.7813493.6099$2.82
ETH<0.01%$0.002844986.5208$2.81
ETH<0.01%$0.26364910.5037$2.77
ETH<0.01%$0.007163385.8503$2.76
ETH<0.01%$0.016216169.5693$2.75
ETH<0.01%$0.016462164.3386$2.71
ETH<0.01%$0.6237114.2995$2.68
ETH<0.01%$0.00003380,820.0916$2.65
ETH<0.01%$0.0005534,782.519$2.65
ETH<0.01%$0.0013551,950.255$2.64
ETH<0.01%$2.790.9464$2.64
ETH<0.01%$0.0015911,624.5525$2.58
ETH<0.01%$0.09081828.1411$2.56
ETH<0.01%$0.0007223,516.9802$2.54
ETH<0.01%$0.0003357,566.4571$2.54
ETH<0.01%$0.16861615$2.53
ETH<0.01%$0.16257715.4835$2.52
ETH<0.01%$0.021676115.482$2.5
ETH<0.01%$6.090.41$2.5
ETH<0.01%$0.0000021,101,160.4087$2.49
ETH<0.01%$0.05083548.5301$2.47
ETH<0.01%$0.007365325.905$2.4
ETH<0.01%$0.020227117.9173$2.39
ETH<0.01%$1.032.314$2.37
ETH<0.01%$0.00017113,905.2682$2.37
ETH<0.01%$0.0016741,408.3143$2.36
ETH<0.01%$0.17806213.1942$2.35
ETH<0.01%$0.010092232.4913$2.35
ETH<0.01%<$0.0000013,616,967,204.8345$2.34
ETH<0.01%$0.03032876.524$2.32
ETH<0.01%$0.003002759.7793$2.28
ETH<0.01%$0.003659619.984$2.27
ETH<0.01%$0.0004814,694.0212$2.26
ETH<0.01%$0.9976472.2616$2.26
ETH<0.01%$0.00021310,559.5012$2.25
ETH<0.01%$0.15714414.2976$2.25
ETH<0.01%<$0.00000142,352,269.9505$2.24
ETH<0.01%$42.880.052$2.23
ETH<0.01%$0.0007043,160.2623$2.22
ETH<0.01%<$0.00000150,009,730.2367$2.19
ETH<0.01%$1.091.9927$2.18
ETH<0.01%$1.032.1026$2.16
ETH<0.01%$0.07131630.1249$2.15
ETH<0.01%$0.015536137.2566$2.13
ETH<0.01%$0.03410561.7085$2.1
ETH<0.01%$0.0000021,269,749.3285$2.1
ETH<0.01%$0.05998635.0564$2.1
ETH<0.01%$0.02291491.5885$2.1
ETH<0.01%$0.14394214.5476$2.09
ETH<0.01%$0.006591315.8616$2.08
ETH<0.01%$0.00002484,548.0277$2.05
ETH<0.01%$0.2178599.3202$2.03
ETH<0.01%$0.8533722.3693$2.02
ETH<0.01%$0.000005392,206.2812$2.01
ETH<0.01%$0.04660242.4264$1.98
ETH<0.01%$0.0001414,074.8918$1.97
ETH<0.01%$0.2209978.8779$1.96
ETH<0.01%$0.548753.5476$1.95
ETH<0.01%$0.003826508.177$1.94
ETH<0.01%$0.0015551,239.7682$1.93
ETH<0.01%$0.2746127.0094$1.92
ETH<0.01%$0.0018381,037.1468$1.91
ETH<0.01%$0.02477176.621$1.9
ETH<0.01%$0.04119745.75$1.88
ETH<0.01%$0.03395655.4192$1.88
ETH<0.01%$0.016894111.2998$1.88
ETH<0.01%$27.660.0674$1.87
ETH<0.01%$0.02143286.5307$1.85
ETH<0.01%$0.006104302.5351$1.85
ETH<0.01%$0.0013541,362.1203$1.84
ETH<0.01%$0.002136861.0283$1.84
ETH<0.01%$2.530.7095$1.8
ETH<0.01%$0.014346125.0333$1.79
ETH<0.01%$0.006998255.4389$1.79
ETH<0.01%$0.0002158,177.0134$1.76
ETH<0.01%$0.03233353.9569$1.74
ETH<0.01%$0.3821924.5381$1.73
ETH<0.01%$0.0013971,240.551$1.73
ETH<0.01%$0.0000012,596,780.467$1.73
ETH<0.01%$0.02403272.0792$1.73
ETH<0.01%$0.00006825,505.3597$1.73
ETH<0.01%$0.00010516,522.029$1.73
ETH<0.01%$1.271.3549$1.72
ETH<0.01%$0.0003854,470.1553$1.72
ETH<0.01%$0.3646954.6675$1.7
ETH<0.01%$0.0011881,429.2583$1.7
ETH<0.01%$0.00003253,288.7112$1.68
ETH<0.01%$0.1933788.6796$1.68
ETH<0.01%$0.007865212.5023$1.67
ETH<0.01%$0.004983329.307$1.64
ETH<0.01%$0.0013521,195.728$1.62
ETH<0.01%$0.011822136.4815$1.61
ETH<0.01%$0.05709328.0191$1.6
ETH<0.01%$0.3124545.099$1.59
ETH<0.01%$0.006011261.8511$1.57
ETH<0.01%$0.0009711,618.2637$1.57
ETH<0.01%<$0.0000013,773,899,543.488$1.57
ETH<0.01%$0.13075811.9252$1.56
ETH<0.01%$0.009624161.5034$1.55
ETH<0.01%$0.3067624.9012$1.5
ETH<0.01%$1,811.260.00082935$1.5
ETH<0.01%$0.5131492.8999$1.49
ETH<0.01%$0.010473139.9702$1.47
ETH<0.01%$0.07585919.0881$1.45
ETH<0.01%$0.011294125.3424$1.42
ETH<0.01%$0.0010271,337.7158$1.37
ETH<0.01%$0.009882135.1273$1.34
ETH<0.01%$0.0000012,252,368.3192$1.33
ETH<0.01%$0.7340171.8069$1.33
ETH<0.01%$0.0002235,938.7363$1.32
ETH<0.01%$0.02040163.7368$1.3
ETH<0.01%$0.1655347.8325$1.3
ETH<0.01%$0.231775.5914$1.3
ETH<0.01%$0.01947265.7275$1.28
ETH<0.01%$8.840.1443$1.28
ETH<0.01%$0.08847714.3838$1.27
ETH<0.01%$0.3631523.5024$1.27
ETH<0.01%$0.00001130,547.2324$1.26
ETH<0.01%$4.480.2809$1.26
ETH<0.01%$0.0004722,651.5189$1.25
ETH<0.01%$0.0003383,662.8665$1.24
ETH<0.01%$2.040.6041$1.23
ETH<0.01%$0.004073298.2824$1.21
ETH<0.01%$0.001663728.8689$1.21
ETH<0.01%$0.4390132.7599$1.21
ETH<0.01%$0.2301655.2436$1.21
ETH<0.01%$0.003007397.1164$1.19
ETH<0.01%$0.0008611,385.5434$1.19
ETH<0.01%$0.1289529.2459$1.19
ETH<0.01%$0.0003713,192.3867$1.18
ETH<0.01%$0.01295791.2983$1.18
ETH<0.01%$0.000412,879.4323$1.18
ETH<0.01%$0.0071165.7669$1.18
ETH<0.01%$0.11429710.2453$1.17
ETH<0.01%$0.000157,795.3416$1.17
ETH<0.01%$7.850.148$1.16
ETH<0.01%$0.003406334.8835$1.14
ETH<0.01%$0.01663268.3441$1.14
ETH<0.01%$0.06439817.4508$1.12
ETH<0.01%$0.005493203.4559$1.12
ETH<0.01%$0.0003633,064.1652$1.11
ETH<0.01%$0.0010631,036.0202$1.1
ETH<0.01%$0.01474374.3157$1.1
ETH<0.01%$0.0001357,964.8048$1.08
ETH<0.01%$0.000004241,968.6745$1.08
ETH<0.01%$0.0005282,003.43$1.06
ETH<0.01%<$0.0000013,004,136.1399$1.05
ETH<0.01%$0.07847313.3732$1.05
ETH<0.01%$0.4812462.1536$1.04
ETH<0.01%$0.002752374.973$1.03
ETH<0.01%$0.0001417,223.027$1.02
ETH<0.01%$0.0000011,566,743.1688$0.9967
ETH<0.01%$0.009703102.3484$0.993
ETH<0.01%$0.02712936.5563$0.9917
ETH<0.01%$0.7965431.22$0.9718
ETH<0.01%$0.05347117.7261$0.9478
ETH<0.01%$0.000003321,049.6847$0.9309
ETH<0.01%$92,4680.00001002$0.9265
ETH<0.01%$0.4123262.1918$0.9037
ETH<0.01%$0.06524913.726$0.8956
ETH<0.01%$0.0004811,857.4382$0.8939
ETH<0.01%$0.1905494.6729$0.8904
ETH<0.01%$0.7151861.2306$0.88
ETH<0.01%$5.860.1491$0.8738
ETH<0.01%$0.002147403.9538$0.8673
ETH<0.01%$0.03932321.96$0.8635
ETH<0.01%$0.085110.1388$0.8628
ETH<0.01%$0.0001167,435.1659$0.8606
ETH<0.01%$0.01206771.2298$0.8595
ETH<0.01%$0.003404247.4098$0.842
ETH<0.01%$0.03097327.17$0.8415
ETH<0.01%$0.0002653,131.5381$0.8295
ETH<0.01%$0.0327524.9721$0.8178
ETH<0.01%$0.00024,067.1974$0.8144
ETH<0.01%<$0.00000170,462,814.996$0.7994
ETH<0.01%$0.00113697.6591$0.788
ETH<0.01%$0.001921409.9898$0.7877
ETH<0.01%$0.0914038.5603$0.7824
ETH<0.01%$0.006115126.108$0.7711
ETH<0.01%$30.470.0251$0.7633
ETH<0.01%$1,470.150.00051767$0.761
ETH<0.01%$0.0002073,674.472$0.7609
ETH<0.01%$0.04052418.6625$0.7562
ETH<0.01%$10.7506$0.7506
ETH<0.01%$0.2704992.7718$0.7497
ETH<0.01%$0.0638811.693$0.7469
ETH<0.01%$0.0005181,436.4884$0.7443
ETH<0.01%$0.01355554.7598$0.7422
ETH<0.01%$0.01937538.2892$0.7418
ETH<0.01%$0.8667830.8556$0.7416
ETH<0.01%$1.160.636$0.7377
ETH<0.01%$0.05754412.794$0.7362
ETH<0.01%$0.00007110,045.293$0.715
ETH<0.01%$0.00002231,318.9885$0.7012
ETH<0.01%$0.001569446.6236$0.7005
ETH<0.01%$0.03482220.0323$0.6975
ETH<0.01%$0.02365129.4$0.6953
ETH<0.01%$0.04649914.6731$0.6822
ETH<0.01%$0.01040265.3448$0.6797
ETH<0.01%$0.003501192.6119$0.6742
ETH<0.01%<$0.000001218,494,402.2159$0.6655
ETH<0.01%$0.1400894.7357$0.6634
ETH<0.01%$0.001418464.6383$0.6589
ETH<0.01%$0.01556742.0478$0.6545
ETH<0.01%$0.000242,716.815$0.6517
ETH<0.01%$0.002167299.7483$0.6494
ETH<0.01%$0.4020711.5982$0.6425
ETH<0.01%$0.00710989.6685$0.6374
ETH<0.01%$0.003055205.6274$0.6281
ETH<0.01%$0.002129293.4568$0.6248
ETH<0.01%$0.0002982,076.9234$0.6194
ETH<0.01%$0.003138189.5613$0.5948
ETH<0.01%$0.2184812.7082$0.5916
ETH<0.01%$0.000311,885.3692$0.5835
ETH<0.01%$0.001723338.165$0.5827
ETH<0.01%$0.00924162.6637$0.579
ETH<0.01%$0.002317249.4889$0.5781
ETH<0.01%$52.210.011$0.5756
ETH<0.01%$0.0004671,216.3635$0.5674
ETH<0.01%$0.0880846.3882$0.5626
ETH<0.01%<$0.000001327,291,333.2845$0.5526
ETH<0.01%$0.002612210.3059$0.5494
ETH<0.01%$0.9991740.5481$0.5476
ETH<0.01%$0.0001593,302.1818$0.5244
ETH<0.01%$16.570.0315$0.5213
ETH<0.01%$0.004101125.5922$0.515
ETH<0.01%$19.010.027$0.5124
ETH<0.01%$0.2668651.9148$0.5109
ETH<0.01%$0.002101241.0665$0.5063
ETH<0.01%$0.04238511.8492$0.5022
ETH<0.01%$0.0000147,765.253$0.4924
ETH<0.01%$0.00686171.6744$0.4917
ETH<0.01%$0.00001530,618.1291$0.4647
ETH<0.01%$1,938.620.00023768$0.4607
ETH<0.01%$0.0894365.1463$0.4602
ETH<0.01%$0.0000479,586.704$0.452
ETH<0.01%$1,762.80.00025535$0.4501
ETH<0.01%$0.0237618.8748$0.4484
ETH<0.01%$0.001008444.4753$0.4479
ETH<0.01%$0.2473921.7959$0.4442
ETH<0.01%$0.0153428.2455$0.4332
ETH<0.01%$1.30.3296$0.429
ETH<0.01%$0.02134419.8455$0.4235
ETH<0.01%$2.40.1758$0.4222
ETH<0.01%$0.01911421.3472$0.408
ETH<0.01%$0.00041978.8493$0.4013
ETH<0.01%$9.080.0438$0.3973
ETH<0.01%$1.120.3502$0.3922
ETH<0.01%$0.01249331.2651$0.3905
ETH<0.01%$0.000002237,452.4279$0.3897
ETH<0.01%$14,725.880.00002642$0.389
ETH<0.01%$0.1835032.0945$0.3843
ETH<0.01%$0.000001327,713.1347$0.3801
ETH<0.01%$0.00420890$0.3787
ETH<0.01%$0.00001623,745.7217$0.378
ETH<0.01%$0.3311551.1353$0.3759
ETH<0.01%$0.0002491,485.0793$0.37
ETH<0.01%$0.9992430.3699$0.3696
ETH<0.01%$0.0000419,032.2103$0.3694
ETH<0.01%$0.2801611.2225$0.3424
ETH<0.01%$0.000939350.6511$0.3291
ETH<0.01%$0.000377868.3866$0.3277
ETH<0.01%$0.0836963.8835$0.325
ETH<0.01%$0.00340395.4915$0.3249
ETH<0.01%$0.000745429.2628$0.3198
ETH<0.01%$0.001646193.9708$0.3192
ETH<0.01%$0.000335943.4723$0.3157
ETH<0.01%$93,3500.00000335$0.3127
ETH<0.01%$0.001108281.094$0.3114
ETH<0.01%$0.458810.6769$0.3105
ETH<0.01%$0.002307129.8033$0.2994
ETH<0.01%$0.0001452,026.8591$0.2935
ETH<0.01%$0.002624111.6446$0.2929
ETH<0.01%$0.087853.2707$0.2873
ETH<0.01%$0.0792673.6192$0.2868
ETH<0.01%$0.0001312,192.0432$0.2863
ETH<0.01%$0.000487580.2264$0.2827
ETH<0.01%$0.1946981.4281$0.278
ETH<0.01%$0.9939450.2775$0.2758
ETH<0.01%$0.01139223.948$0.2728
ETH<0.01%$2.20.1228$0.2701
ETH<0.01%$0.00000466,132$0.2565
ETH<0.01%$0.9994360.2553$0.2551
ETH<0.01%$0.001978125.1558$0.2475
ETH<0.01%$0.0160215.0407$0.2409
ETH<0.01%$0.00158152.2352$0.2405
ETH<0.01%$0.4672190.5009$0.234
ETH<0.01%$0.0477244.8598$0.2319
ETH<0.01%$0.01353516.8537$0.2281
ETH<0.01%$613.320.00036746$0.2253
ETH<0.01%$0.00584538.2122$0.2233
ETH<0.01%$0.000082,780.9024$0.2223
ETH<0.01%$8,112.750.00002714$0.2201
ETH<0.01%$0.00729230.0587$0.2191
ETH<0.01%<$0.000001335,574,268.7172$0.2181
ETH<0.01%$0.000907221.4451$0.2008
ETH<0.01%$0.0040249.9692$0.2008
ETH<0.01%$0.01964710.1512$0.1994
ETH<0.01%$0.00001414,425.9823$0.1993
ETH<0.01%$3.480.0572$0.1991
ETH<0.01%$0.0146813.4987$0.1981
ETH<0.01%$0.000328599.517$0.1969
ETH<0.01%$0.0462624.1022$0.1897
ETH<0.01%$0.0211498.8181$0.1864
ETH<0.01%$0.000876202.6034$0.1774
ETH<0.01%$0.0360844.9$0.1768
ETH<0.01%$0.0329725.2313$0.1724
ETH<0.01%$0.0337754.9682$0.1678
ETH<0.01%$0.00117142.7827$0.167
ETH<0.01%<$0.0000013,127,543,957.446$0.1644
ETH<0.01%$0.0001071,524.6155$0.1636
ETH<0.01%$10.1625$0.1628
ETH<0.01%$0.1409411.1412$0.1608
ETH<0.01%$0.000566270.9257$0.1534
ETH<0.01%$0.000212721.8721$0.153
ETH<0.01%$0.00914716.5794$0.1516
ETH<0.01%<$0.0000013,558,115.116$0.1498
ETH<0.01%$0.1205371.2083$0.1456
ETH<0.01%$0.00242359.3164$0.1437
ETH<0.01%$0.00000818,967.2434$0.143
ETH<0.01%$0.6998980.2015$0.141
ETH<0.01%$0.0190996.8966$0.1317
ETH<0.01%$0.3030020.4349$0.1317
ETH<0.01%$0.000131988.7193$0.1294
ETH<0.01%$1,954.210.00006625$0.1294
ETH<0.01%$9.360.0136$0.1274
ETH<0.01%$0.00312440.4316$0.1263
ETH<0.01%$0.00152279.1901$0.1205
ETH<0.01%$0.00897813.2427$0.1188
ETH<0.01%$0.03833.0607$0.1172
ETH<0.01%$0.000449260.5356$0.117
ETH<0.01%$543.450.00020918$0.1136
ETH<0.01%$1.980.053$0.1047
ETH<0.01%$0.0202415.126$0.1037
ETH<0.01%$0.00260139.0406$0.1015
BASE10.13%$0.9998999,620.7108$9,619.74
BASE3.08%$1,772.31.6518$2,927.55
BASE2.79%$92,5450.0287$2,654.66
BASE2.56%$0.0003796,407,595.7102$2,429.18
BASE1.30%$0.06271919,690.2413$1,234.94
BASE1.03%$0.999416976.6286$976.06
BASE0.62%$0.86846673.5952$584.99
BASE0.30%$1,793.210.161$288.71
BASE0.13%$1.03116.776$119.81
BASE0.10%$0.0107588,462.5716$91.04
BASE0.09%$0.99985389.8056$89.79
BASE0.09%$1.1477.9387$88.85
BASE0.09%$92,8290.00094542$87.76
BASE0.09%$0.721252121.098$87.34
BASE0.09%$0.469986184.3103$86.62
BASE0.08%$0.104574763.3949$79.83
BASE0.08%$0.99986971.7996$71.79
BASE0.07%$0.53824116.1262$62.5
BASE0.06%$0.000001109,445,679.492$61.14
BASE0.06%$0.00378314,797.2362$55.98
BASE0.05%$0.0303041,703.1798$51.61
BASE0.05%$0.0150113,220.4532$48.34
BASE0.05%$0.021172,256.5397$47.77
BASE0.04%$0.0213141,929.3327$41.12
BASE0.04%$1,939.830.0184$35.73
BASE0.04%$0.00321410,788.3112$34.67
BASE0.04%$0.00306311,216.5041$34.35
BASE0.03%$0.00197614,941.3642$29.52
BASE0.03%$2.7310.6616$29.11
BASE0.03%$0.114687246.8534$28.31
BASE0.03%$2,122.930.0129$27.41
BASE0.03%$2.829.0673$25.57
BASE0.03%$159.650.158$25.22
BASE0.02%$0.000079282,671.5339$22.35
BASE0.02%$92,6720.00019588$18.15
BASE0.02%$0.0005234,094.8036$17.72
BASE0.02%$0.0086341,736.9103$15
BASE0.01%$0.54162126.1006$14.14
BASE0.01%$0.0009314,753.4869$13.72
BASE0.01%$52.020.2622$13.64
BASE0.01%$0.40124732.735$13.13
BASE0.01%$0.00049122,835.5108$11.2
BASE0.01%$0.044613245.4551$10.95
BASE0.01%$0.00009115,692.0711$10.4
BASE0.01%$0.00009115,692.0711$10.4
BASE<0.01%$0.20547238.493$7.91
BASE<0.01%$0.0000061,310,951.7997$7.67
BASE<0.01%$0.0020233,760.4946$7.61
BASE<0.01%$0.018273416.1392$7.6
BASE<0.01%$0.016877408.5113$6.89
BASE<0.01%$0.02679250.9394$6.72
BASE<0.01%$0.031943210.249$6.72
BASE<0.01%$0.018529355.4702$6.59
BASE<0.01%$0.0029462,223.3365$6.55
BASE<0.01%$0.008156771.0449$6.29
BASE<0.01%$0.0011425,491.1213$6.27
BASE<0.01%$0.060256100.3125$6.04
BASE<0.01%$0.25178223.9393$6.03
BASE<0.01%$0.006059956.7573$5.8
BASE<0.01%$0.1783230.6361$5.46
BASE<0.01%$0.006733792.2942$5.33
BASE<0.01%$0.06297180.819$5.09
BASE<0.01%$0.0043191,177.4705$5.09
BASE<0.01%$0.007643646.7284$4.94
BASE<0.01%$0.0005479,030.3216$4.94
BASE<0.01%<$0.000001220,697,009.9781$4.74
BASE<0.01%$0.00034813,627.1972$4.74
BASE<0.01%$1,887.240.00250049$4.72
BASE<0.01%$0.05518984.613$4.67
BASE<0.01%$0.003971,129.6754$4.48
BASE<0.01%$0.000016268,438.6274$4.26
BASE<0.01%$0.033703124.8606$4.21
BASE<0.01%$0.9989013.9816$3.98
BASE<0.01%$0.0005766,868.7355$3.96
BASE<0.01%$2.711.4084$3.82
BASE<0.01%$0.0014412,606.0313$3.75
BASE<0.01%$0.0003989,089.5793$3.62
BASE<0.01%$0.00005960,869.3497$3.59
BASE<0.01%$0.015183235.8745$3.58
BASE<0.01%$0.7033874.8171$3.39
BASE<0.01%$0.0004846,318.581$3.06
BASE<0.01%$0.4677316.4156$3
BASE<0.01%$0.03978875.2196$2.99
BASE<0.01%$0.5342935.1814$2.77
BASE<0.01%$0.0007643,503.7808$2.68
BASE<0.01%$0.003732702.3929$2.62
BASE<0.01%$0.03755768.6473$2.58
BASE<0.01%$0.000882,895.075$2.55
BASE<0.01%$0.011111223.392$2.48
BASE<0.01%$0.00015915,564.1706$2.48
BASE<0.01%$0.003066775.1583$2.38
BASE<0.01%$0.006804316.1438$2.15
BASE<0.01%$0.005773367.2576$2.12
BASE<0.01%$0.19085511.0937$2.12
BASE<0.01%$0.000013168,677.0861$2.11
BASE<0.01%$0.0002338,887.3527$2.07
BASE<0.01%$0.2559487.371$1.89
BASE<0.01%$1.471.2489$1.84
BASE<0.01%$0.0017191,007.7051$1.73
BASE<0.01%$0.0015511,095.3394$1.7
BASE<0.01%$0.016206103.5181$1.68
BASE<0.01%$0.002487666.3458$1.66
BASE<0.01%$0.01657797.6533$1.62
BASE<0.01%$1.531.0312$1.58
BASE<0.01%$0.0005552,726.5213$1.51
BASE<0.01%$0.005788259.7105$1.5
BASE<0.01%$0.000012121,446.5446$1.45
BASE<0.01%$0.0002246,128.4817$1.37
BASE<0.01%$0.10228412.7597$1.31
BASE<0.01%$0.004341300.0104$1.3
BASE<0.01%$0.01834568.2493$1.25
BASE<0.01%$0.9993091.2326$1.23
BASE<0.01%$0.7156691.6793$1.2
BASE<0.01%$0.000004324,405.3477$1.19
BASE<0.01%$0.010651108.974$1.16
BASE<0.01%$0.0005652,016.6229$1.14
BASE<0.01%$0.9999571.0537$1.05
BASE<0.01%$0.004467233.1437$1.04
BASE<0.01%$0.000002627,499.4708$1.01
BASE<0.01%$0.00004322,346.4603$0.957
BASE<0.01%$0.01061787.1164$0.9249
BASE<0.01%$2.790.3126$0.8722
BASE<0.01%$0.003696223.257$0.8252
BASE<0.01%$0.006869111.3834$0.7651
BASE<0.01%$0.000899838.0553$0.7532
BASE<0.01%$0.000006117,721.831$0.744
BASE<0.01%$0.000922756.4326$0.6974
BASE<0.01%$0.000006117,788.3101$0.6749
BASE<0.01%$0.00002428,000.816$0.6675
BASE<0.01%$0.9530460.6559$0.625
BASE<0.01%<$0.0000011,232,468,578.9682$0.6162
BASE<0.01%$0.02970120.6092$0.6121
BASE<0.01%$0.01013257.5835$0.5834
BASE<0.01%$0.065368.3165$0.5435
BASE<0.01%$0.0630978.4502$0.5331
BASE<0.01%<$0.0000011,041,701,264.8364$0.5208
BASE<0.01%$0.001239412.2009$0.5105
BASE<0.01%$0.4066551.2451$0.5063
BASE<0.01%$0.000728665.067$0.4841
BASE<0.01%$0.0003651,325.7756$0.484
BASE<0.01%$0.00001237,174.677$0.462
BASE<0.01%$1,853.60.00019214$0.3561
BASE<0.01%$0.00600958.4126$0.351
BASE<0.01%$0.2508541.3772$0.3454
BASE<0.01%<$0.00000117,739,573.1625$0.3193
BASE<0.01%$0.1650061.8957$0.3127
BASE<0.01%$0.0317529.5681$0.3038
BASE<0.01%$0.0001162,587.4376$0.2995
BASE<0.01%$0.313960.936$0.2938
BASE<0.01%$0.0000214,596.3911$0.2925
BASE<0.01%$5.610.0505$0.2835
BASE<0.01%$0.00349970.75$0.2475
BASE<0.01%$0.9990240.2396$0.2393
BASE<0.01%$0.01813512.6488$0.2293
BASE<0.01%$0.00000730,575.3021$0.2219
BASE<0.01%$0.001296164.9853$0.2138
BASE<0.01%$1.080.198$0.213
BASE<0.01%$0.000858219.5252$0.1882
BASE<0.01%$0.000251740.004$0.1855
BASE<0.01%$0.00224472.429$0.1625
BASE<0.01%$0.00000271,051.0938$0.1598
BASE<0.01%$0.0974671.6338$0.1592
BASE<0.01%$0.2763280.5579$0.1541
BASE<0.01%$1,908.40.00007775$0.1483
BASE<0.01%$0.0000443,326.7869$0.1468
BASE<0.01%$0.5545640.2341$0.1298
BASE<0.01%$0.0240075.2537$0.1261
BASE<0.01%$1.010.1104$0.1116
BASE<0.01%$0.4891390.228$0.1115
BASE<0.01%$0.00299635.5081$0.1063
ARB7.11%$0.9998996,752.565$6,751.88
ARB3.80%$1,787.012.0197$3,609.17
ARB1.84%$92,9890.0188$1,750.37
ARB0.57%$1,795.640.3009$540.35
ARB0.28%$161.081.6337$263.15
ARB0.24%$1228.3428$228.34
ARB0.23%$1,765.980.1247$220.18
ARB0.14%$0.999899132.4885$132.48
ARB0.09%$14.286.2637$89.44
ARB0.07%$2,126.380.0312$66.45
ARB0.04%$0.030151,304.5172$39.33
ARB0.03%$0.32578187.1477$28.39
ARB0.02%$122.8182$22.82
ARB0.02%$0.99979420.9621$20.96
ARB0.02%$21.850.9175$20.05
ARB0.02%$14.781.3549$20.02
ARB0.02%$2.725.8542$15.92
ARB0.02%$115.8292$15.83
ARB0.01%$0.000015647,959.6806$9.93
ARB<0.01%$43.110.1881$8.11
ARB<0.01%$0.0069961,142.9247$8
ARB<0.01%$0.00058411,781.8595$6.87
ARB<0.01%$0.000024280,669.7608$6.72
ARB<0.01%$0.20919229.5481$6.18
ARB<0.01%$0.00055510,916.9386$6.06
ARB<0.01%$3.51.5086$5.28
ARB<0.01%$0.6922565.8052$4.02
ARB<0.01%$0.029212111.4082$3.25
ARB<0.01%$0.898983.6169$3.25
ARB<0.01%$0.9996323.0331$3.03
ARB<0.01%$1.12.5899$2.84
ARB<0.01%$0.9997522.6711$2.67
ARB<0.01%<$0.00000113,263,509,025.7531$2.65
ARB<0.01%$387.060.00634329$2.46
ARB<0.01%$0.9998312.3953$2.39
ARB<0.01%$5.90.3622$2.14
ARB<0.01%$92,6880.00001823$1.69
ARB<0.01%$92,7200.00001531$1.42
ARB<0.01%$2.040.6935$1.41
ARB<0.01%$0.00011111,454.201$1.27
ARB<0.01%$92,6210.00001251$1.16
ARB<0.01%$0.9999961.1568$1.16
ARB<0.01%$0.005028208.1864$1.05
ARB<0.01%$0.006514156.2754$1.02
ARB<0.01%$0.01452368.6671$0.9972
ARB<0.01%$0.793481.2299$0.9758
ARB<0.01%$0.000253,391.2508$0.8491
ARB<0.01%$0.2006553.8346$0.7694
ARB<0.01%$0.01384154.6335$0.7561
ARB<0.01%$0.9901610.7584$0.7509
ARB<0.01%$0.00293220.221$0.6453
ARB<0.01%$1,870.550.00024974$0.4671
ARB<0.01%$0.9999590.4644$0.4643
ARB<0.01%$0.996610.3722$0.3709
ARB<0.01%$0.0450036.9832$0.3142
ARB<0.01%$0.0587065.0818$0.2983
ARB<0.01%$0.000002122,965.5823$0.2779
ARB<0.01%$0.01826614.1352$0.2581
ARB<0.01%$0.0327437.4531$0.244
ARB<0.01%$0.5672730.4146$0.2351
ARB<0.01%$0.9997830.1779$0.1778
ARB<0.01%$10.1747$0.1752
ARB<0.01%$0.00586829.5442$0.1733
ARB<0.01%$0.00000917,748.5245$0.1608
ARB<0.01%$0.9988280.1564$0.1561
ARB<0.01%$1,771.170.00008627$0.1528
ARB<0.01%$0.0898641.6623$0.1493
ARB<0.01%$0.1070661.3656$0.1462
ARB<0.01%$0.00349840.2264$0.1407
ARB<0.01%$92,8690.00000138$0.1281
POL12.13%$0.44590725,838.2316$11,521.45
POL0.83%$1791.2488$791.25
POL0.45%$93,0950.00461988$430.09
POL0.42%$1,783.10.2262$403.34
POL0.12%$0.999897109.956$109.94
POL0.12%$0.999897109.8078$109.8
POL0.05%$0.274604169.7193$46.61
POL0.04%$0.218648187.3419$40.96
POL0.04%$0.065233624.7536$40.75
POL0.03%$0.0071093,973.3497$28.25
POL0.02%$0.29553763.6337$18.81
POL0.02%$12.711.1847$15.06
POL<0.01%$0.22098437.3409$8.25
POL<0.01%$3,396.720.00196736$6.68
POL<0.01%$1.145.7057$6.5
POL<0.01%$1.145.7057$6.5
POL<0.01%$0.024221242.6187$5.88
POL<0.01%$0.000766,818.3732$5.18
POL<0.01%$0.33887314.8158$5.02
POL<0.01%$0.12378733.9141$4.2
POL<0.01%$0.03985298.6365$3.93
POL<0.01%$0.9998283.4921$3.49
POL<0.01%$0.06284251.35$3.23
POL<0.01%$0.006264445.14$2.79
POL<0.01%$0.02835580.7212$2.29
POL<0.01%$0.4890924.293$2.1
POL<0.01%$0.3073876.0026$1.85
POL<0.01%$0.001877835.659$1.57
POL<0.01%$161.120.00942984$1.52
POL<0.01%$0.00026,855.2296$1.37
POL<0.01%$0.001335987.7914$1.32
POL<0.01%$0.003732351.7355$1.31
POL<0.01%$0.9997681.1898$1.19
POL<0.01%$0.5431242.1563$1.17
POL<0.01%$0.05932719.6911$1.17
POL<0.01%$0.004229272.9097$1.15
POL<0.01%$5.910.1809$1.07
POL<0.01%$0.05048221.015$1.06
POL<0.01%$0.01210687.4222$1.06
POL<0.01%$0.003747281.5452$1.05
POL<0.01%$14.290.0658$0.9397
POL<0.01%<$0.0000019,810,976.2252$0.8672
POL<0.01%$0.00830399.7466$0.8282
POL<0.01%$0.004321182.3338$0.7878
POL<0.01%$2,138.980.00033952$0.7262
POL<0.01%$0.9908520.6101$0.6044
POL<0.01%$0.00985657$0.5617
POL<0.01%$0.0001294,302.1588$0.5553
POL<0.01%$0.0671258.164$0.548
POL<0.01%$0.2547991.887$0.4808
POL<0.01%$0.2188942.1686$0.474697
POL<0.01%$0.2003712.2533$0.4514
POL<0.01%$0.8021780.5291$0.4244
POL<0.01%$10.4003$0.4006
POL<0.01%$0.1955591.7915$0.3503
POL<0.01%$0.312221.116$0.3484
POL<0.01%$0.1209762.6806$0.3242
POL<0.01%$0.6925480.4518$0.3129
POL<0.01%$0.000858335.1815$0.2877
POL<0.01%$0.001042268.4248$0.2798
POL<0.01%$0.001835146.3589$0.2685
POL<0.01%$0.00282489.5683$0.2529
POL<0.01%$0.001925106.5258$0.205
POL<0.01%$0.2772590.6214$0.1722
POL<0.01%$1,784.260.00009608$0.1714
POL<0.01%$0.0721062.0209$0.1457
POL<0.01%$0.000323416.1988$0.1343
POL<0.01%$0.000297447.4083$0.133
POL<0.01%$0.7653490.1737$0.1329
POL<0.01%$0.0283284.62$0.1308
POL<0.01%$0.000121969.3328$0.1171
POL<0.01%$0.0000166,792.8902$0.1061
POL<0.01%$0.0898821.1633$0.1045
POL<0.01%$0.00221346.1363$0.1021
POL<0.01%$0.00626816.12$0.101
GNO6.14%$1,767.073.3$5,831.4
GNO0.04%$113.770.3294$37.47
GNO<0.01%$1.141.4267$1.63
GNO<0.01%$1.141.4267$1.63
GNO<0.01%$0.03912834.6203$1.35
GNO<0.01%$0.9997871.1644$1.16
GNO
xDai (XDAI)
<0.01%$0.9997870.6863$0.686144
GNO<0.01%$0.9998910.6716$0.6715
GNO<0.01%$0.9998910.4554$0.4553
GNO<0.01%$0.9665930.1648$0.1592
BSC1.45%$0.08538716,103.375$1,375.02
BSC0.57%$613.320.8893$545.42
BSC0.50%$2.2216.6304$476.95
BSC0.50%$1,769.950.2674$473.22
BSC0.27%$92,858.110.00272293$252.85
BSC0.18%<$0.0000012,631,236,466.7135$170.42
BSC0.16%$0.01417211,043.0888$156.5
BSC0.14%$1137.3471$137.35
BSC0.11%$614.710.1639$100.75
BSC0.07%$6.4110.2393$65.63
BSC0.05%$0.99991451.6486$51.64
BSC0.04%$0.337014125.5302$42.31
BSC0.04%$0.99892139.2698$39.23
BSC0.04%$42.950.8043$34.54
BSC0.04%$0.0106983,215.0765$34.39
BSC0.03%$92,9060.00035628$33.1
BSC0.03%$2.0414.8423$30.28
BSC0.02%$0.088084239.0546$21.06
BSC0.02%$0.067091308.0271$20.67
BSC0.02%$0.012911,511.3389$19.51
BSC0.02%$0.131502145.8641$19.18
BSC0.02%$119.0407$19.04
BSC0.02%$0.00006297,659.6284$18.01
BSC0.02%$0.018742900.1388$16.87
BSC0.02%$0.027824588.9555$16.39
BSC0.02%$0.029445528.0811$15.55
BSC0.01%$0.000108130,081.1789$14.06
BSC0.01%$1.39.6229$12.54
BSC0.01%$0.000015789,706.2544$11.99
BSC0.01%$0.00017368,111.4536$11.78
BSC0.01%$0.013601859.8183$11.69
BSC0.01%$0.01888614.0624$11.59
BSC0.01%$0.99990311.3476$11.35
BSC0.01%<$0.0000018,108,807,328.0775$11.27
BSC0.01%$147.880.0728$10.76
BSC0.01%$0.24716742.7108$10.56
BSC0.01%$0.99965310.449$10.45
BSC0.01%$0.0000091,086,148.9056$9.79
BSC<0.01%<$0.000001771,430,606.3369$9.42
BSC<0.01%$0.038447241.6952$9.29
BSC<0.01%$0.0023493,782.2884$8.89
BSC<0.01%$0.0043192,005.7867$8.66
BSC<0.01%$92,6890.00009246$8.57
BSC<0.01%$0.00013362,351.7826$8.29
BSC<0.01%$0.11416370.8047$8.08
BSC<0.01%$0.013076593.3641$7.76
BSC<0.01%$0.0044771,693.5479$7.58
BSC<0.01%$0.0000015,155,398.1734$7.58
BSC<0.01%$2.722.7004$7.35
BSC<0.01%<$0.0000013,065,236,324,868.9526$7.34
BSC<0.01%$5.851.1743$6.87
BSC<0.01%$2.712.515$6.82
BSC<0.01%$4.021.6733$6.72
BSC<0.01%<$0.0000011,252,141,714.4428$6.55
BSC<0.01%$5.391.1783$6.35
BSC<0.01%$0.8363897.5319$6.3
BSC<0.01%$0.000006959,077.8614$6.19
BSC<0.01%$0.20719829.4899$6.11
BSC<0.01%$0.07172784.2297$6.04
BSC<0.01%$3.121.9298$6.02
BSC<0.01%<$0.00000142,524,670.3113$5.9
BSC<0.01%$0.05993596.2058$5.77
BSC<0.01%$0.9983125.686$5.68
BSC<0.01%$2.072.7241$5.64
BSC<0.01%$0.024353228.4561$5.56
BSC<0.01%$0.19979727.6934$5.53
BSC<0.01%$0.40120113.7788$5.53
BSC<0.01%$0.0029421,859.3139$5.47
BSC<0.01%$0.00541967.1948$5.23
BSC<0.01%$0.10319550.6588$5.23
BSC<0.01%$0.00032415,650.0852$5.08
BSC<0.01%$0.00009154,723.4487$4.99
BSC<0.01%<$0.000001487,871,614.9104$4.96
BSC<0.01%$0.019967237.0817$4.73
BSC<0.01%$0.0008345,600.006$4.67
BSC<0.01%$0.4845049.4205$4.56
BSC<0.01%$0.05494882.9886$4.56
BSC<0.01%$15.390.2932$4.51
BSC<0.01%$0.000014325,299.6081$4.43
BSC<0.01%$0.0019432,179.7536$4.23
BSC<0.01%$0.06478862.3111$4.04
BSC<0.01%$0.5098227.8803$4.02
BSC<0.01%$0.0004888,089.647$3.95
BSC<0.01%$0.020227193.4793$3.91
BSC<0.01%$0.027276143.395$3.91
BSC<0.01%$4.330.9001$3.89
BSC<0.01%$159.610.0244$3.89
BSC<0.01%$5.350.7252$3.88
BSC<0.01%$0.020135190.279$3.83
BSC<0.01%$0.0014112,640.8726$3.73
BSC<0.01%$0.18110720.5065$3.71
BSC<0.01%$0.00013427,024.1134$3.63
BSC<0.01%$0.008882392.0843$3.48
BSC<0.01%$9.360.3645$3.41
BSC<0.01%$2.041.6336$3.33
BSC<0.01%$0.07922642.0187$3.33
BSC<0.01%$0.0604155.0925$3.33
BSC<0.01%$0.030152105.0387$3.17
BSC<0.01%$22.290.1413$3.15
BSC<0.01%$0.5581415.5729$3.11
BSC<0.01%$0.11390427.1663$3.09
BSC<0.01%$0.024966122.9794$3.07
BSC<0.01%$0.07870638.0845$3
BSC<0.01%$0.08332635.0703$2.92
BSC<0.01%$0.00009131,467.8581$2.86
BSC<0.01%$0.005447517.6437$2.82
BSC<0.01%$0.00452601.3618$2.72
BSC<0.01%$0.001741,529.1866$2.66
BSC<0.01%$0.0003228,156.2513$2.63
BSC<0.01%$0.07506734.3649$2.58
BSC<0.01%<$0.00000161,569,609.966$2.57
BSC<0.01%$0.000007345,672.2415$2.49
BSC<0.01%$0.0256695.0777$2.44
BSC<0.01%$0.00019812,293.1272$2.43
BSC<0.01%$0.22129110.8763$2.41
BSC<0.01%$2.410.9896$2.39
BSC<0.01%$356.930.00645393$2.3
BSC<0.01%$0.10906821.0452$2.3
BSC<0.01%$0.0005773,925.6044$2.26
BSC<0.01%$2.161.0409$2.25
BSC<0.01%$0.006998318.7109$2.23
BSC<0.01%$0.002469894.5655$2.21
BSC<0.01%$0.0003715,903.226$2.19
BSC<0.01%$0.021405100.8823$2.16
BSC<0.01%$0.20479310.4674$2.14
BSC<0.01%$0.2768567.7113$2.13
BSC<0.01%$0.002239948.2137$2.12
BSC<0.01%$0.000007310,873.7968$2.11
BSC<0.01%$0.3457866.0602$2.1
BSC<0.01%$0.9167592.2306$2.04
BSC<0.01%$0.007619261.0458$1.99
BSC<0.01%$0.6390923.108$1.99
BSC<0.01%$174.250.011$1.91
BSC<0.01%$0.594463.1685$1.88
BSC<0.01%$0.08865921.2367$1.88
BSC<0.01%$0.007794240.4605$1.87
BSC<0.01%$0.0009321,981.791$1.85
BSC<0.01%$0.02168685.0802$1.85
BSC<0.01%$0.000003543,855.2572$1.83
BSC<0.01%$0.02545270.9101$1.8
BSC<0.01%$0.01929693.102$1.8
BSC<0.01%$0.000563,197.9817$1.79
BSC<0.01%$0.010193175.4878$1.79
BSC<0.01%$0.2643526.5071$1.72
BSC<0.01%$16.70.1026$1.71
BSC<0.01%$0.02831560.4446$1.71
BSC<0.01%$1.571.0807$1.7
BSC<0.01%$0.01687198.2185$1.66
BSC<0.01%<$0.0000013,551,197.1764$1.64
BSC<0.01%$0.02403267.5003$1.62
BSC<0.01%$0.6651552.4137$1.61
BSC<0.01%$0.6832842.2468$1.54
BSC<0.01%$0.04059537.0429$1.5
BSC<0.01%$0.000002662,546.6992$1.5
BSC<0.01%$0.02269564.4789$1.46
BSC<0.01%$2.780.5211$1.45
BSC<0.01%$0.01541493.7478$1.45
BSC<0.01%$0.008659166.1626$1.44
BSC<0.01%$0.000014103,742.2749$1.41
BSC<0.01%$0.1764917.7977$1.38
BSC<0.01%$0.1780627.636$1.36
BSC<0.01%$0.3361263.9311$1.32
BSC<0.01%$0.02589250.6314$1.31
BSC<0.01%$0.0002335,343.7387$1.25
BSC<0.01%$0.004312288.8578$1.25
BSC<0.01%$0.3200193.8106$1.22
BSC<0.01%<$0.00000118,528,871.1116$1.19
BSC<0.01%$0.01357687.2842$1.18
BSC<0.01%$0.0005692,066.828$1.18
BSC<0.01%$0.05294222.18$1.17
BSC<0.01%$0.01558474.7406$1.16
BSC<0.01%$0.00006817,031.9558$1.16
BSC<0.01%$0.010206113.1395$1.15
BSC<0.01%$0.0000011,945,161.989$1.15
BSC<0.01%$92,4680.00001245$1.15
BSC<0.01%$0.004536245.3291$1.11
BSC<0.01%$0.08369613.0575$1.09
BSC<0.01%$0.04138325.7804$1.07
BSC<0.01%$0.02031151.6951$1.05
BSC<0.01%$0.00964108.6674$1.05
BSC<0.01%$0.2669823.8761$1.03
BSC<0.01%$0.0001059,469.292$0.9933
BSC<0.01%<$0.0000019,855,764.0207$0.9487
BSC<0.01%<$0.00000183,057,882,794.6911$0.9319
BSC<0.01%$0.1476576.3105$0.9317
BSC<0.01%$0.02206142.0194$0.9269
BSC<0.01%$0.0000979,455.0365$0.9153
BSC<0.01%$0.003973229.2854$0.9108
BSC<0.01%$0.1802175.034$0.9072
BSC<0.01%$0.003436262.5633$0.9021
BSC<0.01%<$0.0000017,319,737.5529$0.9015
BSC<0.01%<$0.0000016,165,031,956.8236$0.8932
BSC<0.01%$32.520.0274$0.8912
BSC<0.01%$0.0000011,398,201.2545$0.8895
BSC<0.01%$14.20.0623$0.8844
BSC<0.01%$0.1335736.5943$0.8808
BSC<0.01%$0.004923174.4187$0.8586
BSC<0.01%$0.01773946.0056$0.8161
BSC<0.01%$674.790.00119399$0.8056
BSC<0.01%<$0.000001194,667,890,498.3453$0.7911
BSC<0.01%$0.07188210.9315$0.7857
BSC<0.01%$0.0590313.2946$0.7847
BSC<0.01%$0.6453391.1989$0.7736
BSC<0.01%$5.630.1335$0.7516
BSC<0.01%$0.02975324.8934$0.7406
BSC<0.01%$0.000005154,468.4781$0.7387
BSC<0.01%$0.01554847.1128$0.7324
BSC<0.01%$0.001285559.2925$0.7187
BSC<0.01%$0.003389209.6768$0.7106
BSC<0.01%<$0.000001710,081,679.8005$0.71
BSC<0.01%<$0.0000013,819,904.8583$0.6832
BSC<0.01%$0.0004811,393.923$0.6708
BSC<0.01%$0.536451.2303$0.6599
BSC<0.01%$0.0001344,911.8636$0.6571
BSC<0.01%$0.00004215,763.987$0.6548
BSC<0.01%$0.01138257.2071$0.6511
BSC<0.01%$0.680360.9488$0.6455
BSC<0.01%$0.0001853,448.7063$0.6392
BSC<0.01%<$0.000001588,563,638.1595$0.6309
BSC<0.01%<$0.0000017,835,672.7068$0.6221
BSC<0.01%$0.0758178.038$0.6094
BSC<0.01%$0.01027258.7939$0.6039
BSC<0.01%$0.01961830.0755$0.59
BSC<0.01%$91,2390.00000602$0.5492
BSC<0.01%$0.2456122.1926$0.5385
BSC<0.01%$0.000738729.0451$0.5379
BSC<0.01%$0.0001483,564.0747$0.5269
BSC<0.01%$0.002755185.4444$0.5108
BSC<0.01%$0.0793156.3168$0.501
BSC<0.01%$0.00003713,223.5431$0.4951
BSC<0.01%<$0.0000012,496,901.9508$0.4923
BSC<0.01%$0.002531193.6684$0.4901
BSC<0.01%$0.001668272.9129$0.4551
BSC<0.01%$0.000987458.418$0.4522
BSC<0.01%$0.1067374.208$0.4491
BSC<0.01%$0.0000736,082.762$0.4461
BSC<0.01%$0.1229893.607$0.4436
BSC<0.01%$0.00869650.7493$0.4413
BSC<0.01%$0.001034421.944$0.4361
BSC<0.01%$0.0078854.449$0.429
BSC<0.01%$0.01893522.5422$0.4268
BSC<0.01%$0.00485487.8984$0.4266
BSC<0.01%$0.2787271.5278$0.4258
BSC<0.01%$0.02539816.7643$0.4257
BSC<0.01%$0.0469988.9138$0.4189
BSC<0.01%$0.1876172.2175$0.416
BSC<0.01%$0.3067621.3469$0.4131
BSC<0.01%$0.1623452.5073$0.407
BSC<0.01%$1.860.2164$0.4025
BSC<0.01%<$0.0000013,573,455,187,837.415$0.3971
BSC<0.01%$0.001538256.1898$0.3939
BSC<0.01%$0.01529225.028$0.3827
BSC<0.01%$0.01758421.5198$0.3783
BSC<0.01%$0.0000137,995.2318$0.375
BSC<0.01%$0.002814130.9849$0.3686
BSC<0.01%$0.0000218,638.3325$0.3675
BSC<0.01%$0.02194616.5116$0.3623
BSC<0.01%$1,781.940.00019686$0.3507
BSC<0.01%$0.1146393.0494$0.3495
BSC<0.01%$0.00148232.731$0.3444
BSC<0.01%$0.1863961.8035$0.3361
BSC<0.01%$0.000407821.9505$0.3345
BSC<0.01%$0.00002712,524.7802$0.3335
BSC<0.01%$0.2603451.2672$0.3299
BSC<0.01%$0.9998830.3262$0.3261
BSC<0.01%$0.5407450.5968$0.3227
BSC<0.01%$0.000002133,953.6713$0.3161
BSC<0.01%$0.00095326.3666$0.3099
BSC<0.01%$0.01262224.4503$0.3086
BSC<0.01%$0.0882323.4174$0.3015
BSC<0.01%$0.01026728.804$0.2957
BSC<0.01%$0.5982760.4686$0.2803
BSC<0.01%$0.2182891.281$0.2796
BSC<0.01%<$0.00000162,625,997.6404$0.2709
BSC<0.01%$0.001108240.4827$0.2664
BSC<0.01%$0.00034781.8536$0.2661
BSC<0.01%$1,470.680.00018001$0.2647
BSC<0.01%$0.01645915.9021$0.2617
BSC<0.01%$0.0311378.3737$0.2607
BSC<0.01%$1.040.2496$0.2586
BSC<0.01%$0.00330376.9492$0.2541
BSC<0.01%$0.0310288.0881$0.2509
BSC<0.01%<$0.000001239,374,026.7776$0.2505
BSC<0.01%$0.1946981.2853$0.2502
BSC<0.01%$0.9839880.2541$0.25
BSC<0.01%<$0.0000011,216,162.4371$0.2485
BSC<0.01%$0.002034120.7831$0.2457
BSC<0.01%$0.0000514,815.7212$0.2443
BSC<0.01%$0.01536215.5366$0.2386
BSC<0.01%$40.880.00581775$0.2378
BSC<0.01%$0.01132920.7312$0.2348
BSC<0.01%$0.001946116.6433$0.227
BSC<0.01%$0.000474475.6592$0.2253
BSC<0.01%$0.031577.0511$0.2226
BSC<0.01%$0.00173128.7066$0.2226
BSC<0.01%$0.01105320.053$0.2216
BSC<0.01%$5,043.440.00004354$0.2196
BSC<0.01%$0.001188184.3751$0.219
BSC<0.01%$0.00293972.3841$0.2127
BSC<0.01%$0.0207859.7219$0.202
BSC<0.01%$0.0271297.3481$0.1993
BSC<0.01%$0.00001216,112.2139$0.1978
BSC<0.01%$1,848.160.00010669$0.1971
BSC<0.01%$0.1409651.394$0.1965
BSC<0.01%$0.00725526.6691$0.1934
BSC<0.01%<$0.0000012,399,646,590.5978$0.1912
BSC<0.01%$0.00293961.894$0.1818
BSC<0.01%$2.930.0584$0.1711
BSC<0.01%$0.0219877.4922$0.1647
BSC<0.01%$0.000001133,592.5784$0.1629
BSC<0.01%$0.00578927.9883$0.162
BSC<0.01%<$0.000001110,945,398.557$0.1574
BSC<0.01%$0.00839718.687$0.1569
BSC<0.01%<$0.000001222,358,110,651.4647$0.1546
BSC<0.01%$0.7213690.21$0.1514
BSC<0.01%$0.00547227.0678$0.1481
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.00192772.1503$0.139
BSC<0.01%$0.00789917.5821$0.1388
BSC<0.01%$0.0884771.5373$0.136
BSC<0.01%$0.000228595.141$0.1357
BSC<0.01%$2.490.0542$0.1349
BSC<0.01%$0.00269649.257$0.1328
BSC<0.01%$0.0225785.8511$0.1321
BSC<0.01%$0.0463272.8444$0.1317
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.00535422.3718$0.1197
BSC<0.01%$7.990.0149$0.1188
BSC<0.01%$0.9810050.1208$0.1185
BSC<0.01%$0.0898231.3189$0.1184
BSC<0.01%<$0.000001273,913.3635$0.1176
BSC<0.01%$0.001109104.5115$0.1158
BSC<0.01%$0.00465124.4229$0.1135
BSC<0.01%$0.00965711.7449$0.1134
BSC<0.01%<$0.00000167,400,523,939.0429$0.1126
BSC<0.01%$0.6280450.1776$0.1115
BSC<0.01%$0.0767921.4394$0.1105
BSC<0.01%$0.001032106.9857$0.1104
BSC<0.01%$0.001289.2908$0.1071
BSC<0.01%$1.020.102$0.1043
BSC<0.01%$0.00011950.5503$0.1041
BSC<0.01%$0.3592570.2804$0.1007
OP0.92%$1,793.210.4876$874.34
OP0.57%$1,772.30.3082$546.22
OP0.28%$0.999899261.5522$261.53
OP0.15%$0.744133197.1898$146.74
OP0.09%$92,7340.00094424$87.56
OP0.06%$92,7970.00061962$57.5
OP0.05%$0.99989943.8462$43.84
OP0.03%$127.7211$27.72
OP0.02%$2,122.930.0086911$18.45
OP<0.01%$0.048729127.2785$6.2
OP<0.01%$0.10228442.7712$4.37
OP<0.01%$2.711.4973$4.06
OP<0.01%$0.09637338.9633$3.76
OP<0.01%$13.3184$3.32
OP<0.01%$10.880.2375$2.58
OP<0.01%$0.22141611.3852$2.52
OP<0.01%$0.0007461,885.8125$1.41
OP<0.01%$11.3964$1.4
OP<0.01%$0.9998821.2118$1.21
OP<0.01%$1,767.430.00044648$0.7891
OP<0.01%$0.694180.6903$0.4792
OP<0.01%$0.00710639.5529$0.281
OP<0.01%$0.2390840.8162$0.1951
OP<0.01%$0.9999550.1947$0.1947
OP<0.01%$0.0001131,602.345$0.1807
OP<0.01%$14.240.0096969$0.138
OP<0.01%$0.00275846.7662$0.129
OP<0.01%$0.00493625.086$0.1238
OP<0.01%$0.2005740.5952$0.1193
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.