S Price: $0.041861 (-2.68%)
Gas: 55 Gwei

Contract

0x00700052c0608F670705380a4900e0a8080010CC

Overview

S Balance

Sonic LogoSonic LogoSonic Logo21.31700804363116833 S

S Value

$0.89 (@ $0.04/S)

Token Holdings

More Info

Private Name Tags

Transaction Hash
Block
From
To
Transfer Ownersh...361625452025-06-27 10:48:26251 days ago1751021306IN
Velora: Augustus Fee Vault
0 S0.0015590952.50005
Set Augustus App...361625362025-06-27 10:48:23251 days ago1751021303IN
Velora: Augustus Fee Vault
0 S0.0026217452.50005

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
637413082026-02-26 0:38:057 days ago1772066285
Velora: Augustus Fee Vault
0 S
636701322026-02-25 2:39:538 days ago1771987193
Velora: Augustus Fee Vault
0.00218904 S
630416622026-02-16 19:18:2117 days ago1771269501
Velora: Augustus Fee Vault
0.00292052 S
626748982026-02-12 3:55:5121 days ago1770868551
Velora: Augustus Fee Vault
0 S
626618872026-02-12 1:24:1421 days ago1770859454
Velora: Augustus Fee Vault
15.91186405 S
620546002026-02-05 15:21:4128 days ago1770304901
Velora: Augustus Fee Vault
0.00088177 S
619467412026-02-04 15:02:1129 days ago1770217331
Velora: Augustus Fee Vault
0.03712846 S
618565312026-02-03 13:53:3930 days ago1770126819
Velora: Augustus Fee Vault
0.00195925 S
613195042026-01-28 9:29:4336 days ago1769592583
Velora: Augustus Fee Vault
0 S
610721212026-01-24 20:33:1840 days ago1769286798
Velora: Augustus Fee Vault
0 S
608457052026-01-21 13:34:5343 days ago1769002493
Velora: Augustus Fee Vault
0.00000005 S
608142392026-01-21 1:49:0343 days ago1768960143
Velora: Augustus Fee Vault
0 S
606849222026-01-19 8:32:0245 days ago1768811522
Velora: Augustus Fee Vault
0.01076872 S
596902782026-01-05 21:34:3258 days ago1767648872
Velora: Augustus Fee Vault
0.00114744 S
596867862026-01-05 20:33:0759 days ago1767645187
Velora: Augustus Fee Vault
0.00025283 S
596837912026-01-05 19:48:0459 days ago1767642484
Velora: Augustus Fee Vault
0.00151314 S
596299172026-01-05 4:05:4959 days ago1767585949
Velora: Augustus Fee Vault
0.00000002 S
593032242025-12-31 13:11:0864 days ago1767186668
Velora: Augustus Fee Vault
0.00000003 S
591228822025-12-28 16:26:4467 days ago1766939204
Velora: Augustus Fee Vault
0.00712985 S
591222992025-12-28 16:16:1167 days ago1766938571
Velora: Augustus Fee Vault
0.0004041 S
590966532025-12-28 7:38:3367 days ago1766907513
Velora: Augustus Fee Vault
3.611299 S
590369102025-12-27 10:33:0168 days ago1766831581
Velora: Augustus Fee Vault
0 S
580514562025-12-16 6:35:1879 days ago1765866918
Velora: Augustus Fee Vault
0.00015738 S
579489512025-12-14 23:44:3380 days ago1765755873
Velora: Augustus Fee Vault
34 wei
576972972025-12-11 16:09:3084 days ago1765469370
Velora: Augustus Fee Vault
0.1057346 S
View All Internal Transactions
Cross-Chain Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AugustusFeeVault

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
shanghai EvmVersion
// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;

// Contracts
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { Pausable } from "@openzeppelin/contracts/utils/Pausable.sol";

// Interfaces
import { IAugustusFeeVault } from "../interfaces/IAugustusFeeVault.sol";
import { IERC20 } from "@openzeppelin/token/ERC20/IERC20.sol";

// Libraries
import { ERC20Utils } from "../libraries/ERC20Utils.sol";

/// @title Augstus Fee Vault
/// @notice Allows partners to collect fees stored in the vault, and allows augustus contracts to register fees
contract AugustusFeeVault is IAugustusFeeVault, Ownable, Pausable {
    /*//////////////////////////////////////////////////////////////
                                LIBRARIES
    //////////////////////////////////////////////////////////////*/

    using ERC20Utils for IERC20;

    /*//////////////////////////////////////////////////////////////
                                VARIABLES
    //////////////////////////////////////////////////////////////*/

    /// @dev A mapping of augustus contract addresses to their approval status
    mapping(address augustus => bool approved) public augustusContracts;

    // @dev Mapping of fee tokens to stored fee amounts
    mapping(address account => mapping(IERC20 token => uint256 amount)) public fees;

    // @dev Mapping of fee tokens to allocated fee amounts
    mapping(IERC20 token => uint256 amount) public allocatedFees;

    /*//////////////////////////////////////////////////////////////
                              CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(address[] memory _augustusContracts, address owner) Ownable(owner) {
        // Set augustus verifier contracts
        for (uint256 i = 0; i < _augustusContracts.length; i++) {
            augustusContracts[_augustusContracts[i]] = true;
            emit AugustusApprovalSet(_augustusContracts[i], true);
        }
    }

    /*//////////////////////////////////////////////////////////////
                               MODIFIERS
    //////////////////////////////////////////////////////////////*/

    /// @dev Modifier to check if the caller is an approved augustus contract
    modifier onlyApprovedAugustus() {
        if (!augustusContracts[msg.sender]) {
            revert UnauthorizedCaller();
        }
        _;
    }

    /// @dev Verifies that the withdraw amount is not zero
    modifier validAmount(uint256 amount) {
        // Check if amount is zero
        if (amount == 0) {
            revert InvalidWithdrawAmount();
        }
        _;
    }

    /*//////////////////////////////////////////////////////////////
                                 PUBLIC
    //////////////////////////////////////////////////////////////*/

    /// @inheritdoc IAugustusFeeVault
    function withdrawSomeERC20(
        IERC20 token,
        uint256 amount,
        address recipient
    )
        public
        validAmount(amount)
        whenNotPaused
        returns (bool success)
    {
        /// Check recipient
        recipient = _checkRecipient(recipient);

        // Update fees mapping
        _updateFees(token, msg.sender, amount);

        // Transfer tokens to recipient
        token.safeTransfer(recipient, amount);

        // Return success
        return true;
    }

    /// @inheritdoc IAugustusFeeVault
    function getUnallocatedFees(IERC20 token) public view returns (uint256 unallocatedFees) {
        // Get the allocated fees for the given token
        uint256 allocatedFee = allocatedFees[token];

        // Get the balance of the given token
        uint256 balance = token.getBalance(address(this));

        // If the balance is bigger than the allocated fee, then the unallocated fees should
        // be equal to the balance minus the allocated fee
        if (balance > allocatedFee) {
            // Set the unallocated fees to the balance minus the allocated fee
            unallocatedFees = balance - allocatedFee;
        }
    }

    /*///////////////////////////////////////////////////////////////
                                EXTERNAL
    //////////////////////////////////////////////////////////////*/

    /// @inheritdoc IAugustusFeeVault
    function batchWithdrawSomeERC20(
        IERC20[] calldata tokens,
        uint256[] calldata amounts,
        address recipient
    )
        external
        whenNotPaused
        returns (bool success)
    {
        // Check if the length of the tokens and amounts arrays are the same
        if (tokens.length != amounts.length) {
            revert InvalidParameterLength();
        }

        // Loop through the tokens and amounts arrays
        for (uint256 i; i < tokens.length; ++i) {
            // Collect fees for the given token
            if (!withdrawSomeERC20(tokens[i], amounts[i], recipient)) {
                // Revert if collect fails
                revert BatchCollectFailed();
            }
        }

        // Return success
        return true;
    }

    /// @inheritdoc IAugustusFeeVault
    function withdrawAllERC20(IERC20 token, address recipient) public whenNotPaused returns (bool success) {
        // Check recipient
        recipient = _checkRecipient(recipient);

        // Get the total fees for msg.sender in the given token
        uint256 totalBalance = fees[msg.sender][token];

        // Make sure the amount is not zero
        if (totalBalance == 0) {
            revert InvalidWithdrawAmount();
        }

        // Update fees mapping
        _updateFees(token, msg.sender, totalBalance);

        // Transfer tokens to recipient
        token.safeTransfer(recipient, totalBalance);

        // Return success
        return true;
    }

    /// @inheritdoc IAugustusFeeVault
    function batchWithdrawAllERC20(
        IERC20[] calldata tokens,
        address recipient
    )
        external
        whenNotPaused
        returns (bool success)
    {
        // Loop through the tokens array
        for (uint256 i; i < tokens.length; ++i) {
            // Collect all fees for the given token
            if (!withdrawAllERC20(tokens[i], recipient)) {
                // Revert if withdrawAllERC20 fails
                revert BatchCollectFailed();
            }
        }

        // Return success
        return true;
    }

    /// @inheritdoc IAugustusFeeVault
    function registerFees(FeeRegistration memory feeData) external onlyApprovedAugustus {
        // Get the addresses, tokens, and feeAmounts from the feeData struct
        address[] memory addresses = feeData.addresses;
        IERC20 token = feeData.token;
        uint256[] memory feeAmounts = feeData.fees;

        // Make sure the length of the addresses and feeAmounts arrays are the same
        if (addresses.length != feeAmounts.length) {
            revert InvalidParameterLength();
        }

        // Loop through the addresses and fees arrays
        for (uint256 i; i < addresses.length; ++i) {
            // Register the fees for the given address and token if the fee and address are not zero
            if (feeAmounts[i] != 0 && addresses[i] != address(0)) {
                _registerFee(addresses[i], token, feeAmounts[i]);
            }
        }
    }

    /// @inheritdoc IAugustusFeeVault
    function setAugustusApproval(address augustus, bool approved) external onlyOwner {
        // Set the approval status for the given augustus contract
        augustusContracts[augustus] = approved;
        // Emit an event
        emit AugustusApprovalSet(augustus, approved);
    }

    /// @inheritdoc IAugustusFeeVault
    function setContractPauseState(bool _isPaused) external onlyOwner {
        // Set the pause state
        if (_isPaused) {
            _pause();
        } else {
            _unpause();
        }
    }

    /// @inheritdoc IAugustusFeeVault
    function getBalance(IERC20 token, address partner) external view returns (uint256 feeBalance) {
        // Get the fees for the given token and partner
        return fees[partner][token];
    }

    /// @inheritdoc IAugustusFeeVault
    function batchGetBalance(
        IERC20[] calldata tokens,
        address partner
    )
        external
        view
        returns (uint256[] memory feeBalances)
    {
        // Initialize the feeBalances array
        feeBalances = new uint256[](tokens.length);

        // Loop through the tokens array
        for (uint256 i; i < tokens.length; ++i) {
            // Get the fees for the given token and partner
            feeBalances[i] = fees[partner][tokens[i]];
        }
    }

    /*//////////////////////////////////////////////////////////////
                                PRIVATE
    //////////////////////////////////////////////////////////////*/

    /// @notice Register fees for a given account and token
    /// @param account The account to register the fees for
    /// @param token The token to register the fees for
    /// @param fee The amount of fees to register
    function _registerFee(address account, IERC20 token, uint256 fee) private {
        // Get the unallocated fees for the given token
        uint256 unallocatedFees = getUnallocatedFees(token);

        // Make sure the fee is not bigger than the unallocated fees
        if (fee > unallocatedFees) {
            // If it is, set the fee to the unallocated fees
            fee = unallocatedFees;
        }

        // Update the fees mapping
        fees[account][token] += fee;

        // Update the allocated fees mapping
        allocatedFees[token] += fee;
    }

    /// @notice Update fees and allocatedFees for a given token and claimer
    /// @param token The token to update the fees for
    /// @param claimer The address to withdraw the fees for
    /// @param withdrawAmount The amount of fees to withdraw
    function _updateFees(IERC20 token, address claimer, uint256 withdrawAmount) private {
        // get the fees for the claimer
        uint256 feesForClaimer = fees[claimer][token];

        // revert if withdraw amount is bigger than the fees for the claimer
        if (withdrawAmount > feesForClaimer) {
            revert InvalidWithdrawAmount();
        }

        // update the allocated fees
        allocatedFees[token] -= withdrawAmount;

        // update the fees for the claimer
        fees[claimer][token] -= withdrawAmount;
    }

    /// @notice Check if recipient is zero address and set it to msg sender if it is, otherwise return recipient
    /// @param recipient The recipient address
    /// @return recipient The updated recipient address
    function _checkRecipient(address recipient) private view returns (address) {
        // Allow arbitrary recipient unless it is zero address
        if (recipient == address(0)) {
            recipient = msg.sender;
        }

        // Return recipient
        return recipient;
    }

    /*//////////////////////////////////////////////////////////////
                                RECEIVE
    //////////////////////////////////////////////////////////////*/

    /// @notice Reverts if the caller is one of the following:
    //         - an externally-owned account
    //         - a contract in construction
    //         - an address where a contract will be created
    //         - an address where a contract lived, but was destroyed
    receive() external payable {
        address addr = msg.sender;
        // solhint-disable-next-line no-inline-assembly
        assembly ("memory-safe") {
            if iszero(extcodesize(addr)) { revert(0, 0) }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    bool private _paused;

    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    /**
     * @dev The operation failed because the contract is paused.
     */
    error EnforcedPause();

    /**
     * @dev The operation failed because the contract is not paused.
     */
    error ExpectedPause();

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        if (paused()) {
            revert EnforcedPause();
        }
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        if (!paused()) {
            revert ExpectedPause();
        }
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;

// Interfaces
import { IERC20 } from "@openzeppelin/token/ERC20/IERC20.sol";

/// @title IAugustusFeeVault
/// @notice Interface for the AugustusFeeVault contract
interface IAugustusFeeVault {
    /*//////////////////////////////////////////////////////////////
                                 ERRORS
    //////////////////////////////////////////////////////////////*/

    /// @notice Error emitted when withdraw amount is zero or exceeds the stored amount
    error InvalidWithdrawAmount();

    /// @notice Error emmitted when caller is not an approved augustus contract
    error UnauthorizedCaller();

    /// @notice Error emitted when an invalid parameter length is passed
    error InvalidParameterLength();

    /// @notice Error emitted when batch withdraw fails
    error BatchCollectFailed();

    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    /// @notice Emitted when an augustus contract approval status is set
    /// @param augustus The augustus contract address
    /// @param approved The approval status
    event AugustusApprovalSet(address indexed augustus, bool approved);

    /*//////////////////////////////////////////////////////////////
                                STRUCTS
    //////////////////////////////////////////////////////////////*/

    /// @notice Struct to register fees
    /// @param addresses The addresses to register fees for
    /// @param token The token to register fees for
    /// @param fees The fees to register
    struct FeeRegistration {
        address[] addresses;
        IERC20 token;
        uint256[] fees;
    }

    /*//////////////////////////////////////////////////////////////
                                COLLECT
    //////////////////////////////////////////////////////////////*/

    /// @notice Allows partners to withdraw fees allocated to them and stored in the vault
    /// @param token The token to withdraw fees in
    /// @param amount The amount of fees to withdraw
    /// @param recipient The address to send the fees to
    /// @return success Whether the transfer was successful or not
    function withdrawSomeERC20(IERC20 token, uint256 amount, address recipient) external returns (bool success);

    /// @notice Allows partners to withdraw all fees allocated to them and stored in the vault for a given token
    /// @param token The token to withdraw fees in
    /// @param recipient The address to send the fees to
    /// @return success Whether the transfer was successful or not
    function withdrawAllERC20(IERC20 token, address recipient) external returns (bool success);

    /// @notice Allows partners to withdraw all fees allocated to them and stored in the vault for multiple tokens
    /// @param tokens The tokens to withdraw fees i
    /// @param recipient The address to send the fees to
    /// @return success Whether the transfer was successful or not
    function batchWithdrawAllERC20(IERC20[] calldata tokens, address recipient) external returns (bool success);

    /// @notice Allows partners to withdraw fees allocated to them and stored in the vault
    /// @param tokens The tokens to withdraw fees in
    /// @param amounts The amounts of fees to withdraw
    /// @param recipient The address to send the fees to
    /// @return success Whether the transfer was successful or not
    function batchWithdrawSomeERC20(
        IERC20[] calldata tokens,
        uint256[] calldata amounts,
        address recipient
    )
        external
        returns (bool success);

    /*//////////////////////////////////////////////////////////////
                            BALANCE GETTERS
    //////////////////////////////////////////////////////////////*/

    /// @notice Get the balance of a given token for a given partner
    /// @param token The token to get the balance of
    /// @param partner The partner to get the balance for
    /// @return feeBalance The balance of the given token for the given partner
    function getBalance(IERC20 token, address partner) external view returns (uint256 feeBalance);

    /// @notice Get the balances of a given partner for multiple tokens
    /// @param tokens The tokens to get the balances of
    /// @param partner The partner to get the balances for
    /// @return feeBalances The balances of the given tokens for the given partner
    function batchGetBalance(
        IERC20[] calldata tokens,
        address partner
    )
        external
        view
        returns (uint256[] memory feeBalances);

    /// @notice Returns the unallocated fees for a given token
    /// @param token The token to get the unallocated fees for
    /// @return unallocatedFees The unallocated fees for the given token
    function getUnallocatedFees(IERC20 token) external view returns (uint256 unallocatedFees);

    /*//////////////////////////////////////////////////////////////
                                 OWNER
    //////////////////////////////////////////////////////////////*/

    /// @notice Registers the given feeData to the vault
    /// @param feeData The fee registration data
    function registerFees(FeeRegistration memory feeData) external;

    /// @notice Sets the augustus contract approval status
    /// @param augustus The augustus contract address
    /// @param approved The approval status
    function setAugustusApproval(address augustus, bool approved) external;

    /// @notice Sets the contract pause state
    /// @param _isPaused The new pause state
    function setContractPauseState(bool _isPaused) external;
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;

// Interfaces
import { IERC20 } from "@openzeppelin/token/ERC20/IERC20.sol";

/// @title ERC20Utils
/// @notice Optimized functions for ERC20 tokens
library ERC20Utils {
    /*//////////////////////////////////////////////////////////////
                                ERRORS
    //////////////////////////////////////////////////////////////*/

    error IncorrectEthAmount();
    error PermitFailed();
    error TransferFromFailed();
    error TransferFailed();
    error ApprovalFailed();

    /*//////////////////////////////////////////////////////////////
                               CONSTANTS
    //////////////////////////////////////////////////////////////*/

    IERC20 internal constant ETH = IERC20(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE);

    /*//////////////////////////////////////////////////////////////
                                APPROVE
    //////////////////////////////////////////////////////////////*/

    /// @dev Vendored from Solady by @vectorized - SafeTransferLib.approveWithRetry
    /// https://github.com/Vectorized/solady/src/utils/SafeTransferLib.sol#L325
    /// Instead of approving a specific amount, this function approves for uint256(-1) (type(uint256).max).
    function approve(IERC20 token, address to) internal {
        // solhint-disable-next-line no-inline-assembly
        assembly ("memory-safe") {
            mstore(0x14, to) // Store the `to` argument.
            mstore(0x34, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) // Store the `amount`
                // argument (type(uint256).max).
            mstore(0x00, 0x095ea7b3000000000000000000000000) // `approve(address,uint256)`.
            // Perform the approval, retrying upon failure.
            if iszero(
                and( // The arguments of `and` are evaluated from right to left.
                    or(eq(mload(0x00), 1), iszero(returndatasize())), // Returned 1 or nothing.
                    call(gas(), token, 0, 0x10, 0x44, 0x00, 0x20)
                )
            ) {
                mstore(0x34, 0) // Store 0 for the `amount`.
                mstore(0x00, 0x095ea7b3000000000000000000000000) // `approve(address,uint256)`.
                pop(call(gas(), token, 0, 0x10, 0x44, codesize(), 0x00)) // Reset the approval.
                mstore(0x34, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) // Store
                    // type(uint256).max for the `amount`.
                // Retry the approval, reverting upon failure.
                if iszero(
                    and(
                        or(eq(mload(0x00), 1), iszero(returndatasize())), // Returned 1 or nothing.
                        call(gas(), token, 0, 0x10, 0x44, 0x00, 0x20)
                    )
                ) {
                    mstore(0, 0x8164f84200000000000000000000000000000000000000000000000000000000)
                    // store the selector (error ApprovalFailed())
                    revert(0, 4) // revert with error selector
                }
            }
            mstore(0x34, 0) // Restore the part of the free memory pointer that was overwritten.
        }
    }

    /*//////////////////////////////////////////////////////////////
                                PERMIT
    //////////////////////////////////////////////////////////////*/

    /// @dev Executes an ERC20 permit and reverts if invalid length is provided
    function permit(IERC20 token, bytes calldata data) internal {
        // solhint-disable-next-line no-inline-assembly
        assembly ("memory-safe") {
            // check the permit length
            switch data.length
            // 32 * 7 = 224 EIP2612 Permit
            case 224 {
                let x := mload(64) // get the free memory pointer
                mstore(x, 0xd505accf00000000000000000000000000000000000000000000000000000000) // store the selector
                    // function permit(address owner, address spender, uint256
                    // amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s)
                calldatacopy(add(x, 4), data.offset, 224) // store the args
                pop(call(gas(), token, 0, x, 228, 0, 32)) // call ERC20 permit, skip checking return data
            }
            // 32 * 8 = 256 DAI-Style Permit
            case 256 {
                let x := mload(64) // get the free memory pointer
                mstore(x, 0x8fcbaf0c00000000000000000000000000000000000000000000000000000000) // store the selector
                    // function permit(address holder, address spender, uint256
                    // nonce, uint256 expiry, bool allowed, uint8 v, bytes32 r, bytes32 s)
                calldatacopy(add(x, 4), data.offset, 256) // store the args
                pop(call(gas(), token, 0, x, 260, 0, 32)) // call ERC20 permit, skip checking return data
            }
            default {
                mstore(0, 0xb78cb0dd00000000000000000000000000000000000000000000000000000000) // store the selector
                    // (error PermitFailed())
                revert(0, 4)
            }
        }
    }

    /*//////////////////////////////////////////////////////////////
                                 ETH
    //////////////////////////////////////////////////////////////*/

    /// @dev Returns 1 if the token is ETH, 0 if not ETH
    function isETH(IERC20 token, uint256 amount) internal view returns (uint256 fromETH) {
        // solhint-disable-next-line no-inline-assembly
        assembly ("memory-safe") {
            // If token is ETH
            if eq(token, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE) {
                // if msg.value is not equal to fromAmount, then revert
                if xor(amount, callvalue()) {
                    mstore(0, 0x8b6ebb4d00000000000000000000000000000000000000000000000000000000) // store the selector
                        // (error IncorrectEthAmount())
                    revert(0, 4) // revert with error selector
                }
                // return 1 if ETH
                fromETH := 1
            }
            // If token is not ETH
            if xor(token, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE) {
                // if msg.value is not equal to 0, then revert
                if gt(callvalue(), 0) {
                    mstore(0, 0x8b6ebb4d00000000000000000000000000000000000000000000000000000000) // store the selector
                    // (error IncorrectEthAmount())
                    revert(0, 4) // revert with error selector
                }
            }
        }
        // return 0 if not ETH
    }

    /*//////////////////////////////////////////////////////////////
                                TRANSFER
    //////////////////////////////////////////////////////////////*/

    /// @dev Executes transfer and reverts if it fails, works for both ETH and ERC20 transfers
    function safeTransfer(IERC20 token, address recipient, uint256 amount) internal returns (bool success) {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            switch eq(token, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)
            // ETH
            case 1 {
                // transfer ETH
                // Cap gas at 10000 to avoid reentrancy
                success := call(10000, recipient, amount, 0, 0, 0, 0)
            }
            // ERC20
            default {
                let x := mload(64) // get the free memory pointer
                mstore(x, 0xa9059cbb00000000000000000000000000000000000000000000000000000000) // store the selector
                    // (function transfer(address recipient, uint256 amount))
                mstore(add(x, 4), recipient) // store the recipient
                mstore(add(x, 36), amount) // store the amount
                success := call(gas(), token, 0, x, 68, 0, 32) // call transfer
                if success {
                    switch returndatasize()
                    // check the return data size
                    case 0 { success := gt(extcodesize(token), 0) }
                    default { success := and(gt(returndatasize(), 31), eq(mload(0), 1)) }
                }
            }
            if iszero(success) {
                mstore(0, 0x90b8ec1800000000000000000000000000000000000000000000000000000000) // store the selector
                    // (error TransferFailed())
                revert(0, 4) // revert with error selector
            }
        }
    }

    /*//////////////////////////////////////////////////////////////
                             TRANSFER FROM
    //////////////////////////////////////////////////////////////*/

    /// @dev Executes transferFrom and reverts if it fails
    function safeTransferFrom(
        IERC20 srcToken,
        address sender,
        address recipient,
        uint256 amount
    )
        internal
        returns (bool success)
    {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            let x := mload(64) // get the free memory pointer
            mstore(x, 0x23b872dd00000000000000000000000000000000000000000000000000000000) // store the selector
                // (function transferFrom(address sender, address recipient,
                // uint256 amount))
            mstore(add(x, 4), sender) // store the sender
            mstore(add(x, 36), recipient) // store the recipient
            mstore(add(x, 68), amount) // store the amount
            success := call(gas(), srcToken, 0, x, 100, 0, 32) // call transferFrom
            if success {
                switch returndatasize()
                // check the return data size
                case 0 { success := gt(extcodesize(srcToken), 0) }
                default { success := and(gt(returndatasize(), 31), eq(mload(0), 1)) }
            }
            if iszero(success) {
                mstore(x, 0x7939f42400000000000000000000000000000000000000000000000000000000) // store the selector
                    // (error TransferFromFailed())
                revert(x, 4) // revert with error selector
            }
        }
    }

    /*//////////////////////////////////////////////////////////////
                                BALANCE
    //////////////////////////////////////////////////////////////*/

    /// @dev Returns the balance of an account, works for both ETH and ERC20 tokens
    function getBalance(IERC20 token, address account) internal view returns (uint256 balanceOf) {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            switch eq(token, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)
            // ETH
            case 1 { balanceOf := balance(account) }
            // ERC20
            default {
                let x := mload(64) // get the free memory pointer
                mstore(x, 0x70a0823100000000000000000000000000000000000000000000000000000000) // store the selector
                    // (function balanceOf(address account))
                mstore(add(x, 4), account) // store the account
                let success := staticcall(gas(), token, x, 36, x, 32) // call balanceOf
                if success { balanceOf := mload(x) } // load the balance
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

Settings
{
  "remappings": [
    "@prb/test/=lib/prb-test/src/",
    "forge-std/=lib/forge-std/src/",
    "@openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "@solady/=lib/solady/src/",
    "@create3/=lib/create3-factory/src/",
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "create3-factory/=lib/create3-factory/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "prb-test/=lib/prb-test/src/",
    "solady/=lib/solady/",
    "solmate/=lib/create3-factory/lib/solmate/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "none",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "shanghai",
  "viaIR": true,
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address[]","name":"_augustusContracts","type":"address[]"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BatchCollectFailed","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"InvalidParameterLength","type":"error"},{"inputs":[],"name":"InvalidWithdrawAmount","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"UnauthorizedCaller","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"augustus","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"AugustusApprovalSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"allocatedFees","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"augustus","type":"address"}],"name":"augustusContracts","outputs":[{"internalType":"bool","name":"approved","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"address","name":"partner","type":"address"}],"name":"batchGetBalance","outputs":[{"internalType":"uint256[]","name":"feeBalances","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"address","name":"recipient","type":"address"}],"name":"batchWithdrawAllERC20","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address","name":"recipient","type":"address"}],"name":"batchWithdrawSomeERC20","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"fees","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"partner","type":"address"}],"name":"getBalance","outputs":[{"internalType":"uint256","name":"feeBalance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"getUnallocatedFees","outputs":[{"internalType":"uint256","name":"unallocatedFees","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256[]","name":"fees","type":"uint256[]"}],"internalType":"struct IAugustusFeeVault.FeeRegistration","name":"feeData","type":"tuple"}],"name":"registerFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"augustus","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setAugustusApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPaused","type":"bool"}],"name":"setContractPauseState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawAllERC20","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawSomeERC20","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

604060808152346200019b57620015ac90813803806200001f81620001b3565b938439820181838203126200019b5782516001600160401b0391908281116200019b5784019381601f860112156200019b5784519160209383116200019f578260051b95848062000072818a01620001b3565b8096815201978201019182116200019b578401955b8187106200018157506001600160a01b03939291849150620000ab908401620001d9565b1680156200016a575f54818582167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a36001600160a81b031916175f9081555b81518110156200015b5780846200010760019385620001ee565b51165f5281808552865f208160ff198254161790557f6e22534cd7ba9ac690c8291d348b7cd994a6753f153ed57cd0a24dd720ae2d0485876200014b8588620001ee565b5116928951908152a201620000ed565b84516113949081620002188239f35b8451631e4fbdf760e01b81525f6004820152602490fd5b8480916200018f89620001d9565b81520196019562000087565b5f80fd5b634e487b7160e01b5f52604160045260245ffd5b6040519190601f01601f191682016001600160401b038111838210176200019f57604052565b51906001600160a01b03821682036200019b57565b8051821015620002035760209160051b010190565b634e487b7160e01b5f52603260045260245ffdfe60806040526004361015610022575b3615610018575f80fd5b610020611056565b005b5f3560e01c80633ea6f5111461013157806345f32b0b1461012c5780635c975abb14610127578063715018a6146101225780638da5cb5b1461011d5780638f79528c146101185780639b9ac2cb14610113578063ae11c7f81461010e578063b0a65b1714610109578063bbedcc4014610104578063d2ea29c0146100ff578063d4fac45d146100fa578063e20b52d9146100f5578063e537348b146100f0578063f2fde38b146100eb578063f89abe8c146100e65763ffcc41ee0361000e57610c1d565b610bd0565b610aee565b610a16565b6109aa565b610951565b610886565b610804565b610723565b610647565b610568565b610508565b6104b8565b61041e565b6103dc565b6102d5565b610165565b73ffffffffffffffffffffffffffffffffffffffff81160361015457565b5f80fd5b359061016382610136565b565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545773ffffffffffffffffffffffffffffffffffffffff6004356101b581610136565b165f526003602052602060405f2054604051908152f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b604051906060820182811067ffffffffffffffff82111761021957604052565b6101cc565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f604051930116820182811067ffffffffffffffff82111761021957604052565b67ffffffffffffffff81116102195760051b60200190565b9080601f8301121561015457602090823561029c61029782610262565b61021e565b9360208086848152019260051b82010192831161015457602001905b8282106102c6575050505090565b813581529083019083016102b8565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc90602082360112610154576004359167ffffffffffffffff90818411610154576060908436030112610154576103316101f9565b91836004013582811161015457840190366023830112156101545760048201359161035e61029784610262565b926024602085838152019160051b8301019136831161015457602401905b8282106103c35750505050825261039560248401610158565b60208301526044830135908111610154576100209260046103b9923692010161027a565b6040820152610d4a565b83809183356103d181610136565b81520191019061037c565b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602060ff5f5460a01c166040519015158152f35b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576104546110ed565b5f73ffffffffffffffffffffffffffffffffffffffff81547fffffffffffffffffffffffff000000000000000000000000000000000000000081168355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602073ffffffffffffffffffffffffffffffffffffffff5f5416604051908152f35b346101545760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602061055e60043561054881610136565b6044359061055582610136565b60243590610eb1565b6040519015158152f35b346101545760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545760206105f86004356105a881610136565b73ffffffffffffffffffffffffffffffffffffffff602435916105ca83610136565b165f526002835260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b54604051908152f35b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc60409101126101545760043561063781610136565b9060243561064481610136565b90565b3461015457602061055e61065a36610601565b90610f0c565b9181601f840112156101545782359167ffffffffffffffff8311610154576020808501948460051b01011161015457565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc820112610154576004359067ffffffffffffffff8211610154576106da91600401610660565b909160243561064481610136565b60209060206040818301928281528551809452019301915f5b82811061070f575050505090565b835185529381019392810192600101610701565b346101545761073136610691565b909161073f61029784610262565b9280845261074c81610262565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0602091013660208701375f5b828110610792576040518061078e88826106e8565b0390f35b60019073ffffffffffffffffffffffffffffffffffffffff86165f52600283526107f260405f206107c4838789610f63565b35906107cf82610136565b9073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b546107fd8289610e98565b5201610779565b346101545761081236610691565b61081d92919261113d565b5f5b83811061083157602060405160018152f35b61084f82610840838787610f63565b3561084a81610136565b610f0c565b1561085c5760010161081f565b60046040517f3439313b000000000000000000000000000000000000000000000000000000008152fd5b346101545760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576004356108c181610136565b6024359081151580920361015457602073ffffffffffffffffffffffffffffffffffffffff7f6e22534cd7ba9ac690c8291d348b7cd994a6753f153ed57cd0a24dd720ae2d04926109106110ed565b1692835f526001825260405f207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff8316179055604051908152a2005b346101545760206105f873ffffffffffffffffffffffffffffffffffffffff61097936610601565b919091165f526002835260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545773ffffffffffffffffffffffffffffffffffffffff6004356109fa81610136565b165f526001602052602060ff60405f2054166040519015158152f35b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600435801515810361015457610a596110ed565b15610a6657610020611316565b5f5460ff8160a01c1615610ac4577fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff165f557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a1005b60046040517f8dfc202b000000000000000000000000000000000000000000000000000000008152fd5b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600435610b2981610136565b610b316110ed565b73ffffffffffffffffffffffffffffffffffffffff809116908115610ba0575f54827fffffffffffffffffffffffff00000000000000000000000000000000000000008216175f55167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3005b60246040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152fd5b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576020610c15600435610c1081610136565b610fa0565b604051908152f35b346101545760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600467ffffffffffffffff813581811161015457610c6e903690600401610660565b9160243590811161015457610c87903690600401610660565b9060443590610c9582610136565b610c9d61113d565b828503610d20575f5b858110610cb95760405160018152602090f35b610ceb610ce784610ccb848a8a610f63565b35610cd581610136565b610ce0858988610f63565b3590610eb1565b1590565b610cf757600101610ca6565b866040517f3439313b000000000000000000000000000000000000000000000000000000008152fd5b60046040517fc0375efc000000000000000000000000000000000000000000000000000000008152fd5b335f52600190600160205260ff60405f20541615610e41578051906040610d88602083015173ffffffffffffffffffffffffffffffffffffffff1690565b910151908251825103610d20575f92845b610da5575b5050505050565b8051841015610e3c578484610dbb829686610e98565b51151580610e11575b610dd0575b0193610d99565b610e0c610dfa610de08386610e98565b5173ffffffffffffffffffffffffffffffffffffffff1690565b85610e058489610e98565b519161105f565b610dc9565b5073ffffffffffffffffffffffffffffffffffffffff610e34610de08386610e98565b161515610dc4565b610d9e565b60046040517f5c427cd9000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b8051821015610eac5760209160051b010190565b610e6b565b8115610ee257610ecb610edc93610ec661113d565b611175565b90610ed7833383611199565b611248565b50600190565b60046040517fdb73cdf0000000000000000000000000000000000000000000000000000000008152fd5b90610f1990610ec661113d565b335f526002602052610f4c8260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b54908115610ee257610edc92610ed7833383611199565b9190811015610eac5760051b0190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b905f9173ffffffffffffffffffffffffffffffffffffffff81165f52600360205260405f20545f9173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee811460011461104d576020602491604051928380927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa611044575b505b80821161102f575050565b90809293500390811161103f5790565b610f73565b5191505f611022565b50479150611024565b333b1561015457565b9061106981610fa0565b8084116110e5575b5073ffffffffffffffffffffffffffffffffffffffff8092165f5260026020526110bc8160405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b80549084820180921161103f5755165f52600360205260405f20805491820180921161103f5755565b92505f611071565b73ffffffffffffffffffffffffffffffffffffffff5f5416330361110d57565b60246040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152fd5b60ff5f5460a01c1661114b57565b60046040517fd93c0665000000000000000000000000000000000000000000000000000000008152fd5b73ffffffffffffffffffffffffffffffffffffffff8116156111945790565b503390565b73ffffffffffffffffffffffffffffffffffffffff80921691825f5260026020526111e58260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b548411610ee25781165f52600360205260405f2091825484810390811161103f5761123993555f52600260205260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b805491820391821161103f5755565b929173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee84146001146113025760446020925f92604051917fa9059cbb0000000000000000000000000000000000000000000000000000000083526004830152602482015282865af191826112dd575b505b81156112b557565b7f90b8ec18000000000000000000000000000000000000000000000000000000005f5260045ffd5b9091503d156112f9575060015f5114601f3d1116905b5f6112ab565b3b1515906112f3565b5f809394508092918192612710f1906112ad565b61131e61113d565b740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff5f5416175f557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a156fea164736f6c6343000816000a0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000d7e24a49944f7972ceb826c7557580658f9c33030000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361015610022575b3615610018575f80fd5b610020611056565b005b5f3560e01c80633ea6f5111461013157806345f32b0b1461012c5780635c975abb14610127578063715018a6146101225780638da5cb5b1461011d5780638f79528c146101185780639b9ac2cb14610113578063ae11c7f81461010e578063b0a65b1714610109578063bbedcc4014610104578063d2ea29c0146100ff578063d4fac45d146100fa578063e20b52d9146100f5578063e537348b146100f0578063f2fde38b146100eb578063f89abe8c146100e65763ffcc41ee0361000e57610c1d565b610bd0565b610aee565b610a16565b6109aa565b610951565b610886565b610804565b610723565b610647565b610568565b610508565b6104b8565b61041e565b6103dc565b6102d5565b610165565b73ffffffffffffffffffffffffffffffffffffffff81160361015457565b5f80fd5b359061016382610136565b565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545773ffffffffffffffffffffffffffffffffffffffff6004356101b581610136565b165f526003602052602060405f2054604051908152f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b604051906060820182811067ffffffffffffffff82111761021957604052565b6101cc565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f604051930116820182811067ffffffffffffffff82111761021957604052565b67ffffffffffffffff81116102195760051b60200190565b9080601f8301121561015457602090823561029c61029782610262565b61021e565b9360208086848152019260051b82010192831161015457602001905b8282106102c6575050505090565b813581529083019083016102b8565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc90602082360112610154576004359167ffffffffffffffff90818411610154576060908436030112610154576103316101f9565b91836004013582811161015457840190366023830112156101545760048201359161035e61029784610262565b926024602085838152019160051b8301019136831161015457602401905b8282106103c35750505050825261039560248401610158565b60208301526044830135908111610154576100209260046103b9923692010161027a565b6040820152610d4a565b83809183356103d181610136565b81520191019061037c565b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602060ff5f5460a01c166040519015158152f35b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576104546110ed565b5f73ffffffffffffffffffffffffffffffffffffffff81547fffffffffffffffffffffffff000000000000000000000000000000000000000081168355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602073ffffffffffffffffffffffffffffffffffffffff5f5416604051908152f35b346101545760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602061055e60043561054881610136565b6044359061055582610136565b60243590610eb1565b6040519015158152f35b346101545760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545760206105f86004356105a881610136565b73ffffffffffffffffffffffffffffffffffffffff602435916105ca83610136565b165f526002835260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b54604051908152f35b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc60409101126101545760043561063781610136565b9060243561064481610136565b90565b3461015457602061055e61065a36610601565b90610f0c565b9181601f840112156101545782359167ffffffffffffffff8311610154576020808501948460051b01011161015457565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc820112610154576004359067ffffffffffffffff8211610154576106da91600401610660565b909160243561064481610136565b60209060206040818301928281528551809452019301915f5b82811061070f575050505090565b835185529381019392810192600101610701565b346101545761073136610691565b909161073f61029784610262565b9280845261074c81610262565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0602091013660208701375f5b828110610792576040518061078e88826106e8565b0390f35b60019073ffffffffffffffffffffffffffffffffffffffff86165f52600283526107f260405f206107c4838789610f63565b35906107cf82610136565b9073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b546107fd8289610e98565b5201610779565b346101545761081236610691565b61081d92919261113d565b5f5b83811061083157602060405160018152f35b61084f82610840838787610f63565b3561084a81610136565b610f0c565b1561085c5760010161081f565b60046040517f3439313b000000000000000000000000000000000000000000000000000000008152fd5b346101545760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576004356108c181610136565b6024359081151580920361015457602073ffffffffffffffffffffffffffffffffffffffff7f6e22534cd7ba9ac690c8291d348b7cd994a6753f153ed57cd0a24dd720ae2d04926109106110ed565b1692835f526001825260405f207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff8316179055604051908152a2005b346101545760206105f873ffffffffffffffffffffffffffffffffffffffff61097936610601565b919091165f526002835260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545773ffffffffffffffffffffffffffffffffffffffff6004356109fa81610136565b165f526001602052602060ff60405f2054166040519015158152f35b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600435801515810361015457610a596110ed565b15610a6657610020611316565b5f5460ff8160a01c1615610ac4577fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff165f557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a1005b60046040517f8dfc202b000000000000000000000000000000000000000000000000000000008152fd5b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600435610b2981610136565b610b316110ed565b73ffffffffffffffffffffffffffffffffffffffff809116908115610ba0575f54827fffffffffffffffffffffffff00000000000000000000000000000000000000008216175f55167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3005b60246040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152fd5b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576020610c15600435610c1081610136565b610fa0565b604051908152f35b346101545760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600467ffffffffffffffff813581811161015457610c6e903690600401610660565b9160243590811161015457610c87903690600401610660565b9060443590610c9582610136565b610c9d61113d565b828503610d20575f5b858110610cb95760405160018152602090f35b610ceb610ce784610ccb848a8a610f63565b35610cd581610136565b610ce0858988610f63565b3590610eb1565b1590565b610cf757600101610ca6565b866040517f3439313b000000000000000000000000000000000000000000000000000000008152fd5b60046040517fc0375efc000000000000000000000000000000000000000000000000000000008152fd5b335f52600190600160205260ff60405f20541615610e41578051906040610d88602083015173ffffffffffffffffffffffffffffffffffffffff1690565b910151908251825103610d20575f92845b610da5575b5050505050565b8051841015610e3c578484610dbb829686610e98565b51151580610e11575b610dd0575b0193610d99565b610e0c610dfa610de08386610e98565b5173ffffffffffffffffffffffffffffffffffffffff1690565b85610e058489610e98565b519161105f565b610dc9565b5073ffffffffffffffffffffffffffffffffffffffff610e34610de08386610e98565b161515610dc4565b610d9e565b60046040517f5c427cd9000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b8051821015610eac5760209160051b010190565b610e6b565b8115610ee257610ecb610edc93610ec661113d565b611175565b90610ed7833383611199565b611248565b50600190565b60046040517fdb73cdf0000000000000000000000000000000000000000000000000000000008152fd5b90610f1990610ec661113d565b335f526002602052610f4c8260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b54908115610ee257610edc92610ed7833383611199565b9190811015610eac5760051b0190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b905f9173ffffffffffffffffffffffffffffffffffffffff81165f52600360205260405f20545f9173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee811460011461104d576020602491604051928380927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa611044575b505b80821161102f575050565b90809293500390811161103f5790565b610f73565b5191505f611022565b50479150611024565b333b1561015457565b9061106981610fa0565b8084116110e5575b5073ffffffffffffffffffffffffffffffffffffffff8092165f5260026020526110bc8160405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b80549084820180921161103f5755165f52600360205260405f20805491820180921161103f5755565b92505f611071565b73ffffffffffffffffffffffffffffffffffffffff5f5416330361110d57565b60246040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152fd5b60ff5f5460a01c1661114b57565b60046040517fd93c0665000000000000000000000000000000000000000000000000000000008152fd5b73ffffffffffffffffffffffffffffffffffffffff8116156111945790565b503390565b73ffffffffffffffffffffffffffffffffffffffff80921691825f5260026020526111e58260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b548411610ee25781165f52600360205260405f2091825484810390811161103f5761123993555f52600260205260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b805491820391821161103f5755565b929173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee84146001146113025760446020925f92604051917fa9059cbb0000000000000000000000000000000000000000000000000000000083526004830152602482015282865af191826112dd575b505b81156112b557565b7f90b8ec18000000000000000000000000000000000000000000000000000000005f5260045ffd5b9091503d156112f9575060015f5114601f3d1116905b5f6112ab565b3b1515906112f3565b5f809394508092918192612710f1906112ad565b61131e61113d565b740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff5f5416175f557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a156fea164736f6c6343000816000a

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000d7e24a49944f7972ceb826c7557580658f9c33030000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _augustusContracts (address[]):
Arg [1] : owner (address): 0xD7e24A49944F7972cEb826C7557580658F9C3303

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000d7e24a49944f7972ceb826c7557580658f9c3303
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


Block Transaction Gas Used Reward
view all blocks ##produced##

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
0x00700052c0608F670705380a4900e0a8080010CC
Net Worth in USD
$748,052.95

Net Worth in S
Sonic LogoSonic LogoSonic Logo 17,870,130.47368

Token Allocations
TRU 43.99%
UXLINK 25.45%
USDC 7.22%
Others 23.34%
Chain Token Portfolio % Price Amount Value
ETH43.99%$0.00713446,123,416.5335$329,047.04
ETH3.35%$0.99990425,036.3377$25,033.93
ETH1.66%$112,400.0145$12,400.01
ETH1.15%$1.227,061.2069$8,614.67
ETH0.95%$2,094.33.3811$7,080.93
ETH0.79%$2,094.32.8261$5,918.65
ETH0.39%$71,002.670.0409$2,902.13
ETH0.36%$0.24711610,890.7464$2,691.28
ETH0.34%$1.162,163.4003$2,509.54
ETH0.28%$1.091,953.471$2,125.38
ETH0.27%$0.9993322,039.4344$2,038.07
ETH0.20%$11,474.8184$1,476.29
ETH0.17%$11,244.0785$1,249.05
ETH0.16%$89.0513.1745$1,173.19
ETH0.10%$1.02746.1465$758.83
ETH0.09%$0.999639694.0024$693.75
ETH0.07%$0.958585541.4858$519.06
ETH0.07%$2,558.80.1923$492.08
ETH0.05%<$0.0000012,113,008,495.8687$353.5
ETH0.05%$0.0669045,046.9594$337.66
ETH0.05%$9.2736.3167$336.66
ETH0.04%$5,057.60.0625$316
ETH0.04%$0.347148782.2327$271.55
ETH0.04%$119.532.2662$270.88
ETH0.04%$5,095.940.0531$270.43
ETH0.03%$0.0768782,911.3447$223.82
ETH0.03%$71,108.470.00307045$218.33
ETH0.03%$1214.1499$214.15
ETH0.03%$2,087.20.1001$208.97
ETH0.02%$0.1025181,811.1138$185.67
ETH0.02%$0.999904155.0255$155.01
ETH0.02%$0.999425137.0949$137.02
ETH0.02%$0.00929214,633.0025$135.96
ETH0.02%$0.270938499.8022$135.42
ETH0.02%$0.999975134.3255$134.32
ETH0.02%$1.16110.0809$127.69
ETH0.02%$189.420.6705$127
ETH0.02%$1.12109.885$123.07
ETH0.02%$0.0787751,530.316$120.55
ETH0.02%$0.782787152.9766$119.75
ETH0.02%$0.999866114.392$114.38
ETH0.01%$70,8900.00152763$108.29
ETH0.01%$2,264.880.0449$101.67
ETH0.01%$0.485166207.0211$100.44
ETH0.01%$1.9749.0013$96.52
ETH0.01%$4.0121.1665$84.88
ETH0.01%$66.641.2086$80.54
ETH0.01%<$0.0000013,370,864,561.9499$80.41
ETH<0.01%$0.015494,650.6278$72.04
ETH<0.01%$1.0466.1187$68.83
ETH<0.01%$2,268.780.0298$67.58
ETH<0.01%$71,380.750.00090174$64.37
ETH<0.01%$2,410.870.0259$62.52
ETH<0.01%$0.330057174.528$57.6
ETH<0.01%$0.000198289,073.517$57.31
ETH<0.01%$0.00000415,952,800.7381$56.15
ETH<0.01%$0.0097455,585.9977$54.43
ETH<0.01%$2.3222.9813$53.32
ETH<0.01%$0.99982452.3543$52.35
ETH<0.01%$0.55077394.4227$52.01
ETH<0.01%$150.3661$50.37
ETH<0.01%$0.00079562,936.2078$50.03
ETH<0.01%$17.392.493$43.35
ETH<0.01%<$0.000001813,474,926.3643$42.41
ETH<0.01%$71,2410.00059317$42.26
ETH<0.01%$0.99982541.5041$41.5
ETH<0.01%$1.6823.8208$40.02
ETH<0.01%$0.0135352,898.3957$39.23
ETH<0.01%<$0.000001415,040,035.3215$37.19
ETH<0.01%$0.99711436.5764$36.47
ETH<0.01%$1.1530.8359$35.46
ETH<0.01%$0.147901239.2746$35.39
ETH<0.01%$0.116954295.1003$34.51
ETH<0.01%$0.0150152,176.8078$32.69
ETH<0.01%$0.99418632.8714$32.68
ETH<0.01%$1.9716.1087$31.73
ETH<0.01%$0.00223514,100.5857$31.51
ETH<0.01%$130.879$30.88
ETH<0.01%$0.99729930.4427$30.36
ETH<0.01%$0.253832115.5027$29.32
ETH<0.01%$1.8715.6012$29.17
ETH<0.01%$0.0242321,190.8763$28.86
ETH<0.01%$2,348.290.0122$28.75
ETH<0.01%$8.213.4216$28.09
ETH<0.01%$0.058163479.918$27.91
ETH<0.01%<$0.000001303,576,848.8115$27.89
ETH<0.01%$0.127952217.348$27.81
ETH<0.01%$0.98766627.0627$26.73
ETH<0.01%$0.0060764,201.3924$25.53
ETH<0.01%$0.114852221.7626$25.47
ETH<0.01%$0.0087542,892.1274$25.32
ETH<0.01%$1.5416.3692$25.21
ETH<0.01%$0.0026929,280.49$24.99
ETH<0.01%$0.0059764,112.9773$24.58
ETH<0.01%$0.82774629.6471$24.54
ETH<0.01%$0.26636591.8772$24.47
ETH<0.01%$2,079.170.0116$24.14
ETH<0.01%$71,0860.00033854$24.07
ETH<0.01%$131.840.1778$23.44
ETH<0.01%$0.99935923.04$23.03
ETH<0.01%$0.073191314.1778$22.99
ETH<0.01%$2,084.930.0106$22.08
ETH<0.01%$121.9074$21.97
ETH<0.01%$0.15831131.8247$20.87
ETH<0.01%$1.414.8521$20.79
ETH<0.01%$0.72614328.2297$20.5
ETH<0.01%$0.093154217.8878$20.3
ETH<0.01%<$0.000001459,976,285.5222$20.14
ETH<0.01%$9.272.116$19.62
ETH<0.01%$0.0000111,828,501.0801$19.49
ETH<0.01%$0.30259662.9862$19.06
ETH<0.01%$0.004524,144.301$18.73
ETH<0.01%$0.077432241.4249$18.69
ETH<0.01%$0.053942344.3343$18.57
ETH<0.01%$0.7013526.1053$18.31
ETH<0.01%$0.011751,547.2669$18.18
ETH<0.01%$118.470.1478$17.51
ETH<0.01%$0.77619422.2901$17.3
ETH<0.01%$74.150.2314$17.16
ETH<0.01%$0.2914358.7835$17.13
ETH<0.01%$0.99602717.0146$16.95
ETH<0.01%$0.02164782.1298$16.93
ETH<0.01%$1.2813.0097$16.65
ETH<0.01%<$0.0000012,306,484,069.6601$16.53
ETH<0.01%$0.0058712,789.138$16.38
ETH<0.01%$0.020333799.7589$16.26
ETH<0.01%$0.41213539.1979$16.15
ETH<0.01%$0.01813865.9631$15.7
ETH<0.01%$1.1413.6668$15.58
ETH<0.01%$0.104376146.8032$15.32
ETH<0.01%$2,647.060.00575115$15.22
ETH<0.01%$0.06497229.5198$14.91
ETH<0.01%$8.651.7056$14.75
ETH<0.01%$0.31621846.2894$14.64
ETH<0.01%$0.0060842,393.3235$14.56
ETH<0.01%$0.000032448,325.5212$14.43
ETH<0.01%$0.0072991,972.7684$14.4
ETH<0.01%$0.078375178.9646$14.03
ETH<0.01%<$0.00000163,690,330.8567$14.03
ETH<0.01%$70,9910.00019611$13.92
ETH<0.01%$0.15414990.2115$13.91
ETH<0.01%$0.074972185.3178$13.89
ETH<0.01%$0.037413358.9472$13.43
ETH<0.01%$2.226.0269$13.4
ETH<0.01%$0.018223729.5889$13.3
ETH<0.01%$1.1711.333$13.26
ETH<0.01%$0.03205413.2374$13.24
ETH<0.01%$0.97289813.2775$12.92
ETH<0.01%$15.760.8136$12.82
ETH<0.01%$0.0000033,846,815.2935$12.39
ETH<0.01%$0.019737622.4394$12.28
ETH<0.01%$0.0249491.9395$12.25
ETH<0.01%$1.289.511$12.17
ETH<0.01%$0.019678618.4002$12.17
ETH<0.01%$0.0098761,229.4379$12.14
ETH<0.01%$3.333.6434$12.13
ETH<0.01%$0.0000062,115,018.1424$11.87
ETH<0.01%$1.110.7731$11.86
ETH<0.01%$0.0057182,035.3579$11.64
ETH<0.01%$0.99989711.4525$11.45
ETH<0.01%$0.101583111.3851$11.31
ETH<0.01%$0.99286311.351$11.27
ETH<0.01%$0.16777166.96$11.23
ETH<0.01%$0.0003432,473.5788$11.05
ETH<0.01%$234.280.0468$10.95
ETH<0.01%$1.357.9908$10.79
ETH<0.01%$0.44822424.0472$10.78
ETH<0.01%$0.031692336.1848$10.65
ETH<0.01%$0.0044142,398.9943$10.59
ETH<0.01%$0.16888362.605$10.57
ETH<0.01%$3.33.1834$10.51
ETH<0.01%$2,232.960.00470016$10.5
ETH<0.01%$1.288.186$10.48
ETH<0.01%$0.99991810.399$10.4
ETH<0.01%$1.28.6499$10.38
ETH<0.01%$119.540.0864$10.33
ETH<0.01%$0.0020984,857.1184$10.19
ETH<0.01%$0.019963508.1861$10.14
ETH<0.01%$0.017082593.8601$10.14
ETH<0.01%$0.0042052,404.9753$10.11
ETH<0.01%$1,964.340.00512386$10.07
ETH<0.01%$1,816.580.00542895$9.86
ETH<0.01%$1.019.6327$9.77
ETH<0.01%$119.530.0811$9.7
ETH<0.01%$0.045595212.0678$9.67
ETH<0.01%$0.24939238.3683$9.57
ETH<0.01%$0.041112229.6868$9.44
ETH<0.01%$0.0030493,062.9906$9.34
ETH<0.01%$9.410.9886$9.3
ETH<0.01%$0.010045910.7746$9.15
ETH<0.01%$1.098.3675$9.14
ETH<0.01%$0.17186153.0808$9.12
ETH<0.01%$0.17903750.8686$9.11
ETH<0.01%$0.0068161,325.5052$9.04
ETH<0.01%$0.0000018,825,346.0607$9
ETH<0.01%$0.9882799.0762$8.97
ETH<0.01%$0.16473753.8823$8.88
ETH<0.01%$0.032039271.0684$8.68
ETH<0.01%$0.052399165.2107$8.66
ETH<0.01%$0.17338149.2477$8.54
ETH<0.01%$2,399.760.00353814$8.49
ETH<0.01%$0.08820896.2327$8.49
ETH<0.01%$0.32250726.2926$8.48
ETH<0.01%$0.12052970.2241$8.46
ETH<0.01%$1.067.9318$8.44
ETH<0.01%$0.0058191,446.8852$8.42
ETH<0.01%$0.28290829.3747$8.31
ETH<0.01%$0.0065691,254.0384$8.24
ETH<0.01%$0.0019334,218.7439$8.16
ETH<0.01%$0.01126722.8083$8.14
ETH<0.01%$0.069836115.3809$8.06
ETH<0.01%$9.420.8444$7.95
ETH<0.01%$8.040.987$7.93
ETH<0.01%$0.000011738,837.3971$7.85
ETH<0.01%$0.017179455.4231$7.82
ETH<0.01%$1.574.9212$7.73
ETH<0.01%$0.0052391,471.5114$7.71
ETH<0.01%$0.065084118.3501$7.7
ETH<0.01%$0.0000051,614,534.6362$7.65
ETH<0.01%$0.15967347.7693$7.63
ETH<0.01%$0.11878764.0745$7.61
ETH<0.01%$17.6039$7.6
ETH<0.01%$0.00411,812.2544$7.43
ETH<0.01%$0.0006211,917.7087$7.39
ETH<0.01%$0.17897640.7756$7.3
ETH<0.01%$0.10882266.7495$7.26
ETH<0.01%$0.0070581,013.8108$7.15
ETH<0.01%$0.049623143.3171$7.11
ETH<0.01%$1.166.1303$7.11
ETH<0.01%$1.424.9785$7.07
ETH<0.01%$1.315.3627$7.03
ETH<0.01%$0.000417,475.3949$6.99
ETH<0.01%$6.171.1277$6.96
ETH<0.01%<$0.00000185,115,804.5438$6.96
ETH<0.01%$0.018051376.856$6.8
ETH<0.01%$0.15471442.9636$6.65
ETH<0.01%$0.14814844.6613$6.62
ETH<0.01%$0.02155306.5783$6.61
ETH<0.01%$0.061053107.909$6.59
ETH<0.01%$0.03428190.7461$6.54
ETH<0.01%$0.3839616.9329$6.5
ETH<0.01%$650.720.00997964$6.49
ETH<0.01%$0.10268462.79$6.45
ETH<0.01%$0.042194152.7576$6.45
ETH<0.01%<$0.00000138,512,796.4889$6.34
ETH<0.01%$0.0033511,890.2749$6.34
ETH<0.01%$1.444.3854$6.32
ETH<0.01%$0.0023912,634.8833$6.3
ETH<0.01%$0.09797664.2564$6.3
ETH<0.01%$0.00016937,041.0636$6.25
ETH<0.01%$0.037195163.9965$6.1
ETH<0.01%$0.06822289.3801$6.1
ETH<0.01%$0.010335587.8212$6.08
ETH<0.01%$0.012846471.2415$6.05
ETH<0.01%$0.00000110,592,429.3766$6.05
ETH<0.01%$0.0016563,594.1832$5.95
ETH<0.01%$0.11402651.3231$5.85
ETH<0.01%$0.07063181.8573$5.78
ETH<0.01%$0.00471,225.3239$5.76
ETH<0.01%$0.23798724.0705$5.73
ETH<0.01%$0.032554175.3579$5.71
ETH<0.01%$53.110.1072$5.7
ETH<0.01%$13.630.4171$5.69
ETH<0.01%$1.284.435$5.68
ETH<0.01%$0.50257311.289$5.67
ETH<0.01%$0.023163244.435$5.66
ETH<0.01%$0.17222532.1843$5.54
ETH<0.01%$0.13164542.0365$5.53
ETH<0.01%<$0.000001750,487,366.2558$5.53
ETH<0.01%$9.280.5892$5.47
ETH<0.01%$0.0006388,550.4004$5.45
ETH<0.01%$0.27309419.8508$5.42
ETH<0.01%$2,562.870.00210721$5.4
ETH<0.01%<$0.00000192,781,031.5116$5.37
ETH<0.01%$0.00049710,766.9373$5.35
ETH<0.01%$0.013764373.0438$5.13
ETH<0.01%$0.31401916.3412$5.13
ETH<0.01%$0.0042411,200.1076$5.09
ETH<0.01%$0.0010834,700.3199$5.09
ETH<0.01%$0.000006818,615.9349$5.08
ETH<0.01%$650.010.00779275$5.07
ETH<0.01%$0.06547677.2525$5.06
ETH<0.01%$0.573398.7415$5.01
ETH<0.01%$0.019354255.551$4.95
ETH<0.01%$0.0018432,621.5495$4.83
ETH<0.01%$0.000018269,363.8609$4.81
ETH<0.01%$1.014.7041$4.77
ETH<0.01%$0.021761217.8857$4.74
ETH<0.01%$0.9846814.7866$4.71
ETH<0.01%$1.134.1485$4.69
ETH<0.01%$0.015444303.3532$4.68
ETH<0.01%$0.0216216.7013$4.68
ETH<0.01%$4.421.0559$4.67
ETH<0.01%$0.000015316,582.6068$4.66
ETH<0.01%<$0.0000011,909,342,256.9495$4.63
ETH<0.01%$3.071.4881$4.56
ETH<0.01%$0.040439112.3154$4.54
ETH<0.01%$0.000005839,376.9907$4.53
ETH<0.01%$0.011039402.1601$4.44
ETH<0.01%$0.14774529.9807$4.43
ETH<0.01%$0.0034911,260.6526$4.4
ETH<0.01%$0.007055623.2554$4.4
ETH<0.01%$0.008761498.0661$4.36
ETH<0.01%$0.015971273.1001$4.36
ETH<0.01%$0.00123,617.9994$4.34
ETH<0.01%$0.003131,380.2323$4.32
ETH<0.01%$0.026469160.6316$4.25
ETH<0.01%$0.0604569.4931$4.2
ETH<0.01%$0.9888664.2225$4.18
ETH<0.01%$0.0000022,741,426.2194$4.17
ETH<0.01%$1.353.0481$4.11
ETH<0.01%$2.871.411$4.05
ETH<0.01%$155.240.026$4.04
ETH<0.01%$0.05170778.0831$4.04
ETH<0.01%$93.090.043$4
ETH<0.01%$0.10505637.8011$3.97
ETH<0.01%$0.000004980,782.4849$3.94
ETH<0.01%$2,140.040.00181269$3.88
ETH<0.01%$2.211.7493$3.87
ETH<0.01%$1.961.9721$3.87
ETH<0.01%<$0.00000134,040,213,867.8113$3.85
ETH<0.01%$0.0000847,932.4008$3.82
ETH<0.01%$0.009433403.4307$3.81
ETH<0.01%$2,089.090.00181939$3.8
ETH<0.01%$2,8160.00133726$3.77
ETH<0.01%$0.4271928.79$3.76
ETH<0.01%$0.020545182.2651$3.74
ETH<0.01%$0.03795998.4445$3.74
ETH<0.01%$0.00017421,125.75$3.68
ETH<0.01%$0.004138888.7163$3.68
ETH<0.01%$0.024125151.5149$3.66
ETH<0.01%<$0.0000013,281,686,334.8625$3.65
ETH<0.01%$0.020363178.6925$3.64
ETH<0.01%$0.007211497.1292$3.58
ETH<0.01%$0.10416234.3658$3.58
ETH<0.01%$0.006366562.2806$3.58
ETH<0.01%$0.020966170.2756$3.57
ETH<0.01%$0.005987594.4718$3.56
ETH<0.01%$0.1129231.4842$3.56
ETH<0.01%$0.0022361,582.4511$3.54
ETH<0.01%$0.9945873.5377$3.52
ETH<0.01%$0.007971437.2058$3.48
ETH<0.01%$0.00001350,691.3277$3.47
ETH<0.01%$0.9997823.468$3.47
ETH<0.01%$0.000021161,706.8324$3.46
ETH<0.01%$0.00003792,698.0078$3.45
ETH<0.01%$0.19296517.8307$3.44
ETH<0.01%$0.08471640.3799$3.42
ETH<0.01%$0.20820516.2768$3.39
ETH<0.01%$0.0016911,990.6113$3.37
ETH<0.01%$0.10221532.866$3.36
ETH<0.01%$0.009128367.5982$3.36
ETH<0.01%$0.00005560,784.5309$3.35
ETH<0.01%$0.0004826,896.2788$3.32
ETH<0.01%$0.09036536.6922$3.32
ETH<0.01%$0.5723155.6968$3.26
ETH<0.01%$0.00004966,266.5702$3.26
ETH<0.01%$0.1255425.7998$3.24
ETH<0.01%$0.00006450,479.8348$3.24
ETH<0.01%$13.2211$3.22
ETH<0.01%$0.19575616.3941$3.21
ETH<0.01%$1.81.779$3.21
ETH<0.01%$0.004749675.3935$3.21
ETH<0.01%$15.240.2082$3.17
ETH<0.01%$18.420.1715$3.16
ETH<0.01%$0.9949443.1734$3.16
ETH<0.01%$0.0004017,760.1162$3.11
ETH<0.01%$0.00023813,038.3177$3.11
ETH<0.01%<$0.000001399,185,970.8494$3.1
ETH<0.01%$0.005552555.3004$3.08
ETH<0.01%$0.01472207.8648$3.06
ETH<0.01%$0.021304141.0741$3.01
ETH<0.01%$0.09773130.3997$2.97
ETH<0.01%$0.010659277.2816$2.96
ETH<0.01%$0.00009730,519.185$2.95
ETH<0.01%$0.000029100,192.7848$2.95
ETH<0.01%$0.011299260.2935$2.94
ETH<0.01%$0.9728983.0184$2.94
ETH<0.01%$0.012239239.7794$2.93
ETH<0.01%$0.009059322.8678$2.92
ETH<0.01%$0.004063714.9742$2.9
ETH<0.01%$106.640.0272$2.9
ETH<0.01%$0.028866100.4971$2.9
ETH<0.01%$0.03605379.9511$2.88
ETH<0.01%$0.021299135.1446$2.88
ETH<0.01%$0.005698504.0057$2.87
ETH<0.01%$0.09837228.9847$2.85
ETH<0.01%$0.07290738.936$2.84
ETH<0.01%$0.0354278.2781$2.77
ETH<0.01%$0.00702391.1205$2.75
ETH<0.01%$2.361.1601$2.74
ETH<0.01%$0.000823,320.0201$2.72
ETH<0.01%$0.0009952,706.7579$2.69
ETH<0.01%<$0.0000012,258,444,768.5326$2.68
ETH<0.01%$0.21152812.5636$2.66
ETH<0.01%<$0.000001107,908,568.3272$2.64
ETH<0.01%$0.0004895,397.9564$2.64
ETH<0.01%$0.0007123,700.3397$2.64
ETH<0.01%$0.003873680.3185$2.64
ETH<0.01%$0.004271615.2354$2.63
ETH<0.01%$0.2983088.7708$2.62
ETH<0.01%$1.032.5353$2.61
ETH<0.01%$0.9955542.5941$2.58
ETH<0.01%$0.4533465.6893$2.58
ETH<0.01%$1.162.2143$2.57
ETH<0.01%$0.003547724.023$2.57
ETH<0.01%<$0.0000018,829,289,342.7561$2.55
ETH<0.01%$0.0002410,586.5824$2.54
ETH<0.01%<$0.00000188,172,289.4717$2.51
ETH<0.01%$0.9985112.5004$2.5
ETH<0.01%$0.03480271.742$2.5
ETH<0.01%$0.0675936.2155$2.45
ETH<0.01%$0.9996682.4419$2.44
ETH<0.01%$0.023464103.8684$2.44
ETH<0.01%$0.005834417.1727$2.43
ETH<0.01%$0.0019611,239.8989$2.43
ETH<0.01%$0.0016541,465.3811$2.42
ETH<0.01%$0.6356953.793$2.41
ETH<0.01%$0.585114.1015$2.4
ETH<0.01%$0.021939107.5059$2.36
ETH<0.01%$0.021076111.7463$2.36
ETH<0.01%$0.003028777.0816$2.35
ETH<0.01%$0.00004750,207.2884$2.34
ETH<0.01%$6,992.340.00033402$2.34
ETH<0.01%$0.00006337,100.8501$2.33
ETH<0.01%$0.00018512,648.569$2.33
ETH<0.01%$0.5746484.0473$2.33
ETH<0.01%$0.2900548$2.32
ETH<0.01%$0.19541611.764$2.3
ETH<0.01%$0.0009262,476.5525$2.29
ETH<0.01%$0.00022410,219.3493$2.29
ETH<0.01%$65,7380.0000348$2.29
ETH<0.01%$0.08992425.3726$2.28
ETH<0.01%$0.9464322.349$2.22
ETH<0.01%$0.003524630.5327$2.22
ETH<0.01%$1.391.5918$2.21
ETH<0.01%$0.08926624.7557$2.21
ETH<0.01%$0.0016941,303.8786$2.21
ETH<0.01%$200.080.011$2.2
ETH<0.01%$0.0013941,571.5211$2.19
ETH<0.01%<$0.000001816,542,859.0527$2.18
ETH<0.01%$0.0003995,438.3776$2.17
ETH<0.01%<$0.000001216,724,765.5405$2.17
ETH<0.01%$0.012685170.8906$2.17
ETH<0.01%$0.0015811,366.9589$2.16
ETH<0.01%$0.5889043.649$2.15
ETH<0.01%$0.0006223,424.0722$2.13
ETH<0.01%$0.00013814,998.793$2.07
ETH<0.01%$0.10319220.0568$2.07
ETH<0.01%$0.0000011,887,964.0672$2.06
ETH<0.01%$2,274.190.00089802$2.04
ETH<0.01%$2,213.870.0009198$2.04
ETH<0.01%$71,1880.00002857$2.03
ETH<0.01%$0.05025440.3414$2.03
ETH<0.01%$0.003582565.3185$2.02
ETH<0.01%$0.004213478.2274$2.01
ETH<0.01%<$0.00000151,959,553.4818$2
ETH<0.01%$0.08240124.0989$1.99
ETH<0.01%$0.014864131.9154$1.96
ETH<0.01%$0.0010411,873.9887$1.95
ETH<0.01%$0.0003914,986.2956$1.95
ETH<0.01%$0.00017311,122.9129$1.92
ETH<0.01%$0.05313336.2086$1.92
ETH<0.01%$2.550.7459$1.9
ETH<0.01%$1.161.6379$1.9
ETH<0.01%$1.161.6379$1.9
ETH<0.01%$0.0002966,379.2332$1.89
ETH<0.01%$0.006784277.7517$1.88
ETH<0.01%$0.02379679.1499$1.88
ETH<0.01%$57,3750.00003261$1.87
ETH<0.01%<$0.000001543,638,565.5037$1.86
ETH<0.01%$0.0003924,718.0383$1.85
ETH<0.01%$0.10865216.8902$1.84
ETH<0.01%$11.8344$1.83
ETH<0.01%$0.003865472.6041$1.83
ETH<0.01%$2,518.870.00072403$1.82
ETH<0.01%$0.00017110,606.2962$1.82
ETH<0.01%$2,238.830.00080028$1.79
ETH<0.01%$18.070.0989$1.79
ETH<0.01%$0.0000011,427,579.1698$1.78
ETH<0.01%$0.0003125,667.1115$1.77
ETH<0.01%$0.003666481.9059$1.77
ETH<0.01%$0.0007192,436.6995$1.75
ETH<0.01%$0.02434771.9094$1.75
ETH<0.01%$0.007217241.6952$1.74
ETH<0.01%$0.00498343.67$1.71
ETH<0.01%$0.4255133.9831$1.69
ETH<0.01%$0.011993140.3817$1.68
ETH<0.01%$0.015258110.0045$1.68
ETH<0.01%$0.003397492.5668$1.67
ETH<0.01%$0.003164527.9798$1.67
ETH<0.01%$0.15217810.9669$1.67
ETH<0.01%$0.0000021,054,596.3294$1.67
ETH<0.01%<$0.00000183,801,141.7134$1.66
ETH<0.01%$0.00006325,915.3775$1.64
ETH<0.01%$1.241.32$1.64
ETH<0.01%$0.000179,640.1763$1.63
ETH<0.01%$0.015186106.7526$1.62
ETH<0.01%$0.7279462.2097$1.61
ETH<0.01%$0.0010911,472.4386$1.61
ETH<0.01%<$0.00000110,148,371.2822$1.61
ETH<0.01%$0.5587272.8483$1.59
ETH<0.01%$2,078.070.00076446$1.59
ETH<0.01%$69,5820.00002274$1.58
ETH<0.01%$0.01961180.521$1.58
ETH<0.01%$0.007512208.5389$1.57
ETH<0.01%$0.00363426.2172$1.55
ETH<0.01%$5.020.3046$1.53
ETH<0.01%$0.003377451.5894$1.52
ETH<0.01%$0.03410844.2148$1.51
ETH<0.01%$0.000841,792.1412$1.51
ETH<0.01%$0.1856348.0188$1.49
ETH<0.01%$0.0004853,062.7926$1.49
ETH<0.01%$0.09171416.1692$1.48
ETH<0.01%$0.01363108.4907$1.48
ETH<0.01%$0.01729284.4693$1.46
ETH<0.01%$0.0001579,267.8885$1.46
ETH<0.01%$0.001913761.0433$1.46
ETH<0.01%$0.012592115.0637$1.45
ETH<0.01%$0.009324153.7674$1.43
ETH<0.01%<$0.0000011,103,947,774.1253$1.43
ETH<0.01%$0.01053135.2304$1.42
ETH<0.01%$0.3076474.5805$1.41
ETH<0.01%$0.2190726.4171$1.41
ETH<0.01%$0.05730324.3071$1.39
ETH<0.01%$0.00008316,721.4603$1.39
ETH<0.01%$0.00011112,550.6256$1.39
ETH<0.01%$0.007986173.4471$1.39
ETH<0.01%$0.00001140,256.4174$1.38
ETH<0.01%$1.480.93$1.38
ETH<0.01%$0.003839350.666$1.35
ETH<0.01%$0.10426412.8539$1.34
ETH<0.01%$0.002394559.6262$1.34
ETH<0.01%$0.02405455.6127$1.34
ETH<0.01%$0.0006292,109.6395$1.33
ETH<0.01%$0.06618720.0364$1.33
ETH<0.01%$0.01739476.0883$1.32
ETH<0.01%$0.00009813,337.2624$1.31
ETH<0.01%$2.110.6208$1.31
ETH<0.01%$0.004303303.8546$1.31
ETH<0.01%$70,9700.00001839$1.31
ETH<0.01%$0.09668513.4964$1.3
ETH<0.01%$0.0003833,404.362$1.3
ETH<0.01%$1.920.6763$1.3
ETH<0.01%$0.001588814.1122$1.29
ETH<0.01%$0.0004043,196.4979$1.29
ETH<0.01%$57,671.170.00002213$1.28
ETH<0.01%$0.1535248.2768$1.27
ETH<0.01%$2,539.680.00049436$1.26
ETH<0.01%$0.007174173.82$1.25
ETH<0.01%$0.006804182.6107$1.24
ETH<0.01%<$0.000001735,621,648.4346$1.24
ETH<0.01%<$0.00000123,056,499.7326$1.23
ETH<0.01%$0.06671418.3445$1.22
ETH<0.01%$0.04119129.1644$1.2
ETH<0.01%$0.001011,183.881$1.2
ETH<0.01%$0.005039236.7083$1.19
ETH<0.01%$70,6410.00001675$1.18
ETH<0.01%$0.010262114.1608$1.17
ETH<0.01%$77,142.570.00001507$1.16
ETH<0.01%$0.0004462,579.2313$1.15
ETH<0.01%<$0.000001628,892,581.1767$1.14
ETH<0.01%$0.0001527,506.8739$1.14
ETH<0.01%$0.2966063.8052$1.13
ETH<0.01%$0.0009951,130.7807$1.12
ETH<0.01%<$0.0000015,321,170.5984$1.12
ETH<0.01%$0.00007814,277.6119$1.12
ETH<0.01%$0.1153969.6849$1.12
ETH<0.01%$0.00176632.9103$1.11
ETH<0.01%$0.000002627,275.1643$1.11
ETH<0.01%$0.1371748.0918$1.11
ETH<0.01%$0.0001238,990.4023$1.11
ETH<0.01%$0.01783761.9439$1.1
ETH<0.01%$0.0000011,278,621.5118$1.1
ETH<0.01%$0.2961363.7148$1.1
ETH<0.01%$0.0000336,115.175$1.09
ETH<0.01%$0.04476724.3733$1.09
ETH<0.01%$0.08630712.6134$1.09
ETH<0.01%$0.01982454.8849$1.09
ETH<0.01%$0.002901373.9598$1.09
ETH<0.01%$0.0010551,021.8548$1.08
ETH<0.01%$0.0009941,076.6303$1.07
ETH<0.01%$0.003723278.956$1.04
ETH<0.01%$0.9437241.0983$1.04
ETH<0.01%$0.0165262.6817$1.04
ETH<0.01%$0.02117848.664$1.03
ETH<0.01%$0.01123691.3857$1.03
ETH<0.01%$0.0005761,777.4512$1.02
ETH<0.01%$0.5547031.8227$1.01
ETH<0.01%$0.006833147.8499$1.01
ETH<0.01%$0.01343574.0839$0.9953
ETH<0.01%$0.6825411.4469$0.9875
ETH<0.01%$0.0101996.6689$0.985
ETH<0.01%$0.00001563,648.9998$0.9649
ETH<0.01%$0.8939781.0752$0.9612
ETH<0.01%$0.002742345.304$0.9467
ETH<0.01%$0.004691201.667$0.9459
ETH<0.01%$0.004854192.7933$0.9357
ETH<0.01%$0.004171224.2428$0.9352
ETH<0.01%$0.00004222,218.8002$0.9338
ETH<0.01%$0.08188611.2629$0.9222
ETH<0.01%$0.00315292.3058$0.9206
ETH<0.01%$0.03972923.119$0.9184
ETH<0.01%$0.07113612.9116$0.9184
ETH<0.01%$0.7677631.1929$0.9158
ETH<0.01%$4.450.2054$0.9138
ETH<0.01%$0.1440346.3011$0.9075
ETH<0.01%$0.01079783.6398$0.903
ETH<0.01%$10.9025$0.9026
ETH<0.01%$0.002323385.4674$0.8955
ETH<0.01%$48.280.0185$0.8927
ETH<0.01%$14.170.0625$0.8851
ETH<0.01%$0.000631,401.7781$0.8833
ETH<0.01%$0.04876818.0383$0.8796
ETH<0.01%$2,194.630.00039832$0.8741
ETH<0.01%$0.0002483,523.3431$0.8736
ETH<0.01%$0.0000979,019.3059$0.8716
ETH<0.01%$0.031427.6078$0.8668
ETH<0.01%$0.002566335.1484$0.86
ETH<0.01%$0.0007671,118.4769$0.8582
ETH<0.01%$0.03876922.1036$0.8569
ETH<0.01%$0.003513243.0841$0.8539
ETH<0.01%<$0.00000111,917,555.9583$0.8518
ETH<0.01%$0.00234363.6077$0.8507
ETH<0.01%$0.005554152.2442$0.8455
ETH<0.01%$0.0903599.3253$0.8426
ETH<0.01%$3.550.2369$0.841
ETH<0.01%$0.3127362.6869$0.8402
ETH<0.01%$0.03533523.7002$0.8374
ETH<0.01%$0.101828.1164$0.8264
ETH<0.01%$0.001416572.6653$0.8108
ETH<0.01%$0.184274.3771$0.8065
ETH<0.01%$0.02928427.5134$0.8057
ETH<0.01%<$0.00000114,979,190.8839$0.8015
ETH<0.01%$0.002281345.8805$0.7889
ETH<0.01%$0.004623170.5398$0.7884
ETH<0.01%$0.3437082.2756$0.7821
ETH<0.01%$2,288.820.00034033$0.7789
ETH<0.01%<$0.000001698,250,856.9288$0.7778
ETH<0.01%$2.40.3198$0.7674
ETH<0.01%$0.00980777.1423$0.7565
ETH<0.01%<$0.0000012,262,522.4994$0.7557
ETH<0.01%$0.9978450.757$0.7553
ETH<0.01%$0.00000893,633.0424$0.7528
ETH<0.01%$0.001715433.4443$0.7433
ETH<0.01%$0.01395153.1421$0.7413
ETH<0.01%$2,332.960.00031482$0.7344
ETH<0.01%$0.0001754,175.5332$0.7295
ETH<0.01%$0.07223810.0219$0.7239
ETH<0.01%$0.03188422.2796$0.7103
ETH<0.01%$0.01387651.1157$0.7092
ETH<0.01%$0.001948358.2508$0.6977
ETH<0.01%$0.01930235.6318$0.6877
ETH<0.01%$0.00696897.5376$0.6796
ETH<0.01%$0.00999167.4633$0.674
ETH<0.01%$0.000001510,628.7741$0.6687
ETH<0.01%$0.0003022,207.4523$0.6656
ETH<0.01%$0.04531914.6768$0.6651
ETH<0.01%$0.00000794,040.5951$0.6629
ETH<0.01%$0.1476074.4585$0.6581
ETH<0.01%$0.0111458.9402$0.6565
ETH<0.01%$3.710.1759$0.6527
ETH<0.01%<$0.000001519,691,192.6843$0.6503
ETH<0.01%$11.370.0572$0.6498
ETH<0.01%$0.000242,677.5132$0.6438
ETH<0.01%$0.0083377.2183$0.6432
ETH<0.01%$0.00159404.293$0.6426
ETH<0.01%$0.0004451,439.1016$0.6403
ETH<0.01%$0.0003841,661.5353$0.6373
ETH<0.01%$0.2918892.1794$0.6361
ETH<0.01%$0.002409262.0382$0.6312
ETH<0.01%$0.002026310.7259$0.6294
ETH<0.01%$0.9994350.6289$0.6284
ETH<0.01%$0.02481724.955$0.6193
ETH<0.01%$0.089376.9261$0.6189
ETH<0.01%$0.001078572.6136$0.617
ETH<0.01%$225.720.0027219$0.6143
ETH<0.01%$0.02267926.8199$0.6082
ETH<0.01%$0.01899731.8145$0.6043
ETH<0.01%$0.005601107.4345$0.6017
ETH<0.01%$71,2100.00000844$0.601
ETH<0.01%$0.0000698,718.7428$0.5996
ETH<0.01%<$0.0000012,264,785.9077$0.5959
ETH<0.01%$0.003778157.706$0.5958
ETH<0.01%$0.04827112.3376$0.5955
ETH<0.01%$0.00964961.7049$0.5953
ETH<0.01%$1.320.45$0.5939
ETH<0.01%$0.02386124.8597$0.5931
ETH<0.01%$0.01779633.1139$0.5892
ETH<0.01%$0.039814.7479$0.5869
ETH<0.01%<$0.00000142,409,293.6098$0.5808
ETH<0.01%$0.0000966,042.1303$0.5796
ETH<0.01%$2,231.020.00025945$0.5788
ETH<0.01%$0.1189444.8263$0.574
ETH<0.01%$0.001024559.0974$0.5726
ETH<0.01%$0.02250825.4303$0.5723
ETH<0.01%$0.5413941.0479$0.5673
ETH<0.01%$3.350.1692$0.5668
ETH<0.01%$0.0862976.5476$0.565
ETH<0.01%$0.04482612.596$0.5646
ETH<0.01%$2,319.640.00024254$0.5626
ETH<0.01%$0.0004911,138.4178$0.5592
ETH<0.01%$2,261.060.00024709$0.5586
ETH<0.01%$0.3127361.7836$0.5577
ETH<0.01%$0.01823330.4938$0.5559
ETH<0.01%$0.01637733.8648$0.5546
ETH<0.01%<$0.0000014,934,347.2219$0.5463
ETH<0.01%$0.0129941.8416$0.5435
ETH<0.01%<$0.0000011,904,337.7244$0.5434
ETH<0.01%$104.710.00518324$0.5427
ETH<0.01%$0.00145373.0895$0.5408
ETH<0.01%$0.005112105.753$0.5406
ETH<0.01%$0.01882228.6402$0.539
ETH<0.01%$0.003949136.2814$0.5381
ETH<0.01%$0.9857610.5458$0.538
ETH<0.01%$0.2099472.5191$0.5288
ETH<0.01%$0.0071773.2655$0.5253
ETH<0.01%$10.521$0.5212
ETH<0.01%$0.1177514.4148$0.5198
ETH<0.01%$0.3023431.7134$0.518
ETH<0.01%$0.000772662.8869$0.5117
ETH<0.01%$0.0003731,354.8217$0.5055
ETH<0.01%$0.2861331.7645$0.5048
ETH<0.01%$0.001923262.1237$0.504
ETH<0.01%$1.720.2927$0.5033
ETH<0.01%$0.0852995.8844$0.5019
ETH<0.01%$12.950.0387$0.5012
ETH<0.01%$0.001241402.7606$0.4998
ETH<0.01%$0.9958160.4999$0.4978
ETH<0.01%<$0.0000019,865,956.8185$0.4975
ETH<0.01%$0.000002214,793.9033$0.4961
ETH<0.01%$0.0001712,886.351$0.4943
ETH<0.01%$0.000507968.965$0.4914
ETH<0.01%$6.540.0751$0.4911
ETH<0.01%$0.001712285.5645$0.489
ETH<0.01%$0.1180784.129$0.4875
ETH<0.01%$0.1812842.6718$0.4843
ETH<0.01%$0.0003121,549.1841$0.4837
ETH<0.01%$0.020822.7099$0.4723
ETH<0.01%$0.01912524.6847$0.472
ETH<0.01%$0.0003731,263.9415$0.4718
ETH<0.01%$0.00287162.9478$0.4676
ETH<0.01%$0.003305139.9691$0.4626
ETH<0.01%$12.990.0355$0.4608
ETH<0.01%$0.7599120.6051$0.4598
ETH<0.01%$0.00744661.5961$0.4586
ETH<0.01%<$0.0000012,755,286,272.7372$0.4584
ETH<0.01%$0.0004051,126.874$0.4567
ETH<0.01%$0.3505051.3016$0.4562
ETH<0.01%$0.01006845.0772$0.4538
ETH<0.01%<$0.00000112,669,455.4032$0.4527
ETH<0.01%<$0.000001256,563,690.037$0.45
ETH<0.01%$0.001308339.6616$0.4442
ETH<0.01%$0.1003024.4159$0.4429
ETH<0.01%$0.001876236.0371$0.4427
ETH<0.01%$0.00474593.0245$0.4414
ETH<0.01%<$0.00000112,275,635,976.0232$0.4379
ETH<0.01%$0.0000489,184.5829$0.437
ETH<0.01%$0.0513378.4618$0.4344
ETH<0.01%$0.0000469,516.6322$0.4342
ETH<0.01%$0.000001331,012.3692$0.4328
ETH<0.01%<$0.0000013,866,995.5078$0.4266
ETH<0.01%$0.6548690.6502$0.4258
ETH<0.01%$0.1321683.2204$0.4256
ETH<0.01%$0.1014944.1006$0.4161
ETH<0.01%$0.00000848,844.0185$0.4137
ETH<0.01%$0.5630640.7339$0.4132
ETH<0.01%$0.2170121.8989$0.412
ETH<0.01%$0.00892945.8971$0.4098
ETH<0.01%$0.00557473.3492$0.4088
ETH<0.01%$0.001093370.1004$0.4045
ETH<0.01%$0.000003139,705.9182$0.4037
ETH<0.01%$0.0000577,102.2808$0.4018
ETH<0.01%$0.000001569,538.5184$0.3992
ETH<0.01%$0.00552471.9014$0.3971
ETH<0.01%$0.00772351.2966$0.3961
ETH<0.01%$1,3300.00029638$0.3941
ETH<0.01%$0.000001711,365.9576$0.393
ETH<0.01%$0.000066,550.9119$0.3921
ETH<0.01%$0.1049153.7379$0.3921
ETH<0.01%$0.00820347.784$0.3919
ETH<0.01%$0.00833846.7627$0.3899
ETH<0.01%$0.0001113,504.8123$0.3879
ETH<0.01%$2,208.740.00017501$0.3865
ETH<0.01%$0.0001682,263.6298$0.3808
ETH<0.01%<$0.000001422,371,175.1789$0.3796
ETH<0.01%$0.0001133,344.1063$0.3785
ETH<0.01%$0.0853984.3639$0.3726
ETH<0.01%$0.1033563.5633$0.3682
ETH<0.01%$0.0031117.4284$0.364
ETH<0.01%$10.3636$0.3635
ETH<0.01%$0.0001931,878.0825$0.3632
ETH<0.01%$0.00111327.1079$0.3631
ETH<0.01%$0.0000576,380.0479$0.3613
ETH<0.01%$3.190.1114$0.3553
ETH<0.01%$0.00178198.8919$0.3541
ETH<0.01%$0.0006590.1016$0.3541
ETH<0.01%<$0.0000012,782,843.9791$0.3518
ETH<0.01%$4,678.580.00007457$0.3488
ETH<0.01%$0.00871639.8941$0.3477
ETH<0.01%$0.0542846.2764$0.3407
ETH<0.01%<$0.000001633,347,294.7121$0.3333
ETH<0.01%$0.00733845.4227$0.3332
ETH<0.01%$0.000002149,326.4338$0.3315
ETH<0.01%$0.0369948.8858$0.3287
ETH<0.01%<$0.0000012,010,245.0006$0.3274
ETH<0.01%$0.001219268.0615$0.3267
ETH<0.01%$2,090.860.00015555$0.3252
ETH<0.01%$0.2607331.2359$0.3222
ETH<0.01%$0.0000963,362.9232$0.3215
ETH<0.01%$0.0336729.5083$0.3201
ETH<0.01%$0.00002612,209.1136$0.3193
ETH<0.01%$0.00000652,509.7007$0.3184
ETH<0.01%$71,7640.00000443$0.3179
ETH<0.01%$0.000704450.4167$0.3171
ETH<0.01%$0.0000923,406.9705$0.3139
ETH<0.01%$0.0001522,064.4671$0.3137
ETH<0.01%$1.010.3112$0.313
ETH<0.01%$0.00682545.8069$0.3126
ETH<0.01%$0.02453112.6212$0.3096
ETH<0.01%$0.000001233,676.4539$0.3095
ETH<0.01%$0.002448125.1137$0.3063
ETH<0.01%$0.002319132.0031$0.306
ETH<0.01%$0.0002251,358.7563$0.3059
ETH<0.01%$2,577.930.00011751$0.3029
ETH<0.01%$0.001306231.3233$0.302
ETH<0.01%$0.000884336.5574$0.2973
ETH<0.01%$0.002937101.2489$0.2973
ETH<0.01%$0.02097714.1477$0.2967
ETH<0.01%$0.1293942.2908$0.2964
ETH<0.01%$0.002396120.7397$0.2892
ETH<0.01%$0.02588411.0633$0.2863
ETH<0.01%$0.00385772.9903$0.2815
ETH<0.01%$0.0000923,051.5165$0.2812
ETH<0.01%$0.00653742.7112$0.2791
ETH<0.01%$0.384050.7213$0.277
ETH<0.01%$0.0539455.1304$0.2767
ETH<0.01%$0.002046135.0588$0.2762
ETH<0.01%$0.000708389.7636$0.2758
ETH<0.01%<$0.0000012,381,710,725.254$0.274
ETH<0.01%$0.02445511.1857$0.2735
ETH<0.01%$0.002022133.0298$0.269
ETH<0.01%$0.00843231.822$0.2683
ETH<0.01%$0.000682390.8643$0.2667
ETH<0.01%$0.000871303.9069$0.2647
ETH<0.01%$0.01395918.9218$0.2641
ETH<0.01%$0.00484554.411$0.2636
ETH<0.01%$0.000358722.4259$0.2587
ETH<0.01%$0.0018143.1916$0.2578
ETH<0.01%$0.000001207,109.589$0.2568
ETH<0.01%$0.000046,441.933$0.2566
ETH<0.01%$0.0672913.8056$0.256
ETH<0.01%$0.01055124.0354$0.2535
ETH<0.01%$1.030.2463$0.2524
ETH<0.01%$0.001146219.6598$0.2516
ETH<0.01%$0.0002451,016.949$0.2492
ETH<0.01%$0.00001913,101.4185$0.2491
ETH<0.01%$0.001245199.7278$0.2486
ETH<0.01%$0.0046453.5047$0.2482
ETH<0.01%$0.001471168.3799$0.2476
ETH<0.01%$0.0798923.09$0.2468
ETH<0.01%$0.001178208.9673$0.2461
ETH<0.01%$0.000312779.4354$0.243
ETH<0.01%$0.0961222.5089$0.2411
ETH<0.01%$0.000876274.2526$0.2402
ETH<0.01%$0.001356176.9645$0.2399
ETH<0.01%$0.0362686.6128$0.2398
ETH<0.01%<$0.0000014,568,463.5058$0.2395
ETH<0.01%$0.5310780.4495$0.2387
ETH<0.01%$0.0412425.759$0.2375
ETH<0.01%$0.0397295.9773$0.2374
ETH<0.01%$0.00468150.563$0.2366
ETH<0.01%$0.00000734,722.5759$0.2343
ETH<0.01%$0.002252103.2776$0.2325
ETH<0.01%$0.00789129.4603$0.2324
ETH<0.01%$0.000317733.5491$0.2322
ETH<0.01%<$0.0000013,275,283,523.4299$0.2315
ETH<0.01%$0.1530691.5117$0.2313
ETH<0.01%$0.0001791,286.2833$0.2304
ETH<0.01%$0.00276383.2073$0.2298
ETH<0.01%$0.000505454.2166$0.2295
ETH<0.01%$0.000054,546.8826$0.2279
ETH<0.01%$0.000921245.0533$0.2256
ETH<0.01%$0.00929724.2126$0.2251
ETH<0.01%$0.0290187.7516$0.2249
ETH<0.01%$0.000288775.0748$0.2235
ETH<0.01%$0.0000211,112.834$0.2235
ETH<0.01%$0.000312714.9695$0.2232
ETH<0.01%$0.0000326,872.9769$0.2215
ETH<0.01%$0.001532143.7216$0.2201
ETH<0.01%$0.0513094.2591$0.2185
ETH<0.01%<$0.0000011,948,745.9533$0.2157
ETH<0.01%$0.0320046.7143$0.2148
ETH<0.01%$0.00000364,422.1661$0.2114
ETH<0.01%$0.00290472.5522$0.2107
ETH<0.01%$42.040.00500298$0.2103
ETH<0.01%<$0.000001435,969,211.2955$0.2101
ETH<0.01%$0.0151813.8214$0.2098
ETH<0.01%$0.1374241.5197$0.2088
ETH<0.01%$0.000253817.2922$0.2071
ETH<0.01%$0.01229916.4987$0.2029
ETH<0.01%$0.000692292.8069$0.2025
ETH<0.01%$0.00276972.3559$0.2003
ETH<0.01%$0.022858.7427$0.1997
ETH<0.01%$1.010.1979$0.1988
ETH<0.01%$0.1413611.4028$0.1982
ETH<0.01%$0.0000238,754.0607$0.197
ETH<0.01%$0.00261975.1192$0.1967
ETH<0.01%$0.00363654.0979$0.1966
ETH<0.01%$205.360.00095709$0.1965
ETH<0.01%$0.00000536,992.0419$0.1964
ETH<0.01%$0.000001175,837.0409$0.1951
ETH<0.01%$0.0232618.2124$0.191
ETH<0.01%$0.1506591.2582$0.1895
ETH<0.01%$0.00001711,248.2481$0.1875
ETH<0.01%$0.0001281,456.6412$0.1858
ETH<0.01%$10.1849$0.185
ETH<0.01%$0.0001771,043.1424$0.1845
ETH<0.01%$0.000437421.1317$0.1841
ETH<0.01%$0.0152311.9864$0.1825
ETH<0.01%$0.0001711,046.9154$0.179
ETH<0.01%$0.01748210.1771$0.1779
ETH<0.01%<$0.000001532,078.9884$0.1779
ETH<0.01%$0.000028,877.1633$0.1778
ETH<0.01%$0.00319955.5606$0.1777
ETH<0.01%$0.01248314.2218$0.1775
ETH<0.01%$0.00254169.353$0.1762
ETH<0.01%$0.00178398.3573$0.1754
ETH<0.01%<$0.000001277,569,252.376$0.1753
ETH<0.01%$0.0000463,742.4259$0.1718
ETH<0.01%$0.00066259.4271$0.1711
ETH<0.01%$0.00445638.4202$0.1711
ETH<0.01%$0.00001312,695.6031$0.1678
ETH<0.01%$0.001557107.0775$0.1667
ETH<0.01%$7.610.0217$0.165
ETH<0.01%$0.00000724,691.592$0.1644
ETH<0.01%$0.000772210.915$0.1628
ETH<0.01%$0.000287564.6148$0.1618
ETH<0.01%$0.0206487.8377$0.1618
ETH<0.01%$0.00757321.1844$0.1604
ETH<0.01%$0.001276125.7211$0.1604
ETH<0.01%$10.1604$0.1603
ETH<0.01%$0.0581662.7312$0.1588
ETH<0.01%$0.000185856.9548$0.1586
ETH<0.01%<$0.000001325,621,916.4999$0.1586
ETH<0.01%$0.0505913.1345$0.1585
ETH<0.01%$1.610.0983$0.1582
ETH<0.01%$0.01272712.2828$0.1563
ETH<0.01%$0.00460133.6536$0.1548
ETH<0.01%$0.000001160,404.7921$0.152
ETH<0.01%$0.00001113,989.111$0.1499
ETH<0.01%$0.0256795.8341$0.1498
ETH<0.01%<$0.000001454,194.5048$0.1487
ETH<0.01%$0.00426534.3089$0.1463
ETH<0.01%$0.6980620.2077$0.1449
ETH<0.01%<$0.000001362,285,639.6352$0.1446
ETH<0.01%$0.0000285,154.0433$0.1433
ETH<0.01%$0.000111,293.2736$0.1418
ETH<0.01%$0.0000941,496.6926$0.1411
ETH<0.01%$0.000178784.3827$0.1392
ETH<0.01%$0.001234112.0592$0.1382
ETH<0.01%$0.0217266.363$0.1382
ETH<0.01%$0.00295246.6232$0.1376
ETH<0.01%$0.00173478.3651$0.1358
ETH<0.01%$0.000034,549.1982$0.1356
ETH<0.01%$0.00001112,273.5649$0.1339
ETH<0.01%$0.1441380.9291$0.1339
ETH<0.01%<$0.00000119,798,178.596$0.1334
ETH<0.01%$0.1925850.6854$0.132
ETH<0.01%$0.00000436,237.9993$0.13
ETH<0.01%$0.00797516.2601$0.1296
ETH<0.01%$0.0213026.0787$0.1294
ETH<0.01%$0.0859121.5038$0.1291
ETH<0.01%$0.0000383,439.4762$0.129
ETH<0.01%$0.8900090.1448$0.1288
ETH<0.01%$0.00650519.7276$0.1283
ETH<0.01%$0.000026,228.7809$0.1263
ETH<0.01%$0.0000991,274.6864$0.1255
ETH<0.01%$0.000324387.5004$0.1254
ETH<0.01%$0.2431090.5102$0.124
ETH<0.01%$0.000986125.6613$0.1239
ETH<0.01%$0.00390231.4948$0.1229
ETH<0.01%$0.0704351.733$0.122
ETH<0.01%$0.00000433,914.1316$0.1203
ETH<0.01%$0.001152103.9677$0.1197
ETH<0.01%$11.890.01$0.1189
ETH<0.01%$0.0000333,564.6621$0.1188
ETH<0.01%$1.060.1115$0.1177
ETH<0.01%<$0.000001223,721,250.2458$0.1173
ETH<0.01%$0.0000176,893.1869$0.1172
ETH<0.01%$0.001032113.5522$0.1171
ETH<0.01%$0.0082514.1562$0.1167
ETH<0.01%$1.040.1114$0.1161
ETH<0.01%$0.00689916.7835$0.1157
ETH<0.01%<$0.0000012,282,753.136$0.114
ETH<0.01%$0.00390129.1858$0.1138
ETH<0.01%$0.00209154.3922$0.1137
ETH<0.01%$0.0488462.3262$0.1136
ETH<0.01%$0.00000813,702.6037$0.1135
ETH<0.01%$0.001017111.4251$0.1133
ETH<0.01%$0.000156726.8405$0.1131
ETH<0.01%$0.00469124.0648$0.1128
ETH<0.01%$0.000877128.2007$0.1123
ETH<0.01%$0.00535920.9008$0.112
ETH<0.01%$1.210.0925$0.1119
ETH<0.01%<$0.00000170,853,070.5$0.1108
ETH<0.01%$0.000573193.1654$0.1106
ETH<0.01%$0.076361.4477$0.1105
ETH<0.01%$0.0406592.712$0.1102
ETH<0.01%<$0.000001829,431.8427$0.1101
ETH<0.01%$0.000885123.3424$0.1091
ETH<0.01%$0.0249144.3576$0.1085
ETH<0.01%$0.00113794.9743$0.1079
ETH<0.01%$1.370.0786$0.1073
ETH<0.01%$0.00279438.3859$0.1072
ETH<0.01%$0.9976890.1072$0.1069
ETH<0.01%$0.000321330.0052$0.106
ETH<0.01%$0.0116099.1137$0.1057
ETH<0.01%$71.990.00145775$0.1049
ETH<0.01%$1.180.0888$0.1047
ETH<0.01%$40.410.00255115$0.103
ETH<0.01%$2.220.0461$0.1022
ETH<0.01%$1.490.0679$0.1012
ETH<0.01%$181.910.00055038$0.1001
ARB25.45%$0.00493738,566,892.1577$190,412.46
ARB0.80%$0.9999945,986.528$5,986.49
ARB0.67%$76,1770.0658$5,015.84
ARB0.56%$0.9984384,226.2634$4,219.66
ARB0.14%$2,258.880.4788$1,081.58
ARB0.12%$2,094.050.4297$899.85
ARB0.03%$0.999994255.9002$255.9
ARB0.02%$9.2716.5672$153.58
ARB0.02%$2,767.960.0483$133.71
ARB0.02%$0.253731445.5016$113.04
ARB0.01%$0.999415103.5752$103.51
ARB0.01%$0.302107254.0763$76.76
ARB<0.01%$0.0524061,164.3036$61.02
ARB<0.01%$76,3900.00075172$57.42
ARB<0.01%$119.40.3368$40.22
ARB<0.01%$0.104096376.9742$39.24
ARB<0.01%$0.053889485.5347$26.16
ARB<0.01%$1.2220.8147$25.39
ARB<0.01%$2,314.060.0107$24.76
ARB<0.01%$77,2570.0002596$20.06
ARB<0.01%$2,317.130.00748595$17.35
ARB<0.01%$1.2812.4743$15.97
ARB<0.01%$0.0095321,453.7746$13.86
ARB<0.01%$4.013.3327$13.36
ARB<0.01%$0.99938113.3313$13.32
ARB<0.01%$1.1611.4058$13.23
ARB<0.01%$64,9570.0001581$10.27
ARB<0.01%$0.018308472.0235$8.64
ARB<0.01%$70,9830.00011088$7.87
ARB<0.01%$2,079.170.00306393$6.37
ARB<0.01%$1.883.2537$6.12
ARB<0.01%$17.380.3257$5.66
ARB<0.01%$2,624.380.00211808$5.56
ARB<0.01%$7.170.7437$5.33
ARB<0.01%$1.014.8835$4.94
ARB<0.01%$0.04406699.2774$4.37
ARB<0.01%$0.9996084.0677$4.07
ARB<0.01%$13.9581$3.96
ARB<0.01%$76,2560.000046$3.51
ARB<0.01%$29.880.1075$3.21
ARB<0.01%$0.9961113.1202$3.11
ARB<0.01%$0.0635443.9893$2.8
ARB<0.01%$2,533.280.00109436$2.77
ARB<0.01%$0.09997424.4632$2.45
ARB<0.01%$1.181.8958$2.24
ARB<0.01%$0.999812.0526$2.05
ARB<0.01%$103.180.0184$1.9
ARB<0.01%$2,416.570.0007472$1.81
ARB<0.01%$11.7499$1.76
ARB<0.01%$0.9881751.6802$1.66
ARB<0.01%$0.00559296.5283$1.66
ARB<0.01%$5,027.480.000295$1.48
ARB<0.01%$1.111.2887$1.43
ARB<0.01%$0.9437241.4908$1.41
ARB<0.01%$0.168018.0973$1.36
ARB<0.01%$0.003397384.6109$1.31
ARB<0.01%$0.9980521.2814$1.28
ARB<0.01%$0.5507972.2947$1.26
ARB<0.01%$0.9991341.2377$1.24
ARB<0.01%$0.8021061.5347$1.23
ARB<0.01%$91.750.0119$1.1
ARB<0.01%$18.070.06$1.08
ARB<0.01%$0.291763.7107$1.08
ARB<0.01%$1.150.9399$1.08
ARB<0.01%$2,5960.00038568$1
ARB<0.01%$0.005405183.784$0.9933
ARB<0.01%$0.0001566,294.0109$0.9796
ARB<0.01%$0.01293774.2499$0.9605
ARB<0.01%$0.0941289.9785$0.9392
ARB<0.01%$0.99990.9017$0.9015
ARB<0.01%$1.610.5573$0.8972
ARB<0.01%$0.002787320.0591$0.8919
ARB<0.01%$0.0264631.9036$0.8441
ARB<0.01%$1.010.8363$0.8404
ARB<0.01%$0.9948460.8314$0.827
ARB<0.01%$0.997910.8118$0.81
ARB<0.01%$0.000004189,611.6904$0.7375
ARB<0.01%$1.540.4588$0.7065
ARB<0.01%$0.0001753,890.968$0.6795
ARB<0.01%$0.0000011,066,922.8938$0.6672
ARB<0.01%$76,7320.00000813$0.6238
ARB<0.01%$2.360.2641$0.6232
ARB<0.01%$2.110.2878$0.6072
ARB<0.01%$0.001681354.8717$0.5964
ARB<0.01%$0.1395724.2072$0.5872
ARB<0.01%$4,582.160.00012305$0.5638
ARB<0.01%$2,273.110.00023927$0.5438
ARB<0.01%$0.003621146.3645$0.5299
ARB<0.01%$8.110.0649$0.5265
ARB<0.01%$0.00977852.9383$0.5176
ARB<0.01%$1.390.3676$0.5109
ARB<0.01%$75,5570.00000664$0.5016
ARB<0.01%$0.2489851.7456$0.4346
ARB<0.01%$2,291.890.00018759$0.4299
ARB<0.01%$0.0003511,217.8196$0.4273
ARB<0.01%$0.1363833.0634$0.4177
ARB<0.01%$3.040.136$0.4135
ARB<0.01%$0.03438411.8577$0.4077
ARB<0.01%$0.5201320.7797$0.4055
ARB<0.01%$0.01446326.9297$0.3894
ARB<0.01%$1.860.2027$0.377
ARB<0.01%$0.00387488.6129$0.3432
ARB<0.01%$1.090.3011$0.3272
ARB<0.01%$0.9924630.3244$0.3219
ARB<0.01%$1.280.2467$0.3157
ARB<0.01%$10.3148$0.3148
ARB<0.01%$0.000485622.9476$0.3018
ARB<0.01%$0.9302550.3232$0.3006
ARB<0.01%$0.0565895.2886$0.2992
ARB<0.01%$0.00000563,431.4996$0.2981
ARB<0.01%$0.000546538.7548$0.294
ARB<0.01%$0.01528119.2182$0.2936
ARB<0.01%$0.02644210.9913$0.2906
ARB<0.01%$0.00124228.88$0.2838
ARB<0.01%$0.0476995.8237$0.2777
ARB<0.01%$76,2840.00000358$0.2731
ARB<0.01%$0.2966810.9139$0.2711
ARB<0.01%$1,782.350.00015053$0.2683
ARB<0.01%$0.3432030.7528$0.2583
ARB<0.01%$0.9132340.2785$0.2543
ARB<0.01%$0.5887620.4163$0.2451
ARB<0.01%$0.9996170.2392$0.239
ARB<0.01%$1.960.1209$0.2369
ARB<0.01%$0.3158110.7496$0.2367
ARB<0.01%$0.0371636.2382$0.2318
ARB<0.01%$0.01883212.1473$0.2287
ARB<0.01%$10.222$0.222
ARB<0.01%$0.001406152.1893$0.2139
ARB<0.01%$0.2083020.9992$0.2081
ARB<0.01%$0.000879236.8559$0.2081
ARB<0.01%$22.120.0093402$0.2066
ARB<0.01%$0.0463244.445$0.2059
ARB<0.01%$0.01251816.4244$0.2056
ARB<0.01%$0.01167517.245$0.2013
ARB<0.01%$0.00247678.398$0.1941
ARB<0.01%$76,0430.00000254$0.193
ARB<0.01%$0.00890621.1596$0.1884
ARB<0.01%$0.9984540.1826$0.1822
ARB<0.01%$0.999850.1821$0.182
ARB<0.01%$2.320.0774$0.1795
ARB<0.01%$0.00680625.4848$0.1734
ARB<0.01%$0.1019561.6907$0.1723
ARB<0.01%$0.001455117.2475$0.1705
ARB<0.01%$0.00000627,459.6865$0.1702
ARB<0.01%$0.450060.377$0.1696
ARB<0.01%$0.9946120.1533$0.1524
ARB<0.01%$0.0537062.8168$0.1512
ARB<0.01%$0.0000265,678.6119$0.149
ARB<0.01%$0.0001041,347.8947$0.1405
ARB<0.01%$0.00000439,521.7443$0.1391
ARB<0.01%$0.9977260.1377$0.1373
ARB<0.01%$0.0488372.7752$0.1355
ARB<0.01%$0.0394373.281$0.1293
ARB<0.01%$0.0542482.2941$0.1244
ARB<0.01%$0.0135098.9766$0.1212
ARB<0.01%$0.1332420.9032$0.1203
ARB<0.01%$173.960.00066344$0.1154
ARB<0.01%$2,197.560.00005043$0.1108
ARB<0.01%$0.0000353,132.2317$0.1103
ARB<0.01%$0.000381272.882$0.104
BSC5.40%$0.0021318,982,506.9819$40,425.72
BSC1.71%$1.866,862.8717$12,792.77
BSC1.15%$0.9999848,605.389$8,605.25
BSC0.41%$0.999883,097.0448$3,096.67
BSC0.38%$651.174.3162$2,810.59
BSC0.07%$0.0587218,860.4082$520.29
BSC0.07%$0.03761513,446.8087$505.8
BSC0.06%$0.710548666.6782$473.71
BSC0.05%$0.2287591,616.5479$369.8
BSC0.03%$2,086.550.1127$235.15
BSC0.03%$71,110.040.0031838$226.4
BSC0.01%$16.196.7633$109.5
BSC0.01%$650.260.1604$104.28
BSC0.01%$0.00877410,588.4734$92.91
BSC0.01%$28.693.1988$91.77
BSC<0.01%$0.0077988,471.2086$66.06
BSC<0.01%$0.99933960.894$60.85
BSC<0.01%$0.0127194,544.8063$57.81
BSC<0.01%$0.119648428.3861$51.26
BSC<0.01%$0.32212154.9482$49.91
BSC<0.01%$0.16635282.6766$47.02
BSC<0.01%$0.000324142,560.8761$46.25
BSC<0.01%$0.072917628.9805$45.86
BSC<0.01%$0.06029501.1025$30.21
BSC<0.01%$1.3921.5514$29.96
BSC<0.01%$0.26919278.9774$21.26
BSC<0.01%$0.23374388.2765$20.63
BSC<0.01%$0.99842315.4354$15.41
BSC<0.01%$0.14638797.7717$14.31
BSC<0.01%$40.880.3308$13.52
BSC<0.01%$229.770.0583$13.39
BSC<0.01%$0.026798473.6825$12.69
BSC<0.01%$0.089761135.4769$12.16
BSC<0.01%$0.71588316.6868$11.95
BSC<0.01%$0.2710643.6939$11.84
BSC<0.01%$0.9999469.5991$9.6
BSC<0.01%$0.31811629.1721$9.28
BSC<0.01%$0.008696952.6428$8.28
BSC<0.01%$1.495.2293$7.79
BSC<0.01%$0.041565177.4274$7.37
BSC<0.01%$0.025624284.5128$7.29
BSC<0.01%$990.0702$6.95
BSC<0.01%$0.15154944.4112$6.73
BSC<0.01%$0.061374106.1615$6.52
BSC<0.01%$0.001245,071.3842$6.29
BSC<0.01%$0.35403717.4116$6.16
BSC<0.01%$0.50220312.1849$6.12
BSC<0.01%$0.010321554.2645$5.72
BSC<0.01%$0.0036921,547.7115$5.71
BSC<0.01%$0.01426385.2401$5.49
BSC<0.01%$0.005864909.3618$5.33
BSC<0.01%$0.017845291.3633$5.2
BSC<0.01%$0.06541978.2241$5.12
BSC<0.01%$1.024.6345$4.74
BSC<0.01%$14.6221$4.62
BSC<0.01%$0.34293113.051$4.48
BSC<0.01%$0.009554444.9038$4.25
BSC<0.01%$0.04089893.8736$3.84
BSC<0.01%$0.0003839,658.8284$3.7
BSC<0.01%$0.6201845.759$3.57
BSC<0.01%$0.03585795.2872$3.42
BSC<0.01%$0.09886932.9257$3.26
BSC<0.01%$0.001841,749.9333$3.22
BSC<0.01%$0.018833165.4541$3.12
BSC<0.01%$0.00693439.0661$3.04
BSC<0.01%$1.531.9618$3.01
BSC<0.01%$0.08431535.251$2.97
BSC<0.01%$0.0019591,468.7966$2.88
BSC<0.01%$76,1140.0000368$2.8
BSC<0.01%$1.411.9756$2.79
BSC<0.01%$0.9997792.6974$2.7
BSC<0.01%$0.03907266.9954$2.62
BSC<0.01%$0.03318278.8656$2.62
BSC<0.01%$0.021581121.2193$2.62
BSC<0.01%$1.31.9525$2.54
BSC<0.01%$0.0002968,357.6807$2.47
BSC<0.01%$0.0000021,418,803.478$2.43
BSC<0.01%$0.18093313.3172$2.41
BSC<0.01%$3.040.7769$2.36
BSC<0.01%$0.0008212,676.5448$2.2
BSC<0.01%$0.003821555.3287$2.12
BSC<0.01%$0.008729236.2748$2.06
BSC<0.01%$0.9986372.0501$2.05
BSC<0.01%<$0.000001160,602,457.1185$2.01
BSC<0.01%$0.0002896,890.0088$1.99
BSC<0.01%$118.880.0165$1.96
BSC<0.01%$0.09463620.6244$1.95
BSC<0.01%$0.02574570.4333$1.81
BSC<0.01%$0.0017091,053.2709$1.8
BSC<0.01%$0.00353497.066$1.75
BSC<0.01%$0.0704924.234$1.71
BSC<0.01%$0.008994187.0675$1.68
BSC<0.01%$0.14285311.7671$1.68
BSC<0.01%$0.03773244.5025$1.68
BSC<0.01%$0.007899205.8226$1.63
BSC<0.01%$76,2840.00002052$1.57
BSC<0.01%<$0.0000013,838,441,430.6145$1.53
BSC<0.01%$4.010.3701$1.48
BSC<0.01%$0.02728252.4531$1.43
BSC<0.01%$9.240.1513$1.4
BSC<0.01%$0.9996961.3445$1.34
BSC<0.01%$0.005535240.2694$1.33
BSC<0.01%$0.9999421.3298$1.33
BSC<0.01%$0.02631750.4791$1.33
BSC<0.01%$0.003629353.359$1.28
BSC<0.01%$0.00001771,958.3014$1.26
BSC<0.01%$0.010504113.3259$1.19
BSC<0.01%$0.002785426.1956$1.19
BSC<0.01%$0.002446483.8346$1.18
BSC<0.01%$74.360.0159$1.18
BSC<0.01%$0.11214510.1703$1.14
BSC<0.01%$0.05229721.5374$1.13
BSC<0.01%$181.90.00607882$1.11
BSC<0.01%$0.3632172.9875$1.09
BSC<0.01%$0.5882181.8153$1.07
BSC<0.01%$0.4551292.3144$1.05
BSC<0.01%$0.2901043.6144$1.05
BSC<0.01%$0.000004288,607.9353$1.02
BSC<0.01%$0.002808361.1511$1.01
BSC<0.01%$1.530.6482$0.9942
BSC<0.01%$0.1022699.6021$0.982
BSC<0.01%$458.240.00213151$0.9767
BSC<0.01%$8.650.1107$0.9568
BSC<0.01%$0.007997118.3914$0.9467
BSC<0.01%$0.05812116.1219$0.937
BSC<0.01%$0.007979117.3531$0.9363
BSC<0.01%$0.0118878.5139$0.9327
BSC<0.01%$71,211.030.00001268$0.9029
BSC<0.01%$0.04568918.5245$0.8463
BSC<0.01%$0.003614233.6095$0.8443
BSC<0.01%$0.08036710.419$0.8373
BSC<0.01%$0.000004217,474.8677$0.822
BSC<0.01%$1.690.4825$0.8154
BSC<0.01%$0.0003212,437.1676$0.7829
BSC<0.01%$0.03328622.7454$0.7571
BSC<0.01%$0.004107178.8285$0.7344
BSC<0.01%$0.3014992.3557$0.7102
BSC<0.01%$10.6946$0.6959
BSC<0.01%$9.420.0738$0.6955
BSC<0.01%$0.0112361.7828$0.6938
BSC<0.01%$0.03372920.5707$0.6938
BSC<0.01%$0.001272526.2256$0.6695
BSC<0.01%$0.9882840.6735$0.6655
BSC<0.01%$0.000748882.2424$0.6601
BSC<0.01%$0.005576118.2456$0.6593
BSC<0.01%$0.0674429.7661$0.6586
BSC<0.01%$76,0430.00000819$0.6224
BSC<0.01%$0.0001993,107.2834$0.6173
BSC<0.01%$0.02584523.8811$0.6172
BSC<0.01%$0.003787158.8136$0.6014
BSC<0.01%$0.00980760.8432$0.5966
BSC<0.01%$805.520.00073061$0.5885
BSC<0.01%$0.003681159.8339$0.5882
BSC<0.01%$0.05367110.7761$0.5783
BSC<0.01%$0.02686321.3513$0.5735
BSC<0.01%$0.00953659.9364$0.5715
BSC<0.01%$0.003949142.2689$0.5618
BSC<0.01%$0.001281413.9444$0.5301
BSC<0.01%<$0.0000019,879,904.6806$0.5281
BSC<0.01%<$0.00000148,077,444.3369$0.5269
BSC<0.01%$0.084866.2078$0.5267
BSC<0.01%$0.0162432.2389$0.5235
BSC<0.01%$0.003941131.6109$0.5186
BSC<0.01%$0.0000598,853.9119$0.5181
BSC<0.01%$0.00003414,978.8845$0.5146
BSC<0.01%$0.000581882.1127$0.5129
BSC<0.01%$0.00598685.2208$0.5101
BSC<0.01%$1.270.3982$0.5053
BSC<0.01%$0.5454530.9245$0.5042
BSC<0.01%$5,049.160.00009849$0.4973
BSC<0.01%$0.01388635.0163$0.4862
BSC<0.01%<$0.0000012,072,256.1982$0.4793
BSC<0.01%$48.120.00992165$0.4774
BSC<0.01%$0.002078229.4315$0.4768
BSC<0.01%<$0.00000113,536,151,353.8788$0.4756
BSC<0.01%$0.00004111,518.6923$0.4753
BSC<0.01%$1.280.371$0.4749
BSC<0.01%$0.002926149.0262$0.436
BSC<0.01%$0.001033418.2437$0.4321
BSC<0.01%$2.850.1514$0.4314
BSC<0.01%$0.0002691,569.4083$0.422
BSC<0.01%$0.03464612.1817$0.422
BSC<0.01%$0.0892464.6452$0.4145
BSC<0.01%$0.001109361.4409$0.4009
BSC<0.01%$0.2828741.3465$0.3808
BSC<0.01%$0.01007937.7726$0.3806
BSC<0.01%$0.0649555.8428$0.3795
BSC<0.01%$0.0933254.0527$0.3782
BSC<0.01%$0.02057318.2639$0.3757
BSC<0.01%$0.00000666,236.4729$0.3708
BSC<0.01%$0.01102733.5036$0.3694
BSC<0.01%$3.550.1039$0.3688
BSC<0.01%$0.0650235.6644$0.3683
BSC<0.01%$0.1676152.191$0.3672
BSC<0.01%$0.00497972.7841$0.3623
BSC<0.01%$0.00003510,106.3149$0.3547
BSC<0.01%<$0.0000012,123,030.3423$0.3546
BSC<0.01%$0.00002613,261.4415$0.3477
BSC<0.01%$0.000874386.8913$0.3381
BSC<0.01%$0.01004933.4962$0.3365
BSC<0.01%$0.03109710.77$0.3349
BSC<0.01%$0.8708570.3813$0.332
BSC<0.01%$0.000637514.5841$0.3278
BSC<0.01%$0.01377723.5012$0.3237
BSC<0.01%$0.9994170.3208$0.3205
BSC<0.01%$0.4195270.7232$0.3033
BSC<0.01%$0.2757161.0722$0.2956
BSC<0.01%$0.0319319.0739$0.2897
BSC<0.01%$0.00136212.4877$0.289
BSC<0.01%$0.00002810,417.5366$0.2888
BSC<0.01%$0.00327384.0097$0.2749
BSC<0.01%$0.000001285,087.2253$0.2733
BSC<0.01%$0.078353.4169$0.2677
BSC<0.01%$0.01814814.6101$0.2651
BSC<0.01%$55.820.00464132$0.259
BSC<0.01%$0.00832630.9818$0.2579
BSC<0.01%$0.01444817.7425$0.2563
BSC<0.01%$0.0982262.5956$0.2549
BSC<0.01%$0.0871852.8408$0.2476
BSC<0.01%$3.070.0782$0.2401
BSC<0.01%$0.001004237.2551$0.2381
BSC<0.01%$0.00616838.1556$0.2353
BSC<0.01%$0.02193710.6865$0.2344
BSC<0.01%$0.0000673,510.5569$0.2341
BSC<0.01%$1.850.1246$0.2308
BSC<0.01%$0.002291100.7104$0.2307
BSC<0.01%$0.0207810.9989$0.2285
BSC<0.01%$0.00541941.3743$0.2241
BSC<0.01%$1.350.1613$0.2178
BSC<0.01%<$0.00000144,844,037.1642$0.2169
BSC<0.01%$0.00403752.8436$0.2133
BSC<0.01%$0.0000732,923.0163$0.213
BSC<0.01%<$0.0000019,859,340.3477$0.2124
BSC<0.01%$0.000702302.0504$0.212
BSC<0.01%$0.00924822.7157$0.21
BSC<0.01%$0.0000643,171.3765$0.2036
BSC<0.01%$0.0001891,073.7686$0.2028
BSC<0.01%$0.0425584.7637$0.2027
BSC<0.01%$0.0437324.5869$0.2005
BSC<0.01%$0.001699117.6105$0.1997
BSC<0.01%$0.0209059.503$0.1986
BSC<0.01%$0.0136314.5596$0.1984
BSC<0.01%$0.001544127.2255$0.1964
BSC<0.01%$0.0396154.9403$0.1957
BSC<0.01%$0.01349114.3496$0.1935
BSC<0.01%$0.001752109.2655$0.1914
BSC<0.01%$0.000245777.7929$0.1906
BSC<0.01%$0.000722263.1339$0.1899
BSC<0.01%$0.00240978.6322$0.1894
BSC<0.01%$0.000207900.7391$0.1863
BSC<0.01%$0.0360025.1322$0.1847
BSC<0.01%$0.00301460.9819$0.1838
BSC<0.01%$0.00295362.0614$0.1832
BSC<0.01%$0.0203268.997$0.1828
BSC<0.01%$0.021628.4237$0.1821
BSC<0.01%$0.00117153.2049$0.1792
BSC<0.01%$1.210.1466$0.1774
BSC<0.01%$2,078.30.00008463$0.1758
BSC<0.01%$0.000389441.1576$0.1715
BSC<0.01%$0.00838419.7762$0.1658
BSC<0.01%$0.1646250.9979$0.1642
BSC<0.01%$0.2710530.6025$0.1633
BSC<0.01%$0.0668732.4254$0.1621
BSC<0.01%$0.00000625,872.8723$0.1604
BSC<0.01%$0.0009174.4593$0.157
BSC<0.01%$0.00419137.3916$0.1567
BSC<0.01%$0.0280175.5373$0.1551
BSC<0.01%$0.02466.2983$0.1549
BSC<0.01%$0.00200277.0658$0.1543
BSC<0.01%$0.000062,506.72$0.1515
BSC<0.01%$0.084861.7656$0.1498
BSC<0.01%$0.0155269.595$0.1489
BSC<0.01%$0.001389107.0894$0.1487
BSC<0.01%$0.001075133.7666$0.1437
BSC<0.01%$0.0865441.6269$0.1407
BSC<0.01%$0.001344103.3929$0.1389
BSC<0.01%$1.870.0739$0.1381
BSC<0.01%$0.0529552.4775$0.1311
BSC<0.01%$0.0144599.0389$0.1306
BSC<0.01%$0.00334538.4974$0.1287
BSC<0.01%$0.000482256.8472$0.1239
BSC<0.01%$0.0000542,258.2881$0.1216
BSC<0.01%$0.2701230.4469$0.1207
BSC<0.01%$0.0538632.2344$0.1203
BSC<0.01%$0.01093710.9478$0.1197
BSC<0.01%$0.0978881.2033$0.1177
BSC<0.01%$0.0000492,399.9159$0.1175
BSC<0.01%$0.00124191.8644$0.1139
BSC<0.01%$0.0521882.1667$0.113
BSC<0.01%$0.0000225,176.0564$0.1126
BSC<0.01%<$0.0000014,633,841.7213$0.112
BSC<0.01%$0.00111898.6989$0.1103
BSC<0.01%$0.00129884.9489$0.1102
BSC<0.01%$0.00304935.6953$0.1088
BSC<0.01%$0.00920411.8049$0.1086
BSC<0.01%$0.00825112.8797$0.1062
BSC<0.01%$2.330.0455$0.106
BSC<0.01%$0.00467422.6079$0.1056
BSC<0.01%$0.0191935.4188$0.104
BSC<0.01%$0.0279123.6523$0.1019
BASE1.83%$0.99990513,659.338$13,658.04
BASE0.90%$2,263.382.9788$6,742.25
BASE0.42%$2,093.651.4962$3,132.55
BASE0.42%$76,3310.0409$3,124.69
BASE0.11%$0.7201251,098.8728$791.33
BASE0.10%$6.32123.3037$779.28
BASE0.09%$0.3643371,745.3147$635.88
BASE0.08%$0.1694613,715.9718$629.71
BASE0.05%$1.16332.1437$385.29
BASE0.05%$0.000533684,865.4814$364.86
BASE0.04%$28.2510.2662$290.02
BASE0.04%$0.00394568,533.5351$270.36
BASE0.03%$0.998334247.0398$246.63
BASE0.03%$0.249139884.7623$220.43
BASE0.02%$0.170315930.1585$158.42
BASE0.02%$0.000211726,044.7051$153.35
BASE0.02%$0.177453831.1473$147.49
BASE0.02%$0.0171648,284.999$142.2
BASE0.02%$0.0282664,373.0462$123.61
BASE0.02%$5.7621.3506$122.98
BASE0.02%$71,1280.00169174$120.33
BASE0.02%$0.996111119.6305$119.17
BASE0.01%$0.296961302.9078$89.95
BASE0.01%$184.6488$84.73
BASE0.01%$0.999984.6349$84.63
BASE0.01%$59.821.3956$83.48
BASE<0.01%$0.10775650.5471$70.1
BASE<0.01%$1.5943.7134$69.5
BASE<0.01%$1.1248.3351$54.14
BASE<0.01%$0.0285911,693.6141$48.42
BASE<0.01%$1.9623.8991$46.84
BASE<0.01%$0.353837116.6385$41.27
BASE<0.01%$3.1412.5084$39.28
BASE<0.01%$0.000064608,216.3104$39.05
BASE<0.01%$0.353493102.1643$36.11
BASE<0.01%$0.039419861.6552$33.97
BASE<0.01%$0.000079369,292.9909$29.31
BASE<0.01%$0.0198951,440$28.65
BASE<0.01%$1.2822.2466$28.48
BASE<0.01%$2,419.430.0117$28.26
BASE<0.01%$0.3480974.5224$25.94
BASE<0.01%$0.080237311.6812$25.01
BASE<0.01%$0.006713,641.0059$24.43
BASE<0.01%$0.0149031,469.1722$21.9
BASE<0.01%$1.8811.5071$21.63
BASE<0.01%$0.049921418.439$20.89
BASE<0.01%$2,773.10.00699608$19.4
BASE<0.01%$0.000109164,342.6605$17.93
BASE<0.01%$0.34771751.2506$17.82
BASE<0.01%$0.027264651.6939$17.77
BASE<0.01%$0.0106241,645.9575$17.49
BASE<0.01%$0.99564617.5248$17.45
BASE<0.01%$0.00023865,067.1591$15.5
BASE<0.01%$0.09158.8642$14.3
BASE<0.01%$0.00052825,698.697$13.57
BASE<0.01%$0.027087493.1274$13.36
BASE<0.01%$89.270.1425$12.72
BASE<0.01%$76,1140.00016423$12.5
BASE<0.01%$0.0119171,044.9791$12.45
BASE<0.01%$0.000017713,119.6646$12.39
BASE<0.01%$0.0048142,442.6839$11.76
BASE<0.01%$0.02076514.1266$10.67
BASE<0.01%$0.99985310.0035$10
BASE<0.01%$2,343.950.00420756$9.86
BASE<0.01%$0.0076161,294.7544$9.86
BASE<0.01%$0.086964106.3039$9.24
BASE<0.01%$0.088603102.3145$9.07
BASE<0.01%$0.0009818,864.2291$8.69
BASE<0.01%$0.32284226.8607$8.67
BASE<0.01%$0.0888389.1624$7.92
BASE<0.01%$0.020563372.445$7.66
BASE<0.01%$0.0046171,562.6304$7.22
BASE<0.01%$0.0025132,729.3551$6.86
BASE<0.01%$0.0008428,083$6.8
BASE<0.01%$2,421.770.00279302$6.76
BASE<0.01%$119.180.0561$6.68
BASE<0.01%$0.09686864.5488$6.25
BASE<0.01%$0.08525171.8528$6.13
BASE<0.01%$1.44.3447$6.08
BASE<0.01%$2,462.490.00232453$5.72
BASE<0.01%$2,645.790.00207235$5.48
BASE<0.01%$0.9994465.3883$5.39
BASE<0.01%$0.09883354.3273$5.37
BASE<0.01%$0.025343205.3772$5.2
BASE<0.01%$0.0011774,098.8481$4.83
BASE<0.01%$0.06547773.5328$4.81
BASE<0.01%$0.007397623.1023$4.61
BASE<0.01%$0.033665134.307$4.52
BASE<0.01%$172.10.0255$4.39
BASE<0.01%$1.283.3793$4.33
BASE<0.01%$0.036656117.6783$4.31
BASE<0.01%$0.0024461,688.4074$4.13
BASE<0.01%$0.05293777.0039$4.08
BASE<0.01%$0.0007295,521.3169$4.03
BASE<0.01%$0.00028313,977.8996$3.96
BASE<0.01%$0.01278302.2503$3.86
BASE<0.01%$0.0003710,328.6155$3.82
BASE<0.01%$0.04481284.4639$3.78
BASE<0.01%$0.0134272.8789$3.66
BASE<0.01%$1.043.5123$3.66
BASE<0.01%$0.016251219.0965$3.56
BASE<0.01%$0.00007547,687.1113$3.56
BASE<0.01%$0.10768532.1383$3.46
BASE<0.01%$0.005291653.3914$3.46
BASE<0.01%$0.000005702,646.3281$3.35
BASE<0.01%$0.007154468.453$3.35
BASE<0.01%$0.0026911,239.67$3.34
BASE<0.01%$0.448037.2488$3.25
BASE<0.01%$174.40.018$3.15
BASE<0.01%$0.03356392.8954$3.12
BASE<0.01%$0.009056338.1838$3.06
BASE<0.01%$0.06957643.748$3.04
BASE<0.01%$0.007572400.8925$3.04
BASE<0.01%$0.9944913.0156$3
BASE<0.01%$0.020374143.7192$2.93
BASE<0.01%$0.0012982,200.9332$2.86
BASE<0.01%$76,3880.00003689$2.82
BASE<0.01%$0.01168231.4454$2.7
BASE<0.01%$1.162.2843$2.65
BASE<0.01%$0.1145422.9072$2.62
BASE<0.01%$0.011365226.6189$2.58
BASE<0.01%$3.230.7931$2.56
BASE<0.01%$2,079.170.00122304$2.54
BASE<0.01%$0.0004825,263.2428$2.54
BASE<0.01%$0.003047816.5326$2.49
BASE<0.01%$0.13642618.1953$2.48
BASE<0.01%$0.0007323,304.1918$2.42
BASE<0.01%$0.00009424,269.1974$2.29
BASE<0.01%$0.014546149.8626$2.18
BASE<0.01%$0.017393123.8509$2.15
BASE<0.01%<$0.00000113,079,692.2105$2.15
BASE<0.01%$0.09054323.1734$2.1
BASE<0.01%$0.003635498.0833$1.81
BASE<0.01%$11.8003$1.81
BASE<0.01%$0.5074233.3926$1.72
BASE<0.01%<$0.000001218,765,034.7109$1.71
BASE<0.01%$0.053931.3913$1.69
BASE<0.01%$0.0000011,331,089.0043$1.69
BASE<0.01%$1.281.3149$1.68
BASE<0.01%$0.001752934.0124$1.64
BASE<0.01%$0.004518358.8969$1.62
BASE<0.01%$0.00013811,281.7259$1.56
BASE<0.01%$1.061.4371$1.53
BASE<0.01%$0.9998031.5131$1.51
BASE<0.01%$2.850.5191$1.48
BASE<0.01%$0.9997391.4545$1.45
BASE<0.01%$2,410.870.00059593$1.44
BASE<0.01%$0.2536575.5714$1.41
BASE<0.01%$0.0000011,393,389.0767$1.41
BASE<0.01%$0.0002884,880.1499$1.4
BASE<0.01%$0.9741481.4369$1.4
BASE<0.01%$11.3544$1.36
BASE<0.01%$0.008694149.795$1.3
BASE<0.01%$0.9693841.3051$1.27
BASE<0.01%$0.01676675.0942$1.26
BASE<0.01%$0.00875143.77$1.26
BASE<0.01%$0.0241951.1347$1.24
BASE<0.01%$1.11.0229$1.13
BASE<0.01%$0.2493454.5085$1.12
BASE<0.01%$2,2690.00047419$1.08
BASE<0.01%$0.09032611.894$1.07
BASE<0.01%$0.117749.0372$1.06
BASE<0.01%$0.0009491,073.7686$1.02
BASE<0.01%$0.01881954.1289$1.02
BASE<0.01%$0.0729613.9525$1.02
BASE<0.01%$0.01363371.6697$0.977
BASE<0.01%$0.5238231.8634$0.9761
BASE<0.01%$0.003688252.1192$0.9297
BASE<0.01%$0.00008710,582.2782$0.9244
BASE<0.01%$0.00002142,902.7944$0.8807
BASE<0.01%$0.04721118.0795$0.8535
BASE<0.01%$0.007678110.4094$0.8477
BASE<0.01%$76,7380.00001099$0.8433
BASE<0.01%$2.160.3895$0.8412
BASE<0.01%$1.090.7747$0.8405
BASE<0.01%$0.000951881.7896$0.8384
BASE<0.01%$0.1167787.1669$0.8369
BASE<0.01%$0.0255932.6358$0.8351
BASE<0.01%$0.05100616.027$0.8174
BASE<0.01%<$0.00000184,021,637.2921$0.815
BASE<0.01%$18.070.045$0.8139
BASE<0.01%$0.000956839.1455$0.8023
BASE<0.01%$0.0004441,787.1757$0.7933
BASE<0.01%$0.00839893.7608$0.7874
BASE<0.01%$0.000491,593.5061$0.7808
BASE<0.01%$0.06349812.1933$0.7742
BASE<0.01%$0.00051,544$0.7719
BASE<0.01%$0.00915183.8081$0.7669
BASE<0.01%$0.00892385.4303$0.7622
BASE<0.01%$0.7284020.9907$0.7216
BASE<0.01%<$0.000001140,909,453.8202$0.7186
BASE<0.01%$0.1024436.9682$0.7138
BASE<0.01%$0.05006514.1674$0.7092
BASE<0.01%$0.00824885.5288$0.7054
BASE<0.01%$0.00079863.1715$0.6819
BASE<0.01%$0.0001783,441$0.6136
BASE<0.01%$0.00124491.3675$0.6094
BASE<0.01%$0.0001513,991.0844$0.6027
BASE<0.01%$0.0608439.8994$0.6023
BASE<0.01%$0.5728781.0515$0.6023
BASE<0.01%$0.00765273.7204$0.5641
BASE<0.01%$0.002897193.092$0.5592
BASE<0.01%$0.00003216,885.8809$0.5455
BASE<0.01%$0.02035625.7197$0.5235
BASE<0.01%$0.003273154.6735$0.5061
BASE<0.01%$0.3560761.4075$0.5011
BASE<0.01%$0.6978440.7181$0.5011
BASE<0.01%$0.0002262,216.2044$0.5007
BASE<0.01%$0.00561488.7273$0.4981
BASE<0.01%$0.4172531.1541$0.4815
BASE<0.01%$0.1275413.7423$0.4772
BASE<0.01%$0.00000953,483.905$0.4765
BASE<0.01%$75,5610.00000627$0.4737
BASE<0.01%$0.01169339.4305$0.461
BASE<0.01%$0.000076,518.8944$0.4564
BASE<0.01%$0.6327770.6872$0.4348
BASE<0.01%$0.000001759,961.1293$0.4311
BASE<0.01%$0.1501162.7659$0.4152
BASE<0.01%$0.00000586,079.3304$0.4067
BASE<0.01%$0.001802219.0046$0.3946
BASE<0.01%<$0.0000011,295,388,984.4512$0.3886
BASE<0.01%$0.1895972.0364$0.386
BASE<0.01%$130.0285$0.3706
BASE<0.01%$0.002111170.3591$0.3595
BASE<0.01%$0.000048,897.8897$0.3592
BASE<0.01%$0.002383149.8888$0.3571
BASE<0.01%$0.0152523.0095$0.3508
BASE<0.01%$0.0533466.5299$0.3483
BASE<0.01%$0.0000447,671.3191$0.3379
BASE<0.01%$0.3299951.0178$0.3358
BASE<0.01%$0.0052464.0103$0.3354
BASE<0.01%$0.5747850.5762$0.3311
BASE<0.01%$0.02942911.1802$0.329
BASE<0.01%$0.00362887.6578$0.318
BASE<0.01%$1.010.3128$0.3165
BASE<0.01%$0.000856359.2822$0.3076
BASE<0.01%$0.0447576.6837$0.2991
BASE<0.01%$0.00468863.1643$0.2961
BASE<0.01%$0.00456862.1084$0.2836
BASE<0.01%$0.01171723.9624$0.2807
BASE<0.01%$0.01411119.816$0.2796
BASE<0.01%$0.001332208.4843$0.2777
BASE<0.01%$0.1578341.7487$0.276
BASE<0.01%$0.00002610,464.4534$0.2743
BASE<0.01%$0.000636421.0696$0.2676
BASE<0.01%$2.240.1193$0.2671
BASE<0.01%<$0.0000015,071,729.8578$0.2606
BASE<0.01%$0.000161,607.1471$0.2571
BASE<0.01%$0.00000926,668.6023$0.2528
BASE<0.01%$0.00313179.6528$0.2493
BASE<0.01%$0.0001711,432.4479$0.2449
BASE<0.01%$0.000679359.9654$0.2444
BASE<0.01%$1.610.1513$0.2435
BASE<0.01%$0.01343117.7213$0.238
BASE<0.01%$0.0001531,548.6474$0.2363
BASE<0.01%<$0.0000015,087,575.5294$0.2325
BASE<0.01%$0.01842412.3649$0.2278
BASE<0.01%$0.6453960.353$0.2278
BASE<0.01%$0.001304174.345$0.2272
BASE<0.01%$0.0397085.7047$0.2265
BASE<0.01%$0.0002031,049.3027$0.2129
BASE<0.01%$0.00417151.0076$0.2127
BASE<0.01%$0.02064810.24$0.2114
BASE<0.01%$0.000703299.6161$0.2107
BASE<0.01%$0.00342861.3057$0.2101
BASE<0.01%$0.0539963.8913$0.2101
BASE<0.01%$0.0001521,373.8497$0.2088
BASE<0.01%$0.0000258,220.8239$0.2085
BASE<0.01%$0.001039192.524$0.1999
BASE<0.01%$0.0207989.4814$0.1971
BASE<0.01%$0.00000360,722.3682$0.1955
BASE<0.01%$0.000191976.6809$0.1867
BASE<0.01%$0.000332552.392$0.1833
BASE<0.01%$0.01068216.4616$0.1758
BASE<0.01%$0.000001246,373.2666$0.1697
BASE<0.01%$76,2850.00000221$0.1689
BASE<0.01%$0.0898831.8307$0.1645
BASE<0.01%$0.01379211.9019$0.1641
BASE<0.01%$0.000379427.6345$0.1621
BASE<0.01%<$0.000001640,509.0435$0.1612
BASE<0.01%$0.000265575.6051$0.1526
BASE<0.01%$0.00001113,368.8328$0.1501
BASE<0.01%$0.0000811,831.753$0.1487
BASE<0.01%$0.0173348.5378$0.1479
BASE<0.01%$0.110151.3398$0.1475
BASE<0.01%$0.8708570.1694$0.1474
BASE<0.01%$0.00000342,894.9832$0.1467
BASE<0.01%$0.1153461.2632$0.1457
BASE<0.01%$0.9999270.1437$0.1436
BASE<0.01%$0.00000271,797.6357$0.1435
BASE<0.01%$0.0423923.3771$0.1431
BASE<0.01%$0.0000881,596.0845$0.1408
BASE<0.01%$0.0298584.624$0.138
BASE<0.01%<$0.0000015,662,889.6117$0.1359
BASE<0.01%$0.1399390.9675$0.1353
BASE<0.01%$0.00000915,418.169$0.1341
BASE<0.01%$0.0000187,539.9959$0.1331
BASE<0.01%$0.4634940.2874$0.1331
BASE<0.01%$0.000001170,457.9331$0.1264
BASE<0.01%$0.0511842.4461$0.1251
BASE<0.01%$173.960.0006966$0.1211
BASE<0.01%$0.0399963.0212$0.1208
BASE<0.01%$0.000729162.6104$0.1186
BASE<0.01%$0.295460.391$0.1155
BASE<0.01%$0.9937950.1151$0.1143
BASE<0.01%$0.000132855.88$0.1133
BASE<0.01%$0.0000532,090.8602$0.1109
BASE<0.01%$0.0968681.0867$0.1052
BASE<0.01%$0.000815127.0659$0.1035
AVAX0.47%$0.999883,494.3644$3,493.94
AVAX0.13%$0.9999221,001.858$1,001.78
AVAX0.11%$9.4289.3821$842.14
AVAX0.08%$9.560.131$571.11
AVAX0.07%$76,2480.00675214$514.84
AVAX0.05%$2,263.380.1771$400.83
AVAX0.02%$12.519.7167$121.56
AVAX0.01%$5,009.630.0155$77.67
AVAX<0.01%$0.030291,173.4165$35.54
AVAX<0.01%$0.99993432.1413$32.14
AVAX<0.01%$0.03937775.0695$30.51
AVAX<0.01%$70,940.410.00016991$12.05
AVAX<0.01%$70,940.410.00016033$11.37
AVAX<0.01%$1.168.8242$10.23
AVAX<0.01%$76,2840.00009776$7.46
AVAX<0.01%$0.0009486,054.6423$5.74
AVAX<0.01%$0.009434505.7177$4.77
AVAX<0.01%<$0.00000131,968,793.2593$3.68
AVAX<0.01%$0.020358171.9141$3.5
AVAX<0.01%$0.0019121,647.1129$3.15
AVAX<0.01%$9.240.2749$2.54
AVAX<0.01%$1.221.7696$2.16
AVAX<0.01%$0.9999222.1384$2.14
AVAX<0.01%$0.999882.0228$2.02
AVAX<0.01%$4,545.390.00043628$1.98
AVAX<0.01%$0.997911.6725$1.67
AVAX<0.01%$264,1220.00000581$1.53
AVAX<0.01%$119.150.0126$1.5
AVAX<0.01%$13.090.0965$1.26
AVAX<0.01%$119.540.00900466$1.08
AVAX<0.01%$0.006338140.9587$0.8934
AVAX<0.01%$1.880.4224$0.794
AVAX<0.01%$0.999810.6728$0.6726
AVAX<0.01%$0.00804281.4432$0.6549
AVAX<0.01%$0.00725989.1967$0.6474
AVAX<0.01%$103.180.00624926$0.6447
AVAX<0.01%$0.1680213.7995$0.6383
AVAX<0.01%<$0.000001345,033,664.0253$0.552
AVAX<0.01%$0.9997790.5469$0.5468
AVAX<0.01%$0.991370.5387$0.534
AVAX<0.01%$0.9996170.4749$0.4747
AVAX<0.01%$1.310.3578$0.4686
AVAX<0.01%$8.060.0356$0.2871
AVAX<0.01%$0.000359738.219$0.2648
AVAX<0.01%$0.00663639.2845$0.2606
AVAX<0.01%$0.0001741,392.0361$0.2428
AVAX<0.01%$0.000234623.3117$0.1459
AVAX<0.01%$0.0416043.3839$0.1407
AVAX<0.01%$0.036373.5817$0.1302
AVAX<0.01%$0.000891125.3944$0.1117
AVAX<0.01%$0.00218346.4674$0.1014
POL0.11%$0.999905814.3102$814.23
POL0.09%$0.998295705.1793$703.98
POL0.07%$1555.6788$555.68
POL0.07%$2,086.550.2369$494.4
POL0.06%$76,1140.00575965$438.39
POL0.02%$0.1017991,466.6891$149.31
POL0.02%$0.999905140.6415$140.63
POL<0.01%$9.258.087$74.8
POL<0.01%$2,773.10.0175$48.54
POL<0.01%$118.960.3522$41.9
POL<0.01%$0.101205366.087$37.05
POL<0.01%$64,9570.00026375$17.13
POL<0.01%$0.12486119.7573$14.95
POL<0.01%$0.111672123.0704$13.74
POL<0.01%$0.18940969.7137$13.2
POL<0.01%$89.210.137$12.22
POL<0.01%$5,100.670.0020282$10.35
POL<0.01%$0.000028369,995.512$10.29
POL<0.01%$0.0026853,647.57$9.79
POL<0.01%$0.08445491.3703$7.72
POL<0.01%$0.9562037.3652$7.04
POL<0.01%$103.180.0674$6.95
POL<0.01%$0.999816.8538$6.85
POL<0.01%$0.010491491.0793$5.15
POL<0.01%$0.997915.149$5.14
POL<0.01%$4.011.2629$5.06
POL<0.01%$2.321.6242$3.77
POL<0.01%$0.0007175,088.3274$3.65
POL<0.01%$118.320.0306$3.62
POL<0.01%$0.000009371,035.1904$3.25
POL<0.01%$0.7821264.102$3.21
POL<0.01%$1.162.761$3.2
POL<0.01%$1.162.7608$3.2
POL<0.01%$0.012602251.8196$3.17
POL<0.01%$0.9882842.527$2.5
POL<0.01%$0.9018622.6564$2.4
POL<0.01%$0.012258186.5795$2.29
POL<0.01%$0.2532338.5423$2.16
POL<0.01%<$0.00000110,073,242.6591$2.16
POL<0.01%$0.11287219.1092$2.16
POL<0.01%$0.18931410.9478$2.07
POL<0.01%$0.8013322.5005$2
POL<0.01%$0.3296785.7814$1.91
POL<0.01%$4,545.390.00041394$1.88
POL<0.01%$0.9996171.8334$1.83
POL<0.01%$0.03712548.8309$1.81
POL<0.01%$1.241.39$1.72
POL<0.01%$0.10420514.8731$1.55
POL<0.01%$18.060.0797$1.44
POL<0.01%$1.191.1677$1.39
POL<0.01%$0.02640951.3719$1.36
POL<0.01%$0.07304718.2274$1.33
POL<0.01%$2,091.60.00059476$1.24
POL<0.01%$1,815.710.00068451$1.24
POL<0.01%$173.960.00708642$1.23
POL<0.01%$0.0112398.7446$1.11
POL<0.01%$0.02740538.8917$1.07
POL<0.01%$0.00002246,727.3088$1.05
POL<0.01%$0.006339158.2252$1
POL<0.01%$1.010.9809$0.9867
POL<0.01%$0.1117378.0284$0.897
POL<0.01%$1.390.645$0.8964
POL<0.01%$0.007264123.0349$0.8937
POL<0.01%$0.999830.8289$0.8287
POL<0.01%$0.1333415.9362$0.7915
POL<0.01%$0.0002692,933.2226$0.7884
POL<0.01%$0.1896134.0853$0.7746
POL<0.01%$0.1320845.5851$0.7377
POL<0.01%$106.480.00688331$0.7329
POL<0.01%$0.0000176,051.0732$0.7325
POL<0.01%$0.1161835.9193$0.6877
POL<0.01%$2,314.060.00026687$0.6175
POL<0.01%$0.159043.8265$0.6085
POL<0.01%$0.00735782.1003$0.6039
POL<0.01%$0.02090528.0681$0.5867
POL<0.01%$0.03686915.9069$0.5864
POL<0.01%$1.870.2966$0.5546
POL<0.01%$0.9998550.5524$0.5523
POL<0.01%$0.00842464.2118$0.5409
POL<0.01%$0.00000686,663.6077$0.5377
POL<0.01%$0.1732782.9659$0.5139
POL<0.01%$0.279421.7779$0.4967
POL<0.01%$0.00943852.2038$0.4927
POL<0.01%$0.001099445.5109$0.4897
POL<0.01%$0.0004491,037.3142$0.466
POL<0.01%$0.001665275.5254$0.4587
POL<0.01%$0.9998590.4508$0.4507
POL<0.01%$0.999810.4369$0.4368
POL<0.01%$0.0750575.7419$0.4309
POL<0.01%$0.1018794.2127$0.4291
POL<0.01%$0.1994022.0886$0.4164
POL<0.01%$10.4016$0.4023
POL<0.01%$0.0003191,256.1762$0.401
POL<0.01%$0.03141412.1163$0.3806
POL<0.01%$2,077.430.00017634$0.3663
POL<0.01%$48.250.00715452$0.3452
POL<0.01%$0.0448257.6224$0.3416
POL<0.01%$0.00707347.7111$0.3374
POL<0.01%$0.00929736.1038$0.3356
POL<0.01%$6.120.0541$0.331
POL<0.01%$0.0487246.585$0.3208
POL<0.01%$0.0633165.059$0.3203
POL<0.01%$0.1885041.6938$0.3192
POL<0.01%$0.0869553.6111$0.314
POL<0.01%<$0.0000015,851,703.3948$0.313
POL<0.01%$0.1696221.7952$0.3045
POL<0.01%$0.000001272,292.1289$0.2913
POL<0.01%$0.1090632.6332$0.2871
POL<0.01%$0.0360027.9407$0.2858
POL<0.01%$0.00433265.4857$0.2837
POL<0.01%$0.1309122.1279$0.2785
POL<0.01%$0.6119650.43$0.2631
POL<0.01%$16.910.0151$0.2556
POL<0.01%$0.00202124.8537$0.2522
POL<0.01%$0.02436710.0242$0.2442
POL<0.01%$0.0947472.4598$0.233
POL<0.01%$0.5719850.4023$0.2301
POL<0.01%$0.1676041.3694$0.2295
POL<0.01%$0.01161219.7298$0.2291
POL<0.01%$71,1000.00000317$0.2254
POL<0.01%$0.0978882.2715$0.2223
POL<0.01%$0.000287745.2088$0.214
POL<0.01%$0.00420349.6642$0.2087
POL<0.01%$0.0045444.5427$0.2022
POL<0.01%$0.00064304.6598$0.1949
POL<0.01%$0.0000643,010.358$0.192
POL<0.01%$0.0213598.9688$0.1915
POL<0.01%$0.00000632,711.5644$0.1831
POL<0.01%$0.0927821.9226$0.1783
POL<0.01%$0.000449396.8293$0.178
POL<0.01%$0.001215143.7004$0.1746
POL<0.01%$0.0001551,124.5533$0.1743
POL<0.01%$0.8721950.1959$0.1708
POL<0.01%$0.1521321.0809$0.1644
POL<0.01%$0.000172956.5992$0.1642
POL<0.01%$0.0000742,201.4312$0.163
POL<0.01%$0.00554428.9735$0.1606
POL<0.01%$0.001388114.0083$0.1582
POL<0.01%$0.00000722,869.2921$0.1566
POL<0.01%$0.00184384.5058$0.1557
POL<0.01%$0.0147210.4224$0.1534
POL<0.01%$0.00015977.3567$0.1467
POL<0.01%$9.450.015$0.1412
POL<0.01%$0.000301455.1805$0.1371
POL<0.01%$0.00365236.8154$0.1344
POL<0.01%$3.320.0399$0.1325
POL<0.01%$0.000344379.9847$0.1306
POL<0.01%$0.1538470.8328$0.1281
POL<0.01%$0.000043,111.6958$0.1256
POL<0.01%$0.0000284,555.3497$0.1254
POL<0.01%$0.144160.8655$0.1247
POL<0.01%$0.000373332.0365$0.124
POL<0.01%$0.00141884.8339$0.1202
POL<0.01%$0.0000264,668.9048$0.1192
POL<0.01%$0.0982261.1052$0.1085
POL<0.01%$0.00218749.0996$0.1073
POL<0.01%$0.000851124.5136$0.1059
POL<0.01%$0.0133827.8573$0.1051
POL<0.01%$0.3152260.3228$0.1017
OP0.13%$0.999905980.2169$980.12
OP0.04%$2,093.590.143$299.32
OP0.03%$76,1140.00285903$217.61
OP0.03%$2,263.380.0918$207.8
OP0.02%$1122.3752$122.38
OP0.01%$0.827044109.1266$90.25
OP<0.01%$0.99990571.737$71.73
OP<0.01%$71,1280.00088658$63.06
OP<0.01%$0.0173113,467.6867$60.03
OP<0.01%$1.3739.1249$53.6
OP<0.01%$2,773.10.0104$28.77
OP<0.01%$0.125828130.9966$16.48
OP<0.01%$1.0113.51$13.67
OP<0.01%$0.32990535.1451$11.59
OP<0.01%$2,314.060.00340646$7.88
OP<0.01%$17.0309$7.03
OP<0.01%$118.30.0413$4.88
OP<0.01%$119.150.0384$4.57
OP<0.01%$0.4101179.9692$4.09
OP<0.01%$0.03490288.4015$3.09
OP<0.01%$9.260.316$2.93
OP<0.01%$1,810.990.00088598$1.6
OP<0.01%$0.1680218.2128$1.38
OP<0.01%$0.1362068.3193$1.13
OP<0.01%$0.999811.0912$1.09
OP<0.01%$0.997910.9394$0.9374
OP<0.01%$1.880.4722$0.8876
OP<0.01%$2,421.770.00035519$0.8602
OP<0.01%$4.020.2119$0.8516
OP<0.01%$2,627.860.0002802$0.7363
OP<0.01%$0.0818028.7081$0.7123
OP<0.01%$0.9997390.5534$0.5532
OP<0.01%$10.403$0.4041
OP<0.01%$0.0000725,525.5703$0.395
OP<0.01%$110,9330.00000343$0.3805
OP<0.01%$0.9858530.3707$0.3654
OP<0.01%$0.00757248.0182$0.3635
OP<0.01%$0.1535642.3159$0.3556
OP<0.01%$0.9991340.2808$0.2806
OP<0.01%$5.580.0491$0.2741
OP<0.01%$1.280.174$0.2227
OP<0.01%$2,188.230.00009333$0.2042
OP<0.01%$1.010.2017$0.203
OP<0.01%$103.180.00180054$0.1857
OP<0.01%$0.01731110.4355$0.1806
OP<0.01%$2,091.60.00008403$0.1757
OP<0.01%$8.060.0194$0.1561
OP<0.01%$0.0352993.8993$0.1376
OP<0.01%$0.00426331.7264$0.1352
OP<0.01%$0.0542482.1686$0.1176
OP<0.01%$0.0335583.4002$0.1141
OP<0.01%$0.000637164.0653$0.1045
UNI0.10%$0.999994781.5695$781.56
UNI0.05%$2,092.290.1733$362.67
UNI0.05%$0.998295338.0139$337.44
UNI0.03%$2,263.480.1025$232.01
UNI<0.01%$71,006.730.0008197$58.2
UNI<0.01%$32.941.191$39.23
UNI<0.01%$99.20.1125$11.16
UNI<0.01%$4.011.274$5.11
UNI<0.01%$0.00003238,445.711$1.21
GNO0.05%$2,258.880.1637$369.78
GNO0.03%$131.341.8273$240
GNO0.02%$0.99991168.227$168.21
GNO0.02%$1.16142.1789$164.93
GNO0.02%$1.16142.1789$164.93
GNO0.02%$0.999905163.3759$163.36
GNO0.02%$0.249345469.4838$117.06
GNO0.01%$0.99991103.1368$103.13
GNO<0.01%$0.104981184.5095$19.37
GNO<0.01%$2,767.960.00647578$17.92
GNO<0.01%$0.99990517.5904$17.59
GNO<0.01%$1.2213.9101$16.97
GNO<0.01%$110.413$10.41
GNO<0.01%$0.9996175.2871$5.29
GNO<0.01%$0.03712997.8442$3.63
GNO<0.01%$76,1770.00004625$3.52
GNO<0.01%$424.640.00649368$2.76
GNO<0.01%$9.260.2386$2.21
GNO<0.01%$1.281.068$1.37
GNO<0.01%$0.0006431,788.7358$1.15
GNO<0.01%$0.1578347.0118$1.11
GNO<0.01%$11.0763$1.08
GNO<0.01%$735.870.00144476$1.06
GNO<0.01%$0.1895455.3794$1.02
GNO<0.01%$0.999810.7541$0.7539
GNO<0.01%$0.9924630.5518$0.5476
GNO<0.01%$2,079.170.00021641$0.4499
GNO<0.01%$1.180.2198$0.2593
GNO<0.01%$10.2433$0.2439
GNO<0.01%$0.00707630.8005$0.2179
GNO<0.01%$2,314.060.00007109$0.1645
SONIC<0.01%$0.56186726.274$14.76
SONIC<0.01%$0.99990313.8333$13.83
SONIC<0.01%$0.0011979,402.9424$11.26
SONIC<0.01%$0.053892205.196$11.06
SONIC<0.01%$0.9999933.8477$3.85
SONIC<0.01%$2,263.380.00112103$2.54
SONIC<0.01%$0.9996831.3998$1.4
SONIC<0.01%$0.05118222.9117$1.17
SONIC
S (S)
<0.01%$0.04186421.317$0.892405
SONIC<0.01%$0.005182144.504$0.7488
PLASMA<0.01%$0.1201480.068$0.008173
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ 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.