Feature Tip: Add private address tag to any address under My Name Tag !
Latest 11 from a total of 11 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw All ERC... | 24472087 | 22 days ago | IN | 0 ETH | 0.00001017 | ||||
| Transfer | 24465194 | 23 days ago | IN | 0 ETH | 0.00000091 | ||||
| Batch Withdraw A... | 23970032 | 92 days ago | IN | 0 ETH | 0.00002956 | ||||
| Batch Withdraw A... | 23748620 | 123 days ago | IN | 0 ETH | 0.00021895 | ||||
| Batch Withdraw A... | 23206701 | 199 days ago | IN | 0 ETH | 0.00189568 | ||||
| Batch Withdraw A... | 22136456 | 349 days ago | IN | 0 ETH | 0.00012375 | ||||
| Batch Withdraw A... | 21911558 | 380 days ago | IN | 0 ETH | 0.01470549 | ||||
| Batch Withdraw A... | 21908108 | 381 days ago | IN | 0 ETH | 0.00029035 | ||||
| Withdraw All ERC... | 21595612 | 424 days ago | IN | 0 ETH | 0.00028951 | ||||
| Transfer Ownersh... | 19961015 | 653 days ago | IN | 0 ETH | 0.00051492 | ||||
| Set Augustus App... | 19961013 | 653 days ago | IN | 0 ETH | 0.00085894 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 24634301 | 35 mins ago | 0 ETH | ||||
| Transfer | 24634099 | 1 hr ago | 0.00000845 ETH | ||||
| Transfer | 24633828 | 2 hrs ago | 0.00009415 ETH | ||||
| Transfer | 24633734 | 2 hrs ago | 0.00022459 ETH | ||||
| Transfer | 24633727 | 2 hrs ago | 0.00009642 ETH | ||||
| Transfer | 24633367 | 3 hrs ago | 0.00066821 ETH | ||||
| Transfer | 24633237 | 4 hrs ago | 0.00000057 ETH | ||||
| Transfer | 24633185 | 4 hrs ago | 0.00178326 ETH | ||||
| Transfer | 24633090 | 4 hrs ago | 0.00049933 ETH | ||||
| Transfer | 24633080 | 4 hrs ago | 0.0004 ETH | ||||
| Transfer | 24633066 | 4 hrs ago | 0.00000049 ETH | ||||
| Transfer | 24633006 | 4 hrs ago | 0.00001718 ETH | ||||
| Transfer | 24632972 | 5 hrs ago | 0.00000098 ETH | ||||
| Transfer | 24632910 | 5 hrs ago | 0.00001041 ETH | ||||
| Transfer | 24632796 | 5 hrs ago | 0.00002214 ETH | ||||
| Transfer | 24632770 | 5 hrs ago | 0.00001653 ETH | ||||
| Transfer | 24632753 | 5 hrs ago | 0 ETH | ||||
| Transfer | 24632016 | 8 hrs ago | 0 ETH | ||||
| Transfer | 24631781 | 9 hrs ago | 0 ETH | ||||
| Transfer | 24631754 | 9 hrs ago | 0.00000035 ETH | ||||
| Transfer | 24631728 | 9 hrs ago | 0 ETH | ||||
| Transfer | 24631712 | 9 hrs ago | 0 ETH | ||||
| Transfer | 24631245 | 10 hrs ago | 0.0002576 ETH | ||||
| Transfer | 24630696 | 12 hrs ago | 0.00000509 ETH | ||||
| Transfer | 24630638 | 12 hrs ago | 0.00008402 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AugustusFeeVault
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// 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;
}
}{
"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/",
"foundry-huff/=lib/foundry-huff/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"prb-test/=lib/prb-test/src/",
"solady/=lib/solady/",
"solidity-bytes-utils/=lib/solidity-bytes-utils/contracts/",
"solidity-stringutils/=lib/foundry-huff/lib/solidity-stringutils/",
"solmate/=lib/create3-factory/lib/solmate/src/",
"stringutils/=lib/foundry-huff/lib/solidity-stringutils/"
],
"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
- No Contract Security Audit Submitted- Submit Audit Here
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"}]Contract Creation Code
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
Loading...
Loading
Loading...
Loading
Net Worth in USD
$677,970.45
Net Worth in ETH
332.200391
Token Allocations
TRU
41.05%
UXLINK
25.25%
USDC
8.00%
Others
25.70%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 41.05% | $0.006033 | 46,123,416.5335 | $278,274.41 | |
| ETH | 3.72% | $0.999971 | 25,240.6101 | $25,239.88 | |
| ETH | 1.85% | $1 | 12,542.2703 | $12,542.27 | |
| ETH | 1.27% | $1.22 | 7,061.7933 | $8,615.39 | |
| ETH | 1.04% | $2,036.71 | 3.4526 | $7,031.9 | |
| ETH | 0.85% | $2,036.71 | 2.8258 | $5,755.39 | |
| ETH | 0.42% | $69,329.15 | 0.0408 | $2,831.81 | |
| ETH | 0.40% | $0.247116 | 10,890.7464 | $2,691.28 | |
| ETH | 0.37% | $1.16 | 2,163.4003 | $2,509.54 | |
| ETH | 0.31% | $1.09 | 1,953.5228 | $2,125.43 | |
| ETH | 0.30% | $0.999989 | 2,048.5036 | $2,048.48 | |
| ETH | 0.22% | $1 | 1,474.8184 | $1,477.77 | |
| ETH | 0.18% | $1 | 1,237.0583 | $1,239.53 | |
| ETH | 0.17% | $85.5 | 13.1745 | $1,126.42 | |
| ETH | 0.11% | $0.973701 | 746.1474 | $726.52 | |
| ETH | 0.10% | $1 | 697.5182 | $697.52 | |
| ETH | 0.08% | $0.960485 | 541.4858 | $520.09 | |
| ETH | 0.07% | $2,483.84 | 0.1923 | $477.7 | |
| ETH | 0.07% | $5,180.14 | 0.0874 | $452.86 | |
| ETH | 0.05% | $9 | 37.6818 | $339.14 | |
| ETH | 0.05% | $0.066904 | 5,046.9594 | $337.66 | |
| ETH | 0.05% | $5,139.84 | 0.0641 | $329.4 | |
| ETH | 0.05% | <$0.000001 | 2,113,008,495.8687 | $320.42 | |
| ETH | 0.04% | $111.39 | 2.2667 | $252.49 | |
| ETH | 0.04% | $0.30189 | 788.1277 | $237.93 | |
| ETH | 0.03% | $0.074695 | 3,170.4536 | $236.82 | |
| ETH | 0.03% | $1 | 214.2073 | $214.21 | |
| ETH | 0.03% | $69,439.15 | 0.00307165 | $213.29 | |
| ETH | 0.03% | $2,025.01 | 0.1006 | $203.63 | |
| ETH | 0.03% | $0.101119 | 1,824.0913 | $184.45 | |
| ETH | 0.02% | $1 | 155.0758 | $155.08 | |
| ETH | 0.02% | $0.009779 | 14,645.7009 | $143.22 | |
| ETH | 0.02% | $196.91 | 0.717 | $141.19 | |
| ETH | 0.02% | $0.999221 | 140.995 | $140.89 | |
| ETH | 0.02% | $0.999755 | 134.5795 | $134.55 | |
| ETH | 0.02% | $0.263595 | 502.0408 | $132.34 | |
| ETH | 0.02% | $1.18 | 109.885 | $129.66 | |
| ETH | 0.02% | $1.16 | 110.9865 | $128.74 | |
| ETH | 0.02% | $0.785456 | 152.9766 | $120.16 | |
| ETH | 0.02% | $0.999811 | 114.4331 | $114.41 | |
| ETH | 0.02% | $2.19 | 49.0013 | $107.46 | |
| ETH | 0.02% | $69,746 | 0.00152763 | $106.55 | |
| ETH | 0.02% | $0.067687 | 1,530.316 | $103.58 | |
| ETH | 0.01% | $2,198.28 | 0.0449 | $98.68 | |
| ETH | 0.01% | $0.455219 | 207.0211 | $94.24 | |
| ETH | 0.01% | $3.9 | 21.1665 | $82.55 | |
| ETH | 0.01% | $63.1 | 1.2086 | $76.26 | |
| ETH | 0.01% | $0.016224 | 4,650.6278 | $75.45 | |
| ETH | 0.01% | <$0.000001 | 3,370,864,561.9499 | $73.78 | |
| ETH | 0.01% | $1.04 | 66.1187 | $68.83 | |
| ETH | <0.01% | $2,205.31 | 0.0298 | $65.7 | |
| ETH | <0.01% | $69,520.48 | 0.00090474 | $62.9 | |
| ETH | <0.01% | $2,345.36 | 0.0259 | $60.82 | |
| ETH | <0.01% | $0.000003 | 17,744,813.5381 | $58.91 | |
| ETH | <0.01% | $0.000198 | 289,073.517 | $57.31 | |
| ETH | <0.01% | $0.313344 | 174.5298 | $54.69 | |
| ETH | <0.01% | $0.576762 | 94.4227 | $54.46 | |
| ETH | <0.01% | $0.009593 | 5,585.9977 | $53.58 | |
| ETH | <0.01% | $1 | 52.3543 | $52.35 | |
| ETH | <0.01% | $0.999288 | 50.3661 | $50.33 | |
| ETH | <0.01% | $2.16 | 22.9813 | $49.64 | |
| ETH | <0.01% | $0.000682 | 63,332.747 | $43.22 | |
| ETH | <0.01% | $17.15 | 2.493 | $42.75 | |
| ETH | <0.01% | $0.999585 | 41.5041 | $41.49 | |
| ETH | <0.01% | $69,486 | 0.00056804 | $39.47 | |
| ETH | <0.01% | $0.013307 | 2,901.3316 | $38.61 | |
| ETH | <0.01% | $1 | 36.5764 | $36.58 | |
| ETH | <0.01% | $0.002311 | 15,488.0489 | $35.8 | |
| ETH | <0.01% | $1.16 | 30.8359 | $35.77 | |
| ETH | <0.01% | $0.130728 | 259.4618 | $33.92 | |
| ETH | <0.01% | <$0.000001 | 415,040,578.3752 | $33.54 | |
| ETH | <0.01% | $0.994515 | 32.8714 | $32.69 | |
| ETH | <0.01% | $2.04 | 15.6012 | $31.83 | |
| ETH | <0.01% | $1 | 30.879 | $30.88 | |
| ETH | <0.01% | $0.104343 | 295.1003 | $30.79 | |
| ETH | <0.01% | $0.997477 | 30.4427 | $30.37 | |
| ETH | <0.01% | $1.53 | 19.5959 | $29.98 | |
| ETH | <0.01% | $2,283.98 | 0.0122 | $27.96 | |
| ETH | <0.01% | <$0.000001 | 303,576,848.8115 | $27.89 | |
| ETH | <0.01% | $0.256961 | 105.9238 | $27.22 | |
| ETH | <0.01% | $1 | 27.0627 | $27.12 | |
| ETH | <0.01% | $0.022327 | 1,190.8763 | $26.59 | |
| ETH | <0.01% | $0.054858 | 479.918 | $26.33 | |
| ETH | <0.01% | $1.1 | 23.8208 | $26.13 | |
| ETH | <0.01% | $7.56 | 3.4216 | $25.87 | |
| ETH | <0.01% | $0.112037 | 229.5198 | $25.71 | |
| ETH | <0.01% | $0.006072 | 4,201.3924 | $25.51 | |
| ETH | <0.01% | $1.54 | 16.4844 | $25.39 | |
| ETH | <0.01% | $0.112882 | 217.5433 | $24.56 | |
| ETH | <0.01% | $0.002593 | 9,280.49 | $24.07 | |
| ETH | <0.01% | $0.027641 | 865.9631 | $23.94 | |
| ETH | <0.01% | $69,603 | 0.00033854 | $23.56 | |
| ETH | <0.01% | $0.106095 | 221.791 | $23.53 | |
| ETH | <0.01% | $2,025.17 | 0.0116 | $23.52 | |
| ETH | <0.01% | $1.01 | 23.04 | $23.22 | |
| ETH | <0.01% | $0.782473 | 29.6471 | $23.2 | |
| ETH | <0.01% | $1.97 | 11.7006 | $23.05 | |
| ETH | <0.01% | $0.24076 | 94.4696 | $22.74 | |
| ETH | <0.01% | $126.68 | 0.1792 | $22.7 | |
| ETH | <0.01% | $0.010398 | 2,176.8078 | $22.63 | |
| ETH | <0.01% | $1 | 22.4049 | $22.49 | |
| ETH | <0.01% | $0.007617 | 2,914.7999 | $22.2 | |
| ETH | <0.01% | $0.005379 | 4,112.9773 | $22.13 | |
| ETH | <0.01% | $0.000026 | 839,090.6923 | $21.43 | |
| ETH | <0.01% | $2,012.86 | 0.0106 | $21.32 | |
| ETH | <0.01% | $77.6 | 0.266 | $20.64 | |
| ETH | <0.01% | $0.06556 | 314.2232 | $20.6 | |
| ETH | <0.01% | <$0.000001 | 459,976,285.5222 | $20.14 | |
| ETH | <0.01% | $0.69771 | 28.2297 | $19.7 | |
| ETH | <0.01% | $0.08981 | 219.0056 | $19.67 | |
| ETH | <0.01% | $0.14684 | 132.6792 | $19.48 | |
| ETH | <0.01% | $0.120422 | 160.6712 | $19.35 | |
| ETH | <0.01% | $9.05 | 2.116 | $19.15 | |
| ETH | <0.01% | $0.053688 | 344.3343 | $18.49 | |
| ETH | <0.01% | $0.07574 | 242.8481 | $18.39 | |
| ETH | <0.01% | $0.01173 | 1,547.2669 | $18.15 | |
| ETH | <0.01% | $0.693944 | 26.112 | $18.12 | |
| ETH | <0.01% | $0.279931 | 62.9862 | $17.63 | |
| ETH | <0.01% | $115.13 | 0.1478 | $17.01 | |
| ETH | <0.01% | $0.995028 | 17.0146 | $16.93 | |
| ETH | <0.01% | $0.000009 | 1,829,572.3197 | $16.81 | |
| ETH | <0.01% | $1.28 | 13.0097 | $16.65 | |
| ETH | <0.01% | $0.005903 | 2,789.138 | $16.46 | |
| ETH | <0.01% | $0.003952 | 4,144.301 | $16.38 | |
| ETH | <0.01% | $0.005828 | 2,788.3533 | $16.25 | |
| ETH | <0.01% | $0.728243 | 22.2901 | $16.23 | |
| ETH | <0.01% | $0.273265 | 58.7835 | $16.06 | |
| ETH | <0.01% | $0.006625 | 2,393.3235 | $15.86 | |
| ETH | <0.01% | $1.15 | 13.6668 | $15.72 | |
| ETH | <0.01% | <$0.000001 | 2,306,484,069.6601 | $15.58 | |
| ETH | <0.01% | $0.019795 | 782.1298 | $15.48 | |
| ETH | <0.01% | $0.082033 | 187.4709 | $15.38 | |
| ETH | <0.01% | $0.360127 | 41.9563 | $15.11 | |
| ETH | <0.01% | $0.018807 | 799.7589 | $15.04 | |
| ETH | <0.01% | $0.161591 | 90.2115 | $14.58 | |
| ETH | <0.01% | $2,528.56 | 0.00575115 | $14.54 | |
| ETH | <0.01% | $8.4 | 1.7056 | $14.33 | |
| ETH | <0.01% | $0.073469 | 193.3491 | $14.21 | |
| ETH | <0.01% | $0.058988 | 234.7198 | $13.85 | |
| ETH | <0.01% | $0.296246 | 46.2894 | $13.71 | |
| ETH | <0.01% | $69,666 | 0.00019611 | $13.66 | |
| ETH | <0.01% | $0.018427 | 729.5889 | $13.44 | |
| ETH | <0.01% | $0.021731 | 618.4002 | $13.44 | |
| ETH | <0.01% | $1.17 | 11.333 | $13.26 | |
| ETH | <0.01% | $0.000003 | 3,861,477.6831 | $13.24 | |
| ETH | <0.01% | $16.04 | 0.8216 | $13.18 | |
| ETH | <0.01% | $0.000746 | 17,475.3949 | $13.03 | |
| ETH | <0.01% | $0.974108 | 13.2775 | $12.93 | |
| ETH | <0.01% | $2.12 | 6.0269 | $12.78 | |
| ETH | <0.01% | $0.034903 | 358.9472 | $12.53 | |
| ETH | <0.01% | $0.1846 | 66.96 | $12.36 | |
| ETH | <0.01% | $0.01973 | 622.4394 | $12.28 | |
| ETH | <0.01% | $0.000006 | 2,123,105.3676 | $12.27 | |
| ETH | <0.01% | <$0.000001 | 63,690,330.8567 | $12.26 | |
| ETH | <0.01% | $1.28 | 9.511 | $12.17 | |
| ETH | <0.01% | $0.009613 | 1,229.4379 | $11.82 | |
| ETH | <0.01% | $0.026918 | 436.0321 | $11.74 | |
| ETH | <0.01% | $3.2 | 3.6434 | $11.66 | |
| ETH | <0.01% | $0.234918 | 49.4862 | $11.63 | |
| ETH | <0.01% | $248.12 | 0.0468 | $11.6 | |
| ETH | <0.01% | $0.999892 | 11.455 | $11.45 | |
| ETH | <0.01% | $0.005613 | 2,035.3579 | $11.42 | |
| ETH | <0.01% | $3.58 | 3.1834 | $11.39 | |
| ETH | <0.01% | $0.994171 | 11.351 | $11.28 | |
| ETH | <0.01% | $0.000346 | 32,473.5788 | $11.24 | |
| ETH | <0.01% | $110.82 | 0.1013 | $11.22 | |
| ETH | <0.01% | $0.012188 | 910.7746 | $11.1 | |
| ETH | <0.01% | $0.097535 | 111.7854 | $10.9 | |
| ETH | <0.01% | $1.23 | 8.6499 | $10.64 | |
| ETH | <0.01% | $1.29 | 8.1861 | $10.56 | |
| ETH | <0.01% | $1.31 | 7.9908 | $10.47 | |
| ETH | <0.01% | $1 | 10.399 | $10.41 | |
| ETH | <0.01% | $0.051231 | 202.5005 | $10.37 | |
| ETH | <0.01% | $0.030578 | 336.1848 | $10.28 | |
| ETH | <0.01% | $0.163329 | 62.7099 | $10.24 | |
| ETH | <0.01% | $2,169.72 | 0.00470016 | $10.2 | |
| ETH | <0.01% | $0.019931 | 508.1861 | $10.13 | |
| ETH | <0.01% | $0.020279 | 491.9395 | $9.98 | |
| ETH | <0.01% | $94.87 | 0.1048 | $9.95 | |
| ETH | <0.01% | $0.004134 | 2,398.9943 | $9.92 | |
| ETH | <0.01% | $0.411491 | 24.0472 | $9.9 | |
| ETH | <0.01% | $1,919.7 | 0.00512386 | $9.84 | |
| ETH | <0.01% | $1.01 | 9.6327 | $9.75 | |
| ETH | <0.01% | $0.902928 | 10.7731 | $9.73 | |
| ETH | <0.01% | $0.004009 | 2,404.9753 | $9.64 | |
| ETH | <0.01% | $0.01619 | 593.8601 | $9.61 | |
| ETH | <0.01% | $1,753.74 | 0.00542895 | $9.52 | |
| ETH | <0.01% | $0.043882 | 212.0678 | $9.31 | |
| ETH | <0.01% | $0.095342 | 96.2327 | $9.18 | |
| ETH | <0.01% | $1.09 | 8.3733 | $9.15 | |
| ETH | <0.01% | $0.179249 | 50.932 | $9.13 | |
| ETH | <0.01% | $0.17121 | 53.0808 | $9.09 | |
| ETH | <0.01% | $0.002964 | 3,062.9906 | $9.08 | |
| ETH | <0.01% | $111.39 | 0.0811 | $9.04 | |
| ETH | <0.01% | $0.992244 | 9.0762 | $9.01 | |
| ETH | <0.01% | $0.233767 | 38.3683 | $8.97 | |
| ETH | <0.01% | $0.161237 | 55.3223 | $8.92 | |
| ETH | <0.01% | $0.002097 | 4,218.7439 | $8.85 | |
| ETH | <0.01% | $0.105218 | 82.1709 | $8.65 | |
| ETH | <0.01% | $0.001765 | 4,857.1184 | $8.57 | |
| ETH | <0.01% | $0.289237 | 29.3747 | $8.5 | |
| ETH | <0.01% | $1.07 | 7.9318 | $8.45 | |
| ETH | <0.01% | $0.036608 | 229.6868 | $8.41 | |
| ETH | <0.01% | $0.030702 | 271.0684 | $8.32 | |
| ETH | <0.01% | $2,334.04 | 0.00353814 | $8.26 | |
| ETH | <0.01% | $0.070699 | 115.3809 | $8.16 | |
| ETH | <0.01% | $8.22 | 0.9886 | $8.13 | |
| ETH | <0.01% | $9.59 | 0.8465 | $8.12 | |
| ETH | <0.01% | $0.113773 | 70.5438 | $8.03 | |
| ETH | <0.01% | $0.017267 | 461.4094 | $7.97 | |
| ETH | <0.01% | $1.6 | 4.9757 | $7.96 | |
| ETH | <0.01% | $0.160572 | 49.2477 | $7.91 | |
| ETH | <0.01% | $8 | 0.987 | $7.9 | |
| ETH | <0.01% | $1.31 | 6.0242 | $7.89 | |
| ETH | <0.01% | $0.000001 | 8,825,346.0607 | $7.88 | |
| ETH | <0.01% | $0.164075 | 47.7693 | $7.84 | |
| ETH | <0.01% | <$0.000001 | 95,329,242.2242 | $7.77 | |
| ETH | <0.01% | $0.065294 | 118.3501 | $7.73 | |
| ETH | <0.01% | $1 | 7.6039 | $7.6 | |
| ETH | <0.01% | $1.28 | 5.8491 | $7.49 | |
| ETH | <0.01% | $0.005064 | 1,471.5114 | $7.45 | |
| ETH | <0.01% | $0.004079 | 1,812.2544 | $7.39 | |
| ETH | <0.01% | $0.000602 | 11,917.7087 | $7.18 | |
| ETH | <0.01% | $1.16 | 6.1303 | $7.11 | |
| ETH | <0.01% | $0.006997 | 1,013.8108 | $7.09 | |
| ETH | <0.01% | $0.009802 | 722.8083 | $7.09 | |
| ETH | <0.01% | $0.105405 | 66.7495 | $7.04 | |
| ETH | <0.01% | $0.004813 | 1,446.8852 | $6.96 | |
| ETH | <0.01% | $0.000009 | 738,837.3971 | $6.95 | |
| ETH | <0.01% | $0.005523 | 1,254.0384 | $6.93 | |
| ETH | <0.01% | $0.130745 | 52.7244 | $6.89 | |
| ETH | <0.01% | $1.38 | 4.9785 | $6.87 | |
| ETH | <0.01% | $0.000004 | 1,634,241.606 | $6.87 | |
| ETH | <0.01% | <$0.000001 | 813,474,926.3643 | $6.83 | |
| ETH | <0.01% | $6.01 | 1.1277 | $6.78 | |
| ETH | <0.01% | $0.165318 | 40.8651 | $6.76 | |
| ETH | <0.01% | $0.061656 | 107.909 | $6.65 | |
| ETH | <0.01% | $0.04334 | 152.7576 | $6.62 | |
| ETH | <0.01% | <$0.000001 | 41,395,195.8954 | $6.54 | |
| ETH | <0.01% | $0.021188 | 306.5783 | $6.5 | |
| ETH | <0.01% | $0.017165 | 376.856 | $6.47 | |
| ETH | <0.01% | $0.033797 | 190.7461 | $6.45 | |
| ETH | <0.01% | $643.12 | 0.00997964 | $6.42 | |
| ETH | <0.01% | $1 | 6.3998 | $6.4 | |
| ETH | <0.01% | $0.148112 | 42.9636 | $6.36 | |
| ETH | <0.01% | $0.003299 | 1,890.2749 | $6.24 | |
| ETH | <0.01% | $1.41 | 4.3854 | $6.18 | |
| ETH | <0.01% | $0.36492 | 16.9329 | $6.18 | |
| ETH | <0.01% | $0.097691 | 62.9021 | $6.14 | |
| ETH | <0.01% | $0.000165 | 37,041.0636 | $6.13 | |
| ETH | <0.01% | $0.03675 | 165.4668 | $6.08 | |
| ETH | <0.01% | $0.000013 | 446,558.5085 | $6.01 | |
| ETH | <0.01% | $0.002278 | 2,634.8833 | $6 | |
| ETH | <0.01% | $0.302144 | 19.8508 | $6 | |
| ETH | <0.01% | $0.092945 | 64.2564 | $5.97 | |
| ETH | <0.01% | $0.115492 | 51.3231 | $5.93 | |
| ETH | <0.01% | $0.004836 | 1,225.3239 | $5.93 | |
| ETH | <0.01% | <$0.000001 | 849,202,828.8902 | $5.92 | |
| ETH | <0.01% | $0.000001 | 10,592,429.3766 | $5.88 | |
| ETH | <0.01% | $0.000542 | 10,766.9373 | $5.84 | |
| ETH | <0.01% | $0.129764 | 44.6613 | $5.8 | |
| ETH | <0.01% | $0.001608 | 3,594.1832 | $5.78 | |
| ETH | <0.01% | $0.074052 | 77.2525 | $5.72 | |
| ETH | <0.01% | $0.062942 | 89.3801 | $5.63 | |
| ETH | <0.01% | $0.031778 | 175.3579 | $5.57 | |
| ETH | <0.01% | $51.49 | 0.1072 | $5.52 | |
| ETH | <0.01% | $0.225295 | 24.0705 | $5.42 | |
| ETH | <0.01% | $0.011411 | 471.2415 | $5.38 | |
| ETH | <0.01% | $0.606755 | 8.79 | $5.33 | |
| ETH | <0.01% | $0.472414 | 11.289 | $5.33 | |
| ETH | <0.01% | $8.99 | 0.5892 | $5.3 | |
| ETH | <0.01% | $2,499.96 | 0.00210721 | $5.27 | |
| ETH | <0.01% | $0.021384 | 244.79 | $5.23 | |
| ETH | <0.01% | $0.013964 | 373.0438 | $5.21 | |
| ETH | <0.01% | $0.008747 | 587.8212 | $5.14 | |
| ETH | <0.01% | $0.157871 | 32.1843 | $5.08 | |
| ETH | <0.01% | $0.308499 | 16.3412 | $5.04 | |
| ETH | <0.01% | $0.061224 | 81.8573 | $5.01 | |
| ETH | <0.01% | $640.96 | 0.00779275 | $4.99 | |
| ETH | <0.01% | $0.000018 | 269,363.8609 | $4.93 | |
| ETH | <0.01% | $0.000006 | 818,615.9349 | $4.91 | |
| ETH | <0.01% | $0.015681 | 312.9113 | $4.91 | |
| ETH | <0.01% | $0.004085 | 1,200.1076 | $4.9 | |
| ETH | <0.01% | $0.019608 | 247.3648 | $4.85 | |
| ETH | <0.01% | $0.018945 | 255.551 | $4.84 | |
| ETH | <0.01% | $0.553305 | 8.7415 | $4.84 | |
| ETH | <0.01% | $0.001843 | 2,621.5495 | $4.83 | |
| ETH | <0.01% | $0.001023 | 4,700.3199 | $4.81 | |
| ETH | <0.01% | $1.02 | 4.7041 | $4.78 | |
| ETH | <0.01% | $0.990947 | 4.7866 | $4.74 | |
| ETH | <0.01% | $1.13 | 4.1485 | $4.69 | |
| ETH | <0.01% | $0.040173 | 116.4927 | $4.68 | |
| ETH | <0.01% | <$0.000001 | 92,781,031.5116 | $4.67 | |
| ETH | <0.01% | $0.031358 | 148.8779 | $4.67 | |
| ETH | <0.01% | $11.09 | 0.4171 | $4.63 | |
| ETH | <0.01% | $0.000655 | 7,057.9247 | $4.62 | |
| ETH | <0.01% | $4.36 | 1.0559 | $4.6 | |
| ETH | <0.01% | $0.009237 | 498.0661 | $4.6 | |
| ETH | <0.01% | $0.003305 | 1,380.2323 | $4.56 | |
| ETH | <0.01% | $0.020992 | 216.7013 | $4.55 | |
| ETH | <0.01% | $2.97 | 1.494 | $4.44 | |
| ETH | <0.01% | $2.17 | 2.0401 | $4.43 | |
| ETH | <0.01% | <$0.000001 | 1,909,342,256.9495 | $4.41 | |
| ETH | <0.01% | $0.016057 | 273.1001 | $4.39 | |
| ETH | <0.01% | $0.003444 | 1,260.6526 | $4.34 | |
| ETH | <0.01% | $0.001171 | 3,617.9994 | $4.24 | |
| ETH | <0.01% | $0.060697 | 69.4931 | $4.22 | |
| ETH | <0.01% | $0.000005 | 839,376.9907 | $4.19 | |
| ETH | <0.01% | $0.991459 | 4.2225 | $4.19 | |
| ETH | <0.01% | $0.006715 | 623.2554 | $4.19 | |
| ETH | <0.01% | $0.025769 | 160.6316 | $4.14 | |
| ETH | <0.01% | $0.006778 | 608.6307 | $4.13 | |
| ETH | <0.01% | $1.35 | 3.0481 | $4.11 | |
| ETH | <0.01% | $0.135993 | 29.9807 | $4.08 | |
| ETH | <0.01% | $0.000456 | 8,880.9098 | $4.05 | |
| ETH | <0.01% | $0.00 | 0.026 | $0.00 | |
| ETH | <0.01% | $0.000001 | 2,741,426.2194 | $4.03 | |
| ETH | <0.01% | $0.009922 | 403.4307 | $4 | |
| ETH | <0.01% | $0.009933 | 402.1601 | $3.99 | |
| ETH | <0.01% | <$0.000001 | 105,214,946.8539 | $3.98 | |
| ETH | <0.01% | $2.68 | 1.4837 | $3.98 | |
| ETH | <0.01% | $0.103105 | 37.8011 | $3.9 | |
| ETH | <0.01% | $0.000392 | 9,936.9958 | $3.89 | |
| ETH | <0.01% | $0.000001 | 2,832,067.7632 | $3.88 | |
| ETH | <0.01% | $0.00008 | 47,932.4008 | $3.86 | |
| ETH | <0.01% | $0.000004 | 980,782.4849 | $3.83 | |
| ETH | <0.01% | $1.94 | 1.9721 | $3.83 | |
| ETH | <0.01% | $0.020853 | 182.2651 | $3.8 | |
| ETH | <0.01% | $0.000227 | 16,750.6523 | $3.8 | |
| ETH | <0.01% | $0.03743 | 100.2154 | $3.75 | |
| ETH | <0.01% | $2,063.15 | 0.00181269 | $3.74 | |
| ETH | <0.01% | $0.037677 | 98.4445 | $3.71 | |
| ETH | <0.01% | $0.047447 | 78.0831 | $3.7 | |
| ETH | <0.01% | $2,027.61 | 0.00181939 | $3.69 | |
| ETH | <0.01% | $0.004138 | 888.7163 | $3.68 | |
| ETH | <0.01% | $0.002249 | 1,582.4511 | $3.56 | |
| ETH | <0.01% | <$0.000001 | 34,040,213,867.8113 | $3.55 | |
| ETH | <0.01% | $0.998247 | 3.5377 | $3.53 | |
| ETH | <0.01% | $0.19573 | 17.8307 | $3.49 | |
| ETH | <0.01% | $0.110531 | 31.4842 | $3.48 | |
| ETH | <0.01% | $0.100985 | 34.3658 | $3.47 | |
| ETH | <0.01% | $0.005828 | 594.4718 | $3.46 | |
| ETH | <0.01% | $0.000163 | 21,125.75 | $3.45 | |
| ETH | <0.01% | $0.02007 | 171.2451 | $3.44 | |
| ETH | <0.01% | $0.019198 | 178.6925 | $3.43 | |
| ETH | <0.01% | $2,540.05 | 0.00133726 | $3.4 | |
| ETH | <0.01% | $0.082975 | 40.4262 | $3.35 | |
| ETH | <0.01% | $0.000021 | 161,706.8324 | $3.35 | |
| ETH | <0.01% | $0.016054 | 207.8648 | $3.34 | |
| ETH | <0.01% | $0.090365 | 36.6922 | $3.32 | |
| ETH | <0.01% | $0.203638 | 16.2768 | $3.31 | |
| ETH | <0.01% | $0.000036 | 92,698.0078 | $3.31 | |
| ETH | <0.01% | $0.099914 | 32.866 | $3.28 | |
| ETH | <0.01% | $0.000475 | 6,896.2788 | $3.28 | |
| ETH | <0.01% | $0.127086 | 25.7998 | $3.28 | |
| ETH | <0.01% | $0.021598 | 151.761 | $3.28 | |
| ETH | <0.01% | $0.000065 | 50,479.8348 | $3.27 | |
| ETH | <0.01% | $1 | 3.2211 | $3.23 | |
| ETH | <0.01% | $15.51 | 0.2082 | $3.23 | |
| ETH | <0.01% | $0.007373 | 437.2058 | $3.22 | |
| ETH | <0.01% | $1.8 | 1.779 | $3.21 | |
| ETH | <0.01% | $0.004737 | 675.3935 | $3.2 | |
| ETH | <0.01% | $0.008613 | 369.5322 | $3.18 | |
| ETH | <0.01% | <$0.000001 | 3,281,686,334.8625 | $3.17 | |
| ETH | <0.01% | $0.997919 | 3.1734 | $3.17 | |
| ETH | <0.01% | $0.000242 | 13,038.3177 | $3.16 | |
| ETH | <0.01% | $0.020568 | 152.8689 | $3.14 | |
| ETH | <0.01% | $0.549187 | 5.6968 | $3.13 | |
| ETH | <0.01% | $0.000009 | 350,691.3277 | $3.13 | |
| ETH | <0.01% | $0.000047 | 66,266.5702 | $3.12 | |
| ETH | <0.01% | $0.187767 | 16.3941 | $3.08 | |
| ETH | <0.01% | $0.001546 | 1,990.6113 | $3.08 | |
| ETH | <0.01% | $17.68 | 0.1715 | $3.03 | |
| ETH | <0.01% | $0.0053 | 562.2806 | $2.98 | |
| ETH | <0.01% | $0.098025 | 30.3997 | $2.98 | |
| ETH | <0.01% | $0.03683 | 80.6801 | $2.97 | |
| ETH | <0.01% | $0.021859 | 135.1446 | $2.95 | |
| ETH | <0.01% | <$0.000001 | 107,908,568.3272 | $2.95 | |
| ETH | <0.01% | $0.000029 | 100,192.7848 | $2.95 | |
| ETH | <0.01% | $0.011325 | 260.2935 | $2.95 | |
| ETH | <0.01% | $0.974108 | 3.0184 | $2.94 | |
| ETH | <0.01% | $0.012239 | 239.7794 | $2.93 | |
| ETH | <0.01% | $0.037208 | 78.2781 | $2.91 | |
| ETH | <0.01% | $0.000374 | 7,760.1162 | $2.9 | |
| ETH | <0.01% | $0.004022 | 714.9742 | $2.88 | |
| ETH | <0.01% | $0.07378 | 38.936 | $2.87 | |
| ETH | <0.01% | <$0.000001 | 399,185,970.8494 | $2.87 | |
| ETH | <0.01% | $0.010323 | 277.2816 | $2.86 | |
| ETH | <0.01% | $0.000523 | 5,438.3776 | $2.84 | |
| ETH | <0.01% | $0.005111 | 555.3004 | $2.84 | |
| ETH | <0.01% | $0.005606 | 504.0057 | $2.83 | |
| ETH | <0.01% | $1.03 | 2.7381 | $2.82 | |
| ETH | <0.01% | $0.028003 | 100.4971 | $2.81 | |
| ETH | <0.01% | $0.209118 | 13.4441 | $2.81 | |
| ETH | <0.01% | $0.000046 | 60,784.5309 | $2.81 | |
| ETH | <0.01% | $0.094744 | 29.0864 | $2.76 | |
| ETH | <0.01% | $0.001016 | 2,706.7585 | $2.75 | |
| ETH | <0.01% | $0.034209 | 79.9511 | $2.74 | |
| ETH | <0.01% | $0.000089 | 30,519.185 | $2.71 | |
| ETH | <0.01% | $0.006919 | 391.1205 | $2.71 | |
| ETH | <0.01% | $2.27 | 1.1601 | $2.63 | |
| ETH | <0.01% | $0.003869 | 680.3185 | $2.63 | |
| ETH | <0.01% | $0.000699 | 3,700.3397 | $2.59 | |
| ETH | <0.01% | $0.994963 | 2.5941 | $2.58 | |
| ETH | <0.01% | $1.16 | 2.2143 | $2.57 | |
| ETH | <0.01% | $0.289737 | 8.7708 | $2.54 | |
| ETH | <0.01% | $0.007867 | 322.8678 | $2.54 | |
| ETH | <0.01% | $0.001869 | 1,354.2236 | $2.53 | |
| ETH | <0.01% | <$0.000001 | 88,172,289.4717 | $2.51 | |
| ETH | <0.01% | $1 | 2.5004 | $2.51 | |
| ETH | <0.01% | $0.439542 | 5.6893 | $2.5 | |
| ETH | <0.01% | <$0.000001 | 8,829,289,342.7561 | $2.48 | |
| ETH | <0.01% | $0.003419 | 724.023 | $2.48 | |
| ETH | <0.01% | $0.603553 | 4.1015 | $2.48 | |
| ETH | <0.01% | $70,214 | 0.0000348 | $2.44 | |
| ETH | <0.01% | $0.999813 | 2.4419 | $2.44 | |
| ETH | <0.01% | $0.000452 | 5,397.9564 | $2.44 | |
| ETH | <0.01% | $0.005834 | 417.1727 | $2.43 | |
| ETH | <0.01% | $0.206202 | 11.764 | $2.43 | |
| ETH | <0.01% | $88.34 | 0.0272 | $2.4 | |
| ETH | <0.01% | $0.066357 | 36.2155 | $2.4 | |
| ETH | <0.01% | $0.000723 | 3,320.0201 | $2.4 | |
| ETH | <0.01% | $0.022068 | 107.5059 | $2.37 | |
| ETH | <0.01% | $0.00 | 0.00033402 | $0.00 | |
| ETH | <0.01% | $0.091057 | 25.5914 | $2.33 | |
| ETH | <0.01% | $0.290399 | 8 | $2.32 | |
| ETH | <0.01% | $0.096259 | 24.0989 | $2.32 | |
| ETH | <0.01% | <$0.000001 | 2,258,444,768.5326 | $2.32 | |
| ETH | <0.01% | <$0.000001 | 38,798,807.7208 | $2.31 | |
| ETH | <0.01% | $0.020628 | 111.7463 | $2.31 | |
| ETH | <0.01% | $0.000528 | 4,334.6732 | $2.29 | |
| ETH | <0.01% | $0.003398 | 671.163 | $2.28 | |
| ETH | <0.01% | $0.002926 | 777.0816 | $2.27 | |
| ETH | <0.01% | $0.000045 | 50,207.2884 | $2.26 | |
| ETH | <0.01% | $0.000221 | 10,219.3493 | $2.25 | |
| ETH | <0.01% | $0.555221 | 4.0473 | $2.25 | |
| ETH | <0.01% | $0.583038 | 3.793 | $2.21 | |
| ETH | <0.01% | $0.089266 | 24.7557 | $2.21 | |
| ETH | <0.01% | $0.001694 | 1,303.8786 | $2.21 | |
| ETH | <0.01% | $0.001612 | 1,367.5176 | $2.2 | |
| ETH | <0.01% | $0.938144 | 2.349 | $2.2 | |
| ETH | <0.01% | $0.602708 | 3.649 | $2.2 | |
| ETH | <0.01% | $0.001394 | 1,571.5211 | $2.19 | |
| ETH | <0.01% | $0.003489 | 627.3909 | $2.19 | |
| ETH | <0.01% | $0.000059 | 37,100.8501 | $2.19 | |
| ETH | <0.01% | $1.37 | 1.5918 | $2.18 | |
| ETH | <0.01% | $0.000203 | 10,586.5824 | $2.15 | |
| ETH | <0.01% | $0.003393 | 630.5327 | $2.14 | |
| ETH | <0.01% | <$0.000001 | 37,554,251.8221 | $2.13 | |
| ETH | <0.01% | $0.004332 | 492.5668 | $2.13 | |
| ETH | <0.01% | $0.000167 | 12,648.569 | $2.12 | |
| ETH | <0.01% | $0.020222 | 103.8684 | $2.1 | |
| ETH | <0.01% | $191.11 | 0.011 | $2.1 | |
| ETH | <0.01% | $0.280269 | 7.4475 | $2.09 | |
| ETH | <0.01% | $0.00436 | 478.2274 | $2.09 | |
| ETH | <0.01% | <$0.000001 | 543,638,565.5037 | $2.07 | |
| ETH | <0.01% | $0.051232 | 40.3414 | $2.07 | |
| ETH | <0.01% | $2.77 | 0.7459 | $2.07 | |
| ETH | <0.01% | <$0.000001 | 216,724,765.5405 | $2.06 | |
| ETH | <0.01% | $0.000413 | 4,986.2956 | $2.06 | |
| ETH | <0.01% | $0.011983 | 170.8906 | $2.05 | |
| ETH | <0.01% | $0.046202 | 44.2148 | $2.04 | |
| ETH | <0.01% | $0.101581 | 20.0568 | $2.04 | |
| ETH | <0.01% | $0.025727 | 79.1499 | $2.04 | |
| ETH | <0.01% | $0.000587 | 3,424.0722 | $2.01 | |
| ETH | <0.01% | $70,048 | 0.00002857 | $2 | |
| ETH | <0.01% | $2,201.03 | 0.00089802 | $1.98 | |
| ETH | <0.01% | $2,142.62 | 0.0009198 | $1.97 | |
| ETH | <0.01% | $0.000307 | 6,379.2332 | $1.96 | |
| ETH | <0.01% | $0.00 | 131.9154 | $0.00 | |
| ETH | <0.01% | $0.001041 | 1,873.9887 | $1.95 | |
| ETH | <0.01% | $0.000128 | 14,998.793 | $1.92 | |
| ETH | <0.01% | $1.16 | 1.6379 | $1.9 | |
| ETH | <0.01% | $1.16 | 1.6379 | $1.9 | |
| ETH | <0.01% | $0.003068 | 615.2354 | $1.89 | |
| ETH | <0.01% | $0.050292 | 37.3786 | $1.88 | |
| ETH | <0.01% | $0.152533 | 12.2987 | $1.88 | |
| ETH | <0.01% | $0.999765 | 1.8745 | $1.87 | |
| ETH | <0.01% | $57,375 | 0.00003261 | $1.87 | |
| ETH | <0.01% | $0.006674 | 277.7517 | $1.85 | |
| ETH | <0.01% | $0.00074 | 2,476.5525 | $1.83 | |
| ETH | <0.01% | $0.000164 | 11,122.9129 | $1.82 | |
| ETH | <0.01% | $0.000384 | 4,718.0383 | $1.81 | |
| ETH | <0.01% | $0.633296 | 2.8483 | $1.8 | |
| ETH | <0.01% | $0.000318 | 5,667.1115 | $1.8 | |
| ETH | <0.01% | $0.106098 | 16.8902 | $1.79 | |
| ETH | <0.01% | $0.024899 | 71.9094 | $1.79 | |
| ETH | <0.01% | $2,468.91 | 0.00072403 | $1.79 | |
| ETH | <0.01% | $17.98 | 0.0989 | $1.78 | |
| ETH | <0.01% | <$0.000001 | 816,542,859.0527 | $1.78 | |
| ETH | <0.01% | $0.000001 | 1,887,964.0672 | $1.75 | |
| ETH | <0.01% | $0.000165 | 10,606.2962 | $1.75 | |
| ETH | <0.01% | $2,172.39 | 0.00080028 | $1.74 | |
| ETH | <0.01% | $0.007093 | 241.6952 | $1.71 | |
| ETH | <0.01% | $0.012196 | 140.3817 | $1.71 | |
| ETH | <0.01% | $0.003614 | 472.6041 | $1.71 | |
| ETH | <0.01% | $0.000699 | 2,436.6995 | $1.7 | |
| ETH | <0.01% | $0.000002 | 1,054,596.3294 | $1.68 | |
| ETH | <0.01% | $1.23 | 1.35 | $1.66 | |
| ETH | <0.01% | $0.001041 | 1,591.9651 | $1.66 | |
| ETH | <0.01% | $0.015506 | 106.7526 | $1.66 | |
| ETH | <0.01% | $0.410012 | 3.9831 | $1.63 | |
| ETH | <0.01% | $0.000063 | 25,915.3775 | $1.63 | |
| ETH | <0.01% | $0.000166 | 9,640.1763 | $1.6 | |
| ETH | <0.01% | $0.722764 | 2.2097 | $1.6 | |
| ETH | <0.01% | $0.004625 | 343.67 | $1.59 | |
| ETH | <0.01% | $69,547 | 0.00002274 | $1.58 | |
| ETH | <0.01% | $0.019508 | 80.521 | $1.57 | |
| ETH | <0.01% | <$0.000001 | 10,148,371.2822 | $1.57 | |
| ETH | <0.01% | $0.007512 | 208.5389 | $1.57 | |
| ETH | <0.01% | $0.01423 | 110.0045 | $1.57 | |
| ETH | <0.01% | $0.001057 | 1,472.4386 | $1.56 | |
| ETH | <0.01% | $2,018.09 | 0.00076446 | $1.54 | |
| ETH | <0.01% | <$0.000001 | 83,801,141.7134 | $1.54 | |
| ETH | <0.01% | $5.04 | 0.3046 | $1.54 | |
| ETH | <0.01% | $0.191032 | 8.0188 | $1.53 | |
| ETH | <0.01% | $0.002878 | 527.9798 | $1.52 | |
| ETH | <0.01% | $0.00333 | 451.5894 | $1.5 | |
| ETH | <0.01% | $0.003498 | 426.2172 | $1.49 | |
| ETH | <0.01% | $0.004207 | 350.666 | $1.48 | |
| ETH | <0.01% | $0.000474 | 3,106.4379 | $1.47 | |
| ETH | <0.01% | $0.000001 | 1,427,579.1698 | $1.47 | |
| ETH | <0.01% | $0.025847 | 56.6948 | $1.47 | |
| ETH | <0.01% | $0.017292 | 84.4693 | $1.46 | |
| ETH | <0.01% | $0.013382 | 108.4907 | $1.45 | |
| ETH | <0.01% | $0.000115 | 12,550.6256 | $1.44 | |
| ETH | <0.01% | $0.009324 | 153.7674 | $1.43 | |
| ETH | <0.01% | $0.00001 | 140,256.4174 | $1.4 | |
| ETH | <0.01% | $0.0121 | 115.0637 | $1.39 | |
| ETH | <0.01% | <$0.000001 | 1,103,947,774.1253 | $1.35 | |
| ETH | <0.01% | $0.083589 | 16.1692 | $1.35 | |
| ETH | <0.01% | $0.00075 | 1,792.1412 | $1.34 | |
| ETH | <0.01% | $0.104264 | 12.8539 | $1.34 | |
| ETH | <0.01% | $0.00008 | 16,721.4603 | $1.33 | |
| ETH | <0.01% | $0.001185 | 1,123.4556 | $1.33 | |
| ETH | <0.01% | $0.017394 | 76.0883 | $1.32 | |
| ETH | <0.01% | $0.000615 | 2,138.1165 | $1.31 | |
| ETH | <0.01% | $2.11 | 0.6208 | $1.31 | |
| ETH | <0.01% | $0.202236 | 6.4171 | $1.3 | |
| ETH | <0.01% | $0.828831 | 1.5653 | $1.3 | |
| ETH | <0.01% | $0.001591 | 814.1122 | $1.3 | |
| ETH | <0.01% | $0.004244 | 303.8546 | $1.29 | |
| ETH | <0.01% | $69,505 | 0.00001839 | $1.28 | |
| ETH | <0.01% | $0.00 | 0.00002213 | $0.00 | |
| ETH | <0.01% | $0.06356 | 20.0364 | $1.27 | |
| ETH | <0.01% | $0.000136 | 9,267.8885 | $1.26 | |
| ETH | <0.01% | $0.051494 | 24.3071 | $1.25 | |
| ETH | <0.01% | $0.151102 | 8.2768 | $1.25 | |
| ETH | <0.01% | $5.4 | 0.2297 | $1.24 | |
| ETH | <0.01% | $1.83 | 0.6763 | $1.24 | |
| ETH | <0.01% | $0.007067 | 173.82 | $1.23 | |
| ETH | <0.01% | $2,483.47 | 0.00049436 | $1.23 | |
| ETH | <0.01% | $0.266816 | 4.5805 | $1.22 | |
| ETH | <0.01% | $0.01968 | 61.9439 | $1.22 | |
| ETH | <0.01% | $0.000091 | 13,337.2624 | $1.22 | |
| ETH | <0.01% | $0.006947 | 173.4471 | $1.2 | |
| ETH | <0.01% | $0.00215 | 559.6262 | $1.2 | |
| ETH | <0.01% | $0.000373 | 3,196.4979 | $1.19 | |
| ETH | <0.01% | <$0.000001 | 735,621,648.4346 | $1.19 | |
| ETH | <0.01% | $1.27 | 0.93 | $1.18 | |
| ETH | <0.01% | $0.008649 | 135.2304 | $1.17 | |
| ETH | <0.01% | $0.040097 | 29.1644 | $1.17 | |
| ETH | <0.01% | $0.313615 | 3.7148 | $1.17 | |
| ETH | <0.01% | $0.086319 | 13.4964 | $1.16 | |
| ETH | <0.01% | $71.78 | 0.0162 | $1.16 | |
| ETH | <0.01% | $0.002667 | 433.4443 | $1.16 | |
| ETH | <0.01% | $0.006221 | 185.7059 | $1.16 | |
| ETH | <0.01% | $68,795 | 0.00001675 | $1.15 | |
| ETH | <0.01% | $0.000446 | 2,579.2313 | $1.15 | |
| ETH | <0.01% | $0.004777 | 236.7083 | $1.13 | |
| ETH | <0.01% | $0.067039 | 16.7222 | $1.12 | |
| ETH | <0.01% | $0.00147 | 761.0433 | $1.12 | |
| ETH | <0.01% | $0.001767 | 632.9103 | $1.12 | |
| ETH | <0.01% | $0.020294 | 54.8849 | $1.11 | |
| ETH | <0.01% | $0.060702 | 18.3445 | $1.11 | |
| ETH | <0.01% | $0.003983 | 278.956 | $1.11 | |
| ETH | <0.01% | $0.137174 | 8.0918 | $1.11 | |
| ETH | <0.01% | $0.000123 | 8,990.4023 | $1.11 | |
| ETH | <0.01% | $0.002929 | 373.9598 | $1.1 | |
| ETH | <0.01% | $0.287008 | 3.8052 | $1.09 | |
| ETH | <0.01% | <$0.000001 | 628,892,581.1767 | $1.09 | |
| ETH | <0.01% | $0.112164 | 9.6849 | $1.09 | |
| ETH | <0.01% | $0.085939 | 12.6134 | $1.08 | |
| ETH | <0.01% | $0.003532 | 306.217 | $1.08 | |
| ETH | <0.01% | $0.000143 | 7,506.8739 | $1.08 | |
| ETH | <0.01% | $0.000029 | 36,115.175 | $1.06 | |
| ETH | <0.01% | $0.000311 | 3,404.362 | $1.06 | |
| ETH | <0.01% | $0.000001 | 1,278,621.5118 | $1.06 | |
| ETH | <0.01% | $0.000892 | 1,183.881 | $1.06 | |
| ETH | <0.01% | $0.005172 | 201.667 | $1.04 | |
| ETH | <0.01% | $0.014076 | 74.0839 | $1.04 | |
| ETH | <0.01% | $0.000073 | 14,277.6119 | $1.04 | |
| ETH | <0.01% | $0.945708 | 1.0983 | $1.04 | |
| ETH | <0.01% | $0.000916 | 1,130.7807 | $1.04 | |
| ETH | <0.01% | $4.33 | 0.2369 | $1.03 | |
| ETH | <0.01% | <$0.000001 | 5,321,170.5984 | $1.02 | |
| ETH | <0.01% | $0.006831 | 148.8341 | $1.02 | |
| ETH | <0.01% | $0.695779 | 1.4469 | $1.01 | |
| ETH | <0.01% | $0.010304 | 97.6967 | $1.01 | |
| ETH | <0.01% | $0.041292 | 24.3733 | $1.01 | |
| ETH | <0.01% | $0.000045 | 22,218.8002 | $0.9985 | |
| ETH | <0.01% | $0.010314 | 96.6689 | $0.997 | |
| ETH | <0.01% | $0.00056 | 1,777.4512 | $0.9953 | |
| ETH | <0.01% | $0.020283 | 48.664 | $0.987 | |
| ETH | <0.01% | $0.011768 | 83.6398 | $0.9842 | |
| ETH | <0.01% | $0.534113 | 1.8227 | $0.9735 | |
| ETH | <0.01% | $0.01552 | 62.6817 | $0.9728 | |
| ETH | <0.01% | $0.893978 | 1.0752 | $0.9612 | |
| ETH | <0.01% | $0.001335 | 719.9347 | $0.961 | |
| ETH | <0.01% | $0.002755 | 345.304 | $0.9512 | |
| ETH | <0.01% | $62,735.89 | 0.00001507 | $0.9456 | |
| ETH | <0.01% | $0.016684 | 56.1992 | $0.9375 | |
| ETH | <0.01% | $0.041939 | 22.1036 | $0.9269 | |
| ETH | <0.01% | $0.000014 | 63,648.9998 | $0.9063 | |
| ETH | <0.01% | $0.007924 | 114.1608 | $0.9045 | |
| ETH | <0.01% | $1 | 0.9025 | $0.9026 | |
| ETH | <0.01% | $0.038895 | 23.119 | $0.8992 | |
| ETH | <0.01% | $0.000254 | 3,523.3431 | $0.8959 | |
| ETH | <0.01% | $0.203476 | 4.3771 | $0.8906 | |
| ETH | <0.01% | $0.032213 | 27.5134 | $0.8862 | |
| ETH | <0.01% | $0.009693 | 91.3857 | $0.8858 | |
| ETH | <0.01% | $0.068342 | 12.9116 | $0.8824 | |
| ETH | <0.01% | $0.000001 | 627,275.1643 | $0.8821 | |
| ETH | <0.01% | $0.003013 | 292.3058 | $0.8808 | |
| ETH | <0.01% | $0.000097 | 9,019.3059 | $0.8716 | |
| ETH | <0.01% | $0.004491 | 192.7933 | $0.8657 | |
| ETH | <0.01% | $13.85 | 0.0625 | $0.8651 | |
| ETH | <0.01% | $0.047892 | 18.0383 | $0.8638 | |
| ETH | <0.01% | $0.137062 | 6.3011 | $0.8636 | |
| ETH | <0.01% | $0.003848 | 224.2428 | $0.8629 | |
| ETH | <0.01% | $0.002238 | 385.4674 | $0.8626 | |
| ETH | <0.01% | $0.321053 | 2.6869 | $0.8626 | |
| ETH | <0.01% | $0.076526 | 11.2629 | $0.8619 | |
| ETH | <0.01% | $2,144.79 | 0.00039832 | $0.8543 | |
| ETH | <0.01% | $1.33 | 0.6398 | $0.8509 | |
| ETH | <0.01% | $0.0035 | 243.0841 | $0.8508 | |
| ETH | <0.01% | $0.00076 | 1,118.4769 | $0.8495 | |
| ETH | <0.01% | $0.010108 | 83.5148 | $0.8442 | |
| ETH | <0.01% | $0.005527 | 152.2442 | $0.8414 | |
| ETH | <0.01% | $0.000822 | 1,021.8548 | $0.8402 | |
| ETH | <0.01% | $0.01988 | 42.2507 | $0.8399 | |
| ETH | <0.01% | $0.002309 | 363.6077 | $0.8396 | |
| ETH | <0.01% | $0.035031 | 23.7002 | $0.8302 | |
| ETH | <0.01% | $0.088776 | 9.3253 | $0.8278 | |
| ETH | <0.01% | $44.62 | 0.0185 | $0.825 | |
| ETH | <0.01% | $0.002458 | 335.1484 | $0.8238 | |
| ETH | <0.01% | $0.09657 | 8.4474 | $0.8157 | |
| ETH | <0.01% | $0.671971 | 1.1929 | $0.8016 | |
| ETH | <0.01% | $0.002256 | 354.8113 | $0.8004 | |
| ETH | <0.01% | $0.000547 | 1,443.9301 | $0.7892 | |
| ETH | <0.01% | <$0.000001 | 14,979,190.8839 | $0.7867 | |
| ETH | <0.01% | $2,288.82 | 0.00034033 | $0.7789 | |
| ETH | <0.01% | $0.015193 | 51.1157 | $0.7766 | |
| ETH | <0.01% | $1.01 | 0.757 | $0.7607 | |
| ETH | <0.01% | $0.001328 | 572.6653 | $0.7606 | |
| ETH | <0.01% | $0.075776 | 10.0219 | $0.7594 | |
| ETH | <0.01% | $0.014169 | 53.1421 | $0.7529 | |
| ETH | <0.01% | $2.35 | 0.3198 | $0.7514 | |
| ETH | <0.01% | $0.329712 | 2.2756 | $0.7502 | |
| ETH | <0.01% | <$0.000001 | 698,250,856.9288 | $0.7415 | |
| ETH | <0.01% | <$0.000001 | 2,262,522.4994 | $0.7388 | |
| ETH | <0.01% | $0.025808 | 28.2885 | $0.73 | |
| ETH | <0.01% | <$0.000001 | 11,917,555.9583 | $0.7293 | |
| ETH | <0.01% | $0.000174 | 4,175.5332 | $0.7247 | |
| ETH | <0.01% | $0.004972 | 144.8278 | $0.72 | |
| ETH | <0.01% | $4.09 | 0.1759 | $0.7195 | |
| ETH | <0.01% | $2,282.57 | 0.00031482 | $0.7186 | |
| ETH | <0.01% | $0.007494 | 95.611 | $0.7165 | |
| ETH | <0.01% | $0.000007 | 97,850.6318 | $0.7103 | |
| ETH | <0.01% | $0.000401 | 1,763.1168 | $0.7065 | |
| ETH | <0.01% | $0.008416 | 83.4414 | $0.7022 | |
| ETH | <0.01% | $0.000007 | 93,633.0424 | $0.6788 | |
| ETH | <0.01% | $0.0007 | 965.3492 | $0.676 | |
| ETH | <0.01% | $0.000249 | 2,677.5132 | $0.6656 | |
| ETH | <0.01% | $0.029293 | 22.2796 | $0.6526 | |
| ETH | <0.01% | $0.146305 | 4.4585 | $0.6523 | |
| ETH | <0.01% | <$0.000001 | 519,691,192.6843 | $0.6503 | |
| ETH | <0.01% | $0.010723 | 60.6227 | $0.65 | |
| ETH | <0.01% | $0.01815 | 35.6318 | $0.6467 | |
| ETH | <0.01% | $0.00029 | 2,207.4523 | $0.6406 | |
| ETH | <0.01% | $0.998886 | 0.6399 | $0.6391 | |
| ETH | <0.01% | $11.18 | 0.0572 | $0.6389 | |
| ETH | <0.01% | $0.000384 | 1,661.5353 | $0.6373 | |
| ETH | <0.01% | <$0.000001 | 42,409,293.6098 | $0.6295 | |
| ETH | <0.01% | $119.54 | 0.00520088 | $0.6217 | |
| ETH | <0.01% | $0.001706 | 363.5963 | $0.6201 | |
| ETH | <0.01% | $0.00 | 24.955 | $0.00 | |
| ETH | <0.01% | $0.000419 | 1,475.7482 | $0.6185 | |
| ETH | <0.01% | $0.001078 | 572.6136 | $0.617 | |
| ETH | <0.01% | $0.001977 | 310.7259 | $0.6144 | |
| ETH | <0.01% | $225.72 | 0.0027219 | $0.6143 | |
| ETH | <0.01% | $0.006212 | 97.5376 | $0.6059 | |
| ETH | <0.01% | $0.087091 | 6.9261 | $0.6031 | |
| ETH | <0.01% | $0.0406 | 14.7479 | $0.5987 | |
| ETH | <0.01% | $0.009681 | 61.7049 | $0.5973 | |
| ETH | <0.01% | $0.017796 | 33.1139 | $0.5892 | |
| ETH | <0.01% | $69,718 | 0.00000844 | $0.5884 | |
| ETH | <0.01% | $0.023638 | 24.8597 | $0.5876 | |
| ETH | <0.01% | $0.002239 | 262.0382 | $0.5867 | |
| ETH | <0.01% | $0.000067 | 8,718.7428 | $0.5822 | |
| ETH | <0.01% | <$0.000001 | 2,264,785.9077 | $0.5786 | |
| ETH | <0.01% | $0.000092 | 6,268.6966 | $0.5784 | |
| ETH | <0.01% | $0.000001 | 510,628.7741 | $0.5728 | |
| ETH | <0.01% | $0.321053 | 1.7836 | $0.5726 | |
| ETH | <0.01% | $0.001024 | 559.0974 | $0.5726 | |
| ETH | <0.01% | $0.226178 | 2.5191 | $0.5697 | |
| ETH | <0.01% | $0.0014 | 404.293 | $0.5658 | |
| ETH | <0.01% | <$0.000001 | 4,934,347.2219 | $0.5635 | |
| ETH | <0.01% | $0.020971 | 26.8199 | $0.5624 | |
| ETH | <0.01% | $2,166.7 | 0.00025945 | $0.5621 | |
| ETH | <0.01% | $0.005223 | 107.4345 | $0.5611 | |
| ETH | <0.01% | <$0.000001 | 9,865,956.8185 | $0.5591 | |
| ETH | <0.01% | $0.000412 | 1,354.8217 | $0.5584 | |
| ETH | <0.01% | $0.00524 | 105.753 | $0.5541 | |
| ETH | <0.01% | $0.524667 | 1.0479 | $0.5497 | |
| ETH | <0.01% | $2,256.69 | 0.00024254 | $0.5473 | |
| ETH | <0.01% | $0.007087 | 77.2183 | $0.5472 | |
| ETH | <0.01% | $0.017926 | 30.4938 | $0.5466 | |
| ETH | <0.01% | $3.23 | 0.1692 | $0.5465 | |
| ETH | <0.01% | $0.000478 | 1,138.4178 | $0.5438 | |
| ETH | <0.01% | $0.043906 | 12.3376 | $0.5416 | |
| ETH | <0.01% | $0.08202 | 6.5476 | $0.537 | |
| ETH | <0.01% | $0.015848 | 33.8648 | $0.5366 | |
| ETH | <0.01% | $0.016857 | 31.8145 | $0.5362 | |
| ETH | <0.01% | $2,154.19 | 0.00024709 | $0.5322 | |
| ETH | <0.01% | $0.018527 | 28.6402 | $0.5306 | |
| ETH | <0.01% | $0.040669 | 12.996 | $0.5285 | |
| ETH | <0.01% | $0.108393 | 4.8263 | $0.5231 | |
| ETH | <0.01% | $0.003833 | 136.2814 | $0.5223 | |
| ETH | <0.01% | $1 | 0.521 | $0.521 | |
| ETH | <0.01% | $0.001378 | 373.0895 | $0.5139 | |
| ETH | <0.01% | $0.003253 | 157.706 | $0.513 | |
| ETH | <0.01% | $0.001939 | 262.1237 | $0.5081 | |
| ETH | <0.01% | $0.927018 | 0.5458 | $0.506 | |
| ETH | <0.01% | $1.01 | 0.4999 | $0.5029 | |
| ETH | <0.01% | $0.085249 | 5.8844 | $0.5016 | |
| ETH | <0.01% | $0.292725 | 1.7134 | $0.5015 | |
| ETH | <0.01% | $0.384665 | 1.3016 | $0.5006 | |
| ETH | <0.01% | $0.006822 | 73.2655 | $0.4998 | |
| ETH | <0.01% | $12.66 | 0.0387 | $0.49 | |
| ETH | <0.01% | $0.000169 | 2,886.351 | $0.4873 | |
| ETH | <0.01% | $0.11778 | 4.129 | $0.4863 | |
| ETH | <0.01% | $1.66 | 0.2927 | $0.4858 | |
| ETH | <0.01% | $0.000256 | 1,878.0825 | $0.4805 | |
| ETH | <0.01% | $0.000494 | 968.965 | $0.4786 | |
| ETH | <0.01% | $0.263351 | 1.8035 | $0.4749 | |
| ETH | <0.01% | $13.27 | 0.0355 | $0.4707 | |
| ETH | <0.01% | $0.018854 | 24.6847 | $0.4654 | |
| ETH | <0.01% | $0.0003 | 1,549.1841 | $0.4654 | |
| ETH | <0.01% | $0.000002 | 214,793.9033 | $0.4639 | |
| ETH | <0.01% | $0.00 | 0.6051 | $0.00 | |
| ETH | <0.01% | $0.104077 | 4.4148 | $0.4594 | |
| ETH | <0.01% | <$0.000001 | 1,904,337.7244 | $0.4571 | |
| ETH | <0.01% | $0.002804 | 162.9478 | $0.4569 | |
| ETH | <0.01% | $0.000689 | 662.8869 | $0.4567 | |
| ETH | <0.01% | $0.255337 | 1.7645 | $0.4505 | |
| ETH | <0.01% | <$0.000001 | 2,755,286,272.7372 | $0.4492 | |
| ETH | <0.01% | $0.001311 | 339.6616 | $0.4452 | |
| ETH | <0.01% | $0.052437 | 8.4618 | $0.4437 | |
| ETH | <0.01% | $0.01951 | 22.7099 | $0.443 | |
| ETH | <0.01% | <$0.000001 | 12,275,635,976.0232 | $0.4378 | |
| ETH | <0.01% | $0.000001 | 331,012.3692 | $0.4372 | |
| ETH | <0.01% | $0.000048 | 9,184.5829 | $0.4368 | |
| ETH | <0.01% | $0.000346 | 1,263.9415 | $0.4367 | |
| ETH | <0.01% | $0.010361 | 41.8416 | $0.4335 | |
| ETH | <0.01% | $0.000046 | 9,516.6322 | $0.4334 | |
| ETH | <0.01% | <$0.000001 | 256,563,690.037 | $0.433 | |
| ETH | <0.01% | <$0.000001 | 3,866,995.5078 | $0.4326 | |
| ETH | <0.01% | $0.001154 | 370.1004 | $0.427 | |
| ETH | <0.01% | $0.009466 | 45.0772 | $0.4266 | |
| ETH | <0.01% | $5.65 | 0.0751 | $0.4242 | |
| ETH | <0.01% | $0.001768 | 236.0371 | $0.4173 | |
| ETH | <0.01% | $0.001017 | 402.7606 | $0.4096 | |
| ETH | <0.01% | $0.126992 | 3.2204 | $0.4089 | |
| ETH | <0.01% | $0.002878 | 139.9691 | $0.4028 | |
| ETH | <0.01% | $0.090755 | 4.4159 | $0.4007 | |
| ETH | <0.01% | $0.000001 | 569,538.5184 | $0.3979 | |
| ETH | <0.01% | $0.540075 | 0.7339 | $0.3963 | |
| ETH | <0.01% | $0.000003 | 141,250.6505 | $0.3955 | |
| ETH | <0.01% | $0.000001 | 711,365.9576 | $0.393 | |
| ETH | <0.01% | $0.00006 | 6,550.9119 | $0.3921 | |
| ETH | <0.01% | $0.095573 | 4.1006 | $0.3919 | |
| ETH | <0.01% | $0.104719 | 3.7379 | $0.3914 | |
| ETH | <0.01% | $0.004205 | 93.0245 | $0.3911 | |
| ETH | <0.01% | $0.008338 | 46.7627 | $0.3899 | |
| ETH | <0.01% | $0.002281 | 170.5398 | $0.389 | |
| ETH | <0.01% | $0.007356 | 52.8532 | $0.3887 | |
| ETH | <0.01% | $1,306.76 | 0.00029638 | $0.3873 | |
| ETH | <0.01% | $0.000055 | 7,102.2808 | $0.3872 | |
| ETH | <0.01% | $0.00623 | 61.5961 | $0.3837 | |
| ETH | <0.01% | $0.021164 | 18.0363 | $0.3817 | |
| ETH | <0.01% | $0.142374 | 2.6718 | $0.3803 | |
| ETH | <0.01% | $0.000167 | 2,263.6298 | $0.3777 | |
| ETH | <0.01% | $2,148.87 | 0.00017501 | $0.376 | |
| ETH | <0.01% | $0.005101 | 73.3492 | $0.3741 | |
| ETH | <0.01% | $3.35 | 0.1114 | $0.3731 | |
| ETH | <0.01% | <$0.000001 | 12,669,455.4032 | $0.3726 | |
| ETH | <0.01% | $0.000008 | 48,844.0185 | $0.3726 | |
| ETH | <0.01% | $0.147393 | 2.5089 | $0.3697 | |
| ETH | <0.01% | $0.0031 | 117.4284 | $0.364 | |
| ETH | <0.01% | $1 | 0.3636 | $0.3635 | |
| ETH | <0.01% | <$0.000001 | 2,010,245.0006 | $0.3615 | |
| ETH | <0.01% | $0.007828 | 45.8971 | $0.3592 | |
| ETH | <0.01% | $0.004902 | 72.9903 | $0.3577 | |
| ETH | <0.01% | $0.00 | 590.1016 | $0.00 | |
| ETH | <0.01% | $0.000106 | 3,344.1063 | $0.3534 | |
| ETH | <0.01% | $0.007757 | 45.4227 | $0.3523 | |
| ETH | <0.01% | $0.061175 | 5.759 | $0.3523 | |
| ETH | <0.01% | <$0.000001 | 2,782,843.9791 | $0.3518 | |
| ETH | <0.01% | $0.098396 | 3.5633 | $0.3506 | |
| ETH | <0.01% | $0.008716 | 39.8941 | $0.3477 | |
| ETH | <0.01% | $0.000055 | 6,380.0479 | $0.3477 | |
| ETH | <0.01% | $4,586.52 | 0.00007457 | $0.342 | |
| ETH | <0.01% | $0.179989 | 1.8989 | $0.3417 | |
| ETH | <0.01% | $0.054324 | 6.2764 | $0.3409 | |
| ETH | <0.01% | $0.077991 | 4.3639 | $0.3403 | |
| ETH | <0.01% | $0.038017 | 8.8858 | $0.3378 | |
| ETH | <0.01% | <$0.000001 | 422,371,175.1789 | $0.3343 | |
| ETH | <0.01% | $0.000002 | 149,326.4338 | $0.3315 | |
| ETH | <0.01% | $0.006925 | 47.784 | $0.3308 | |
| ETH | <0.01% | $0.000729 | 450.4167 | $0.3282 | |
| ETH | <0.01% | $0.001642 | 198.8919 | $0.3265 | |
| ETH | <0.01% | <$0.000001 | 633,347,294.7121 | $0.324 | |
| ETH | <0.01% | $0.000096 | 3,362.9232 | $0.3216 | |
| ETH | <0.01% | $0.00004 | 7,949.9307 | $0.3214 | |
| ETH | <0.01% | $0.001192 | 268.0615 | $0.3195 | |
| ETH | <0.01% | $0.000006 | 52,509.7007 | $0.3184 | |
| ETH | <0.01% | $2,024.79 | 0.00015555 | $0.3149 | |
| ETH | <0.01% | $0.000152 | 2,064.4671 | $0.3137 | |
| ETH | <0.01% | $0.000089 | 3,504.8123 | $0.3136 | |
| ETH | <0.01% | $70,599 | 0.00000443 | $0.3127 | |
| ETH | <0.01% | $0.000001 | 233,676.4539 | $0.3095 | |
| ETH | <0.01% | $0.000225 | 1,358.7563 | $0.3059 | |
| ETH | <0.01% | $0.002435 | 125.1137 | $0.3046 | |
| ETH | <0.01% | $0.97731 | 0.3112 | $0.3041 | |
| ETH | <0.01% | $0.000917 | 327.1079 | $0.2998 | |
| ETH | <0.01% | $0.001274 | 231.3233 | $0.2946 | |
| ETH | <0.01% | $2,498.32 | 0.00011751 | $0.2935 | |
| ETH | <0.01% | $0.006346 | 45.8069 | $0.2907 | |
| ETH | <0.01% | $0.002848 | 101.2489 | $0.2883 | |
| ETH | <0.01% | $0.007794 | 36.6024 | $0.2852 | |
| ETH | <0.01% | $0.000092 | 3,051.5165 | $0.2811 | |
| ETH | <0.01% | $0.022149 | 12.6212 | $0.2795 | |
| ETH | <0.01% | $0.001337 | 208.9673 | $0.2793 | |
| ETH | <0.01% | <$0.000001 | 2,381,710,725.254 | $0.2789 | |
| ETH | <0.01% | $0.003872 | 71.9014 | $0.2784 | |
| ETH | <0.01% | $0.385678 | 0.7213 | $0.2781 | |
| ETH | <0.01% | $0.011568 | 24.0354 | $0.278 | |
| ETH | <0.01% | $0.000023 | 12,209.1136 | $0.2777 | |
| ETH | <0.01% | $0.002077 | 133.0298 | $0.2763 | |
| ETH | <0.01% | $0.019486 | 14.1477 | $0.2756 | |
| ETH | <0.01% | $0.000705 | 389.7636 | $0.2746 | |
| ETH | <0.01% | $0.00208 | 132.0031 | $0.2745 | |
| ETH | <0.01% | $0.421006 | 0.6502 | $0.2737 | |
| ETH | <0.01% | $0.024455 | 11.1857 | $0.2735 | |
| ETH | <0.01% | $0.000021 | 13,101.4185 | $0.2729 | |
| ETH | <0.01% | $0.000041 | 6,570.7971 | $0.2724 | |
| ETH | <0.01% | $0.053087 | 5.1304 | $0.2723 | |
| ETH | <0.01% | $0.000894 | 303.9069 | $0.2717 | |
| ETH | <0.01% | $0.002249 | 120.7397 | $0.2715 | |
| ETH | <0.01% | $0.006193 | 42.7112 | $0.2645 | |
| ETH | <0.01% | $0.039869 | 6.6128 | $0.2636 | |
| ETH | <0.01% | $0.084418 | 3.09 | $0.2608 | |
| ETH | <0.01% | $0.000358 | 722.4259 | $0.2587 | |
| ETH | <0.01% | $0.000001 | 207,109.589 | $0.2547 | |
| ETH | <0.01% | $0.00797 | 31.822 | $0.2536 | |
| ETH | <0.01% | $1.03 | 0.2463 | $0.2529 | |
| ETH | <0.01% | $0.00175 | 143.1916 | $0.2505 | |
| ETH | <0.01% | $0.00234 | 107.0775 | $0.2505 | |
| ETH | <0.01% | $0.108993 | 2.2908 | $0.2496 | |
| ETH | <0.01% | $0.001131 | 219.6598 | $0.2484 | |
| ETH | <0.01% | $0.001471 | 168.3799 | $0.2476 | |
| ETH | <0.01% | $0.000038 | 6,441.933 | $0.2455 | |
| ETH | <0.01% | $0.012886 | 18.9218 | $0.2438 | |
| ETH | <0.01% | $0.000312 | 779.4354 | $0.243 | |
| ETH | <0.01% | $0.004492 | 53.5047 | $0.2403 | |
| ETH | <0.01% | $0.000876 | 274.2526 | $0.2402 | |
| ETH | <0.01% | $0.001202 | 199.7278 | $0.24 | |
| ETH | <0.01% | $0.062923 | 3.8056 | $0.2394 | |
| ETH | <0.01% | $0.000268 | 890.6984 | $0.239 | |
| ETH | <0.01% | $0.009837 | 24.2126 | $0.2381 | |
| ETH | <0.01% | $0.002811 | 83.2073 | $0.2339 | |
| ETH | <0.01% | $0.038895 | 5.9773 | $0.2324 | |
| ETH | <0.01% | $0.034546 | 6.7143 | $0.2319 | |
| ETH | <0.01% | $0.000485 | 473.3108 | $0.2294 | |
| ETH | <0.01% | $0.150904 | 1.5117 | $0.2281 | |
| ETH | <0.01% | $0.000673 | 336.5574 | $0.2264 | |
| ETH | <0.01% | $0.00414 | 54.411 | $0.2252 | |
| ETH | <0.01% | $0.000006 | 34,722.5759 | $0.2236 | |
| ETH | <0.01% | $0.016048 | 13.8214 | $0.2218 | |
| ETH | <0.01% | $0.001642 | 135.0588 | $0.2217 | |
| ETH | <0.01% | $0.028609 | 7.7516 | $0.2217 | |
| ETH | <0.01% | $0.000172 | 1,286.2833 | $0.2217 | |
| ETH | <0.01% | $0.000903 | 245.0533 | $0.2212 | |
| ETH | <0.01% | $0.000217 | 1,016.949 | $0.2206 | |
| ETH | <0.01% | $0.0003 | 733.5491 | $0.2202 | |
| ETH | <0.01% | $0.000032 | 6,872.9769 | $0.2199 | |
| ETH | <0.01% | $0.48601 | 0.4495 | $0.2184 | |
| ETH | <0.01% | $0.000305 | 714.9695 | $0.2181 | |
| ETH | <0.01% | $0.171672 | 1.2582 | $0.216 | |
| ETH | <0.01% | $0.000278 | 775.0748 | $0.2156 | |
| ETH | <0.01% | <$0.000001 | 4,568,463.5058 | $0.2156 | |
| ETH | <0.01% | $0.000047 | 4,546.8826 | $0.215 | |
| ETH | <0.01% | $0.006653 | 32.3303 | $0.215 | |
| ETH | <0.01% | $0.000003 | 64,422.1661 | $0.2114 | |
| ETH | <0.01% | <$0.000001 | 3,275,283,523.4299 | $0.211 | |
| ETH | <0.01% | $0.000019 | 11,112.834 | $0.2108 | |
| ETH | <0.01% | $0.137424 | 1.5197 | $0.2088 | |
| ETH | <0.01% | $0.000022 | 9,360.7025 | $0.2085 | |
| ETH | <0.01% | $1.02 | 0.2012 | $0.2042 | |
| ETH | <0.01% | $0.003769 | 54.0979 | $0.2038 | |
| ETH | <0.01% | $0.001973 | 103.2776 | $0.2037 | |
| ETH | <0.01% | $40.66 | 0.00500298 | $0.2034 | |
| ETH | <0.01% | <$0.000001 | 1,948,745.9533 | $0.2029 | |
| ETH | <0.01% | $0.000692 | 292.8069 | $0.2025 | |
| ETH | <0.01% | $0.00276 | 72.5522 | $0.2002 | |
| ETH | <0.01% | $0.001389 | 143.7216 | $0.1996 | |
| ETH | <0.01% | $0.000244 | 817.2922 | $0.1993 | |
| ETH | <0.01% | $195.43 | 0.00102003 | $0.1993 | |
| ETH | <0.01% | $0.002739 | 72.3559 | $0.1981 | |
| ETH | <0.01% | $0.022645 | 8.7427 | $0.1979 | |
| ETH | <0.01% | $0.011969 | 16.4987 | $0.1974 | |
| ETH | <0.01% | $0.002611 | 75.1192 | $0.1961 | |
| ETH | <0.01% | $0.000001 | 175,837.0409 | $0.1951 | |
| ETH | <0.01% | $0.045621 | 4.2591 | $0.1943 | |
| ETH | <0.01% | <$0.000001 | 532,078.9884 | $0.1928 | |
| ETH | <0.01% | $0.018925 | 10.1771 | $0.1926 | |
| ETH | <0.01% | $0.000057 | 3,406.9705 | $0.1925 | |
| ETH | <0.01% | <$0.000001 | 19,798,178.596 | $0.1924 | |
| ETH | <0.01% | $0.002737 | 69.353 | $0.1898 | |
| ETH | <0.01% | <$0.000001 | 435,969,211.2955 | $0.1874 | |
| ETH | <0.01% | $0.000005 | 36,992.0419 | $0.186 | |
| ETH | <0.01% | $0.022655 | 8.2124 | $0.186 | |
| ETH | <0.01% | $0.131838 | 1.4028 | $0.1849 | |
| ETH | <0.01% | $0.998878 | 0.1849 | $0.1846 | |
| ETH | <0.01% | $0.000016 | 11,248.2481 | $0.1839 | |
| ETH | <0.01% | <$0.000001 | 277,569,252.376 | $0.1802 | |
| ETH | <0.01% | $0.000428 | 421.1317 | $0.1802 | |
| ETH | <0.01% | $0.01488 | 11.9864 | $0.1783 | |
| ETH | <0.01% | $0.00017 | 1,046.9154 | $0.1782 | |
| ETH | <0.01% | $0.00002 | 8,877.1633 | $0.1778 | |
| ETH | <0.01% | $0.381836 | 0.4611 | $0.176 | |
| ETH | <0.01% | $0.000119 | 1,456.6412 | $0.1733 | |
| ETH | <0.01% | $0.000001 | 173,294.6031 | $0.1732 | |
| ETH | <0.01% | $0.003095 | 55.5606 | $0.1719 | |
| ETH | <0.01% | $0.000164 | 1,043.1424 | $0.1713 | |
| ETH | <0.01% | $0.062406 | 2.7319 | $0.1704 | |
| ETH | <0.01% | $0.000013 | 12,695.6031 | $0.1697 | |
| ETH | <0.01% | $0.011893 | 14.2218 | $0.1691 | |
| ETH | <0.01% | $0.0044 | 38.4202 | $0.169 | |
| ETH | <0.01% | $0.001713 | 98.3573 | $0.1684 | |
| ETH | <0.01% | $0.000007 | 24,691.592 | $0.1644 | |
| ETH | <0.01% | $1 | 0.1604 | $0.1603 | |
| ETH | <0.01% | $0.000185 | 856.9548 | $0.1585 | |
| ETH | <0.01% | $0.000281 | 564.6148 | $0.1585 | |
| ETH | <0.01% | $0.00125 | 125.7211 | $0.157 | |
| ETH | <0.01% | <$0.000001 | 30,784,747.8013 | $0.1568 | |
| ETH | <0.01% | $0.000603 | 259.4271 | $0.1564 | |
| ETH | <0.01% | $0.026376 | 5.8341 | $0.1538 | |
| ETH | <0.01% | $0.007242 | 21.1844 | $0.1534 | |
| ETH | <0.01% | $0.048642 | 3.1345 | $0.1524 | |
| ETH | <0.01% | $0.000011 | 13,989.111 | $0.1524 | |
| ETH | <0.01% | <$0.000001 | 325,621,916.4999 | $0.152 | |
| ETH | <0.01% | $0.000155 | 979.2037 | $0.1519 | |
| ETH | <0.01% | $6.97 | 0.0217 | $0.1512 | |
| ETH | <0.01% | $0.000712 | 210.915 | $0.15 | |
| ETH | <0.01% | $0.00444 | 33.6536 | $0.1494 | |
| ETH | <0.01% | $0.713721 | 0.2077 | $0.1482 | |
| ETH | <0.01% | <$0.000001 | 362,285,639.6352 | $0.1469 | |
| ETH | <0.01% | $0.084195 | 1.733 | $0.1459 | |
| ETH | <0.01% | <$0.000001 | 454,194.5048 | $0.1444 | |
| ETH | <0.01% | $0.011756 | 12.2828 | $0.1443 | |
| ETH | <0.01% | $0.000028 | 5,154.0433 | $0.1433 | |
| ETH | <0.01% | $0.008688 | 16.2601 | $0.1412 | |
| ETH | <0.01% | $0.000179 | 784.3827 | $0.1401 | |
| ETH | <0.01% | $0.000108 | 1,293.2736 | $0.14 | |
| ETH | <0.01% | $1.4 | 0.0983 | $0.1376 | |
| ETH | <0.01% | $0.00399 | 34.3089 | $0.1369 | |
| ETH | <0.01% | $0.002932 | 46.6232 | $0.1367 | |
| ETH | <0.01% | $0.001205 | 112.0592 | $0.135 | |
| ETH | <0.01% | $0.000011 | 12,273.5649 | $0.1339 | |
| ETH | <0.01% | $0.144138 | 0.9291 | $0.1339 | |
| ETH | <0.01% | $0.000089 | 1,496.6926 | $0.1338 | |
| ETH | <0.01% | $0.000039 | 3,439.4762 | $0.1325 | |
| ETH | <0.01% | $0.021733 | 6.0787 | $0.1321 | |
| ETH | <0.01% | $0.001668 | 78.3651 | $0.1307 | |
| ETH | <0.01% | $0.189606 | 0.6854 | $0.1299 | |
| ETH | <0.01% | $0.020384 | 6.363 | $0.1297 | |
| ETH | <0.01% | <$0.000001 | 829,431.8427 | $0.1295 | |
| ETH | <0.01% | $0.89411 | 0.1448 | $0.1294 | |
| ETH | <0.01% | $0.24607 | 0.5102 | $0.1255 | |
| ETH | <0.01% | $0.000099 | 1,274.6864 | $0.1255 | |
| ETH | <0.01% | $0.000986 | 125.6613 | $0.1238 | |
| ETH | <0.01% | $0.082211 | 1.5038 | $0.1236 | |
| ETH | <0.01% | $0.000941 | 128.2007 | $0.1205 | |
| ETH | <0.01% | $0.000003 | 36,237.9993 | $0.1195 | |
| ETH | <0.01% | $0.000307 | 387.5004 | $0.1191 | |
| ETH | <0.01% | $0.00 | 0.01 | $0.00 | |
| ETH | <0.01% | $0.001039 | 113.5522 | $0.1179 | |
| ETH | <0.01% | $1.06 | 0.1115 | $0.1179 | |
| ETH | <0.01% | $0.000019 | 6,228.7809 | $0.1177 | |
| ETH | <0.01% | $0.000017 | 6,893.1869 | $0.1172 | |
| ETH | <0.01% | $0.008261 | 14.1562 | $0.1169 | |
| ETH | <0.01% | $0.001125 | 103.9677 | $0.1169 | |
| ETH | <0.01% | $1.04 | 0.1114 | $0.1162 | |
| ETH | <0.01% | $0.000583 | 199.2517 | $0.1161 | |
| ETH | <0.01% | $0.003679 | 31.4948 | $0.1158 | |
| ETH | <0.01% | $0.02654 | 4.3576 | $0.1156 | |
| ETH | <0.01% | $0.003934 | 29.1858 | $0.1148 | |
| ETH | <0.01% | $1.54 | 0.0744 | $0.1145 | |
| ETH | <0.01% | $0.005807 | 19.7276 | $0.1145 | |
| ETH | <0.01% | <$0.000001 | 2,282,753.136 | $0.114 | |
| ETH | <0.01% | $0.000003 | 33,914.1316 | $0.114 | |
| ETH | <0.01% | $0.00209 | 54.3922 | $0.1136 | |
| ETH | <0.01% | $0.000008 | 13,702.6037 | $0.1135 | |
| ETH | <0.01% | $0.002808 | 40.3705 | $0.1133 | |
| ETH | <0.01% | $0.000155 | 726.8405 | $0.1126 | |
| ETH | <0.01% | $0.077608 | 1.4477 | $0.1123 | |
| ETH | <0.01% | $0.00034 | 330.0052 | $0.112 | |
| ETH | <0.01% | $0.000031 | 3,564.6621 | $0.1119 | |
| ETH | <0.01% | $0.005329 | 20.9008 | $0.1113 | |
| ETH | <0.01% | <$0.000001 | 70,853,070.5 | $0.1111 | |
| ETH | <0.01% | $0.047245 | 2.3262 | $0.1099 | |
| ETH | <0.01% | $0.000024 | 4,549.1982 | $0.1097 | |
| ETH | <0.01% | $0.004541 | 24.0648 | $0.1092 | |
| ETH | <0.01% | <$0.000001 | 223,721,250.2458 | $0.109 | |
| ETH | <0.01% | $0.000881 | 122.5911 | $0.108 | |
| ETH | <0.01% | $1 | 0.1075 | $0.1074 | |
| ETH | <0.01% | $0.001086 | 98.6321 | $0.1071 | |
| ETH | <0.01% | $0.000861 | 123.3424 | $0.1062 | |
| ETH | <0.01% | $1.19 | 0.0888 | $0.1056 | |
| ETH | <0.01% | $0.038218 | 2.712 | $0.1036 | |
| ETH | <0.01% | $0.000149 | 695.3326 | $0.1032 | |
| ETH | <0.01% | $0.000915 | 111.4251 | $0.1019 | |
| ETH | <0.01% | $184.97 | 0.00055038 | $0.1018 | |
| ETH | <0.01% | $0.011139 | 9.1137 | $0.1015 | |
| ETH | <0.01% | $0.11392 | 0.8862 | $0.1009 | |
| ETH | <0.01% | $39.49 | 0.00255115 | $0.1007 | |
| ARB | 25.25% | $0.00 | 38,566,892.1577 | $0.00 | |
| ARB | 0.89% | $0.999998 | 6,016.3599 | $6,016.35 | |
| ARB | 0.75% | $76,177 | 0.0666 | $5,071.82 | |
| ARB | 0.62% | $0.998438 | 4,233.5777 | $4,226.96 | |
| ARB | 0.16% | $2,258.88 | 0.4824 | $1,089.75 | |
| ARB | 0.14% | $2,037.91 | 0.4503 | $917.74 | |
| ARB | 0.04% | $0.999998 | 255.9615 | $255.96 | |
| ARB | 0.02% | $9.01 | 16.5672 | $149.27 | |
| ARB | 0.02% | $2,767.96 | 0.0483 | $133.71 | |
| ARB | 0.02% | $0.241388 | 445.5016 | $107.54 | |
| ARB | 0.02% | $1 | 104.1767 | $104.18 | |
| ARB | 0.01% | $0.280132 | 254.0763 | $71.17 | |
| ARB | <0.01% | $0.051299 | 1,235.4713 | $63.38 | |
| ARB | <0.01% | $76,390 | 0.00076372 | $58.34 | |
| ARB | <0.01% | $0.101137 | 379.4279 | $38.37 | |
| ARB | <0.01% | $111.57 | 0.3412 | $38.07 | |
| ARB | <0.01% | $0.053744 | 485.5347 | $26.09 | |
| ARB | <0.01% | $1.22 | 20.8147 | $25.39 | |
| ARB | <0.01% | $2,314.06 | 0.0107 | $24.76 | |
| ARB | <0.01% | $77,257 | 0.00026182 | $20.23 | |
| ARB | <0.01% | $2,317.13 | 0.00767099 | $17.77 | |
| ARB | <0.01% | $1.28 | 12.4909 | $15.99 | |
| ARB | <0.01% | $1 | 13.3313 | $13.33 | |
| ARB | <0.01% | $1.16 | 11.4806 | $13.32 | |
| ARB | <0.01% | $0.00911 | 1,453.7746 | $13.24 | |
| ARB | <0.01% | $3.9 | 3.3454 | $13.05 | |
| ARB | <0.01% | $64,957 | 0.0001581 | $10.27 | |
| ARB | <0.01% | $0.018089 | 472.0235 | $8.54 | |
| ARB | <0.01% | $70,983 | 0.00011088 | $7.87 | |
| ARB | <0.01% | $2.05 | 3.2537 | $6.67 | |
| ARB | <0.01% | $2,025.17 | 0.00306393 | $6.2 | |
| ARB | <0.01% | $17.18 | 0.3257 | $5.6 | |
| ARB | <0.01% | $2,624.38 | 0.0021198 | $5.56 | |
| ARB | <0.01% | $1.01 | 4.8835 | $4.95 | |
| ARB | <0.01% | $6.26 | 0.7437 | $4.66 | |
| ARB | <0.01% | $0.999608 | 4.0677 | $4.07 | |
| ARB | <0.01% | $0.04066 | 99.2774 | $4.04 | |
| ARB | <0.01% | $1 | 3.9581 | $3.96 | |
| ARB | <0.01% | $0.00 | 0.00004759 | $0.00 | |
| ARB | <0.01% | $29.31 | 0.1075 | $3.15 | |
| ARB | <0.01% | $0.996109 | 3.1202 | $3.11 | |
| ARB | <0.01% | $0.06696 | 43.9893 | $2.95 | |
| ARB | <0.01% | $2,533.28 | 0.00109436 | $2.77 | |
| ARB | <0.01% | $0.099974 | 24.4632 | $2.45 | |
| ARB | <0.01% | $1.18 | 1.8958 | $2.24 | |
| ARB | <0.01% | $0.99981 | 2.0526 | $2.05 | |
| ARB | <0.01% | $103.18 | 0.0184 | $1.9 | |
| ARB | <0.01% | $0.00 | 0.0007472 | $0.00 | |
| ARB | <0.01% | $1.01 | 1.7599 | $1.77 | |
| ARB | <0.01% | $0.992951 | 1.6802 | $1.67 | |
| ARB | <0.01% | $5,027.48 | 0.000331 | $1.66 | |
| ARB | <0.01% | $0.005598 | 296.5283 | $1.66 | |
| ARB | <0.01% | $0.184841 | 8.0973 | $1.5 | |
| ARB | <0.01% | $1.12 | 1.2887 | $1.44 | |
| ARB | <0.01% | $0.945697 | 1.4908 | $1.41 | |
| ARB | <0.01% | $0.576549 | 2.2947 | $1.32 | |
| ARB | <0.01% | $0.003436 | 384.6109 | $1.32 | |
| ARB | <0.01% | $0.998812 | 1.2814 | $1.28 | |
| ARB | <0.01% | $0.00 | 1.2377 | $0.00 | |
| ARB | <0.01% | $0.790031 | 1.5347 | $1.21 | |
| ARB | <0.01% | $1.15 | 0.9399 | $1.08 | |
| ARB | <0.01% | $18.01 | 0.06 | $1.08 | |
| ARB | <0.01% | $0.280422 | 3.7107 | $1.04 | |
| ARB | <0.01% | $2,596 | 0.00038568 | $1 | |
| ARB | <0.01% | $1.4 | 0.692 | $0.9687 | |
| ARB | <0.01% | $0.012937 | 74.2499 | $0.9605 | |
| ARB | <0.01% | $80.11 | 0.012 | $0.9579 | |
| ARB | <0.01% | $1 | 0.9017 | $0.9016 | |
| ARB | <0.01% | $0.002743 | 325.5917 | $0.8932 | |
| ARB | <0.01% | $1.01 | 0.8363 | $0.8479 | |
| ARB | <0.01% | $0.08391 | 9.9785 | $0.8372 | |
| ARB | <0.01% | $0.994846 | 0.8314 | $0.827 | |
| ARB | <0.01% | $0.025788 | 31.9806 | $0.8247 | |
| ARB | <0.01% | $0.99791 | 0.8118 | $0.81 | |
| ARB | <0.01% | $0.004313 | 183.784 | $0.7925 | |
| ARB | <0.01% | $0.00 | 20.6348 | $0.00 | |
| ARB | <0.01% | $0.000004 | 189,611.6904 | $0.7205 | |
| ARB | <0.01% | $1.54 | 0.4588 | $0.7065 | |
| ARB | <0.01% | $0.013296 | 52.9383 | $0.7038 | |
| ARB | <0.01% | $0.000174 | 3,890.968 | $0.6759 | |
| ARB | <0.01% | $0.000001 | 1,066,922.8938 | $0.6672 | |
| ARB | <0.01% | $76,732 | 0.00000813 | $0.6238 | |
| ARB | <0.01% | $2.12 | 0.2928 | $0.6208 | |
| ARB | <0.01% | $2.27 | 0.2641 | $0.5994 | |
| ARB | <0.01% | $0.056666 | 10.1642 | $0.5759 | |
| ARB | <0.01% | $0.136004 | 4.2072 | $0.5721 | |
| ARB | <0.01% | $4,582.16 | 0.00012305 | $0.5638 | |
| ARB | <0.01% | $2,273.11 | 0.00023927 | $0.5438 | |
| ARB | <0.01% | $0.003621 | 146.3645 | $0.5299 | |
| ARB | <0.01% | $8.11 | 0.065 | $0.5272 | |
| ARB | <0.01% | $0.001467 | 354.8717 | $0.5204 | |
| ARB | <0.01% | $1.37 | 0.3676 | $0.5035 | |
| ARB | <0.01% | $75,557 | 0.00000664 | $0.5016 | |
| ARB | <0.01% | $0.000359 | 1,217.8196 | $0.4366 | |
| ARB | <0.01% | $2,291.89 | 0.00018759 | $0.4299 | |
| ARB | <0.01% | $0.000155 | 2,730.2458 | $0.4232 | |
| ARB | <0.01% | $0.134614 | 3.094 | $0.4165 | |
| ARB | <0.01% | $0.011448 | 36.0399 | $0.4125 | |
| ARB | <0.01% | $0.234354 | 1.7456 | $0.409 | |
| ARB | <0.01% | $0.520132 | 0.7797 | $0.4055 | |
| ARB | <0.01% | $2.94 | 0.136 | $0.3999 | |
| ARB | <0.01% | $0.014463 | 26.9297 | $0.3894 | |
| ARB | <0.01% | $1.86 | 0.2027 | $0.377 | |
| ARB | <0.01% | $0.003869 | 88.6129 | $0.3428 | |
| ARB | <0.01% | $1.09 | 0.3011 | $0.3272 | |
| ARB | <0.01% | $0.992463 | 0.3244 | $0.3219 | |
| ARB | <0.01% | $1.28 | 0.2467 | $0.3157 | |
| ARB | <0.01% | $1 | 0.3148 | $0.3157 | |
| ARB | <0.01% | $0.05203 | 5.8237 | $0.303 | |
| ARB | <0.01% | $0.00 | 0.3232 | $0.00 | |
| ARB | <0.01% | $0.000474 | 622.9476 | $0.2952 | |
| ARB | <0.01% | $0.015281 | 19.2182 | $0.2936 | |
| ARB | <0.01% | $0.000543 | 538.7548 | $0.2923 | |
| ARB | <0.01% | $0.026445 | 10.9913 | $0.2906 | |
| ARB | <0.01% | $0.001224 | 228.88 | $0.2802 | |
| ARB | <0.01% | $76,284 | 0.00000358 | $0.2731 | |
| ARB | <0.01% | $0.000004 | 63,431.4996 | $0.2689 | |
| ARB | <0.01% | $1,782.35 | 0.00015053 | $0.2683 | |
| ARB | <0.01% | $0.286755 | 0.9139 | $0.262 | |
| ARB | <0.01% | $0.340836 | 0.7528 | $0.2565 | |
| ARB | <0.01% | $0.913234 | 0.2785 | $0.2543 | |
| ARB | <0.01% | $0.604042 | 0.4163 | $0.2514 | |
| ARB | <0.01% | $0.999617 | 0.2392 | $0.239 | |
| ARB | <0.01% | $1.94 | 0.1209 | $0.2345 | |
| ARB | <0.01% | $0.018513 | 12.1473 | $0.2248 | |
| ARB | <0.01% | $0.29645 | 0.7496 | $0.2222 | |
| ARB | <0.01% | $1 | 0.222 | $0.222 | |
| ARB | <0.01% | $0.001429 | 152.1893 | $0.2175 | |
| ARB | <0.01% | $0.000155 | 1,347.9066 | $0.2093 | |
| ARB | <0.01% | $22.29 | 0.0093402 | $0.2081 | |
| ARB | <0.01% | $0.000866 | 238.3167 | $0.2064 | |
| ARB | <0.01% | $0.203511 | 0.9992 | $0.2033 | |
| ARB | <0.01% | $0.002577 | 78.398 | $0.202 | |
| ARB | <0.01% | $0.012129 | 16.4244 | $0.1992 | |
| ARB | <0.01% | $0.044333 | 4.445 | $0.197 | |
| ARB | <0.01% | $76,043 | 0.00000254 | $0.193 | |
| ARB | <0.01% | $0.999934 | 0.1875 | $0.1875 | |
| ARB | <0.01% | $0.00 | 6.2382 | $0.00 | |
| ARB | <0.01% | $0.998454 | 0.1826 | $0.1822 | |
| ARB | <0.01% | $0.008213 | 21.1596 | $0.1737 | |
| ARB | <0.01% | $0.45006 | 0.377 | $0.1696 | |
| ARB | <0.01% | $2.16 | 0.0774 | $0.1671 | |
| ARB | <0.01% | $0.000006 | 27,459.6865 | $0.165 | |
| ARB | <0.01% | $0.09681 | 1.6907 | $0.1636 | |
| ARB | <0.01% | $0.001388 | 117.2475 | $0.1626 | |
| ARB | <0.01% | $0.994877 | 0.1533 | $0.1524 | |
| ARB | <0.01% | $0.005856 | 25.4848 | $0.1492 | |
| ARB | <0.01% | $0.000026 | 5,678.6119 | $0.1477 | |
| ARB | <0.01% | $0.052333 | 2.8168 | $0.1474 | |
| ARB | <0.01% | $1 | 0.1377 | $0.1376 | |
| ARB | <0.01% | $0.00 | 3.281 | $0.00 | |
| ARB | <0.01% | $0.133014 | 1.0037 | $0.1334 | |
| ARB | <0.01% | $0.000003 | 39,521.7443 | $0.1316 | |
| ARB | <0.01% | $0.047254 | 2.7752 | $0.1311 | |
| ARB | <0.01% | $0.054328 | 2.2941 | $0.1246 | |
| ARB | <0.01% | $0.012579 | 8.9766 | $0.1129 | |
| ARB | <0.01% | $2,197.56 | 0.00005043 | $0.1108 | |
| ARB | <0.01% | $0.000035 | 3,132.2317 | $0.1103 | |
| BSC | 5.96% | $0.00213 | 18,982,506.9819 | $40,425.72 | |
| BSC | 1.89% | $1.86 | 6,862.8717 | $12,792.77 | |
| BSC | 1.27% | $1 | 8,612.3896 | $8,612.39 | |
| BSC | 0.46% | $1 | 3,099.3638 | $3,099.6 | |
| BSC | 0.41% | $645.6 | 4.3226 | $2,790.7 | |
| BSC | 0.09% | $0.065279 | 8,860.4082 | $578.4 | |
| BSC | 0.07% | $0.035956 | 13,446.8087 | $483.5 | |
| BSC | 0.07% | $0.691712 | 666.6782 | $461.15 | |
| BSC | 0.05% | $0.228678 | 1,616.5479 | $369.67 | |
| BSC | 0.03% | $2,023.22 | 0.1134 | $229.42 | |
| BSC | 0.03% | $69,276.98 | 0.00318414 | $220.59 | |
| BSC | 0.02% | $641.64 | 0.1606 | $103.02 | |
| BSC | 0.01% | $14.71 | 6.8716 | $101.08 | |
| BSC | 0.01% | $27.96 | 3.1988 | $89.45 | |
| BSC | 0.01% | $0.007997 | 10,588.4734 | $84.68 | |
| BSC | <0.01% | $0.007618 | 8,471.2086 | $64.53 | |
| BSC | <0.01% | $0.013433 | 4,544.8063 | $61.05 | |
| BSC | <0.01% | $0.999177 | 60.894 | $60.84 | |
| BSC | <0.01% | $0.07375 | 628.9805 | $46.39 | |
| BSC | <0.01% | $0.000324 | 142,560.8761 | $46.25 | |
| BSC | <0.01% | $0.099979 | 428.3861 | $42.83 | |
| BSC | <0.01% | $0.266002 | 154.9482 | $41.22 | |
| BSC | <0.01% | $0.130419 | 282.6766 | $36.87 | |
| BSC | <0.01% | $1.37 | 21.5514 | $29.53 | |
| BSC | <0.01% | $0.0512 | 501.1025 | $25.66 | |
| BSC | <0.01% | $0.273389 | 78.9774 | $21.59 | |
| BSC | <0.01% | $0.203268 | 88.2765 | $17.94 | |
| BSC | <0.01% | $0.998636 | 15.4354 | $15.41 | |
| BSC | <0.01% | $0.149575 | 97.7717 | $14.62 | |
| BSC | <0.01% | $40.88 | 0.3308 | $13.52 | |
| BSC | <0.01% | $211.69 | 0.0583 | $12.34 | |
| BSC | <0.01% | $0.025637 | 473.6825 | $12.14 | |
| BSC | <0.01% | $0.262558 | 43.6939 | $11.47 | |
| BSC | <0.01% | $0.686817 | 16.6868 | $11.46 | |
| BSC | <0.01% | $0.079782 | 135.4769 | $10.81 | |
| BSC | <0.01% | $0.999874 | 9.6055 | $9.6 | |
| BSC | <0.01% | $0.313243 | 29.1721 | $9.14 | |
| BSC | <0.01% | $0.008696 | 952.6428 | $8.28 | |
| BSC | <0.01% | $1.43 | 5.2293 | $7.48 | |
| BSC | <0.01% | $0.039501 | 177.4274 | $7.01 | |
| BSC | <0.01% | $99 | 0.0702 | $6.95 | |
| BSC | <0.01% | $0.144404 | 44.4112 | $6.41 | |
| BSC | <0.01% | $0.003993 | 1,575.2998 | $6.29 | |
| BSC | <0.01% | $0.491444 | 12.6932 | $6.24 | |
| BSC | <0.01% | $0.015292 | 402.2142 | $6.15 | |
| BSC | <0.01% | $0.010836 | 554.2645 | $6.01 | |
| BSC | <0.01% | $0.074118 | 78.2244 | $5.8 | |
| BSC | <0.01% | $0.006093 | 909.3618 | $5.54 | |
| BSC | <0.01% | $0.001016 | 5,071.3842 | $5.15 | |
| BSC | <0.01% | $0.016955 | 291.3633 | $4.94 | |
| BSC | <0.01% | $1 | 4.6221 | $4.62 | |
| BSC | <0.01% | $0.042202 | 106.1615 | $4.48 | |
| BSC | <0.01% | $0.009749 | 444.9038 | $4.34 | |
| BSC | <0.01% | $0.902333 | 4.6345 | $4.18 | |
| BSC | <0.01% | $0.00 | 17.4116 | $0.00 | |
| BSC | <0.01% | $0.308758 | 13.051 | $4.03 | |
| BSC | <0.01% | $0.000402 | 9,658.8284 | $3.89 | |
| BSC | <0.01% | $0.008227 | 439.0661 | $3.61 | |
| BSC | <0.01% | $0.038018 | 93.8736 | $3.57 | |
| BSC | <0.01% | $0.037448 | 95.2872 | $3.57 | |
| BSC | <0.01% | $0.021244 | 165.4541 | $3.51 | |
| BSC | <0.01% | $0.001993 | 1,749.9333 | $3.49 | |
| BSC | <0.01% | $1.53 | 2.107 | $3.22 | |
| BSC | <0.01% | $0.557172 | 5.759 | $3.21 | |
| BSC | <0.01% | $1 | 3.0779 | $3.08 | |
| BSC | <0.01% | $0.084448 | 35.251 | $2.98 | |
| BSC | <0.01% | $0.087804 | 32.9257 | $2.89 | |
| BSC | <0.01% | $76,114 | 0.0000368 | $2.8 | |
| BSC | <0.01% | $1.38 | 1.9778 | $2.74 | |
| BSC | <0.01% | $0.009013 | 294.4 | $2.65 | |
| BSC | <0.01% | $0.033182 | 78.8656 | $2.62 | |
| BSC | <0.01% | $0.00 | 1.9525 | $0.00 | |
| BSC | <0.01% | $0.03706 | 66.9954 | $2.48 | |
| BSC | <0.01% | $0.000002 | 1,418,803.478 | $2.47 | |
| BSC | <0.01% | $0.019608 | 121.2193 | $2.38 | |
| BSC | <0.01% | $0.000276 | 8,357.6807 | $2.31 | |
| BSC | <0.01% | $0.00 | 0.777 | $0.00 | |
| BSC | <0.01% | $0.039933 | 56.8954 | $2.27 | |
| BSC | <0.01% | $0.030193 | 70.4333 | $2.13 | |
| BSC | <0.01% | $0.00 | 160,602,457.1185 | $0.00 | |
| BSC | <0.01% | $0.999182 | 2.0501 | $2.05 | |
| BSC | <0.01% | $0.003621 | 555.3287 | $2.01 | |
| BSC | <0.01% | $0.008418 | 236.2748 | $1.99 | |
| BSC | <0.01% | $0.000285 | 6,890.0088 | $1.97 | |
| BSC | <0.01% | $0.092484 | 20.6244 | $1.91 | |
| BSC | <0.01% | $0.14147 | 13.3172 | $1.88 | |
| BSC | <0.01% | $0.000698 | 2,676.5448 | $1.87 | |
| BSC | <0.01% | $110.8 | 0.0165 | $1.83 | |
| BSC | <0.01% | $0.001632 | 1,053.2709 | $1.72 | |
| BSC | <0.01% | $0.003408 | 497.066 | $1.69 | |
| BSC | <0.01% | $0.008883 | 189.2882 | $1.68 | |
| BSC | <0.01% | $0.03671 | 44.5332 | $1.63 | |
| BSC | <0.01% | $76,284 | 0.00002082 | $1.59 | |
| BSC | <0.01% | $0.007575 | 205.8226 | $1.56 | |
| BSC | <0.01% | <$0.000001 | 3,838,441,430.6145 | $1.55 | |
| BSC | <0.01% | $0.061161 | 24.234 | $1.48 | |
| BSC | <0.01% | $8.96 | 0.1615 | $1.45 | |
| BSC | <0.01% | $3.88 | 0.3701 | $1.44 | |
| BSC | <0.01% | $0.121011 | 11.7671 | $1.42 | |
| BSC | <0.01% | $0.00187 | 750.29 | $1.4 | |
| BSC | <0.01% | $1 | 1.3445 | $1.35 | |
| BSC | <0.01% | $0.026555 | 50.4791 | $1.34 | |
| BSC | <0.01% | $0.999575 | 1.3298 | $1.33 | |
| BSC | <0.01% | $0.0036 | 353.359 | $1.27 | |
| BSC | <0.01% | $0.005278 | 240.2694 | $1.27 | |
| BSC | <0.01% | $0.02405 | 52.4531 | $1.26 | |
| BSC | <0.01% | $77.5 | 0.0159 | $1.23 | |
| BSC | <0.01% | $0.000017 | 71,958.3014 | $1.22 | |
| BSC | <0.01% | $0.003239 | 361.1511 | $1.17 | |
| BSC | <0.01% | $0.00273 | 426.1956 | $1.16 | |
| BSC | <0.01% | $0.002365 | 483.8346 | $1.14 | |
| BSC | <0.01% | $0.111754 | 10.1703 | $1.14 | |
| BSC | <0.01% | $0.490006 | 2.3144 | $1.13 | |
| BSC | <0.01% | $185.04 | 0.00607882 | $1.12 | |
| BSC | <0.01% | $0.602527 | 1.824 | $1.1 | |
| BSC | <0.01% | $0.363973 | 2.9875 | $1.09 | |
| BSC | <0.01% | $0.050127 | 21.5374 | $1.08 | |
| BSC | <0.01% | $0.051185 | 20.5707 | $1.05 | |
| BSC | <0.01% | $0.290104 | 3.6144 | $1.05 | |
| BSC | <0.01% | $0.062459 | 16.1219 | $1.01 | |
| BSC | <0.01% | $1.53 | 0.6482 | $0.9894 | |
| BSC | <0.01% | $0.0947 | 10.419 | $0.9866 | |
| BSC | <0.01% | $0.008654 | 113.3259 | $0.9807 | |
| BSC | <0.01% | $0.100793 | 9.6021 | $0.9678 | |
| BSC | <0.01% | $450.37 | 0.00213151 | $0.9599 | |
| BSC | <0.01% | $0.000003 | 288,607.9353 | $0.9552 | |
| BSC | <0.01% | $0.008049 | 118.3914 | $0.9529 | |
| BSC | <0.01% | $0.01188 | 78.5139 | $0.9327 | |
| BSC | <0.01% | $8.4 | 0.1107 | $0.9295 | |
| BSC | <0.01% | $69,325.64 | 0.00001268 | $0.879 | |
| BSC | <0.01% | $0.007363 | 117.3531 | $0.864 | |
| BSC | <0.01% | $0.035882 | 23.6879 | $0.8499 | |
| BSC | <0.01% | $0.000339 | 2,437.1676 | $0.8258 | |
| BSC | <0.01% | $0.003522 | 233.6095 | $0.8226 | |
| BSC | <0.01% | $0.00 | 18.5245 | $0.00 | |
| BSC | <0.01% | $0.00 | 217,474.8677 | $0.00 | |
| BSC | <0.01% | $0.004107 | 178.8285 | $0.7344 | |
| BSC | <0.01% | $9.6 | 0.0738 | $0.7087 | |
| BSC | <0.01% | $0.999889 | 0.6946 | $0.6945 | |
| BSC | <0.01% | $0.29293 | 2.3557 | $0.69 | |
| BSC | <0.01% | $0.992563 | 0.6735 | $0.6684 | |
| BSC | <0.01% | $0.001245 | 526.2256 | $0.655 | |
| BSC | <0.01% | $0.0662 | 9.7661 | $0.6465 | |
| BSC | <0.01% | $0.112231 | 5.6644 | $0.6357 | |
| BSC | <0.01% | $0.001535 | 413.9444 | $0.6354 | |
| BSC | <0.01% | $76,043 | 0.00000819 | $0.6224 | |
| BSC | <0.01% | $0.025857 | 23.8811 | $0.6174 | |
| BSC | <0.01% | $0.000199 | 3,107.2834 | $0.6173 | |
| BSC | <0.01% | $4.3 | 0.1409 | $0.6054 | |
| BSC | <0.01% | $0.005101 | 118.2456 | $0.6031 | |
| BSC | <0.01% | $0.003765 | 159.8339 | $0.6017 | |
| BSC | <0.01% | $0.009682 | 61.7828 | $0.5981 | |
| BSC | <0.01% | $0.000676 | 882.2424 | $0.5964 | |
| BSC | <0.01% | $805.52 | 0.00073061 | $0.5885 | |
| BSC | <0.01% | $0.003673 | 158.8136 | $0.5833 | |
| BSC | <0.01% | $0.004424 | 131.6109 | $0.5822 | |
| BSC | <0.01% | $1.3 | 0.4379 | $0.568 | |
| BSC | <0.01% | $0.026425 | 21.3513 | $0.5642 | |
| BSC | <0.01% | $0.052283 | 10.7761 | $0.5634 | |
| BSC | <0.01% | $0.009015 | 60.8432 | $0.5485 | |
| BSC | <0.01% | $0.003829 | 142.2689 | $0.5446 | |
| BSC | <0.01% | $0.002251 | 236.8545 | $0.533 | |
| BSC | <0.01% | $0.08563 | 6.2078 | $0.5315 | |
| BSC | <0.01% | $1.1 | 0.4825 | $0.5283 | |
| BSC | <0.01% | $0.00 | 48,077,444.3369 | $0.00 | |
| BSC | <0.01% | $0.000059 | 8,853.9119 | $0.5206 | |
| BSC | <0.01% | <$0.000001 | 9,879,904.6806 | $0.5181 | |
| BSC | <0.01% | $0.000045 | 11,518.6923 | $0.5175 | |
| BSC | <0.01% | $0.555305 | 0.9245 | $0.5133 | |
| BSC | <0.01% | $0.00 | 882.1127 | $0.00 | |
| BSC | <0.01% | $0.015706 | 32.2389 | $0.5063 | |
| BSC | <0.01% | $5,138.54 | 0.00009849 | $0.5061 | |
| BSC | <0.01% | $0.000033 | 14,978.8845 | $0.5004 | |
| BSC | <0.01% | $0.00 | 85.2208 | $0.00 | |
| BSC | <0.01% | $0.008126 | 60.9281 | $0.4951 | |
| BSC | <0.01% | $48.02 | 0.00992165 | $0.4764 | |
| BSC | <0.01% | $1.28 | 0.371 | $0.4749 | |
| BSC | <0.01% | <$0.000001 | 2,072,256.1982 | $0.4721 | |
| BSC | <0.01% | <$0.000001 | 13,536,151,353.8788 | $0.4566 | |
| BSC | <0.01% | $0.001039 | 418.2437 | $0.4345 | |
| BSC | <0.01% | $0.012272 | 35.0163 | $0.4297 | |
| BSC | <0.01% | $2.8 | 0.1514 | $0.4239 | |
| BSC | <0.01% | $0.034129 | 12.1817 | $0.4157 | |
| BSC | <0.01% | $0.28864 | 1.4125 | $0.4077 | |
| BSC | <0.01% | $0.086856 | 4.6452 | $0.4034 | |
| BSC | <0.01% | $0.183843 | 2.191 | $0.4028 | |
| BSC | <0.01% | $0.027361 | 14.6101 | $0.3997 | |
| BSC | <0.01% | $0.002669 | 149.0262 | $0.3976 | |
| BSC | <0.01% | $0.020858 | 18.2639 | $0.3809 | |
| BSC | <0.01% | $0.000006 | 66,236.4729 | $0.3806 | |
| BSC | <0.01% | $0.065141 | 5.8428 | $0.3806 | |
| BSC | <0.01% | $0.093325 | 4.0527 | $0.3782 | |
| BSC | <0.01% | $0.004979 | 72.7841 | $0.3623 | |
| BSC | <0.01% | $0.009449 | 37.7726 | $0.3569 | |
| BSC | <0.01% | $0.014897 | 23.5012 | $0.3501 | |
| BSC | <0.01% | $0.000026 | 13,261.4415 | $0.3425 | |
| BSC | <0.01% | $0.009915 | 33.5036 | $0.3321 | |
| BSC | <0.01% | $0.870857 | 0.3813 | $0.332 | |
| BSC | <0.01% | $0.000916 | 361.4409 | $0.3309 | |
| BSC | <0.01% | $0.009873 | 33.4962 | $0.3307 | |
| BSC | <0.01% | <$0.000001 | 2,123,030.3423 | $0.3213 | |
| BSC | <0.01% | $1 | 0.3208 | $0.3207 | |
| BSC | <0.01% | $0.00 | 10.77 | $0.00 | |
| BSC | <0.01% | $0.00081 | 386.8913 | $0.3133 | |
| BSC | <0.01% | $0.420245 | 0.7232 | $0.3039 | |
| BSC | <0.01% | $0.000001 | 285,087.2253 | $0.2841 | |
| BSC | <0.01% | $0.001337 | 212.4877 | $0.2841 | |
| BSC | <0.01% | $0.000027 | 10,417.5366 | $0.2823 | |
| BSC | <0.01% | $0.256409 | 1.0722 | $0.2749 | |
| BSC | <0.01% | $0.00 | 17.7425 | $0.00 | |
| BSC | <0.01% | $0.0115 | 22.7157 | $0.2612 | |
| BSC | <0.01% | $0.073449 | 3.5298 | $0.2592 | |
| BSC | <0.01% | $0.008275 | 30.9818 | $0.2563 | |
| BSC | <0.01% | $0.002994 | 84.0097 | $0.2515 | |
| BSC | <0.01% | $54.16 | 0.00464132 | $0.2513 | |
| BSC | <0.01% | $0.094595 | 2.5956 | $0.2455 | |
| BSC | <0.01% | $0.084085 | 2.8408 | $0.2388 | |
| BSC | <0.01% | $0.022013 | 10.6865 | $0.2352 | |
| BSC | <0.01% | $0.000455 | 514.5841 | $0.2342 | |
| BSC | <0.01% | $0.02554 | 9.0739 | $0.2317 | |
| BSC | <0.01% | $2.96 | 0.0782 | $0.2315 | |
| BSC | <0.01% | $0.000973 | 237.2551 | $0.2308 | |
| BSC | <0.01% | $1.83 | 0.1246 | $0.2275 | |
| BSC | <0.01% | $0.00 | 100.7104 | $0.00 | |
| BSC | <0.01% | $0.000062 | 3,510.5569 | $0.217 | |
| BSC | <0.01% | $0.019441 | 10.9989 | $0.2138 | |
| BSC | <0.01% | <$0.000001 | 9,859,340.3477 | $0.2119 | |
| BSC | <0.01% | $0.000135 | 1,569.4083 | $0.2116 | |
| BSC | <0.01% | $0.001928 | 109.2655 | $0.2106 | |
| BSC | <0.01% | $1.3 | 0.1613 | $0.2097 | |
| BSC | <0.01% | $0.001757 | 117.6105 | $0.2066 | |
| BSC | <0.01% | $0.000681 | 302.0504 | $0.2057 | |
| BSC | <0.01% | $0.000189 | 1,073.7686 | $0.2028 | |
| BSC | <0.01% | $0.001593 | 127.2255 | $0.2026 | |
| BSC | <0.01% | $0.043732 | 4.5869 | $0.2005 | |
| BSC | <0.01% | $0.000063 | 3,171.3765 | $0.1991 | |
| BSC | <0.01% | $0.000067 | 2,923.0163 | $0.1966 | |
| BSC | <0.01% | $0.004734 | 41.3743 | $0.1958 | |
| BSC | <0.01% | $0.019232 | 10.1727 | $0.1956 | |
| BSC | <0.01% | $0.013371 | 14.5596 | $0.1946 | |
| BSC | <0.01% | $0.003645 | 52.8436 | $0.1926 | |
| BSC | <0.01% | $0.038858 | 4.9403 | $0.1919 | |
| BSC | <0.01% | <$0.000001 | 44,844,037.1642 | $0.191 | |
| BSC | <0.01% | $0.000707 | 263.1339 | $0.186 | |
| BSC | <0.01% | $0.000205 | 900.7391 | $0.1845 | |
| BSC | <0.01% | $0.004738 | 38.1556 | $0.1807 | |
| BSC | <0.01% | $0.012579 | 14.3496 | $0.1805 | |
| BSC | <0.01% | $0.021293 | 8.4237 | $0.1793 | |
| BSC | <0.01% | $0.002925 | 60.9819 | $0.1783 | |
| BSC | <0.01% | $0.034735 | 5.1322 | $0.1782 | |
| BSC | <0.01% | $0.002239 | 78.6322 | $0.176 | |
| BSC | <0.01% | $0.001148 | 153.2049 | $0.1759 | |
| BSC | <0.01% | $1.17 | 0.1466 | $0.1715 | |
| BSC | <0.01% | $2,025.85 | 0.00008463 | $0.1714 | |
| BSC | <0.01% | $0.035924 | 4.7637 | $0.1711 | |
| BSC | <0.01% | $0.018798 | 8.997 | $0.1691 | |
| BSC | <0.01% | $0.004364 | 37.3916 | $0.1631 | |
| BSC | <0.01% | $0.016998 | 9.595 | $0.163 | |
| BSC | <0.01% | $0.000369 | 441.1576 | $0.1626 | |
| BSC | <0.01% | $0.000207 | 777.7929 | $0.1611 | |
| BSC | <0.01% | $0.160934 | 0.9979 | $0.1606 | |
| BSC | <0.01% | $0.000249 | 641.9784 | $0.1598 | |
| BSC | <0.01% | $0.002058 | 77.0658 | $0.1586 | |
| BSC | <0.01% | $0.065072 | 2.4254 | $0.1578 | |
| BSC | <0.01% | $0.26125 | 0.6025 | $0.1573 | |
| BSC | <0.01% | $0.027962 | 5.5373 | $0.1548 | |
| BSC | <0.01% | $0.000006 | 25,872.8723 | $0.1544 | |
| BSC | <0.01% | $0.001485 | 103.3929 | $0.1535 | |
| BSC | <0.01% | $0.08563 | 1.7656 | $0.1511 | |
| BSC | <0.01% | $0.000866 | 174.4593 | $0.151 | |
| BSC | <0.01% | $0.00006 | 2,506.72 | $0.1504 | |
| BSC | <0.01% | $2.03 | 0.0739 | $0.1499 | |
| BSC | <0.01% | $0.001086 | 133.7666 | $0.1452 | |
| BSC | <0.01% | $0.022407 | 6.2983 | $0.1411 | |
| BSC | <0.01% | $0.001317 | 107.0894 | $0.141 | |
| BSC | <0.01% | $0.085747 | 1.6269 | $0.1395 | |
| BSC | <0.01% | $0.000026 | 5,176.0564 | $0.1351 | |
| BSC | <0.01% | $0.006609 | 19.7762 | $0.1307 | |
| BSC | <0.01% | $0.014252 | 9.0389 | $0.1288 | |
| BSC | <0.01% | $0.577636 | 0.2212 | $0.1277 | |
| BSC | <0.01% | $0.003305 | 38.4974 | $0.1272 | |
| BSC | <0.01% | $0.000472 | 256.8472 | $0.1213 | |
| BSC | <0.01% | $0.000053 | 2,258.2881 | $0.1202 | |
| BSC | <0.01% | $0.048421 | 2.4775 | $0.1199 | |
| BSC | <0.01% | $0.267379 | 0.4469 | $0.1195 | |
| BSC | <0.01% | $0.052993 | 2.2344 | $0.1184 | |
| BSC | <0.01% | $0.000049 | 2,399.9159 | $0.1175 | |
| BSC | <0.01% | $0.053605 | 2.1667 | $0.1161 | |
| BSC | <0.01% | $0.001227 | 91.8644 | $0.1127 | |
| BSC | <0.01% | $0.09275 | 1.2033 | $0.1116 | |
| BSC | <0.01% | $0.004834 | 22.6079 | $0.1092 | |
| BSC | <0.01% | $0.009096 | 11.8049 | $0.1073 | |
| BSC | <0.01% | $0.00348 | 30.6429 | $0.1066 | |
| BSC | <0.01% | $0.008258 | 12.8797 | $0.1063 | |
| BSC | <0.01% | $0.001247 | 84.9489 | $0.1059 | |
| BSC | <0.01% | $0.002964 | 35.6953 | $0.1057 | |
| BSC | <0.01% | $2.3 | 0.0455 | $0.1045 | |
| BSC | <0.01% | $0.007758 | 13.3507 | $0.1035 | |
| BSC | <0.01% | <$0.000001 | 4,633,841.7213 | $0.101 | |
| BASE | 2.01% | $0.999968 | 13,650.3935 | $13,649.96 | |
| BASE | 0.99% | $2,263.38 | 2.971 | $6,724.61 | |
| BASE | 0.46% | $2,037.88 | 1.5364 | $3,131.02 | |
| BASE | 0.46% | $76,331 | 0.041 | $3,128.44 | |
| BASE | 0.11% | $0.697384 | 1,099.3449 | $766.67 | |
| BASE | 0.10% | $5.46 | 123.5143 | $674.39 | |
| BASE | 0.09% | $0.340271 | 1,745.6085 | $593.98 | |
| BASE | 0.08% | $0.146047 | 3,728.3181 | $544.51 | |
| BASE | 0.07% | $0.006715 | 69,434.2106 | $466.25 | |
| BASE | 0.06% | $1.16 | 332.2804 | $385.45 | |
| BASE | 0.05% | $0.000506 | 685,431.8501 | $346.67 | |
| BASE | 0.04% | $26.62 | 10.2736 | $273.48 | |
| BASE | 0.04% | $0.998334 | 247.6287 | $247.22 | |
| BASE | 0.03% | $0.210733 | 891.4259 | $187.85 | |
| BASE | 0.02% | $0.000208 | 726,075.3335 | $151.07 | |
| BASE | 0.02% | $0.017195 | 8,237.596 | $141.64 | |
| BASE | 0.02% | $0.16414 | 832.813 | $136.7 | |
| BASE | 0.02% | $0.140167 | 932.7664 | $130.74 | |
| BASE | 0.02% | $71,128 | 0.00169598 | $120.63 | |
| BASE | 0.02% | $0.996109 | 119.6611 | $119.2 | |
| BASE | 0.02% | $5.38 | 21.3794 | $115.02 | |
| BASE | 0.02% | $0.024454 | 4,349.6287 | $106.37 | |
| BASE | 0.01% | $0.296961 | 316.1059 | $93.87 | |
| BASE | 0.01% | $0.000067 | 1,282,690.6909 | $85.49 | |
| BASE | 0.01% | $1 | 85.0332 | $85.03 | |
| BASE | 0.01% | $1 | 84.684 | $84.77 | |
| BASE | 0.01% | $59.82 | 1.3978 | $83.62 | |
| BASE | 0.01% | $0.10775 | 650.6975 | $70.11 | |
| BASE | 0.01% | $1.59 | 43.4186 | $69.04 | |
| BASE | <0.01% | $1.12 | 48.3351 | $54.14 | |
| BASE | <0.01% | $0.047192 | 1,020.8858 | $48.18 | |
| BASE | <0.01% | $1.97 | 23.9661 | $47.21 | |
| BASE | <0.01% | $0.026772 | 1,693.6141 | $45.34 | |
| BASE | <0.01% | $0.000067 | 608,257.361 | $40.54 | |
| BASE | <0.01% | $0.348863 | 102.1643 | $35.64 | |
| BASE | <0.01% | $2.62 | 12.6413 | $33.12 | |
| BASE | <0.01% | $0.019895 | 1,440 | $28.65 | |
| BASE | <0.01% | $1.28 | 22.2466 | $28.48 | |
| BASE | <0.01% | $2,419.43 | 0.0117 | $28.26 | |
| BASE | <0.01% | $0.240057 | 116.6385 | $28 | |
| BASE | <0.01% | $0.000073 | 371,107.2083 | $27.22 | |
| BASE | <0.01% | $0.058715 | 419.286 | $24.62 | |
| BASE | <0.01% | $0.006701 | 3,649.6942 | $24.46 | |
| BASE | <0.01% | $0.327362 | 74.5224 | $24.4 | |
| BASE | <0.01% | $2.04 | 11.6162 | $23.7 | |
| BASE | <0.01% | $0.073959 | 311.6812 | $23.05 | |
| BASE | <0.01% | $0.014201 | 1,477.6449 | $20.98 | |
| BASE | <0.01% | $2,773.1 | 0.00699667 | $19.4 | |
| BASE | <0.01% | $0.000115 | 164,740.3229 | $18.96 | |
| BASE | <0.01% | $0.007533 | 2,444.1402 | $18.41 | |
| BASE | <0.01% | $0.993902 | 17.5248 | $17.42 | |
| BASE | <0.01% | $0.010002 | 1,645.9575 | $16.46 | |
| BASE | <0.01% | $0.024178 | 651.6939 | $15.76 | |
| BASE | <0.01% | $0.300585 | 51.2506 | $15.41 | |
| BASE | <0.01% | $0.000228 | 65,067.1591 | $14.85 | |
| BASE | <0.01% | $0.000569 | 25,899.4526 | $14.74 | |
| BASE | <0.01% | $0.087775 | 158.8642 | $13.94 | |
| BASE | <0.01% | $85.56 | 0.1409 | $12.06 | |
| BASE | <0.01% | $76,114 | 0.00015394 | $11.72 | |
| BASE | <0.01% | $0.023276 | 493.1274 | $11.48 | |
| BASE | <0.01% | $0.010962 | 1,044.9791 | $11.45 | |
| BASE | <0.01% | $0.019566 | 514.2039 | $10.06 | |
| BASE | <0.01% | $1 | 10.0165 | $10.02 | |
| BASE | <0.01% | $0.001093 | 9,156.237 | $10.01 | |
| BASE | <0.01% | $2,274.96 | 0.00420891 | $9.58 | |
| BASE | <0.01% | $0.007148 | 1,294.7544 | $9.25 | |
| BASE | <0.01% | $0.085363 | 102.3145 | $8.73 | |
| BASE | <0.01% | $0.07956 | 106.3451 | $8.46 | |
| BASE | <0.01% | $0.289733 | 26.8607 | $7.78 | |
| BASE | <0.01% | $0.020827 | 372.445 | $7.76 | |
| BASE | <0.01% | $0.00092 | 8,083 | $7.44 | |
| BASE | <0.01% | $0.00 | 1,593.9502 | $0.00 | |
| BASE | <0.01% | $0.05122 | 134.5073 | $6.89 | |
| BASE | <0.01% | $0.00 | 0.00279302 | $0.00 | |
| BASE | <0.01% | $111.13 | 0.0561 | $6.24 | |
| BASE | <0.01% | $0.086212 | 72.2033 | $6.22 | |
| BASE | <0.01% | $1.36 | 4.3447 | $5.91 | |
| BASE | <0.01% | $0.002145 | 2,729.3551 | $5.85 | |
| BASE | <0.01% | $2,462.49 | 0.0023246 | $5.72 | |
| BASE | <0.01% | $0.086558 | 64.6641 | $5.6 | |
| BASE | <0.01% | $0.074113 | 73.9541 | $5.48 | |
| BASE | <0.01% | $1 | 5.3883 | $5.39 | |
| BASE | <0.01% | $2,526.74 | 0.00209249 | $5.29 | |
| BASE | <0.01% | $0.070903 | 72.9745 | $5.17 | |
| BASE | <0.01% | $0.024298 | 205.3772 | $4.99 | |
| BASE | <0.01% | $0.08776 | 54.3273 | $4.77 | |
| BASE | <0.01% | $0.039186 | 119.8743 | $4.7 | |
| BASE | <0.01% | $0.001114 | 4,203.2369 | $4.68 | |
| BASE | <0.01% | $172.1 | 0.0255 | $4.39 | |
| BASE | <0.01% | $0.006953 | 623.1023 | $4.33 | |
| BASE | <0.01% | $1.28 | 3.3793 | $4.33 | |
| BASE | <0.01% | $0.052775 | 77.0039 | $4.06 | |
| BASE | <0.01% | $0.000725 | 5,521.3169 | $4 | |
| BASE | <0.01% | $0.000285 | 13,977.8996 | $3.99 | |
| BASE | <0.01% | $0.014603 | 272.8789 | $3.98 | |
| BASE | <0.01% | $0.000375 | 10,332.0214 | $3.88 | |
| BASE | <0.01% | $0.01266 | 302.2503 | $3.83 | |
| BASE | <0.01% | $0.002223 | 1,692.7841 | $3.76 | |
| BASE | <0.01% | $1.04 | 3.5123 | $3.66 | |
| BASE | <0.01% | $0.109826 | 32.1778 | $3.53 | |
| BASE | <0.01% | $0.041246 | 84.4639 | $3.48 | |
| BASE | <0.01% | $0.015727 | 219.0965 | $3.45 | |
| BASE | <0.01% | $0.00259 | 1,239.67 | $3.21 | |
| BASE | <0.01% | $0.006848 | 468.453 | $3.21 | |
| BASE | <0.01% | $0.004876 | 653.3914 | $3.19 | |
| BASE | <0.01% | $174.4 | 0.018 | $3.15 | |
| BASE | <0.01% | $0.069942 | 44.8185 | $3.13 | |
| BASE | <0.01% | $0.000004 | 702,646.3281 | $3.13 | |
| BASE | <0.01% | $0.033163 | 92.8954 | $3.08 | |
| BASE | <0.01% | $0.99489 | 3.0156 | $3 | |
| BASE | <0.01% | $0.411496 | 7.2488 | $2.98 | |
| BASE | <0.01% | $0.000062 | 47,687.1113 | $2.94 | |
| BASE | <0.01% | $0.007191 | 401.0407 | $2.88 | |
| BASE | <0.01% | $0.001293 | 2,200.9332 | $2.85 | |
| BASE | <0.01% | $76,388 | 0.00003689 | $2.82 | |
| BASE | <0.01% | $0.007842 | 351.881 | $2.76 | |
| BASE | <0.01% | $0.003286 | 816.5326 | $2.68 | |
| BASE | <0.01% | $1.16 | 2.2843 | $2.65 | |
| BASE | <0.01% | $0.134913 | 19.0381 | $2.57 | |
| BASE | <0.01% | $0.110689 | 22.9072 | $2.54 | |
| BASE | <0.01% | $0.000472 | 5,307.1652 | $2.51 | |
| BASE | <0.01% | $2,025.17 | 0.00122317 | $2.48 | |
| BASE | <0.01% | $0.000732 | 3,304.1918 | $2.42 | |
| BASE | <0.01% | $0.01036 | 226.6189 | $2.35 | |
| BASE | <0.01% | $2.94 | 0.7931 | $2.33 | |
| BASE | <0.01% | $0.017112 | 133.522 | $2.28 | |
| BASE | <0.01% | $0.000089 | 24,269.1974 | $2.17 | |
| BASE | <0.01% | <$0.000001 | 13,142,527.7508 | $2.06 | |
| BASE | <0.01% | $0.019191 | 100.2732 | $1.92 | |
| BASE | <0.01% | $1 | 1.8003 | $1.8 | |
| BASE | <0.01% | $0.001927 | 934.0124 | $1.8 | |
| BASE | <0.01% | $0.0036 | 498.101 | $1.79 | |
| BASE | <0.01% | $0.007607 | 231.4454 | $1.76 | |
| BASE | <0.01% | <$0.000001 | 218,765,034.7109 | $1.75 | |
| BASE | <0.01% | $0.073989 | 23.425 | $1.73 | |
| BASE | <0.01% | $1.28 | 1.3149 | $1.68 | |
| BASE | <0.01% | $0.053594 | 31.3913 | $1.68 | |
| BASE | <0.01% | $0.49197 | 3.3926 | $1.67 | |
| BASE | <0.01% | $0.000001 | 1,331,089.0043 | $1.6 | |
| BASE | <0.01% | $1.07 | 1.4371 | $1.53 | |
| BASE | <0.01% | $0.999803 | 1.5131 | $1.51 | |
| BASE | <0.01% | $0.240948 | 6.2546 | $1.51 | |
| BASE | <0.01% | $0.999739 | 1.4741 | $1.47 | |
| BASE | <0.01% | $2.8 | 0.5191 | $1.45 | |
| BASE | <0.01% | $2,343.41 | 0.00061137 | $1.43 | |
| BASE | <0.01% | $0.003951 | 358.8969 | $1.42 | |
| BASE | <0.01% | $0.000123 | 11,281.7259 | $1.39 | |
| BASE | <0.01% | $0.956518 | 1.4369 | $1.37 | |
| BASE | <0.01% | $0.000001 | 1,393,389.0767 | $1.37 | |
| BASE | <0.01% | $0.00028 | 4,880.1499 | $1.36 | |
| BASE | <0.01% | $1 | 1.3544 | $1.36 | |
| BASE | <0.01% | $1.03 | 1.3051 | $1.34 | |
| BASE | <0.01% | $0.041066 | 32.6358 | $1.34 | |
| BASE | <0.01% | $0.009263 | 143.77 | $1.33 | |
| BASE | <0.01% | $0.007643 | 163.7094 | $1.25 | |
| BASE | <0.01% | $0.000118 | 10,582.2782 | $1.25 | |
| BASE | <0.01% | $0.024216 | 51.1347 | $1.24 | |
| BASE | <0.01% | $0.016142 | 75.0942 | $1.21 | |
| BASE | <0.01% | $0.013316 | 86.9885 | $1.16 | |
| BASE | <0.01% | $0.040133 | 27.4795 | $1.1 | |
| BASE | <0.01% | $0.091874 | 11.894 | $1.09 | |
| BASE | <0.01% | $2,269 | 0.00047419 | $1.08 | |
| BASE | <0.01% | $0.233388 | 4.5085 | $1.05 | |
| BASE | <0.01% | $0.00399 | 257.0375 | $1.03 | |
| BASE | <0.01% | $0.000943 | 1,073.7686 | $1.01 | |
| BASE | <0.01% | $0.018466 | 54.1289 | $0.9995 | |
| BASE | <0.01% | $0.013379 | 71.6697 | $0.9589 | |
| BASE | <0.01% | $0.104076 | 9.0372 | $0.9405 | |
| BASE | <0.01% | $0.497119 | 1.8878 | $0.9384 | |
| BASE | <0.01% | $0.902727 | 1.0229 | $0.9233 | |
| BASE | <0.01% | $0.065551 | 13.9525 | $0.9146 | |
| BASE | <0.01% | $0.548223 | 1.662 | $0.9111 | |
| BASE | <0.01% | $76,738 | 0.00001099 | $0.8433 | |
| BASE | <0.01% | $1.09 | 0.7747 | $0.8405 | |
| BASE | <0.01% | $17.98 | 0.0457 | $0.8218 | |
| BASE | <0.01% | $0.051086 | 16.027 | $0.8187 | |
| BASE | <0.01% | $0.000019 | 42,902.7944 | $0.8104 | |
| BASE | <0.01% | $0.000918 | 881.7896 | $0.8097 | |
| BASE | <0.01% | $0.008592 | 93.7608 | $0.8055 | |
| BASE | <0.01% | $0.04435 | 18.0795 | $0.8018 | |
| BASE | <0.01% | $0.00 | 839.1455 | $0.00 | |
| BASE | <0.01% | $0.065292 | 12.1933 | $0.7961 | |
| BASE | <0.01% | $2.04 | 0.3895 | $0.7945 | |
| BASE | <0.01% | $0.007095 | 110.4094 | $0.7833 | |
| BASE | <0.01% | <$0.000001 | 84,021,637.2921 | $0.7729 | |
| BASE | <0.01% | $0.009019 | 85.5288 | $0.7714 | |
| BASE | <0.01% | $0.000418 | 1,787.1757 | $0.7472 | |
| BASE | <0.01% | $0.104032 | 7.1669 | $0.7455 | |
| BASE | <0.01% | $0.008627 | 85.4303 | $0.7369 | |
| BASE | <0.01% | $0.008739 | 83.8081 | $0.7324 | |
| BASE | <0.01% | $0.734452 | 0.9907 | $0.7276 | |
| BASE | <0.01% | $0.000794 | 863.1715 | $0.6851 | |
| BASE | <0.01% | $0.08594 | 7.9434 | $0.6826 | |
| BASE | <0.01% | <$0.000001 | 140,909,453.8202 | $0.62 | |
| BASE | <0.01% | $0.000386 | 1,594.835 | $0.6157 | |
| BASE | <0.01% | $0.000178 | 3,441 | $0.6136 | |
| BASE | <0.01% | $0.00 | 1.1599 | $0.00 | |
| BASE | <0.01% | $0.056675 | 9.8994 | $0.561 | |
| BASE | <0.01% | $0.00014 | 3,991.0844 | $0.5587 | |
| BASE | <0.01% | $0.000032 | 16,885.8809 | $0.54 | |
| BASE | <0.01% | $0.001059 | 499.1036 | $0.5283 | |
| BASE | <0.01% | $0.713744 | 0.7181 | $0.5125 | |
| BASE | <0.01% | $0.005743 | 88.7273 | $0.5095 | |
| BASE | <0.01% | $0.002513 | 200.6041 | $0.5041 | |
| BASE | <0.01% | $0.001016 | 491.3675 | $0.4993 | |
| BASE | <0.01% | $0.006759 | 73.7204 | $0.4982 | |
| BASE | <0.01% | $0.352743 | 1.4075 | $0.4964 | |
| BASE | <0.01% | $0.018809 | 25.7197 | $0.4837 | |
| BASE | <0.01% | $75,561 | 0.00000627 | $0.4737 | |
| BASE | <0.01% | $0.002999 | 154.6735 | $0.4638 | |
| BASE | <0.01% | $0.000206 | 2,216.2044 | $0.4573 | |
| BASE | <0.01% | $0.031257 | 14.4085 | $0.4503 | |
| BASE | <0.01% | $0.112858 | 3.7423 | $0.4223 | |
| BASE | <0.01% | $0.010705 | 39.4305 | $0.4221 | |
| BASE | <0.01% | $0.000064 | 6,518.8944 | $0.42 | |
| BASE | <0.01% | $0.000001 | 759,961.1293 | $0.4195 | |
| BASE | <0.01% | $0.14549 | 2.7659 | $0.4024 | |
| BASE | <0.01% | $0.00 | 2.1304 | $0.00 | |
| BASE | <0.01% | $0.568749 | 0.6872 | $0.3908 | |
| BASE | <0.01% | <$0.000001 | 1,295,388,984.4512 | $0.3886 | |
| BASE | <0.01% | $0.000007 | 53,483.905 | $0.3882 | |
| BASE | <0.01% | $0.001742 | 219.0046 | $0.3814 | |
| BASE | <0.01% | $13.27 | 0.0285 | $0.3783 | |
| BASE | <0.01% | $0.000004 | 86,079.3304 | $0.3598 | |
| BASE | <0.01% | $0.002094 | 170.3591 | $0.3567 | |
| BASE | <0.01% | $0.000045 | 7,671.3191 | $0.3469 | |
| BASE | <0.01% | $0.002278 | 149.8888 | $0.3414 | |
| BASE | <0.01% | $0.050511 | 6.5299 | $0.3298 | |
| BASE | <0.01% | $0.014233 | 23.0592 | $0.3282 | |
| BASE | <0.01% | $0.005088 | 64.0863 | $0.326 | |
| BASE | <0.01% | $0.028968 | 11.1802 | $0.3238 | |
| BASE | <0.01% | $0.555199 | 0.5762 | $0.3198 | |
| BASE | <0.01% | $0.312594 | 1.0178 | $0.3181 | |
| BASE | <0.01% | $1.01 | 0.3128 | $0.3172 | |
| BASE | <0.01% | $0.003499 | 87.6578 | $0.3066 | |
| BASE | <0.01% | $0.004838 | 63.1643 | $0.3056 | |
| BASE | <0.01% | $0.002438 | 125.2317 | $0.3052 | |
| BASE | <0.01% | $0.000849 | 359.2822 | $0.305 | |
| BASE | <0.01% | <$0.000001 | 5,071,729.8578 | $0.2977 | |
| BASE | <0.01% | $0.044407 | 6.6837 | $0.2967 | |
| BASE | <0.01% | $0.000032 | 8,897.8897 | $0.288 | |
| BASE | <0.01% | $0.014488 | 19.816 | $0.287 | |
| BASE | <0.01% | $0.000026 | 10,464.4534 | $0.2702 | |
| BASE | <0.01% | $0.001296 | 208.4843 | $0.2701 | |
| BASE | <0.01% | $0.01105 | 23.9624 | $0.2647 | |
| BASE | <0.01% | $0.00016 | 1,607.1471 | $0.2571 | |
| BASE | <0.01% | $0.146841 | 1.7487 | $0.2567 | |
| BASE | <0.01% | $2.15 | 0.1193 | $0.2564 | |
| BASE | <0.01% | $0.014068 | 17.7213 | $0.2493 | |
| BASE | <0.01% | $0.003116 | 79.6528 | $0.2482 | |
| BASE | <0.01% | $0.107354 | 2.282 | $0.2449 | |
| BASE | <0.01% | $0.000009 | 26,668.6023 | $0.2437 | |
| BASE | <0.01% | $0.00017 | 1,432.4479 | $0.2433 | |
| BASE | <0.01% | $0.000456 | 509.8078 | $0.2323 | |
| BASE | <0.01% | $0.000003 | 66,934.6745 | $0.2295 | |
| BASE | <0.01% | $0.017962 | 12.3649 | $0.222 | |
| BASE | <0.01% | $0.038894 | 5.7047 | $0.2218 | |
| BASE | <0.01% | $0.00 | 10.4721 | $0.00 | |
| BASE | <0.01% | $0.001269 | 174.345 | $0.2213 | |
| BASE | <0.01% | $0.000139 | 1,548.6474 | $0.2154 | |
| BASE | <0.01% | $0.608189 | 0.353 | $0.2146 | |
| BASE | <0.01% | $1.4 | 0.1513 | $0.2118 | |
| BASE | <0.01% | $0.000152 | 1,373.8497 | $0.2088 | |
| BASE | <0.01% | $0.003403 | 61.3057 | $0.2086 | |
| BASE | <0.01% | $0.000025 | 8,220.8239 | $0.2082 | |
| BASE | <0.01% | <$0.000001 | 5,087,575.5294 | $0.208 | |
| BASE | <0.01% | $0.053037 | 3.8913 | $0.2063 | |
| BASE | <0.01% | $0.000674 | 299.6161 | $0.2018 | |
| BASE | <0.01% | $0.00103 | 192.524 | $0.1982 | |
| BASE | <0.01% | $0.000187 | 1,049.3027 | $0.1963 | |
| BASE | <0.01% | $0.003849 | 51.0076 | $0.1963 | |
| BASE | <0.01% | $0.020203 | 9.4814 | $0.1915 | |
| BASE | <0.01% | $0.000184 | 976.6809 | $0.1796 | |
| BASE | <0.01% | $0.014866 | 11.9019 | $0.1769 | |
| BASE | <0.01% | $17.39 | 0.0101 | $0.1752 | |
| BASE | <0.01% | $0.01037 | 16.4616 | $0.1707 | |
| BASE | <0.01% | $76,285 | 0.00000221 | $0.1689 | |
| BASE | <0.01% | $0.000304 | 552.392 | $0.1679 | |
| BASE | <0.01% | $0.000379 | 427.6345 | $0.1621 | |
| BASE | <0.01% | <$0.000001 | 640,509.0435 | $0.1612 | |
| BASE | <0.01% | $0.000001 | 246,373.2666 | $0.1574 | |
| BASE | <0.01% | $0.522338 | 0.2874 | $0.1501 | |
| BASE | <0.01% | $0.00 | 713.8911 | $0.00 | |
| BASE | <0.01% | $0.000002 | 71,797.6357 | $0.1493 | |
| BASE | <0.01% | $0.002275 | 65.1576 | $0.1482 | |
| BASE | <0.01% | $0.870857 | 0.1694 | $0.1474 | |
| BASE | <0.01% | $0.079674 | 1.8307 | $0.1458 | |
| BASE | <0.01% | $0.040248 | 3.5812 | $0.1441 | |
| BASE | <0.01% | $1 | 0.1437 | $0.1438 | |
| BASE | <0.01% | $0.000077 | 1,831.753 | $0.1418 | |
| BASE | <0.01% | $0.112051 | 1.2632 | $0.1415 | |
| BASE | <0.01% | $0.041849 | 3.3771 | $0.1413 | |
| BASE | <0.01% | $0.000088 | 1,596.0845 | $0.1401 | |
| BASE | <0.01% | $0.000003 | 42,894.9832 | $0.1389 | |
| BASE | <0.01% | $0.000009 | 15,418.169 | $0.1389 | |
| BASE | <0.01% | $0.00 | 4.624 | $0.00 | |
| BASE | <0.01% | $0.000018 | 7,539.9959 | $0.1331 | |
| BASE | <0.01% | $0.01539 | 8.5378 | $0.1313 | |
| BASE | <0.01% | $0.00001 | 13,368.8328 | $0.129 | |
| BASE | <0.01% | $0.000001 | 170,457.9331 | $0.1264 | |
| BASE | <0.01% | $0.051184 | 2.4461 | $0.1251 | |
| BASE | <0.01% | $0.129335 | 0.9675 | $0.1251 | |
| BASE | <0.01% | <$0.000001 | 5,662,889.6117 | $0.124 | |
| BASE | <0.01% | $0.301941 | 0.391 | $0.118 | |
| BASE | <0.01% | $0.000138 | 855.88 | $0.1178 | |
| BASE | <0.01% | $0.000709 | 162.6104 | $0.1153 | |
| BASE | <0.01% | $0.993795 | 0.1151 | $0.1143 | |
| BASE | <0.01% | $0.000051 | 2,090.8602 | $0.1075 | |
| BASE | <0.01% | $144.28 | 0.0006966 | $0.1005 | |
| AVAX | 0.52% | $1 | 3,501.0835 | $3,501.55 | |
| AVAX | 0.15% | $0.00 | 1,003.7832 | $0.00 | |
| AVAX | 0.13% | $9.62 | 88.4112 | $850.47 | |
| AVAX | 0.09% | $9.67 | 62.1008 | $600.77 | |
| AVAX | 0.08% | $76,248 | 0.00675314 | $514.91 | |
| AVAX | 0.06% | $2,263.38 | 0.1813 | $410.31 | |
| AVAX | 0.02% | $12.51 | 9.7167 | $121.56 | |
| AVAX | 0.01% | $5,009.63 | 0.0155 | $77.85 | |
| AVAX | <0.01% | $0.029705 | 1,212.1024 | $36 | |
| AVAX | <0.01% | $1 | 32.1413 | $32.14 | |
| AVAX | <0.01% | $0.041072 | 775.0695 | $31.83 | |
| AVAX | <0.01% | $69,235.41 | 0.00017021 | $11.78 | |
| AVAX | <0.01% | $69,235.41 | 0.00016033 | $11.1 | |
| AVAX | <0.01% | $1.16 | 8.8242 | $10.23 | |
| AVAX | <0.01% | $76,284 | 0.00009776 | $7.46 | |
| AVAX | <0.01% | $0.000941 | 6,054.6423 | $5.7 | |
| AVAX | <0.01% | $0.009434 | 505.7177 | $4.77 | |
| AVAX | <0.01% | <$0.000001 | 31,968,793.2593 | $3.58 | |
| AVAX | <0.01% | $0.001936 | 1,704.4103 | $3.3 | |
| AVAX | <0.01% | $0.017054 | 171.9141 | $2.93 | |
| AVAX | <0.01% | $8.97 | 0.2749 | $2.47 | |
| AVAX | <0.01% | $1.27 | 1.7696 | $2.25 | |
| AVAX | <0.01% | $264,122 | 0.00000768 | $2.03 | |
| AVAX | <0.01% | $1 | 2.0228 | $2.02 | |
| AVAX | <0.01% | $4,545.39 | 0.00043628 | $1.98 | |
| AVAX | <0.01% | $0.99791 | 1.6725 | $1.67 | |
| AVAX | <0.01% | $1 | 1.6297 | $1.63 | |
| AVAX | <0.01% | $111.13 | 0.0126 | $1.4 | |
| AVAX | <0.01% | <$0.000001 | 345,033,664.0253 | $1.28 | |
| AVAX | <0.01% | $13.09 | 0.0965 | $1.26 | |
| AVAX | <0.01% | $119.6 | 0.00900466 | $1.08 | |
| AVAX | <0.01% | $0.006284 | 140.9587 | $0.8857 | |
| AVAX | <0.01% | $2.04 | 0.4224 | $0.8616 | |
| AVAX | <0.01% | $0.184411 | 3.7995 | $0.7006 | |
| AVAX | <0.01% | $0.99981 | 0.6728 | $0.6726 | |
| AVAX | <0.01% | $0.008042 | 81.4432 | $0.6549 | |
| AVAX | <0.01% | $103.18 | 0.00624926 | $0.6447 | |
| AVAX | <0.01% | $0.007093 | 89.1967 | $0.6326 | |
| AVAX | <0.01% | $1 | 0.5469 | $0.5469 | |
| AVAX | <0.01% | $0.992749 | 0.5387 | $0.5348 | |
| AVAX | <0.01% | $0.999617 | 0.4749 | $0.4747 | |
| AVAX | <0.01% | $1.28 | 0.3578 | $0.4579 | |
| AVAX | <0.01% | $0.006181 | 64.1656 | $0.3965 | |
| AVAX | <0.01% | $8.06 | 0.0356 | $0.2871 | |
| AVAX | <0.01% | $0.00033 | 738.219 | $0.2436 | |
| AVAX | <0.01% | $0.000173 | 1,392.0361 | $0.2412 | |
| AVAX | <0.01% | $0.00023 | 623.3117 | $0.1434 | |
| AVAX | <0.01% | $0.040518 | 3.3839 | $0.1371 | |
| AVAX | <0.01% | $0.037961 | 3.5817 | $0.1359 | |
| AVAX | <0.01% | $0.000892 | 125.3944 | $0.1119 | |
| AVAX | <0.01% | $0.002229 | 46.4674 | $0.1035 | |
| POL | 0.12% | $0.999981 | 818.2003 | $818.18 | |
| POL | 0.10% | $1 | 707.8087 | $707.81 | |
| POL | 0.08% | $1 | 555.7003 | $556.26 | |
| POL | 0.07% | $2,023.22 | 0.242 | $489.53 | |
| POL | 0.06% | $69,265 | 0.00582603 | $403.54 | |
| POL | 0.02% | $0.097936 | 1,468.2542 | $143.79 | |
| POL | 0.02% | $0.00 | 142.2289 | $0.00 | |
| POL | 0.01% | $8.97 | 8.0871 | $72.54 | |
| POL | <0.01% | $0.188921 | 246.3992 | $46.55 | |
| POL | <0.01% | $2,487.7 | 0.0175 | $43.55 | |
| POL | <0.01% | $110.89 | 0.3656 | $40.54 | |
| POL | <0.01% | $0.097118 | 378.3898 | $36.75 | |
| POL | <0.01% | $69,255 | 0.00026375 | $18.27 | |
| POL | <0.01% | $0.193167 | 93.9828 | $18.15 | |
| POL | <0.01% | $0.122873 | 120.2609 | $14.78 | |
| POL | <0.01% | $0.114542 | 123.0704 | $14.1 | |
| POL | <0.01% | $85.24 | 0.1372 | $11.69 | |
| POL | <0.01% | $5,173.67 | 0.0020282 | $10.49 | |
| POL | <0.01% | $0.002589 | 3,647.57 | $9.44 | |
| POL | <0.01% | $0.000025 | 369,995.512 | $9.13 | |
| POL | <0.01% | $0.082681 | 91.9755 | $7.6 | |
| POL | <0.01% | $110.82 | 0.0674 | $7.47 | |
| POL | <0.01% | $0.956203 | 7.3652 | $7.04 | |
| POL | <0.01% | $1 | 6.8538 | $6.85 | |
| POL | <0.01% | $0.010912 | 511.7502 | $5.58 | |
| POL | <0.01% | $1 | 5.149 | $5.15 | |
| POL | <0.01% | $3.88 | 1.2632 | $4.9 | |
| POL | <0.01% | $1.16 | 3.2503 | $3.77 | |
| POL | <0.01% | $1.16 | 3.2503 | $3.77 | |
| POL | <0.01% | $0.00 | 0.0306 | $0.00 | |
| POL | <0.01% | $2.16 | 1.6242 | $3.51 | |
| POL | <0.01% | $0.785508 | 4.1039 | $3.22 | |
| POL | <0.01% | $0.012087 | 251.8196 | $3.04 | |
| POL | <0.01% | $0.000008 | 371,035.1904 | $2.93 | |
| POL | <0.01% | $0.000532 | 5,088.3274 | $2.71 | |
| POL | <0.01% | $0.981464 | 2.6564 | $2.61 | |
| POL | <0.01% | $0.992562 | 2.527 | $2.51 | |
| POL | <0.01% | <$0.000001 | 10,073,242.6591 | $2.24 | |
| POL | <0.01% | $0.011949 | 186.5795 | $2.23 | |
| POL | <0.01% | $0.110509 | 19.1092 | $2.11 | |
| POL | <0.01% | $0.24055 | 8.5423 | $2.05 | |
| POL | <0.01% | $0.788368 | 2.5005 | $1.97 | |
| POL | <0.01% | $4,581.45 | 0.00041394 | $1.9 | |
| POL | <0.01% | $1 | 1.8334 | $1.83 | |
| POL | <0.01% | $0.312343 | 5.8143 | $1.82 | |
| POL | <0.01% | $0.036751 | 49.2552 | $1.81 | |
| POL | <0.01% | $0.120336 | 14.8737 | $1.79 | |
| POL | <0.01% | $1.23 | 1.39 | $1.71 | |
| POL | <0.01% | $1.23 | 1.1677 | $1.44 | |
| POL | <0.01% | $18.01 | 0.0797 | $1.44 | |
| POL | <0.01% | $0.025708 | 51.3719 | $1.32 | |
| POL | <0.01% | $1,750.25 | 0.00069092 | $1.21 | |
| POL | <0.01% | $2,025.17 | 0.00059476 | $1.2 | |
| POL | <0.01% | $0.065699 | 18.3199 | $1.2 | |
| POL | <0.01% | $0.027405 | 38.8917 | $1.07 | |
| POL | <0.01% | $0.000022 | 46,727.3088 | $1.04 | |
| POL | <0.01% | $144.28 | 0.00708642 | $1.02 | |
| POL | <0.01% | $0.006285 | 158.6329 | $0.9969 | |
| POL | <0.01% | $1 | 0.9809 | $0.9828 | |
| POL | <0.01% | $1.52 | 0.645 | $0.9803 | |
| POL | <0.01% | $0.009682 | 98.7446 | $0.956 | |
| POL | <0.01% | $0.114837 | 8.0284 | $0.9219 | |
| POL | <0.01% | $0.007093 | 123.0349 | $0.8726 | |
| POL | <0.01% | $0.14666 | 5.8656 | $0.8602 | |
| POL | <0.01% | $0.999966 | 0.8289 | $0.8288 | |
| POL | <0.01% | $0.132718 | 5.9362 | $0.7878 | |
| POL | <0.01% | $0.191975 | 4.0856 | $0.7843 | |
| POL | <0.01% | $0.000253 | 2,933.2226 | $0.7429 | |
| POL | <0.01% | $0.126846 | 5.5851 | $0.7084 | |
| POL | <0.01% | $0.000009 | 76,051.0732 | $0.7082 | |
| POL | <0.01% | $17.39 | 0.039 | $0.6789 | |
| POL | <0.01% | $2,484.41 | 0.00026687 | $0.663 | |
| POL | <0.01% | $0.111518 | 5.9193 | $0.6601 | |
| POL | <0.01% | $0.00771 | 82.1003 | $0.6329 | |
| POL | <0.01% | $88.14 | 0.00688331 | $0.6066 | |
| POL | <0.01% | $0.038039 | 15.9069 | $0.605 | |
| POL | <0.01% | $2.03 | 0.2966 | $0.6021 | |
| POL | <0.01% | <$0.000001 | 11,164,691.8814 | $0.585 | |
| POL | <0.01% | $0.019232 | 29.2541 | $0.5626 | |
| POL | <0.01% | $0.999958 | 0.5524 | $0.5523 | |
| POL | <0.01% | $0.00831 | 64.2118 | $0.5336 | |
| POL | <0.01% | $0.000006 | 87,823.8641 | $0.5237 | |
| POL | <0.01% | $0.009922 | 52.2038 | $0.5179 | |
| POL | <0.01% | $0.001157 | 445.5109 | $0.5153 | |
| POL | <0.01% | $0.278586 | 1.7779 | $0.4952 | |
| POL | <0.01% | $0.160449 | 2.9659 | $0.4758 | |
| POL | <0.01% | $0.081654 | 5.7419 | $0.4688 | |
| POL | <0.01% | $0.000436 | 1,037.3142 | $0.4526 | |
| POL | <0.01% | $0.999721 | 0.4508 | $0.4506 | |
| POL | <0.01% | $0.096389 | 4.6385 | $0.4471 | |
| POL | <0.01% | $0.001609 | 275.5254 | $0.4433 | |
| POL | <0.01% | $1 | 0.4369 | $0.4368 | |
| POL | <0.01% | $0.199402 | 2.0886 | $0.4164 | |
| POL | <0.01% | $0.999889 | 0.4016 | $0.4015 | |
| POL | <0.01% | $0.000319 | 1,256.1762 | $0.401 | |
| POL | <0.01% | $2,024.17 | 0.00017634 | $0.3569 | |
| POL | <0.01% | $0.009821 | 36.1038 | $0.3545 | |
| POL | <0.01% | $6.07 | 0.0541 | $0.3283 | |
| POL | <0.01% | $0.192176 | 1.6938 | $0.3255 | |
| POL | <0.01% | $0.048724 | 6.585 | $0.3208 | |
| POL | <0.01% | $0.006718 | 47.7111 | $0.3205 | |
| POL | <0.01% | $44.57 | 0.00717013 | $0.3195 | |
| POL | <0.01% | $0.025777 | 12.1163 | $0.3123 | |
| POL | <0.01% | $0.040382 | 7.6224 | $0.3078 | |
| POL | <0.01% | $0.059305 | 5.059 | $0.30 | |
| POL | <0.01% | $0.000001 | 272,292.1289 | $0.2995 | |
| POL | <0.01% | $0.111977 | 2.6332 | $0.2948 | |
| POL | <0.01% | $0.162616 | 1.7952 | $0.2919 | |
| POL | <0.01% | $0.004407 | 65.4857 | $0.2885 | |
| POL | <0.01% | $0.079568 | 3.6111 | $0.2873 | |
| POL | <0.01% | $0.034736 | 8.2632 | $0.287 | |
| POL | <0.01% | $0.000153 | 1,749.558 | $0.2675 | |
| POL | <0.01% | $0.00208 | 126.622 | $0.2634 | |
| POL | <0.01% | $0.183868 | 1.3694 | $0.2517 | |
| POL | <0.01% | $0.114855 | 2.1279 | $0.2444 | |
| POL | <0.01% | $0.09705 | 2.4598 | $0.2387 | |
| POL | <0.01% | $0.519858 | 0.43 | $0.2235 | |
| POL | <0.01% | $0.548234 | 0.4023 | $0.2205 | |
| POL | <0.01% | $69,309 | 0.00000317 | $0.2197 | |
| POL | <0.01% | $0.011053 | 19.7298 | $0.218 | |
| POL | <0.01% | $0.021729 | 10.0242 | $0.2178 | |
| POL | <0.01% | $0.092751 | 2.2715 | $0.2106 | |
| POL | <0.01% | $0.00028 | 745.2088 | $0.2086 | |
| POL | <0.01% | $0.000006 | 34,871.3518 | $0.2005 | |
| POL | <0.01% | $0.004006 | 49.6642 | $0.1989 | |
| POL | <0.01% | $0.000638 | 304.6598 | $0.1942 | |
| POL | <0.01% | $0.021359 | 8.9688 | $0.1915 | |
| POL | <0.01% | $0.000062 | 3,010.358 | $0.188 | |
| POL | <0.01% | $0.004197 | 44.5427 | $0.1869 | |
| POL | <0.01% | $0.001277 | 143.7004 | $0.1834 | |
| POL | <0.01% | $0.092782 | 1.9226 | $0.1783 | |
| POL | <0.01% | $0.000446 | 396.8293 | $0.1769 | |
| POL | <0.01% | $0.000155 | 1,124.5533 | $0.1743 | |
| POL | <0.01% | $0.872195 | 0.1959 | $0.1708 | |
| POL | <0.01% | $0.016054 | 10.4224 | $0.1673 | |
| POL | <0.01% | $0.152532 | 1.0809 | $0.1648 | |
| POL | <0.01% | $0.000074 | 2,201.4312 | $0.163 | |
| POL | <0.01% | $0.000007 | 22,869.2921 | $0.1598 | |
| POL | <0.01% | $0.001843 | 84.5058 | $0.1557 | |
| POL | <0.01% | $0.001315 | 114.0083 | $0.1499 | |
| POL | <0.01% | $0.00 | 28.9735 | $0.00 | |
| POL | <0.01% | $9.62 | 0.015 | $0.1438 | |
| POL | <0.01% | $0.000144 | 977.3567 | $0.1402 | |
| POL | <0.01% | $0.161551 | 0.8391 | $0.1355 | |
| POL | <0.01% | $0.000351 | 379.9847 | $0.1333 | |
| POL | <0.01% | $3.2 | 0.0399 | $0.1277 | |
| POL | <0.01% | $0.000279 | 455.1805 | $0.1271 | |
| POL | <0.01% | $0.000028 | 4,555.3497 | $0.1254 | |
| POL | <0.01% | $0.003402 | 36.8154 | $0.1252 | |
| POL | <0.01% | $0.000365 | 332.0365 | $0.1212 | |
| POL | <0.01% | $0.13681 | 0.8655 | $0.1184 | |
| POL | <0.01% | $0.00 | 84.8339 | $0.00 | |
| POL | <0.01% | $0.000024 | 4,668.9048 | $0.1129 | |
| POL | <0.01% | $0.014058 | 7.8573 | $0.1104 | |
| POL | <0.01% | $0.002177 | 49.0996 | $0.1068 | |
| POL | <0.01% | $0.000842 | 124.5136 | $0.1048 | |
| POL | <0.01% | $0.001334 | 78.622 | $0.1048 | |
| POL | <0.01% | $0.094595 | 1.1052 | $0.1045 | |
| POL | <0.01% | $0.000032 | 3,111.6958 | $0.1006 | |
| OP | 0.14% | $0.999986 | 981.2491 | $981.24 | |
| OP | 0.04% | $2,036.32 | 0.1431 | $291.49 | |
| OP | 0.03% | $76,114 | 0.00285192 | $217.07 | |
| OP | 0.03% | $2,263.38 | 0.0916 | $207.42 | |
| OP | 0.02% | $1 | 123.0553 | $123.06 | |
| OP | 0.01% | $0.782386 | 109.1267 | $85.38 | |
| OP | 0.01% | $0.999986 | 71.0678 | $71.07 | |
| OP | <0.01% | $71,128 | 0.00088658 | $63.06 | |
| OP | <0.01% | $0.016154 | 3,470.4297 | $56.06 | |
| OP | <0.01% | $1.3 | 39.1249 | $50.86 | |
| OP | <0.01% | $2,773.1 | 0.0104 | $28.85 | |
| OP | <0.01% | $0.120532 | 125.486 | $15.13 | |
| OP | <0.01% | $1.01 | 13.5105 | $13.7 | |
| OP | <0.01% | $0.312403 | 35.1451 | $10.98 | |
| OP | <0.01% | $2,314.06 | 0.00340646 | $7.88 | |
| OP | <0.01% | $1 | 7.0558 | $7.06 | |
| OP | <0.01% | $115.03 | 0.0413 | $4.75 | |
| OP | <0.01% | $111.07 | 0.0384 | $4.26 | |
| OP | <0.01% | $0.359767 | 9.9692 | $3.59 | |
| OP | <0.01% | $0.036627 | 89.0726 | $3.26 | |
| OP | <0.01% | $8.99 | 0.316 | $2.84 | |
| OP | <0.01% | $1,810.99 | 0.00088598 | $1.6 | |
| OP | <0.01% | $0.184332 | 8.2128 | $1.51 | |
| OP | <0.01% | $0.99981 | 1.0912 | $1.09 | |
| OP | <0.01% | $2.04 | 0.4722 | $0.9632 | |
| OP | <0.01% | $0.99791 | 0.9394 | $0.9374 | |
| OP | <0.01% | $0.00 | 0.00035519 | $0.00 | |
| OP | <0.01% | $3.89 | 0.2119 | $0.8241 | |
| OP | <0.01% | $2,627.86 | 0.0002802 | $0.7363 | |
| OP | <0.01% | $0.076526 | 8.7081 | $0.6663 | |
| OP | <0.01% | $0.999739 | 0.5534 | $0.5532 | |
| OP | <0.01% | $1 | 0.403 | $0.4037 | |
| OP | <0.01% | $0.134549 | 2.9884 | $0.402 | |
| OP | <0.01% | $0.00 | 5,525.5703 | $0.00 | |
| OP | <0.01% | $110,933 | 0.00000343 | $0.3805 | |
| OP | <0.01% | $0.968953 | 0.3707 | $0.3592 | |
| OP | <0.01% | $0.151032 | 2.3159 | $0.3497 | |
| OP | <0.01% | $0.007195 | 48.0223 | $0.3454 | |
| OP | <0.01% | $0.00 | 0.2808 | $0.00 | |
| OP | <0.01% | $5.44 | 0.0491 | $0.2672 | |
| OP | <0.01% | $1.28 | 0.174 | $0.2227 | |
| OP | <0.01% | $2,188.23 | 0.00009333 | $0.2042 | |
| OP | <0.01% | $1 | 0.2017 | $0.202 | |
| OP | <0.01% | $103.18 | 0.00180054 | $0.1857 | |
| OP | <0.01% | $2,025.17 | 0.00008403 | $0.1701 | |
| OP | <0.01% | $0.016154 | 10.4355 | $0.1685 | |
| OP | <0.01% | $8.06 | 0.0194 | $0.1561 | |
| OP | <0.01% | $0.035057 | 3.8993 | $0.1366 | |
| OP | <0.01% | $0.003988 | 31.7264 | $0.1265 | |
| OP | <0.01% | $0.054296 | 2.1686 | $0.1177 | |
| OP | <0.01% | $0.033163 | 3.4002 | $0.1127 | |
| UNI | 0.12% | $0.999997 | 782.0679 | $782.07 | |
| UNI | 0.05% | $2,036.81 | 0.1734 | $353.09 | |
| UNI | 0.05% | $0.998295 | 338.039 | $337.46 | |
| UNI | 0.03% | $2,263.48 | 0.1026 | $232.22 | |
| UNI | <0.01% | $69,153.62 | 0.0008197 | $56.69 | |
| UNI | <0.01% | $32.94 | 1.191 | $39.23 | |
| UNI | <0.01% | $99.2 | 0.1125 | $11.16 | |
| UNI | <0.01% | $3.88 | 1.274 | $4.94 | |
| UNI | <0.01% | $0.000031 | 38,445.711 | $1.18 | |
| GNO | 0.05% | $2,258.88 | 0.1636 | $369.65 | |
| GNO | 0.03% | $126.66 | 1.8241 | $231.04 | |
| GNO | 0.02% | $1 | 168.2585 | $168.28 | |
| GNO | 0.02% | $1.16 | 141.542 | $164.19 | |
| GNO | 0.02% | $1.16 | 141.542 | $164.19 | |
| GNO | 0.02% | $0.999968 | 163.4359 | $163.43 | |
| GNO | 0.02% | $0.233388 | 468.3791 | $109.31 | |
| GNO | 0.02% | $1 | 106.0445 | $106.06 | |
| GNO | <0.01% | $2,767.96 | 0.00716947 | $19.84 | |
| GNO | <0.01% | $0.103149 | 184.5095 | $19.03 | |
| GNO | <0.01% | $0.999968 | 17.2568 | $17.26 | |
| GNO | <0.01% | $1.22 | 13.9101 | $16.97 | |
| GNO | <0.01% | $1 | 10.4215 | $10.42 | |
| GNO | <0.01% | $0.999617 | 5.2871 | $5.29 | |
| GNO | <0.01% | $76,177 | 0.00005217 | $3.97 | |
| GNO | <0.01% | $0.036748 | 97.8442 | $3.6 | |
| GNO | <0.01% | $424.64 | 0.00649368 | $2.76 | |
| GNO | <0.01% | $8.99 | 0.2387 | $2.15 | |
| GNO | <0.01% | $1 | 1.0763 | $1.08 | |
| GNO | <0.01% | $729.09 | 0.00144476 | $1.05 | |
| GNO | <0.01% | $0.146841 | 7.1062 | $1.04 | |
| GNO | <0.01% | $0.193335 | 5.3794 | $1.04 | |
| GNO | <0.01% | $0.000553 | 1,788.7358 | $0.9885 | |
| GNO | <0.01% | $1.28 | 0.6742 | $0.863 | |
| GNO | <0.01% | $0.99981 | 0.7541 | $0.7539 | |
| GNO | <0.01% | $0.992463 | 0.5518 | $0.5476 | |
| GNO | <0.01% | $2,025.17 | 0.00021641 | $0.4382 | |
| GNO | <0.01% | $1.18 | 0.2198 | $0.2593 | |
| GNO | <0.01% | $1 | 0.2433 | $0.2437 | |
| GNO | <0.01% | $0.006718 | 30.8899 | $0.2075 | |
| GNO | <0.01% | $2,314.06 | 0.00007109 | $0.1645 | |
| SONIC | <0.01% | $0.539626 | 26.274 | $14.18 | |
| SONIC | <0.01% | $0.999986 | 13.8333 | $13.83 | |
| SONIC | <0.01% | $0.001229 | 9,402.9424 | $11.56 | |
| SONIC | <0.01% | $0.053892 | 205.196 | $11.06 | |
| SONIC | <0.01% | $1 | 3.8477 | $3.85 | |
| SONIC | <0.01% | $2,263.38 | 0.00112103 | $2.54 | |
| SONIC | <0.01% | $1 | 1.3998 | $1.4 | |
| SONIC | <0.01% | $0.051182 | 22.9291 | $1.17 | |
| SONIC | <0.01% | $0.041746 | 21.317 | $0.889905 | |
| SONIC | <0.01% | $0.005465 | 144.504 | $0.7896 | |
| PLASMA | <0.01% | $0.101266 | 0.068 | $0.006888 |
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.