ETH Price: $1,965.85 (-1.49%)
 

Overview

ETH Balance

175.837608083806413104 ETH

Eth Value

$345,669.72 (@ $1,965.85/ETH)

Token Holdings

More Info

Private Name Tags

Multichain Info

1 address found via
Amount:Between 1-100k
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

Amount:Between 1-100k
Reset Filter

Showing the last 25 internal transactions (View Advanced Filter)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer244886202026-02-19 4:52:3516 mins ago1771476755
0x3Ef238c3...b79Ad1d6F
1.4751 ETH
Collect Native F...244886202026-02-19 4:52:3516 mins ago1771476755
0x3Ef238c3...b79Ad1d6F
1.49 ETH
Transfer244884512026-02-19 4:18:1151 mins ago1771474691
0x3Ef238c3...b79Ad1d6F
1.9764459 ETH
Collect Native F...244884512026-02-19 4:18:1151 mins ago1771474691
0x3Ef238c3...b79Ad1d6F
1.99641 ETH
Transfer244882032026-02-19 3:28:351 hr ago1771471715
0x3Ef238c3...b79Ad1d6F
1.86047647 ETH
Collect Native F...244882032026-02-19 3:28:351 hr ago1771471715
0x3Ef238c3...b79Ad1d6F
1.87926916 ETH
Transfer244881702026-02-19 3:21:591 hr ago1771471319
0x3Ef238c3...b79Ad1d6F
14.0039006 ETH
Collect Native F...244881702026-02-19 3:21:591 hr ago1771471319
0x3Ef238c3...b79Ad1d6F
14.06 ETH
Transfer244881062026-02-19 3:09:112 hrs ago1771470551
0x3Ef238c3...b79Ad1d6F
1.86484562 ETH
Collect Native F...244881062026-02-19 3:09:112 hrs ago1771470551
0x3Ef238c3...b79Ad1d6F
1.88368244 ETH
Transfer244880072026-02-19 2:49:232 hrs ago1771469363
0x3Ef238c3...b79Ad1d6F
9.915 ETH
Collect Native F...244880072026-02-19 2:49:232 hrs ago1771469363
0x3Ef238c3...b79Ad1d6F
10 ETH
Transfer244879012026-02-19 2:27:592 hrs ago1771468079
0x3Ef238c3...b79Ad1d6F
3.16872 ETH
Collect Native F...244879012026-02-19 2:27:592 hrs ago1771468079
0x3Ef238c3...b79Ad1d6F
3.26 ETH
Transfer244878712026-02-19 2:21:592 hrs ago1771467719
0x3Ef238c3...b79Ad1d6F
2.51512888 ETH
Collect Native F...244878712026-02-19 2:21:592 hrs ago1771467719
0x3Ef238c3...b79Ad1d6F
2.54053422 ETH
Transfer244878302026-02-19 2:13:472 hrs ago1771467227
0x3Ef238c3...b79Ad1d6F
2.98188 ETH
Collect Native F...244878302026-02-19 2:13:472 hrs ago1771467227
0x3Ef238c3...b79Ad1d6F
3.012 ETH
Transfer244876342026-02-19 1:33:473 hrs ago1771464827
0x3Ef238c3...b79Ad1d6F
1.17705 ETH
Collect Native F...244876342026-02-19 1:33:473 hrs ago1771464827
0x3Ef238c3...b79Ad1d6F
1.18 ETH
Transfer244875362026-02-19 1:14:113 hrs ago1771463651
0x3Ef238c3...b79Ad1d6F
2.5779 ETH
Collect Native F...244875362026-02-19 1:14:113 hrs ago1771463651
0x3Ef238c3...b79Ad1d6F
2.6 ETH
Transfer244875082026-02-19 1:08:354 hrs ago1771463315
0x3Ef238c3...b79Ad1d6F
1.88677125 ETH
Collect Native F...244875082026-02-19 1:08:354 hrs ago1771463315
0x3Ef238c3...b79Ad1d6F
1.8915 ETH
Transfer244874952026-02-19 1:05:594 hrs ago1771463159
0x3Ef238c3...b79Ad1d6F
1.69472975 ETH
VIEW ADVANCED FILTER
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FeeCollector

Compiler Version
v0.8.29+commit.ab55807c

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
cancun EvmVersion
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;

import { LibAsset } from "../Libraries/LibAsset.sol";
import { TransferrableOwnership } from "../Helpers/TransferrableOwnership.sol";
import { SafeTransferLib } from "solady/utils/SafeTransferLib.sol";

/// @title Fee Collector
/// @author LI.FI (https://li.fi)
/// @notice Provides functionality for collecting integrator fees
/// @custom:version 1.0.1
contract FeeCollector is TransferrableOwnership {
    /// State ///

    // Integrator -> TokenAddress -> Balance
    mapping(address => mapping(address => uint256)) private _balances;
    // TokenAddress -> Balance
    mapping(address => uint256) private _lifiBalances;

    /// Errors ///
    error TransferFailure();
    error NotEnoughNativeForFees();

    /// Events ///
    event FeesCollected(
        address indexed _token,
        address indexed _integrator,
        uint256 _integratorFee,
        uint256 _lifiFee
    );
    event FeesWithdrawn(
        address indexed _token,
        address indexed _to,
        uint256 _amount
    );
    event LiFiFeesWithdrawn(
        address indexed _token,
        address indexed _to,
        uint256 _amount
    );

    /// Constructor ///

    // solhint-disable-next-line no-empty-blocks
    constructor(address _owner) TransferrableOwnership(_owner) {}

    /// External Methods ///

    /// @notice Collects fees for the integrator
    /// @param tokenAddress address of the token to collect fees for
    /// @param integratorFee amount of fees to collect going to the integrator
    /// @param lifiFee amount of fees to collect going to lifi
    /// @param integratorAddress address of the integrator
    function collectTokenFees(
        address tokenAddress,
        uint256 integratorFee,
        uint256 lifiFee,
        address integratorAddress
    ) external {
        LibAsset.depositAsset(tokenAddress, integratorFee + lifiFee);
        _balances[integratorAddress][tokenAddress] += integratorFee;
        _lifiBalances[tokenAddress] += lifiFee;
        emit FeesCollected(
            tokenAddress,
            integratorAddress,
            integratorFee,
            lifiFee
        );
    }

    /// @notice Collects fees for the integrator in native token
    /// @param integratorFee amount of fees to collect going to the integrator
    /// @param lifiFee amount of fees to collect going to lifi
    /// @param integratorAddress address of the integrator
    function collectNativeFees(
        uint256 integratorFee,
        uint256 lifiFee,
        address integratorAddress
    ) external payable {
        if (msg.value < integratorFee + lifiFee)
            revert NotEnoughNativeForFees();
        _balances[integratorAddress][LibAsset.NULL_ADDRESS] += integratorFee;
        _lifiBalances[LibAsset.NULL_ADDRESS] += lifiFee;
        uint256 remaining = msg.value - (integratorFee + lifiFee);
        // Prevent extra native token from being locked in the contract
        if (remaining > 0) {
            // solhint-disable-next-line avoid-low-level-calls
            SafeTransferLib.safeTransferETH(msg.sender, remaining);
        }
        emit FeesCollected(
            LibAsset.NULL_ADDRESS,
            integratorAddress,
            integratorFee,
            lifiFee
        );
    }

    /// @notice Withdraw fees and sends to the integrator
    /// @param tokenAddress address of the token to withdraw fees for
    function withdrawIntegratorFees(address tokenAddress) external {
        uint256 balance = _balances[msg.sender][tokenAddress];
        if (balance == 0) {
            return;
        }
        _balances[msg.sender][tokenAddress] = 0;
        LibAsset.transferAsset(tokenAddress, payable(msg.sender), balance);
        emit FeesWithdrawn(tokenAddress, msg.sender, balance);
    }

    /// @notice Batch withdraw fees and sends to the integrator
    /// @param tokenAddresses addresses of the tokens to withdraw fees for
    function batchWithdrawIntegratorFees(
        address[] memory tokenAddresses
    ) external {
        uint256 length = tokenAddresses.length;
        uint256 balance;
        for (uint256 i = 0; i < length; ) {
            balance = _balances[msg.sender][tokenAddresses[i]];
            if (balance != 0) {
                _balances[msg.sender][tokenAddresses[i]] = 0;
                LibAsset.transferAsset(
                    tokenAddresses[i],
                    payable(msg.sender),
                    balance
                );
                emit FeesWithdrawn(tokenAddresses[i], msg.sender, balance);
            }
            unchecked {
                ++i;
            }
        }
    }

    /// @notice Withdraws fees and sends to lifi
    /// @param tokenAddress address of the token to withdraw fees for
    function withdrawLifiFees(address tokenAddress) external onlyOwner {
        uint256 balance = _lifiBalances[tokenAddress];
        if (balance == 0) {
            return;
        }
        _lifiBalances[tokenAddress] = 0;
        LibAsset.transferAsset(tokenAddress, payable(msg.sender), balance);
        emit LiFiFeesWithdrawn(tokenAddress, msg.sender, balance);
    }

    /// @notice Batch withdraws fees and sends to lifi
    /// @param tokenAddresses addresses of the tokens to withdraw fees for
    function batchWithdrawLifiFees(
        address[] memory tokenAddresses
    ) external onlyOwner {
        uint256 length = tokenAddresses.length;
        uint256 balance;
        for (uint256 i = 0; i < length; ) {
            balance = _lifiBalances[tokenAddresses[i]];
            _lifiBalances[tokenAddresses[i]] = 0;
            LibAsset.transferAsset(
                tokenAddresses[i],
                payable(msg.sender),
                balance
            );
            emit LiFiFeesWithdrawn(tokenAddresses[i], msg.sender, balance);
            unchecked {
                ++i;
            }
        }
    }

    /// @notice Returns the balance of the integrator
    /// @param integratorAddress address of the integrator
    /// @param tokenAddress address of the token to get the balance of
    function getTokenBalance(
        address integratorAddress,
        address tokenAddress
    ) external view returns (uint256) {
        return _balances[integratorAddress][tokenAddress];
    }

    /// @notice Returns the balance of lifi
    /// @param tokenAddress address of the token to get the balance of
    function getLifiTokenBalance(
        address tokenAddress
    ) external view returns (uint256) {
        return _lifiBalances[tokenAddress];
    }
}

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;

import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { LibSwap } from "./LibSwap.sol";
import { SafeTransferLib } from "solady/utils/SafeTransferLib.sol";

// solhint-disable-next-line max-line-length
import { InvalidReceiver, NullAddrIsNotAValidSpender, InvalidAmount, NullAddrIsNotAnERC20Token } from "../Errors/GenericErrors.sol";

/// @title LibAsset
/// @author LI.FI (https://li.fi)
/// @custom:version 2.1.2
/// @notice This library contains helpers for dealing with onchain transfers
///         of assets, including accounting for the native asset `assetId`
///         conventions and any noncompliant ERC20 transfers
library LibAsset {
    using SafeTransferLib for address;
    using SafeTransferLib for address payable;

    /// @dev All native assets use the empty address for their asset id
    ///      by convention
    address internal constant NULL_ADDRESS = address(0);

    /// @dev EIP-7702 delegation designator prefix for Account Abstraction
    bytes3 internal constant DELEGATION_DESIGNATOR = 0xef0100;

    /// @notice Gets the balance of the inheriting contract for the given asset
    /// @param assetId The asset identifier to get the balance of
    /// @return Balance held by contracts using this library (returns 0 if assetId does not exist)
    function getOwnBalance(address assetId) internal view returns (uint256) {
        return
            isNativeAsset(assetId)
                ? address(this).balance
                : assetId.balanceOf(address(this));
    }

    /// @notice Wrapper function to transfer a given asset (native or erc20) to
    ///         some recipient. Should handle all non-compliant return value
    ///         tokens as well by using the SafeERC20 contract by open zeppelin.
    /// @param assetId Asset id for transfer (address(0) for native asset,
    ///                token address for erc20s)
    /// @param recipient Address to send asset to
    /// @param amount Amount to send to given recipient
    function transferAsset(
        address assetId,
        address payable recipient,
        uint256 amount
    ) internal {
        if (isNativeAsset(assetId)) {
            transferNativeAsset(recipient, amount);
        } else {
            transferERC20(assetId, recipient, amount);
        }
    }

    /// @notice Transfers ether from the inheriting contract to a given
    ///         recipient
    /// @param recipient Address to send ether to
    /// @param amount Amount to send to given recipient
    function transferNativeAsset(
        address payable recipient,
        uint256 amount
    ) private {
        // make sure a meaningful receiver address was provided
        if (recipient == NULL_ADDRESS) revert InvalidReceiver();

        // transfer native asset (will revert if target reverts or contract has insufficient balance)
        recipient.safeTransferETH(amount);
    }

    /// @notice Transfers tokens from the inheriting contract to a given recipient
    /// @param assetId Token address to transfer
    /// @param recipient Address to send tokens to
    /// @param amount Amount to send to given recipient
    function transferERC20(
        address assetId,
        address recipient,
        uint256 amount
    ) internal {
        // make sure a meaningful receiver address was provided
        if (recipient == NULL_ADDRESS) {
            revert InvalidReceiver();
        }

        // transfer ERC20 assets (will revert if target reverts or contract has insufficient balance)
        assetId.safeTransfer(recipient, amount);
    }

    /// @notice Transfers tokens from a sender to a given recipient
    /// @param assetId Token address to transfer
    /// @param from Address of sender/owner
    /// @param recipient Address of recipient/spender
    /// @param amount Amount to transfer from owner to spender
    function transferFromERC20(
        address assetId,
        address from,
        address recipient,
        uint256 amount
    ) internal {
        // check if native asset
        if (isNativeAsset(assetId)) {
            revert NullAddrIsNotAnERC20Token();
        }

        // make sure a meaningful receiver address was provided
        if (recipient == NULL_ADDRESS) {
            revert InvalidReceiver();
        }

        // transfer ERC20 assets (will revert if target reverts or contract has insufficient balance)
        assetId.safeTransferFrom(from, recipient, amount);
    }

    /// @notice Pulls tokens from msg.sender
    /// @param assetId Token address to transfer
    /// @param amount Amount to transfer from owner
    function depositAsset(address assetId, uint256 amount) internal {
        // make sure a meaningful amount was provided
        if (amount == 0) revert InvalidAmount();

        // check if native asset
        if (isNativeAsset(assetId)) {
            // ensure msg.value is equal or greater than amount
            if (msg.value < amount) revert InvalidAmount();
        } else {
            // transfer ERC20 assets (will revert if target reverts or contract has insufficient balance)
            assetId.safeTransferFrom(msg.sender, address(this), amount);
        }
    }

    function depositAssets(LibSwap.SwapData[] calldata swaps) internal {
        for (uint256 i = 0; i < swaps.length; ) {
            LibSwap.SwapData calldata swap = swaps[i];
            if (swap.requiresDeposit) {
                depositAsset(swap.sendingAssetId, swap.fromAmount);
            }
            unchecked {
                i++;
            }
        }
    }

    /// @notice If the current allowance is insufficient, the allowance for a given spender
    ///         is set to MAX_UINT.
    /// @param assetId Token address to transfer
    /// @param spender Address to give spend approval to
    /// @param amount allowance amount required for current transaction
    function maxApproveERC20(
        IERC20 assetId,
        address spender,
        uint256 amount
    ) internal {
        approveERC20(assetId, spender, amount, type(uint256).max);
    }

    /// @notice If the current allowance is insufficient, the allowance for a given spender
    ///         is set to the amount provided
    /// @param assetId Token address to transfer
    /// @param spender Address to give spend approval to
    /// @param requiredAllowance Allowance required for current transaction
    /// @param setAllowanceTo The amount the allowance should be set to if current allowance is insufficient
    function approveERC20(
        IERC20 assetId,
        address spender,
        uint256 requiredAllowance,
        uint256 setAllowanceTo
    ) internal {
        if (isNativeAsset(address(assetId))) {
            return;
        }

        // make sure a meaningful spender address was provided
        if (spender == NULL_ADDRESS) {
            revert NullAddrIsNotAValidSpender();
        }

        // check if allowance is sufficient, otherwise set allowance to provided amount
        // If the initial attempt to approve fails, attempts to reset the approved amount to zero,
        // then retries the approval again (some tokens, e.g. USDT, requires this).
        // Reverts upon failure
        if (assetId.allowance(address(this), spender) < requiredAllowance) {
            address(assetId).safeApproveWithRetry(spender, setAllowanceTo);
        }
    }

    /// @notice Determines whether the given assetId is the native asset
    /// @param assetId The asset identifier to evaluate
    /// @return Boolean indicating if the asset is the native asset
    function isNativeAsset(address assetId) internal pure returns (bool) {
        return assetId == NULL_ADDRESS;
    }

    /// @notice Checks if the given address is a contract
    ///         Returns true for any account with runtime code (excluding EIP-7702 accounts).
    ///         For EIP-7702 accounts, checks if code size is exactly 23 bytes (delegation format).
    ///         Limitations:
    ///         - Cannot distinguish between EOA and self-destructed contract
    /// @param account The address to be checked
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }

        // Return true only for regular contracts (size > 23)
        // EIP-7702 delegated accounts (size == 23) are still EOAs, not contracts
        return size > 23;
    }
}

// SPDX-License-Identifier: LGPL-3.0-only
/// @custom:version 1.0.0
pragma solidity ^0.8.17;

import { IERC173 } from "../Interfaces/IERC173.sol";
import { LibAsset } from "../Libraries/LibAsset.sol";

contract TransferrableOwnership is IERC173 {
    address public owner;
    address public pendingOwner;

    /// Errors ///
    error UnAuthorized();
    error NoNullOwner();
    error NewOwnerMustNotBeSelf();
    error NoPendingOwnershipTransfer();
    error NotPendingOwner();

    /// Events ///
    event OwnershipTransferRequested(
        address indexed _from,
        address indexed _to
    );

    constructor(address initialOwner) {
        owner = initialOwner;
    }

    modifier onlyOwner() {
        if (msg.sender != owner) revert UnAuthorized();
        _;
    }

    /// @notice Initiates transfer of ownership to a new address
    /// @param _newOwner the address to transfer ownership to
    function transferOwnership(address _newOwner) external onlyOwner {
        if (_newOwner == LibAsset.NULL_ADDRESS) revert NoNullOwner();
        if (_newOwner == msg.sender) revert NewOwnerMustNotBeSelf();
        pendingOwner = _newOwner;
        emit OwnershipTransferRequested(msg.sender, pendingOwner);
    }

    /// @notice Cancel transfer of ownership
    function cancelOwnershipTransfer() external onlyOwner {
        if (pendingOwner == LibAsset.NULL_ADDRESS)
            revert NoPendingOwnershipTransfer();
        pendingOwner = LibAsset.NULL_ADDRESS;
    }

    /// @notice Confirms transfer of ownership to the calling address (msg.sender)
    function confirmOwnershipTransfer() external {
        address _pendingOwner = pendingOwner;
        if (msg.sender != _pendingOwner) revert NotPendingOwner();
        emit OwnershipTransferred(owner, _pendingOwner);
        owner = _pendingOwner;
        pendingOwner = LibAsset.NULL_ADDRESS;
    }
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/SafeTransferLib.sol)
/// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol)
/// @author Permit2 operations from (https://github.com/Uniswap/permit2/blob/main/src/libraries/Permit2Lib.sol)
///
/// @dev Note:
/// - For ETH transfers, please use `forceSafeTransferETH` for DoS protection.
/// - For ERC20s, this implementation won't check that a token has code,
///   responsibility is delegated to the caller.
library SafeTransferLib {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                       CUSTOM ERRORS                        */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev The ETH transfer has failed.
    error ETHTransferFailed();

    /// @dev The ERC20 `transferFrom` has failed.
    error TransferFromFailed();

    /// @dev The ERC20 `transfer` has failed.
    error TransferFailed();

    /// @dev The ERC20 `approve` has failed.
    error ApproveFailed();

    /// @dev The Permit2 operation has failed.
    error Permit2Failed();

    /// @dev The Permit2 amount must be less than `2**160 - 1`.
    error Permit2AmountOverflow();

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                         CONSTANTS                          */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Suggested gas stipend for contract receiving ETH that disallows any storage writes.
    uint256 internal constant GAS_STIPEND_NO_STORAGE_WRITES = 2300;

    /// @dev Suggested gas stipend for contract receiving ETH to perform a few
    /// storage reads and writes, but low enough to prevent griefing.
    uint256 internal constant GAS_STIPEND_NO_GRIEF = 100000;

    /// @dev The unique EIP-712 domain domain separator for the DAI token contract.
    bytes32 internal constant DAI_DOMAIN_SEPARATOR =
        0xdbb8cf42e1ecb028be3f3dbc922e1d878b963f411dc388ced501601c60f7c6f7;

    /// @dev The address for the WETH9 contract on Ethereum mainnet.
    address internal constant WETH9 = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    /// @dev The canonical Permit2 address.
    /// [Github](https://github.com/Uniswap/permit2)
    /// [Etherscan](https://etherscan.io/address/0x000000000022D473030F116dDEE9F6B43aC78BA3)
    address internal constant PERMIT2 = 0x000000000022D473030F116dDEE9F6B43aC78BA3;

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                       ETH OPERATIONS                       */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    // If the ETH transfer MUST succeed with a reasonable gas budget, use the force variants.
    //
    // The regular variants:
    // - Forwards all remaining gas to the target.
    // - Reverts if the target reverts.
    // - Reverts if the current contract has insufficient balance.
    //
    // The force variants:
    // - Forwards with an optional gas stipend
    //   (defaults to `GAS_STIPEND_NO_GRIEF`, which is sufficient for most cases).
    // - If the target reverts, or if the gas stipend is exhausted,
    //   creates a temporary contract to force send the ETH via `SELFDESTRUCT`.
    //   Future compatible with `SENDALL`: https://eips.ethereum.org/EIPS/eip-4758.
    // - Reverts if the current contract has insufficient balance.
    //
    // The try variants:
    // - Forwards with a mandatory gas stipend.
    // - Instead of reverting, returns whether the transfer succeeded.

    /// @dev Sends `amount` (in wei) ETH to `to`.
    function safeTransferETH(address to, uint256 amount) internal {
        /// @solidity memory-safe-assembly
        assembly {
            if iszero(call(gas(), to, amount, codesize(), 0x00, codesize(), 0x00)) {
                mstore(0x00, 0xb12d13eb) // `ETHTransferFailed()`.
                revert(0x1c, 0x04)
            }
        }
    }

    /// @dev Sends all the ETH in the current contract to `to`.
    function safeTransferAllETH(address to) internal {
        /// @solidity memory-safe-assembly
        assembly {
            // Transfer all the ETH and check if it succeeded or not.
            if iszero(call(gas(), to, selfbalance(), codesize(), 0x00, codesize(), 0x00)) {
                mstore(0x00, 0xb12d13eb) // `ETHTransferFailed()`.
                revert(0x1c, 0x04)
            }
        }
    }

    /// @dev Force sends `amount` (in wei) ETH to `to`, with a `gasStipend`.
    function forceSafeTransferETH(address to, uint256 amount, uint256 gasStipend) internal {
        /// @solidity memory-safe-assembly
        assembly {
            if lt(selfbalance(), amount) {
                mstore(0x00, 0xb12d13eb) // `ETHTransferFailed()`.
                revert(0x1c, 0x04)
            }
            if iszero(call(gasStipend, to, amount, codesize(), 0x00, codesize(), 0x00)) {
                mstore(0x00, to) // Store the address in scratch space.
                mstore8(0x0b, 0x73) // Opcode `PUSH20`.
                mstore8(0x20, 0xff) // Opcode `SELFDESTRUCT`.
                if iszero(create(amount, 0x0b, 0x16)) { revert(codesize(), codesize()) } // For gas estimation.
            }
        }
    }

    /// @dev Force sends all the ETH in the current contract to `to`, with a `gasStipend`.
    function forceSafeTransferAllETH(address to, uint256 gasStipend) internal {
        /// @solidity memory-safe-assembly
        assembly {
            if iszero(call(gasStipend, to, selfbalance(), codesize(), 0x00, codesize(), 0x00)) {
                mstore(0x00, to) // Store the address in scratch space.
                mstore8(0x0b, 0x73) // Opcode `PUSH20`.
                mstore8(0x20, 0xff) // Opcode `SELFDESTRUCT`.
                if iszero(create(selfbalance(), 0x0b, 0x16)) { revert(codesize(), codesize()) } // For gas estimation.
            }
        }
    }

    /// @dev Force sends `amount` (in wei) ETH to `to`, with `GAS_STIPEND_NO_GRIEF`.
    function forceSafeTransferETH(address to, uint256 amount) internal {
        /// @solidity memory-safe-assembly
        assembly {
            if lt(selfbalance(), amount) {
                mstore(0x00, 0xb12d13eb) // `ETHTransferFailed()`.
                revert(0x1c, 0x04)
            }
            if iszero(call(GAS_STIPEND_NO_GRIEF, to, amount, codesize(), 0x00, codesize(), 0x00)) {
                mstore(0x00, to) // Store the address in scratch space.
                mstore8(0x0b, 0x73) // Opcode `PUSH20`.
                mstore8(0x20, 0xff) // Opcode `SELFDESTRUCT`.
                if iszero(create(amount, 0x0b, 0x16)) { revert(codesize(), codesize()) } // For gas estimation.
            }
        }
    }

    /// @dev Force sends all the ETH in the current contract to `to`, with `GAS_STIPEND_NO_GRIEF`.
    function forceSafeTransferAllETH(address to) internal {
        /// @solidity memory-safe-assembly
        assembly {
            // forgefmt: disable-next-item
            if iszero(call(GAS_STIPEND_NO_GRIEF, to, selfbalance(), codesize(), 0x00, codesize(), 0x00)) {
                mstore(0x00, to) // Store the address in scratch space.
                mstore8(0x0b, 0x73) // Opcode `PUSH20`.
                mstore8(0x20, 0xff) // Opcode `SELFDESTRUCT`.
                if iszero(create(selfbalance(), 0x0b, 0x16)) { revert(codesize(), codesize()) } // For gas estimation.
            }
        }
    }

    /// @dev Sends `amount` (in wei) ETH to `to`, with a `gasStipend`.
    function trySafeTransferETH(address to, uint256 amount, uint256 gasStipend)
        internal
        returns (bool success)
    {
        /// @solidity memory-safe-assembly
        assembly {
            success := call(gasStipend, to, amount, codesize(), 0x00, codesize(), 0x00)
        }
    }

    /// @dev Sends all the ETH in the current contract to `to`, with a `gasStipend`.
    function trySafeTransferAllETH(address to, uint256 gasStipend)
        internal
        returns (bool success)
    {
        /// @solidity memory-safe-assembly
        assembly {
            success := call(gasStipend, to, selfbalance(), codesize(), 0x00, codesize(), 0x00)
        }
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                      ERC20 OPERATIONS                      */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Sends `amount` of ERC20 `token` from `from` to `to`.
    /// Reverts upon failure.
    ///
    /// The `from` account must have at least `amount` approved for
    /// the current contract to manage.
    function safeTransferFrom(address token, address from, address to, uint256 amount) internal {
        /// @solidity memory-safe-assembly
        assembly {
            let m := mload(0x40) // Cache the free memory pointer.
            mstore(0x60, amount) // Store the `amount` argument.
            mstore(0x40, to) // Store the `to` argument.
            mstore(0x2c, shl(96, from)) // Store the `from` argument.
            mstore(0x0c, 0x23b872dd000000000000000000000000) // `transferFrom(address,address,uint256)`.
            // Perform the transfer, reverting 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, 0x1c, 0x64, 0x00, 0x20)
                )
            ) {
                mstore(0x00, 0x7939f424) // `TransferFromFailed()`.
                revert(0x1c, 0x04)
            }
            mstore(0x60, 0) // Restore the zero slot to zero.
            mstore(0x40, m) // Restore the free memory pointer.
        }
    }

    /// @dev Sends `amount` of ERC20 `token` from `from` to `to`.
    ///
    /// The `from` account must have at least `amount` approved for the current contract to manage.
    function trySafeTransferFrom(address token, address from, address to, uint256 amount)
        internal
        returns (bool success)
    {
        /// @solidity memory-safe-assembly
        assembly {
            let m := mload(0x40) // Cache the free memory pointer.
            mstore(0x60, amount) // Store the `amount` argument.
            mstore(0x40, to) // Store the `to` argument.
            mstore(0x2c, shl(96, from)) // Store the `from` argument.
            mstore(0x0c, 0x23b872dd000000000000000000000000) // `transferFrom(address,address,uint256)`.
            success :=
                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, 0x1c, 0x64, 0x00, 0x20)
                )
            mstore(0x60, 0) // Restore the zero slot to zero.
            mstore(0x40, m) // Restore the free memory pointer.
        }
    }

    /// @dev Sends all of ERC20 `token` from `from` to `to`.
    /// Reverts upon failure.
    ///
    /// The `from` account must have their entire balance approved for the current contract to manage.
    function safeTransferAllFrom(address token, address from, address to)
        internal
        returns (uint256 amount)
    {
        /// @solidity memory-safe-assembly
        assembly {
            let m := mload(0x40) // Cache the free memory pointer.
            mstore(0x40, to) // Store the `to` argument.
            mstore(0x2c, shl(96, from)) // Store the `from` argument.
            mstore(0x0c, 0x70a08231000000000000000000000000) // `balanceOf(address)`.
            // Read the balance, reverting upon failure.
            if iszero(
                and( // The arguments of `and` are evaluated from right to left.
                    gt(returndatasize(), 0x1f), // At least 32 bytes returned.
                    staticcall(gas(), token, 0x1c, 0x24, 0x60, 0x20)
                )
            ) {
                mstore(0x00, 0x7939f424) // `TransferFromFailed()`.
                revert(0x1c, 0x04)
            }
            mstore(0x00, 0x23b872dd) // `transferFrom(address,address,uint256)`.
            amount := mload(0x60) // The `amount` is already at 0x60. We'll need to return it.
            // Perform the transfer, reverting 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, 0x1c, 0x64, 0x00, 0x20)
                )
            ) {
                mstore(0x00, 0x7939f424) // `TransferFromFailed()`.
                revert(0x1c, 0x04)
            }
            mstore(0x60, 0) // Restore the zero slot to zero.
            mstore(0x40, m) // Restore the free memory pointer.
        }
    }

    /// @dev Sends `amount` of ERC20 `token` from the current contract to `to`.
    /// Reverts upon failure.
    function safeTransfer(address token, address to, uint256 amount) internal {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x14, to) // Store the `to` argument.
            mstore(0x34, amount) // Store the `amount` argument.
            mstore(0x00, 0xa9059cbb000000000000000000000000) // `transfer(address,uint256)`.
            // Perform the transfer, reverting 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(0x00, 0x90b8ec18) // `TransferFailed()`.
                revert(0x1c, 0x04)
            }
            mstore(0x34, 0) // Restore the part of the free memory pointer that was overwritten.
        }
    }

    /// @dev Sends all of ERC20 `token` from the current contract to `to`.
    /// Reverts upon failure.
    function safeTransferAll(address token, address to) internal returns (uint256 amount) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, 0x70a08231) // Store the function selector of `balanceOf(address)`.
            mstore(0x20, address()) // Store the address of the current contract.
            // Read the balance, reverting upon failure.
            if iszero(
                and( // The arguments of `and` are evaluated from right to left.
                    gt(returndatasize(), 0x1f), // At least 32 bytes returned.
                    staticcall(gas(), token, 0x1c, 0x24, 0x34, 0x20)
                )
            ) {
                mstore(0x00, 0x90b8ec18) // `TransferFailed()`.
                revert(0x1c, 0x04)
            }
            mstore(0x14, to) // Store the `to` argument.
            amount := mload(0x34) // The `amount` is already at 0x34. We'll need to return it.
            mstore(0x00, 0xa9059cbb000000000000000000000000) // `transfer(address,uint256)`.
            // Perform the transfer, reverting 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(0x00, 0x90b8ec18) // `TransferFailed()`.
                revert(0x1c, 0x04)
            }
            mstore(0x34, 0) // Restore the part of the free memory pointer that was overwritten.
        }
    }

    /// @dev Sets `amount` of ERC20 `token` for `to` to manage on behalf of the current contract.
    /// Reverts upon failure.
    function safeApprove(address token, address to, uint256 amount) internal {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x14, to) // Store the `to` argument.
            mstore(0x34, amount) // Store the `amount` argument.
            mstore(0x00, 0x095ea7b3000000000000000000000000) // `approve(address,uint256)`.
            // Perform the approval, reverting 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(0x00, 0x3e3f8f73) // `ApproveFailed()`.
                revert(0x1c, 0x04)
            }
            mstore(0x34, 0) // Restore the part of the free memory pointer that was overwritten.
        }
    }

    /// @dev Sets `amount` of ERC20 `token` for `to` to manage on behalf of the current contract.
    /// If the initial attempt to approve fails, attempts to reset the approved amount to zero,
    /// then retries the approval again (some tokens, e.g. USDT, requires this).
    /// Reverts upon failure.
    function safeApproveWithRetry(address token, address to, uint256 amount) internal {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x14, to) // Store the `to` argument.
            mstore(0x34, amount) // Store the `amount` argument.
            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, amount) // Store back the original `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(0x00, 0x3e3f8f73) // `ApproveFailed()`.
                    revert(0x1c, 0x04)
                }
            }
            mstore(0x34, 0) // Restore the part of the free memory pointer that was overwritten.
        }
    }

    /// @dev Returns the amount of ERC20 `token` owned by `account`.
    /// Returns zero if the `token` does not exist.
    function balanceOf(address token, address account) internal view returns (uint256 amount) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x14, account) // Store the `account` argument.
            mstore(0x00, 0x70a08231000000000000000000000000) // `balanceOf(address)`.
            amount :=
                mul( // The arguments of `mul` are evaluated from right to left.
                    mload(0x20),
                    and( // The arguments of `and` are evaluated from right to left.
                        gt(returndatasize(), 0x1f), // At least 32 bytes returned.
                        staticcall(gas(), token, 0x10, 0x24, 0x20, 0x20)
                    )
                )
        }
    }

    /// @dev Sends `amount` of ERC20 `token` from `from` to `to`.
    /// If the initial attempt fails, try to use Permit2 to transfer the token.
    /// Reverts upon failure.
    ///
    /// The `from` account must have at least `amount` approved for the current contract to manage.
    function safeTransferFrom2(address token, address from, address to, uint256 amount) internal {
        if (!trySafeTransferFrom(token, from, to, amount)) {
            permit2TransferFrom(token, from, to, amount);
        }
    }

    /// @dev Sends `amount` of ERC20 `token` from `from` to `to` via Permit2.
    /// Reverts upon failure.
    function permit2TransferFrom(address token, address from, address to, uint256 amount)
        internal
    {
        /// @solidity memory-safe-assembly
        assembly {
            let m := mload(0x40)
            mstore(add(m, 0x74), shr(96, shl(96, token)))
            mstore(add(m, 0x54), amount)
            mstore(add(m, 0x34), to)
            mstore(add(m, 0x20), shl(96, from))
            // `transferFrom(address,address,uint160,address)`.
            mstore(m, 0x36c78516000000000000000000000000)
            let p := PERMIT2
            let exists := eq(chainid(), 1)
            if iszero(exists) { exists := iszero(iszero(extcodesize(p))) }
            if iszero(and(call(gas(), p, 0, add(m, 0x10), 0x84, codesize(), 0x00), exists)) {
                mstore(0x00, 0x7939f4248757f0fd) // `TransferFromFailed()` or `Permit2AmountOverflow()`.
                revert(add(0x18, shl(2, iszero(iszero(shr(160, amount))))), 0x04)
            }
        }
    }

    /// @dev Permit a user to spend a given amount of
    /// another user's tokens via native EIP-2612 permit if possible, falling
    /// back to Permit2 if native permit fails or is not implemented on the token.
    function permit2(
        address token,
        address owner,
        address spender,
        uint256 amount,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        bool success;
        /// @solidity memory-safe-assembly
        assembly {
            for {} shl(96, xor(token, WETH9)) {} {
                mstore(0x00, 0x3644e515) // `DOMAIN_SEPARATOR()`.
                if iszero(
                    and( // The arguments of `and` are evaluated from right to left.
                        lt(iszero(mload(0x00)), eq(returndatasize(), 0x20)), // Returns 1 non-zero word.
                        // Gas stipend to limit gas burn for tokens that don't refund gas when
                        // an non-existing function is called. 5K should be enough for a SLOAD.
                        staticcall(5000, token, 0x1c, 0x04, 0x00, 0x20)
                    )
                ) { break }
                // After here, we can be sure that token is a contract.
                let m := mload(0x40)
                mstore(add(m, 0x34), spender)
                mstore(add(m, 0x20), shl(96, owner))
                mstore(add(m, 0x74), deadline)
                if eq(mload(0x00), DAI_DOMAIN_SEPARATOR) {
                    mstore(0x14, owner)
                    mstore(0x00, 0x7ecebe00000000000000000000000000) // `nonces(address)`.
                    mstore(add(m, 0x94), staticcall(gas(), token, 0x10, 0x24, add(m, 0x54), 0x20))
                    mstore(m, 0x8fcbaf0c000000000000000000000000) // `IDAIPermit.permit`.
                    // `nonces` is already at `add(m, 0x54)`.
                    // `1` is already stored at `add(m, 0x94)`.
                    mstore(add(m, 0xb4), and(0xff, v))
                    mstore(add(m, 0xd4), r)
                    mstore(add(m, 0xf4), s)
                    success := call(gas(), token, 0, add(m, 0x10), 0x104, codesize(), 0x00)
                    break
                }
                mstore(m, 0xd505accf000000000000000000000000) // `IERC20Permit.permit`.
                mstore(add(m, 0x54), amount)
                mstore(add(m, 0x94), and(0xff, v))
                mstore(add(m, 0xb4), r)
                mstore(add(m, 0xd4), s)
                success := call(gas(), token, 0, add(m, 0x10), 0xe4, codesize(), 0x00)
                break
            }
        }
        if (!success) simplePermit2(token, owner, spender, amount, deadline, v, r, s);
    }

    /// @dev Simple permit on the Permit2 contract.
    function simplePermit2(
        address token,
        address owner,
        address spender,
        uint256 amount,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        /// @solidity memory-safe-assembly
        assembly {
            let m := mload(0x40)
            mstore(m, 0x927da105) // `allowance(address,address,address)`.
            {
                let addressMask := shr(96, not(0))
                mstore(add(m, 0x20), and(addressMask, owner))
                mstore(add(m, 0x40), and(addressMask, token))
                mstore(add(m, 0x60), and(addressMask, spender))
                mstore(add(m, 0xc0), and(addressMask, spender))
            }
            let p := mul(PERMIT2, iszero(shr(160, amount)))
            if iszero(
                and( // The arguments of `and` are evaluated from right to left.
                    gt(returndatasize(), 0x5f), // Returns 3 words: `amount`, `expiration`, `nonce`.
                    staticcall(gas(), p, add(m, 0x1c), 0x64, add(m, 0x60), 0x60)
                )
            ) {
                mstore(0x00, 0x6b836e6b8757f0fd) // `Permit2Failed()` or `Permit2AmountOverflow()`.
                revert(add(0x18, shl(2, iszero(p))), 0x04)
            }
            mstore(m, 0x2b67b570) // `Permit2.permit` (PermitSingle variant).
            // `owner` is already `add(m, 0x20)`.
            // `token` is already at `add(m, 0x40)`.
            mstore(add(m, 0x60), amount)
            mstore(add(m, 0x80), 0xffffffffffff) // `expiration = type(uint48).max`.
            // `nonce` is already at `add(m, 0xa0)`.
            // `spender` is already at `add(m, 0xc0)`.
            mstore(add(m, 0xe0), deadline)
            mstore(add(m, 0x100), 0x100) // `signature` offset.
            mstore(add(m, 0x120), 0x41) // `signature` length.
            mstore(add(m, 0x140), r)
            mstore(add(m, 0x160), s)
            mstore(add(m, 0x180), shl(248, v))
            if iszero(call(gas(), p, 0, add(m, 0x1c), 0x184, codesize(), 0x00)) {
                mstore(0x00, 0x6b836e6b) // `Permit2Failed()`.
                revert(0x1c, 0x04)
            }
        }
    }
}

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

pragma solidity ^0.8.0;

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount) external returns (bool);
}

// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity ^0.8.17;

import { LibAsset } from "./LibAsset.sol";
import { LibUtil } from "./LibUtil.sol";
import { InvalidContract, NoSwapFromZeroBalance } from "../Errors/GenericErrors.sol";
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";

/// @title LibSwap
/// @custom:version 1.1.0
/// @notice This library contains functionality to execute mostly swaps but also
///         other calls such as fee collection, token wrapping/unwrapping or
///         sending gas to destination chain
library LibSwap {
    /// @notice Struct containing all necessary data to execute a swap or generic call
    /// @param callTo The address of the contract to call for executing the swap
    /// @param approveTo The address that will receive token approval (can be different than callTo for some DEXs)
    /// @param sendingAssetId The address of the token being sent
    /// @param receivingAssetId The address of the token expected to be received
    /// @param fromAmount The exact amount of the sending asset to be used in the call
    /// @param callData Encoded function call data to be sent to the `callTo` contract
    /// @param requiresDeposit A flag indicating whether the tokens must be deposited (pulled) before the call
    struct SwapData {
        address callTo;
        address approveTo;
        address sendingAssetId;
        address receivingAssetId;
        uint256 fromAmount;
        bytes callData;
        bool requiresDeposit;
    }

    /// @notice Emitted after a successful asset swap or related operation
    /// @param transactionId    The unique identifier associated with the swap operation
    /// @param dex              The address of the DEX or contract that handled the swap
    /// @param fromAssetId      The address of the token that was sent
    /// @param toAssetId        The address of the token that was received
    /// @param fromAmount       The amount of `fromAssetId` sent
    /// @param toAmount         The amount of `toAssetId` received
    /// @param timestamp        The timestamp when the swap was executed
    event AssetSwapped(
        bytes32 transactionId,
        address dex,
        address fromAssetId,
        address toAssetId,
        uint256 fromAmount,
        uint256 toAmount,
        uint256 timestamp
    );

    function swap(bytes32 transactionId, SwapData calldata _swap) internal {
        // make sure callTo is a contract
        if (!LibAsset.isContract(_swap.callTo)) revert InvalidContract();

        // make sure that fromAmount is not 0
        uint256 fromAmount = _swap.fromAmount;
        if (fromAmount == 0) revert NoSwapFromZeroBalance();

        // determine how much native value to send with the swap call
        uint256 nativeValue = LibAsset.isNativeAsset(_swap.sendingAssetId)
            ? _swap.fromAmount
            : 0;

        // store initial balance (required for event emission)
        uint256 initialReceivingAssetBalance = LibAsset.getOwnBalance(
            _swap.receivingAssetId
        );

        // max approve (if ERC20)
        if (nativeValue == 0) {
            LibAsset.maxApproveERC20(
                IERC20(_swap.sendingAssetId),
                _swap.approveTo,
                _swap.fromAmount
            );
        }

        // we used to have a sending asset balance check here (initialSendingAssetBalance >= _swap.fromAmount)
        // this check was removed to allow for more flexibility with rebasing/fee-taking tokens
        // the general assumption is that if not enough tokens are available to execute the calldata,
        // the transaction will fail anyway
        // the error message might not be as explicit though

        // execute the swap
        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory res) = _swap.callTo.call{
            value: nativeValue
        }(_swap.callData);
        if (!success) {
            LibUtil.revertWith(res);
        }

        // get post-swap balance
        uint256 newBalance = LibAsset.getOwnBalance(_swap.receivingAssetId);

        // emit event
        emit AssetSwapped(
            transactionId,
            _swap.callTo,
            _swap.sendingAssetId,
            _swap.receivingAssetId,
            _swap.fromAmount,
            newBalance > initialReceivingAssetBalance
                ? newBalance - initialReceivingAssetBalance
                : newBalance,
            block.timestamp
        );
    }
}

File 7 of 10 : GenericErrors.sol
// SPDX-License-Identifier: LGPL-3.0-only
/// @custom:version 1.0.2
pragma solidity ^0.8.17;

error AlreadyInitialized();
error CannotAuthoriseSelf();
error CannotBridgeToSameNetwork();
error ContractCallNotAllowed();
error CumulativeSlippageTooHigh(uint256 minAmount, uint256 receivedAmount);
error DiamondIsPaused();
error ETHTransferFailed();
error ExternalCallFailed();
error FunctionDoesNotExist();
error InformationMismatch();
error InsufficientBalance(uint256 required, uint256 balance);
error InvalidAmount();
error InvalidCallData();
error InvalidConfig();
error InvalidContract();
error InvalidDestinationChain();
error InvalidFallbackAddress();
error InvalidNonEVMReceiver();
error InvalidReceiver();
error InvalidSendingToken();
error NativeAssetNotSupported();
error NativeAssetTransferFailed();
error NoSwapDataProvided();
error NoSwapFromZeroBalance();
error NotAContract();
error NotInitialized();
error NoTransferToNullAddress();
error NullAddrIsNotAnERC20Token();
error NullAddrIsNotAValidSpender();
error OnlyContractOwner();
error RecoveryAddressCannotBeZero();
error ReentrancyError();
error TokenNotSupported();
error TransferFromFailed();
error UnAuthorized();
error UnsupportedChainId(uint256 chainId);
error WithdrawFailed();
error ZeroAmount();

// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity ^0.8.17;

/// @title Interface for ERC-173 (Contract Ownership Standard)
/// @author LI.FI (https://li.fi)
/// Note: the ERC-165 identifier for this interface is 0x7f5828d0
/// @custom:version 1.0.0
interface IERC173 {
    /// @dev This emits when ownership of a contract changes.
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /// @notice Get the address of the owner
    /// @return owner_ The address of the owner.
    function owner() external view returns (address owner_);

    /// @notice Set the address of the new owner of the contract
    /// @dev Set _newOwner to address(0) to renounce any ownership.
    /// @param _newOwner The address of the new owner of the contract
    function transferOwnership(address _newOwner) external;
}

// SPDX-License-Identifier: LGPL-3.0-only
/// @custom:version 1.0.0
pragma solidity ^0.8.17;

// solhint-disable-next-line no-global-import
import "./LibBytes.sol";

library LibUtil {
    using LibBytes for bytes;

    function getRevertMsg(
        bytes memory _res
    ) internal pure returns (string memory) {
        // If the _res length is less than 68, then the transaction failed silently (without a revert message)
        if (_res.length < 68) return "Transaction reverted silently";
        bytes memory revertData = _res.slice(4, _res.length - 4); // Remove the selector which is the first 4 bytes
        return abi.decode(revertData, (string)); // All that remains is the revert string
    }

    /// @notice Determines whether the given address is the zero address
    /// @param addr The address to verify
    /// @return Boolean indicating if the address is the zero address
    function isZeroAddress(address addr) internal pure returns (bool) {
        return addr == address(0);
    }

    function revertWith(bytes memory data) internal pure {
        assembly {
            let dataSize := mload(data) // Load the size of the data
            let dataPtr := add(data, 0x20) // Advance data pointer to the next word
            revert(dataPtr, dataSize) // Revert with the given data
        }
    }
}

// SPDX-License-Identifier: LGPL-3.0-only
/// @custom:version 1.0.0
pragma solidity ^0.8.17;

library LibBytes {
    // solhint-disable no-inline-assembly

    // LibBytes specific errors
    error SliceOverflow();
    error SliceOutOfBounds();
    error AddressOutOfBounds();

    bytes16 private constant _SYMBOLS = "0123456789abcdef";

    // -------------------------

    function slice(
        bytes memory _bytes,
        uint256 _start,
        uint256 _length
    ) internal pure returns (bytes memory) {
        if (_length + 31 < _length) revert SliceOverflow();
        if (_bytes.length < _start + _length) revert SliceOutOfBounds();

        bytes memory tempBytes;

        assembly {
            switch iszero(_length)
            case 0 {
                // Get a location of some free memory and store it in tempBytes as
                // Solidity does for memory variables.
                tempBytes := mload(0x40)

                // The first word of the slice result is potentially a partial
                // word read from the original array. To read it, we calculate
                // the length of that partial word and start copying that many
                // bytes into the array. The first word we copy will start with
                // data we don't care about, but the last `lengthmod` bytes will
                // land at the beginning of the contents of the new array. When
                // we're done copying, we overwrite the full first word with
                // the actual length of the slice.
                let lengthmod := and(_length, 31)

                // The multiplication in the next line is necessary
                // because when slicing multiples of 32 bytes (lengthmod == 0)
                // the following copy loop was copying the origin's length
                // and then ending prematurely not copying everything it should.
                let mc := add(
                    add(tempBytes, lengthmod),
                    mul(0x20, iszero(lengthmod))
                )
                let end := add(mc, _length)

                for {
                    // The multiplication in the next line has the same exact purpose
                    // as the one above.
                    let cc := add(
                        add(
                            add(_bytes, lengthmod),
                            mul(0x20, iszero(lengthmod))
                        ),
                        _start
                    )
                } lt(mc, end) {
                    mc := add(mc, 0x20)
                    cc := add(cc, 0x20)
                } {
                    mstore(mc, mload(cc))
                }

                mstore(tempBytes, _length)

                //update free-memory pointer
                //allocating the array padded to 32 bytes like the compiler does now
                mstore(0x40, and(add(mc, 31), not(31)))
            }
            //if we want a zero-length slice let's just return a zero-length array
            default {
                tempBytes := mload(0x40)
                //zero out the 32 bytes slice we are about to return
                //we need to do it because Solidity does not garbage collect
                mstore(tempBytes, 0)

                mstore(0x40, add(tempBytes, 0x20))
            }
        }

        return tempBytes;
    }

    function toAddress(
        bytes memory _bytes,
        uint256 _start
    ) internal pure returns (address) {
        if (_bytes.length < _start + 20) {
            revert AddressOutOfBounds();
        }
        address tempAddress;

        assembly {
            tempAddress := div(
                mload(add(add(_bytes, 0x20), _start)),
                0x1000000000000000000000000
            )
        }

        return tempAddress;
    }

    /// Copied from OpenZeppelin's `Strings.sol` utility library.
    /// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/8335676b0e99944eef6a742e16dcd9ff6e68e609
    /// /contracts/utils/Strings.sol
    function toHexString(
        uint256 value,
        uint256 length
    ) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        // solhint-disable-next-line gas-custom-errors
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Settings
{
  "remappings": [
    "@eth-optimism/=node_modules/@hop-protocol/sdk/node_modules/@eth-optimism/",
    "@uniswap/=node_modules/@uniswap/",
    "eth-gas-reporter/=node_modules/eth-gas-reporter/",
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "celer-network/=lib/sgn-v2-contracts/",
    "create3-factory/=lib/create3-factory/src/",
    "solmate/=lib/solmate/src/",
    "solady/=lib/solady/src/",
    "permit2/=lib/Permit2/src/",
    "ds-test/=lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "lifi/=src/",
    "test/=test/",
    "@cowprotocol/=node_modules/@cowprotocol/",
    "Permit2/=lib/Permit2/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-gas-snapshot/=lib/Permit2/lib/forge-gas-snapshot/src/",
    "hardhat/=node_modules/hardhat/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "sgn-v2-contracts/=lib/sgn-v2-contracts/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "cancun",
  "viaIR": false
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"InvalidReceiver","type":"error"},{"inputs":[],"name":"NewOwnerMustNotBeSelf","type":"error"},{"inputs":[],"name":"NoNullOwner","type":"error"},{"inputs":[],"name":"NoPendingOwnershipTransfer","type":"error"},{"inputs":[],"name":"NotEnoughNativeForFees","type":"error"},{"inputs":[],"name":"NotPendingOwner","type":"error"},{"inputs":[],"name":"TransferFailure","type":"error"},{"inputs":[],"name":"UnAuthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_token","type":"address"},{"indexed":true,"internalType":"address","name":"_integrator","type":"address"},{"indexed":false,"internalType":"uint256","name":"_integratorFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_lifiFee","type":"uint256"}],"name":"FeesCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_token","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"FeesWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_token","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"LiFiFeesWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"}],"name":"OwnershipTransferRequested","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"},{"inputs":[{"internalType":"address[]","name":"tokenAddresses","type":"address[]"}],"name":"batchWithdrawIntegratorFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokenAddresses","type":"address[]"}],"name":"batchWithdrawLifiFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cancelOwnershipTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"integratorFee","type":"uint256"},{"internalType":"uint256","name":"lifiFee","type":"uint256"},{"internalType":"address","name":"integratorAddress","type":"address"}],"name":"collectNativeFees","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"integratorFee","type":"uint256"},{"internalType":"uint256","name":"lifiFee","type":"uint256"},{"internalType":"address","name":"integratorAddress","type":"address"}],"name":"collectTokenFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"confirmOwnershipTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"getLifiTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"integratorAddress","type":"address"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"getTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"withdrawIntegratorFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"withdrawLifiFees","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052348015600e575f5ffd5b506040516112f33803806112f3833981016040819052602b91604e565b5f80546001600160a01b0319166001600160a01b03929092169190911790556079565b5f60208284031215605d575f5ffd5b81516001600160a01b03811681146072575f5ffd5b9392505050565b61126d806100865f395ff3fe6080604052600436106100ce575f3560e01c8063bd0b380b1161007c578063e30c397811610057578063e30c39781461022f578063e5d647661461025b578063eedd56e11461027a578063f2fde38b14610299575f5ffd5b8063bd0b380b146101de578063c489744b146101fd578063e0cbc5f21461021c575f5ffd5b806364bc5be1116100ac57806364bc5be11461015b5780637200b8291461017a5780638da5cb5b1461018e575f5ffd5b80630fe97f70146100d257806323452b9c14610126578063461ad4f51461013c575b5f5ffd5b3480156100dd575f5ffd5b506101136100ec366004610fdb565b73ffffffffffffffffffffffffffffffffffffffff165f9081526003602052604090205490565b6040519081526020015b60405180910390f35b348015610131575f5ffd5b5061013a6102b8565b005b348015610147575f5ffd5b5061013a610156366004610fdb565b610381565b348015610166575f5ffd5b5061013a610175366004611028565b610484565b348015610185575f5ffd5b5061013a610647565b348015610199575f5ffd5b505f546101b99073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161011d565b3480156101e9575f5ffd5b5061013a6101f8366004610fdb565b61072b565b348015610208575f5ffd5b50610113610217366004611111565b6107ed565b61013a61022a366004611142565b610826565b34801561023a575f5ffd5b506001546101b99073ffffffffffffffffffffffffffffffffffffffff1681565b348015610266575f5ffd5b5061013a610275366004611028565b61096e565b348015610285575f5ffd5b5061013a610294366004611174565b610af2565b3480156102a4575f5ffd5b5061013a6102b3366004610fdb565b610bd9565b5f5473ffffffffffffffffffffffffffffffffffffffff163314610308576040517fbe24598300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60015473ffffffffffffffffffffffffffffffffffffffff16610357576040517f75cdea1200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b5f5473ffffffffffffffffffffffffffffffffffffffff1633146103d1576040517fbe24598300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81165f9081526003602052604081205490819003610402575050565b73ffffffffffffffffffffffffffffffffffffffff82165f90815260036020526040812055610432823383610d35565b604051818152339073ffffffffffffffffffffffffffffffffffffffff8416907fe0ac2a6b74759312758ae3b784411c8e2f3b8bd81fecff40b906d69030af4bfc906020015b60405180910390a35050565b5f5473ffffffffffffffffffffffffffffffffffffffff1633146104d4576040517fbe24598300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80515f805b828110156106415760035f8583815181106104f6576104f66111b7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205491505f60035f868481518110610550576105506111b7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506105b98482815181106105aa576105aa6111b7565b60200260200101513384610d35565b3373ffffffffffffffffffffffffffffffffffffffff168482815181106105e2576105e26111b7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff167fe0ac2a6b74759312758ae3b784411c8e2f3b8bd81fecff40b906d69030af4bfc8460405161063191815260200190565b60405180910390a36001016104d9565b50505050565b60015473ffffffffffffffffffffffffffffffffffffffff16338114610699576040517f1853971c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff0000000000000000000000000000000000000000928316179055600180549091169055565b335f90815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915281205490819003610767575050565b335f81815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120556107a390839083610d35565b604051818152339073ffffffffffffffffffffffffffffffffffffffff8416907f5e110f8bc8a20b65dcc87f224bdf1cc039346e267118bae2739847f07321ffa890602001610478565b73ffffffffffffffffffffffffffffffffffffffff8083165f908152600260209081526040808320938516835292905220545b92915050565b6108308284611211565b341015610869576040517f840a2adf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81165f908152600260209081526040808320838052909152812080548592906108a8908490611211565b90915550505f80805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff80548492906108e7908490611211565b909155505f90506108f88385611211565b6109029034611224565b90508015610914576109143382610d6a565b604080518581526020810185905273ffffffffffffffffffffffffffffffffffffffff8416915f917f28a87b6059180e46de5fb9ab35eb043e8fe00ab45afcc7789e3934ecbbcde3ea91015b60405180910390a350505050565b80515f805b8281101561064157335f90815260026020526040812085519091908690849081106109a0576109a06111b7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549150815f14610aea57335f90815260026020526040812085518290879085908110610a0f57610a0f6111b7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610a698482815181106105aa576105aa6111b7565b3373ffffffffffffffffffffffffffffffffffffffff16848281518110610a9257610a926111b7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f5e110f8bc8a20b65dcc87f224bdf1cc039346e267118bae2739847f07321ffa884604051610ae191815260200190565b60405180910390a35b600101610973565b610b0584610b008486611211565b610d87565b73ffffffffffffffffffffffffffffffffffffffff8082165f90815260026020908152604080832093881683529290529081208054859290610b48908490611211565b909155505073ffffffffffffffffffffffffffffffffffffffff84165f9081526003602052604081208054849290610b81908490611211565b9091555050604080518481526020810184905273ffffffffffffffffffffffffffffffffffffffff80841692908716917f28a87b6059180e46de5fb9ab35eb043e8fe00ab45afcc7789e3934ecbbcde3ea9101610960565b5f5473ffffffffffffffffffffffffffffffffffffffff163314610c29576040517fbe24598300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116610c76576040517f1beca37400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff821603610cc5576040517fbf1ea9fb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff831690811790915560405133907fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae1278905f90a350565b73ffffffffffffffffffffffffffffffffffffffff8316610d5f57610d5a8282610e37565b505050565b610d5a838383610ea4565b5f385f3884865af1610d835763b12d13eb5f526004601cfd5b5050565b805f03610dc0576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610e155780341015610d83576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d8373ffffffffffffffffffffffffffffffffffffffff8316333084610f12565b73ffffffffffffffffffffffffffffffffffffffff8216610e84576040517f1e4ec46b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d8373ffffffffffffffffffffffffffffffffffffffff831682610d6a565b73ffffffffffffffffffffffffffffffffffffffff8216610ef1576040517f1e4ec46b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d5a73ffffffffffffffffffffffffffffffffffffffff84168383610f6a565b60405181606052826040528360601b602c526f23b872dd000000000000000000000000600c5260205f6064601c5f895af13d1560015f51141716610f5d57637939f4245f526004601cfd5b5f60605260405250505050565b81601452806034526fa9059cbb0000000000000000000000005f5260205f604460105f875af13d1560015f51141716610faa576390b8ec185f526004601cfd5b5f603452505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610fd6575f5ffd5b919050565b5f60208284031215610feb575f5ffd5b610ff482610fb3565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60208284031215611038575f5ffd5b813567ffffffffffffffff81111561104e575f5ffd5b8201601f8101841361105e575f5ffd5b803567ffffffffffffffff81111561107857611078610ffb565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811067ffffffffffffffff821117156110c3576110c3610ffb565b6040529182526020818401810192908101878411156110e0575f5ffd5b6020850194505b83851015611106576110f885610fb3565b8152602094850194016110e7565b509695505050505050565b5f5f60408385031215611122575f5ffd5b61112b83610fb3565b915061113960208401610fb3565b90509250929050565b5f5f5f60608486031215611154575f5ffd5b833592506020840135915061116b60408501610fb3565b90509250925092565b5f5f5f5f60808587031215611187575f5ffd5b61119085610fb3565b935060208501359250604085013591506111ac60608601610fb3565b905092959194509250565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b80820180821115610820576108206111e4565b81810381811115610820576108206111e456fea264697066735822122029b5105e7119eeb7625028e1ca3fd8082802cca4db2bc4d366f4d4b3044de98364736f6c634300081d0033000000000000000000000000ab483d44705af49a83553821a1f7aad8bbc70576

Deployed Bytecode

0x6080604052600436106100ce575f3560e01c8063bd0b380b1161007c578063e30c397811610057578063e30c39781461022f578063e5d647661461025b578063eedd56e11461027a578063f2fde38b14610299575f5ffd5b8063bd0b380b146101de578063c489744b146101fd578063e0cbc5f21461021c575f5ffd5b806364bc5be1116100ac57806364bc5be11461015b5780637200b8291461017a5780638da5cb5b1461018e575f5ffd5b80630fe97f70146100d257806323452b9c14610126578063461ad4f51461013c575b5f5ffd5b3480156100dd575f5ffd5b506101136100ec366004610fdb565b73ffffffffffffffffffffffffffffffffffffffff165f9081526003602052604090205490565b6040519081526020015b60405180910390f35b348015610131575f5ffd5b5061013a6102b8565b005b348015610147575f5ffd5b5061013a610156366004610fdb565b610381565b348015610166575f5ffd5b5061013a610175366004611028565b610484565b348015610185575f5ffd5b5061013a610647565b348015610199575f5ffd5b505f546101b99073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161011d565b3480156101e9575f5ffd5b5061013a6101f8366004610fdb565b61072b565b348015610208575f5ffd5b50610113610217366004611111565b6107ed565b61013a61022a366004611142565b610826565b34801561023a575f5ffd5b506001546101b99073ffffffffffffffffffffffffffffffffffffffff1681565b348015610266575f5ffd5b5061013a610275366004611028565b61096e565b348015610285575f5ffd5b5061013a610294366004611174565b610af2565b3480156102a4575f5ffd5b5061013a6102b3366004610fdb565b610bd9565b5f5473ffffffffffffffffffffffffffffffffffffffff163314610308576040517fbe24598300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60015473ffffffffffffffffffffffffffffffffffffffff16610357576040517f75cdea1200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b5f5473ffffffffffffffffffffffffffffffffffffffff1633146103d1576040517fbe24598300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81165f9081526003602052604081205490819003610402575050565b73ffffffffffffffffffffffffffffffffffffffff82165f90815260036020526040812055610432823383610d35565b604051818152339073ffffffffffffffffffffffffffffffffffffffff8416907fe0ac2a6b74759312758ae3b784411c8e2f3b8bd81fecff40b906d69030af4bfc906020015b60405180910390a35050565b5f5473ffffffffffffffffffffffffffffffffffffffff1633146104d4576040517fbe24598300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80515f805b828110156106415760035f8583815181106104f6576104f66111b7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205491505f60035f868481518110610550576105506111b7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506105b98482815181106105aa576105aa6111b7565b60200260200101513384610d35565b3373ffffffffffffffffffffffffffffffffffffffff168482815181106105e2576105e26111b7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff167fe0ac2a6b74759312758ae3b784411c8e2f3b8bd81fecff40b906d69030af4bfc8460405161063191815260200190565b60405180910390a36001016104d9565b50505050565b60015473ffffffffffffffffffffffffffffffffffffffff16338114610699576040517f1853971c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff0000000000000000000000000000000000000000928316179055600180549091169055565b335f90815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915281205490819003610767575050565b335f81815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120556107a390839083610d35565b604051818152339073ffffffffffffffffffffffffffffffffffffffff8416907f5e110f8bc8a20b65dcc87f224bdf1cc039346e267118bae2739847f07321ffa890602001610478565b73ffffffffffffffffffffffffffffffffffffffff8083165f908152600260209081526040808320938516835292905220545b92915050565b6108308284611211565b341015610869576040517f840a2adf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81165f908152600260209081526040808320838052909152812080548592906108a8908490611211565b90915550505f80805260036020527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff80548492906108e7908490611211565b909155505f90506108f88385611211565b6109029034611224565b90508015610914576109143382610d6a565b604080518581526020810185905273ffffffffffffffffffffffffffffffffffffffff8416915f917f28a87b6059180e46de5fb9ab35eb043e8fe00ab45afcc7789e3934ecbbcde3ea91015b60405180910390a350505050565b80515f805b8281101561064157335f90815260026020526040812085519091908690849081106109a0576109a06111b7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549150815f14610aea57335f90815260026020526040812085518290879085908110610a0f57610a0f6111b7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610a698482815181106105aa576105aa6111b7565b3373ffffffffffffffffffffffffffffffffffffffff16848281518110610a9257610a926111b7565b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f5e110f8bc8a20b65dcc87f224bdf1cc039346e267118bae2739847f07321ffa884604051610ae191815260200190565b60405180910390a35b600101610973565b610b0584610b008486611211565b610d87565b73ffffffffffffffffffffffffffffffffffffffff8082165f90815260026020908152604080832093881683529290529081208054859290610b48908490611211565b909155505073ffffffffffffffffffffffffffffffffffffffff84165f9081526003602052604081208054849290610b81908490611211565b9091555050604080518481526020810184905273ffffffffffffffffffffffffffffffffffffffff80841692908716917f28a87b6059180e46de5fb9ab35eb043e8fe00ab45afcc7789e3934ecbbcde3ea9101610960565b5f5473ffffffffffffffffffffffffffffffffffffffff163314610c29576040517fbe24598300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116610c76576040517f1beca37400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff821603610cc5576040517fbf1ea9fb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff831690811790915560405133907fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae1278905f90a350565b73ffffffffffffffffffffffffffffffffffffffff8316610d5f57610d5a8282610e37565b505050565b610d5a838383610ea4565b5f385f3884865af1610d835763b12d13eb5f526004601cfd5b5050565b805f03610dc0576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610e155780341015610d83576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d8373ffffffffffffffffffffffffffffffffffffffff8316333084610f12565b73ffffffffffffffffffffffffffffffffffffffff8216610e84576040517f1e4ec46b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d8373ffffffffffffffffffffffffffffffffffffffff831682610d6a565b73ffffffffffffffffffffffffffffffffffffffff8216610ef1576040517f1e4ec46b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d5a73ffffffffffffffffffffffffffffffffffffffff84168383610f6a565b60405181606052826040528360601b602c526f23b872dd000000000000000000000000600c5260205f6064601c5f895af13d1560015f51141716610f5d57637939f4245f526004601cfd5b5f60605260405250505050565b81601452806034526fa9059cbb0000000000000000000000005f5260205f604460105f875af13d1560015f51141716610faa576390b8ec185f526004601cfd5b5f603452505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610fd6575f5ffd5b919050565b5f60208284031215610feb575f5ffd5b610ff482610fb3565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60208284031215611038575f5ffd5b813567ffffffffffffffff81111561104e575f5ffd5b8201601f8101841361105e575f5ffd5b803567ffffffffffffffff81111561107857611078610ffb565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811067ffffffffffffffff821117156110c3576110c3610ffb565b6040529182526020818401810192908101878411156110e0575f5ffd5b6020850194505b83851015611106576110f885610fb3565b8152602094850194016110e7565b509695505050505050565b5f5f60408385031215611122575f5ffd5b61112b83610fb3565b915061113960208401610fb3565b90509250929050565b5f5f5f60608486031215611154575f5ffd5b833592506020840135915061116b60408501610fb3565b90509250925092565b5f5f5f5f60808587031215611187575f5ffd5b61119085610fb3565b935060208501359250604085013591506111ac60608601610fb3565b905092959194509250565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b80820180821115610820576108206111e4565b81810381811115610820576108206111e456fea264697066735822122029b5105e7119eeb7625028e1ca3fd8082802cca4db2bc4d366f4d4b3044de98364736f6c634300081d0033

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

000000000000000000000000ab483d44705af49a83553821a1f7aad8bbc70576

-----Decoded View---------------
Arg [0] : _owner (address): 0xAB483D44705Af49a83553821A1F7aAd8BBc70576

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ab483d44705af49a83553821a1f7aad8bbc70576


Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
0x3Ef238c36035880EfbDfa239d218186b79Ad1d6F
Net Worth in USD
$188,598,349,621,597.00

Net Worth in ETH
95,937,481,882.095695

Token Allocations
PORT3 100.00%
ETH 0.00%
USDC 0.00%
Others 0.00%
Chain Token Portfolio % Price Amount Value
ETH100.00%$0.00663328,432,997,728,933,716$188,598,348,575,836
ETH
Ether (ETH)
<0.01%$1,964.55175.8372$345,441.55
ETH<0.01%$0.999901331,007.6427$330,974.87
ETH<0.01%$0.999619244,876.8367$244,783.54
ETH<0.01%$0.045454358,727.4409$16,305.6
ETH<0.01%$2,257.372.1787$4,918.1
ETH<0.01%$76,1490.0642$4,887.49
ETH<0.01%$4,983.910.9645$4,807.13
ETH<0.01%$0.9993874,613.0827$4,610.25
ETH<0.01%$0.000006535,366,534.0102$3,372.81
ETH<0.01%$4,960.220.5901$2,927.22
ETH<0.01%$1,964.551.3554$2,662.73
ETH<0.01%$12,634.8966$2,634.9
ETH<0.01%$0.07861427,693.9964$2,177.14
ETH<0.01%$0.09418421,814.5042$2,054.57
ETH<0.01%$1.281,449.74$1,855.67
ETH<0.01%$0.11773815,243.7076$1,794.76
ETH<0.01%$0.2471166,980.5278$1,725
ETH<0.01%$0.03543442,272.4376$1,497.87
ETH<0.01%$8.69167.8165$1,458.33
ETH<0.01%$1.181,018.6056$1,201.95
ETH<0.01%$3.42339.7387$1,161.91
ETH<0.01%$123.79.0459$1,118.97
ETH<0.01%$0.000004203,837,763.4254$864.27
ETH<0.01%$0.1470295,600.517$823.44
ETH<0.01%$0.002715284,809.53$773.32
ETH<0.01%$76,3310.00986422$752.95
ETH<0.01%$0.997907751.2243$749.65
ETH<0.01%$2,459.090.285$700.92
ETH<0.01%$0.1628844,178.428$680.6
ETH<0.01%$1.02660.6695$671.24
ETH<0.01%$1.46456.2603$666.14
ETH<0.01%$0.999794660.9836$660.85
ETH<0.01%$0.2336342,733.2235$638.57
ETH<0.01%$71,0990.00853845$607.08
ETH<0.01%$0.211472,866.1027$606.09
ETH<0.01%$0.999236588.7366$588.29
ETH<0.01%$67.798.2801$561.31
ETH<0.01%$0.618235907.7146$561.18
ETH<0.01%$0.002296242,344.8983$556.32
ETH<0.01%$0.0654868,424.0881$551.66
ETH<0.01%$0.00584490,007.6586$526.04
ETH<0.01%$0.00003913,215,393$519.04
ETH<0.01%$0.2679851,871.7454$501.6
ETH<0.01%$194.742.5018$487.2
ETH<0.01%$0.3292971,456.0604$479.48
ETH<0.01%$3.45136.4205$470.59
ETH<0.01%$1,554.80.3018$469.17
ETH<0.01%$1.32353.7869$467
ETH<0.01%$0.166422,755.5931$458.59
ETH<0.01%$0.2321861,898.5669$440.82
ETH<0.01%$2.25195.036$438.45
ETH<0.01%$0.3323591,316.4051$437.52
ETH<0.01%$0.1149633,781.7338$434.76
ETH<0.01%$1429.0352$429.04
ETH<0.01%$0.1377973,024.2924$416.74
ETH<0.01%$0.2476411,650.705$408.78
ETH<0.01%$0.1253813,177.8614$398.44
ETH<0.01%$0.0439868,990.6017$395.46
ETH<0.01%$0.3820211,032.6677$394.5
ETH<0.01%$0.001052369,669.7512$389.03
ETH<0.01%$0.1078473,325.4139$358.64
ETH<0.01%$0.001497237,359.4138$355.43
ETH<0.01%$0.00739947,894.2144$354.37
ETH<0.01%$1.22284.5958$347.21
ETH<0.01%$16.5120.2889$334.97
ETH<0.01%$0.331899951.9616$315.96
ETH<0.01%$0.00584953,140.5721$310.84
ETH<0.01%$0.1062892,919.8454$310.35
ETH<0.01%$1.3234.9612$305.45
ETH<0.01%$8.6635.0854$303.84
ETH<0.01%$0.2227181,359.804$302.85
ETH<0.01%$0.0000823,685,432.7737$300.92
ETH<0.01%$1.58187.5487$296.33
ETH<0.01%$2.03143.1301$290.17
ETH<0.01%$0.86257332.4857$286.79
ETH<0.01%$76,7320.00371273$284.89
ETH<0.01%$0.0692524,081.2403$282.63
ETH<0.01%$0.354166794.8613$281.51
ETH<0.01%$0.00575248,392.0207$278.37
ETH<0.01%$2.33118.4186$275.92
ETH<0.01%$0.00518452,199.0452$270.58
ETH<0.01%$0.1030492,612.1278$269.18
ETH<0.01%$0.979522273.3355$267.74
ETH<0.01%$0.02003713,333.7253$267.17
ETH<0.01%$6.5940.0252$263.77
ETH<0.01%$1.2218.6914$262.43
ETH<0.01%$0.01571616,028.0415$251.9
ETH<0.01%$0.00511747,848.1745$244.83
ETH<0.01%$0.000581404,814.8045$235.31
ETH<0.01%$0.00373562,520.4736$233.54
ETH<0.01%$0.0740633,145.9204$233
ETH<0.01%$0.1937151,198.4865$232.16
ETH<0.01%$2,767.010.081$224.23
ETH<0.01%$0.01036821,122.5114$219.01
ETH<0.01%$8.2626.4961$218.86
ETH<0.01%$2,624.380.0832$218.35
ETH<0.01%$3.8156.3987$214.88
ETH<0.01%$0.0000643,317,172.5048$212.99
ETH<0.01%$0.306597689.4427$211.38
ETH<0.01%$0.0628233,348.6954$210.38
ETH<0.01%$0.473612443.4679$210.03
ETH<0.01%$0.00821225,517.9171$209.54
ETH<0.01%$0.999745206.9257$206.87
ETH<0.01%$0.0926592,213.9386$205.14
ETH<0.01%$0.00230587,086.9534$200.77
ETH<0.01%$0.02248,959.4866$200.69
ETH<0.01%$0.00413647,777.0045$197.61
ETH<0.01%<$0.0000011,145,767,341.9507$195.45
ETH<0.01%$0.0199749,741.7518$194.58
ETH<0.01%$0.621805309.9756$192.74
ETH<0.01%$0.0464074,125.4818$191.45
ETH<0.01%<$0.000001429,341,440.8487$190.24
ETH<0.01%$0.999977189.8039$189.8
ETH<0.01%$0.997911185.0126$184.63
ETH<0.01%$0.0351245,253.1799$184.51
ETH<0.01%$0.1079821,689.2628$182.41
ETH<0.01%$0.0270556,638.9621$179.62
ETH<0.01%$1.42126.4248$179.52
ETH<0.01%<$0.00000121,995,947,559.6789$178.78
ETH<0.01%$75,9330.0023336$177.2
ETH<0.01%$0.0001581,115,254.9283$176.18
ETH<0.01%$0.999609173.7557$173.69
ETH<0.01%$0.00022787,344.1703$173.28
ETH<0.01%$0.999654172.658$172.6
ETH<0.01%$0.473566361.3281$171.11
ETH<0.01%$0.999336171.1309$171.02
ETH<0.01%$0.0731692,336.5234$170.96
ETH<0.01%$0.000654255,364.3286$166.93
ETH<0.01%$0.656188253.3651$166.26
ETH<0.01%$0.1423841,157.818$164.85
ETH<0.01%$0.01586310,364.4966$164.41
ETH<0.01%$0.01093214,720.2938$160.92
ETH<0.01%$76,2980.00209875$160.13
ETH<0.01%$1.49106.8321$159.18
ETH<0.01%$0.0198958,000.0015$159.16
ETH<0.01%$0.1078561,450.004$156.39
ETH<0.01%<$0.000001809,144,443.1372$152.82
ETH<0.01%$0.189323805.0073$152.41
ETH<0.01%$99.441.5143$150.58
ETH<0.01%$2,533.880.059$149.42
ETH<0.01%$0.162415916.0753$148.78
ETH<0.01%$0.0210557,040.1685$148.23
ETH<0.01%$0.1876788.5946$147.94
ETH<0.01%$1.597.6441$146.47
ETH<0.01%$17.768.141$144.58
ETH<0.01%$2,834.850.0493$139.68
ETH<0.01%$0.00204267,841.4097$138.54
ETH<0.01%$1.4595.5087$138.49
ETH<0.01%$0.00428432,224.4153$138.06
ETH<0.01%$0.162589849.1407$138.06
ETH<0.01%$0.00847116,188.8585$137.14
ETH<0.01%$609.050.2216$134.95
ETH<0.01%$0.00388134,378.0657$133.41
ETH<0.01%$0.0796731,673.0296$133.3
ETH<0.01%$0.997876133.0771$132.79
ETH<0.01%$0.0984661,344.656$132.4
ETH<0.01%$0.00688719,167.3912$132.01
ETH<0.01%$38.083.4662$131.99
ETH<0.01%$1.28102.9858$131.82
ETH<0.01%$115.921.1314$131.15
ETH<0.01%$0.000136931,129.4158$126.43
ETH<0.01%$0.084031,504.0108$126.38
ETH<0.01%$0.0075416,532.742$124.66
ETH<0.01%$2,454.910.0505$123.96
ETH<0.01%$0.020895,920.5355$123.68
ETH<0.01%$0.0204296,048.9789$123.57
ETH<0.01%$0.0850141,445.002$122.85
ETH<0.01%$1.01121.9148$122.54
ETH<0.01%$2,404.550.0504$121.28
ETH<0.01%$0.00389830,755.5378$119.9
ETH<0.01%$0.291264408.643$119.02
ETH<0.01%$0.0209225,595.3936$117.07
ETH<0.01%$0.0878181,331.1928$116.9
ETH<0.01%$123.70.9445$116.84
ETH<0.01%$8.4913.7429$116.68
ETH<0.01%$0.00643317,806.3989$114.56
ETH<0.01%$0.0410422,789.4298$114.48
ETH<0.01%$0.177719644.1632$114.48
ETH<0.01%$0.253379440.9931$111.74
ETH<0.01%$0.0260644,251.1442$110.8
ETH<0.01%$0.123246883.6272$108.9
ETH<0.01%$0.00147473,360.4483$108.12
ETH<0.01%$0.000186562,309.2805$104.75
ETH<0.01%$1.0798.3062$104.7
ETH<0.01%$0.31804323.078$102.75
ETH<0.01%$263.130.3781$99.48
ETH<0.01%$2.3542.2491$99.29
ETH<0.01%$0.0930481,054.7798$98.15
ETH<0.01%$0.0479182,040.5448$97.78
ETH<0.01%$5.1618.9172$97.61
ETH<0.01%$77.921.2461$97.1
ETH<0.01%$0.03962,446.7315$96.89
ETH<0.01%$0.0355412,725.5868$96.87
ETH<0.01%$0.000019,585,942.7843$96.72
ETH<0.01%$1.1779.9821$93.58
ETH<0.01%$0.99971893.48$93.45
ETH<0.01%$2,317.130.0401$93.02
ETH<0.01%$0.035512,610.3897$92.7
ETH<0.01%$0.99991192.4426$92.43
ETH<0.01%$0.99975391.593$91.57
ETH<0.01%$0.191564473.3971$90.69
ETH<0.01%$0.00714112,348.0653$88.18
ETH<0.01%$0.173825503.2462$87.48
ETH<0.01%$0.00391122,264.249$87.07
ETH<0.01%$0.84419103.0615$87
ETH<0.01%$0.0295032,945.7834$86.91
ETH<0.01%$0.0575111,510.5087$86.87
ETH<0.01%$0.0211564,097.6667$86.69
ETH<0.01%$0.00649512,954.1963$84.14
ETH<0.01%$0.206742403.3154$83.38
ETH<0.01%$0.00160650,783.4649$81.54
ETH<0.01%$0.0578061,392.9446$80.52
ETH<0.01%$0.00446617,793.3322$79.47
ETH<0.01%$0.99959378.8735$78.84
ETH<0.01%$0.0294842,655.184$78.29
ETH<0.01%<$0.0000018,227,963,291.9463$77.87
ETH<0.01%$0.573153134.9994$77.38
ETH<0.01%$0.0237363,244.5649$77.01
ETH<0.01%$0.0000164,901,693.9965$76.37
ETH<0.01%$0.0367372,061.9734$75.75
ETH<0.01%$0.00152749,538.4224$75.65
ETH<0.01%$8.179.0849$74.22
ETH<0.01%$0.99692174.1027$73.87
ETH<0.01%$0.00309123,874.4874$73.8
ETH<0.01%$0.0271492,714.4529$73.69
ETH<0.01%$0.205708357.9482$73.63
ETH<0.01%$0.0253172,890.9299$73.19
ETH<0.01%$0.05131,425.2272$73.11
ETH<0.01%$0.0717821,017.8421$73.06
ETH<0.01%$2,415.910.0302$73.06
ETH<0.01%$2,449.670.0293$71.73
ETH<0.01%$0.466498153.1027$71.42
ETH<0.01%$0.0247872,849.4098$70.63
ETH<0.01%$0.064761,090.3911$70.61
ETH<0.01%$0.000474147,647.6648$70.01
ETH<0.01%$0.0603511,155.2793$69.72
ETH<0.01%$0.00121256,723.906$68.72
ETH<0.01%$0.0147394,650.3373$68.54
ETH<0.01%$0.0489991,392.4472$68.23
ETH<0.01%$0.072716936.9934$68.13
ETH<0.01%$0.0147534,597.9711$67.84
ETH<0.01%$0.035111,921.1753$67.45
ETH<0.01%$0.0169623,975.6586$67.43
ETH<0.01%$1.2454.2241$67.24
ETH<0.01%$0.00243527,465.5218$66.87
ETH<0.01%$0.0068089,634.2524$65.59
ETH<0.01%$4.4714.6322$65.41
ETH<0.01%$0.000389166,588.6323$64.82
ETH<0.01%$0.00778,411.138$64.77
ETH<0.01%$0.0078628,195.0253$64.43
ETH<0.01%$0.0522861,219.5785$63.77
ETH<0.01%$0.08272766.4232$63.4
ETH<0.01%$0.0138934,543.0124$63.12
ETH<0.01%$3,455.040.018$62.32
ETH<0.01%$0.0275162,261.2195$62.22
ETH<0.01%$0.00388115,913.0173$61.75
ETH<0.01%$0.0282242,175.8252$61.41
ETH<0.01%$0.0233742,611.4774$61.04
ETH<0.01%$0.064042947.8902$60.7
ETH<0.01%$0.020692,924.2828$60.5
ETH<0.01%$0.0000173,437,373.8132$58.68
ETH<0.01%$0.000101577,435.633$58.55
ETH<0.01%$0.0235012,455.999$57.72
ETH<0.01%$0.19904289.2891$57.58
ETH<0.01%$0.99476157.7234$57.42
ETH<0.01%$0.064083894.8369$57.34
ETH<0.01%$0.00996.9889$0.00
ETH<0.01%$3.6515.5209$56.65
ETH<0.01%$0.000124454,320.347$56.15
ETH<0.01%$0.340942164.3028$56.02
ETH<0.01%$0.00271419,994.5979$54.26
ETH<0.01%$118.70.4564$54.18
ETH<0.01%$0.099853542.5846$54.18
ETH<0.01%$0.086482617.2345$53.38
ETH<0.01%$0.0000068,496,719.3131$53.27
ETH<0.01%$0.0169083,055.9159$51.67
ETH<0.01%$0.99257951.5153$51.13
ETH<0.01%$0.0023,460.9204$0.00
ETH<0.01%$2,062.660.0244$50.32
ETH<0.01%$0.000079635,938.0142$50.19
ETH<0.01%$12.214.099$50.05
ETH<0.01%$0.382549129.9894$49.73
ETH<0.01%<$0.0000016,847,912,827.1234$49.67
ETH<0.01%$0.0225672,190.1982$49.43
ETH<0.01%$70.350.7025$49.42
ETH<0.01%$0.76304463.9637$48.81
ETH<0.01%$0.0000172,836,530.8494$47.94
ETH<0.01%$0.99998147.7881$47.79
ETH<0.01%$0.0385471,236.4904$47.66
ETH<0.01%$0.00295116,058.9855$47.39
ETH<0.01%$2.320.562$47.24
ETH<0.01%$0.0110254,275.9674$47.14
ETH<0.01%$0.000118398,284.3483$46.91
ETH<0.01%$2.1621.5055$46.45
ETH<0.01%$0.000014,415,763.1941$46.28
ETH<0.01%$0.052599878.5832$46.21
ETH<0.01%$0.048071961.2423$46.21
ETH<0.01%$0.37953121.2187$46.01
ETH<0.01%$0.99941846.0329$46.01
ETH<0.01%$0.0118973,827.4262$45.54
ETH<0.01%$0.00019238,585.6643$45.37
ETH<0.01%$4,551.920.00996311$45.35
ETH<0.01%$0.0175252,557.7575$44.82
ETH<0.01%<$0.0000011,282,858,011.7142$44.54
ETH<0.01%$0.0159782,751.0447$43.96
ETH<0.01%$0.0007358,626.2176$42.78
ETH<0.01%$0.0254591,674.8404$42.64
ETH<0.01%$0.369127114.9559$42.43
ETH<0.01%$0.00000410,643,691.0669$42.15
ETH<0.01%$0.00283414,856.274$42.1
ETH<0.01%$0.0044789,384.6183$42.03
ETH<0.01%$4.938.499$41.9
ETH<0.01%$0.06748620.7682$41.89
ETH<0.01%$3.0413.7706$41.86
ETH<0.01%$0.0055887,476.7665$41.78
ETH<0.01%$0.124968333.7657$41.71
ETH<0.01%$76,2980.00053154$40.56
ETH<0.01%$3.1312.9477$40.53
ETH<0.01%$0.0060446,701.9482$40.51
ETH<0.01%$0.069647573.0642$39.91
ETH<0.01%$0.045097883.291$39.83
ETH<0.01%$0.131266299.975$39.38
ETH<0.01%$0.0000075,847,035.576$39.29
ETH<0.01%$0.70348955.8266$39.27
ETH<0.01%$0.00000152,831,207.7837$39.02
ETH<0.01%$0.57214267.7623$38.77
ETH<0.01%$0.0273691,412.3418$38.65
ETH<0.01%$0.0285881,351.2928$38.63
ETH<0.01%$0.0045988,318.5899$38.25
ETH<0.01%$1.0137.5803$37.77
ETH<0.01%$0.156965238.5175$37.44
ETH<0.01%$1.4425.8847$37.27
ETH<0.01%$0.138214268.9561$37.17
ETH<0.01%$0.0000311,205,111.9295$37.11
ETH<0.01%$2,031.440.0183$37.08
ETH<0.01%$0.058459632.8718$37
ETH<0.01%$0.00332311,109.3352$36.91
ETH<0.01%<$0.000001108,183,686.3622$36.89
ETH<0.01%$0.098148373.4127$36.65
ETH<0.01%$0.00066654,468.4585$36.26
ETH<0.01%$0.00123129,287.2744$36.07
ETH<0.01%$3.969.0645$35.94
ETH<0.01%$0.205371174.6541$35.87
ETH<0.01%$0.0014923,771.209$35.42
ETH<0.01%$0.0038229,159.4234$35.01
ETH<0.01%$0.162984212.4549$34.63
ETH<0.01%$2.5313.6849$34.62
ETH<0.01%$0.000327105,770.2666$34.56
ETH<0.01%<$0.000001424,439,649.518$34.51
ETH<0.01%$0.005056,751.0831$34.09
ETH<0.01%$0.0059815,647.4493$33.78
ETH<0.01%$0.9255736.3248$33.62
ETH<0.01%$0.00068548,600.1965$33.3
ETH<0.01%$0.99136133.2564$32.97
ETH<0.01%$759.710.0433$32.92
ETH<0.01%$0.0205571,595.6298$32.8
ETH<0.01%$0.074208438.6692$32.55
ETH<0.01%$0.306033106.1686$32.49
ETH<0.01%$41,8730.00077559$32.48
ETH<0.01%$0.00140122,959.7991$32.17
ETH<0.01%$257.320.1249$32.13
ETH<0.01%$0.0213341,481.7636$31.61
ETH<0.01%$0.0058775,377.7032$31.61
ETH<0.01%$0.00000127,415,811.177$31.25
ETH<0.01%$0.0068394,543.2565$31.07
ETH<0.01%$0.00246712,439.0852$30.69
ETH<0.01%$15.112.0282$30.65
ETH<0.01%$0.0158281,914.9308$30.31
ETH<0.01%$0.69093643.7444$30.22
ETH<0.01%$1.0828.0351$30.22
ETH<0.01%$0.182864165.1508$30.2
ETH<0.01%$8.993.3172$29.82
ETH<0.01%$0.0212231,403.846$29.79
ETH<0.01%$18.841.5643$29.47
ETH<0.01%$0.047837615.7459$29.46
ETH<0.01%$0.038803743.264$28.84
ETH<0.01%$0.0077313,720.3731$28.76
ETH<0.01%$1.815.881$28.59
ETH<0.01%$0.00036677,979.9205$28.57
ETH<0.01%$0.78990835.697$28.2
ETH<0.01%$0.12958214.2494$27.76
ETH<0.01%$0.34156680.9563$27.65
ETH<0.01%$0.00049455,619.3521$27.46
ETH<0.01%$0.45380960.2808$27.36
ETH<0.01%$0.000046596,594.367$27.33
ETH<0.01%$0.000181150,317.6452$27.17
ETH<0.01%$0.101211267.7404$27.1
ETH<0.01%$0.64517442.0011$27.1
ETH<0.01%$0.021241,269.4637$26.96
ETH<0.01%$0.000.172$0.00
ETH<0.01%$0.0026789,968.2106$26.69
ETH<0.01%$0.060525438.4776$26.54
ETH<0.01%<$0.0000012,640,739,332.1384$26.44
ETH<0.01%$0.0255061,033.0356$26.35
ETH<0.01%$8.343.1599$26.34
ETH<0.01%$0.32511480.8785$26.29
ETH<0.01%$0.000034765,000$26.27
ETH<0.01%$17.581.4798$26.02
ETH<0.01%$0.0214471,204.8187$25.84
ETH<0.01%$0.108321238.0131$25.78
ETH<0.01%<$0.00000165,636,356,144.2344$25.36
ETH<0.01%$9.612.6193$25.17
ETH<0.01%$0.0071293,482.3568$24.83
ETH<0.01%$0.0032767,521.6196$24.64
ETH<0.01%$0.076808320.3212$24.6
ETH<0.01%$0.0000046,038,244.3816$24.44
ETH<0.01%$0.69997134.6127$24.23
ETH<0.01%$1.1521.0512$24.21
ETH<0.01%$0.0120852,000.4972$24.18
ETH<0.01%$0.0162621,485.949$24.16
ETH<0.01%$0.0070143,400.0169$23.85
ETH<0.01%$0.00000211,913,156.4669$23.83
ETH<0.01%$0.036592645.9799$23.64
ETH<0.01%$188.10.1248$23.47
ETH<0.01%$0.211808110.7232$23.45
ETH<0.01%$0.0127161,835.5899$23.34
ETH<0.01%$0.13757169.1419$23.27
ETH<0.01%$0.00112320,448.4065$22.96
ETH<0.01%$0.0063353,550.4918$22.49
ETH<0.01%$50.50.4422$22.33
ETH<0.01%$2,190.160.0102$22.33
ETH<0.01%<$0.00000188,948,408.7296$22.12
ETH<0.01%$1.0920.2521$21.99
ETH<0.01%$0.28409676.358$21.69
ETH<0.01%$0.055217392.0165$21.65
ETH<0.01%$0.0062163,464.8967$21.54
ETH<0.01%$0.0021919,743.6145$21.35
ETH<0.01%$0.005823,650.5461$21.25
ETH<0.01%$0.70212930.1733$21.19
ETH<0.01%$0.00003715,005.5332$21.17
ETH<0.01%$0.005963,545.1786$21.13
ETH<0.01%$0.50441.8159$21.08
ETH<0.01%$0.000181116,328.6627$21.03
ETH<0.01%$0.0048374,314.0152$20.86
ETH<0.01%$0.000024854,936.9806$20.73
ETH<0.01%$1.1418.1719$20.72
ETH<0.01%$0.086847236.6987$20.56
ETH<0.01%$0.0101792,018.7268$20.55
ETH<0.01%$0.0070112,924.4906$20.5
ETH<0.01%$0.023424874.4248$20.48
ETH<0.01%$0.0081922,499.787$20.48
ETH<0.01%$3.216.3737$20.46
ETH<0.01%$0.00047842,582.0805$20.36
ETH<0.01%$1.1817.2439$20.35
ETH<0.01%$0.0008224,748.7678$20.29
ETH<0.01%$0.48586341.6392$20.23
ETH<0.01%$0.03278613.5595$20.11
ETH<0.01%$0.073946270.2962$19.99
ETH<0.01%$0.00057934,368.6973$19.89
ETH<0.01%$0.34534557.1401$19.73
ETH<0.01%$0.134604144.537$19.46
ETH<0.01%$0.00176610,990.5852$19.41
ETH<0.01%$0.00071227,144.2882$19.32
ETH<0.01%$0.0143751,336.4123$19.21
ETH<0.01%$67.80.2785$18.88
ETH<0.01%$1,971.190.00951831$18.76
ETH<0.01%$0.082043227.6314$18.68
ETH<0.01%$3.575.2061$18.57
ETH<0.01%$0.0158061,167.7629$18.46
ETH<0.01%$0.0118251,553.9572$18.38
ETH<0.01%$0.0068892,660.4389$18.33
ETH<0.01%$0.174554104.714$18.28
ETH<0.01%$10.061.8094$18.2
ETH<0.01%<$0.000001415,158,768.7069$18.18
ETH<0.01%$0.0065512,771.1888$18.15
ETH<0.01%$0.00000123,618,301.1274$17.77
ETH<0.01%$0.0074362,370.391$17.63
ETH<0.01%$2,095.770.00839986$17.6
ETH<0.01%$0.00022777,371.1947$17.57
ETH<0.01%$0.033678521.5984$17.57
ETH<0.01%<$0.00000111,560,390,585.7999$17.51
ETH<0.01%$0.50244334.8215$17.5
ETH<0.01%$2,297.350.0076$17.46
ETH<0.01%$0.0039064,459.1508$17.42
ETH<0.01%$0.00118314,591.7119$17.26
ETH<0.01%$0.049098350.8975$17.23
ETH<0.01%$0.00009189,771.1697$17.11
ETH<0.01%$0.000089191,276.2456$17.05
ETH<0.01%$1.5211.161$16.96
ETH<0.01%$0.0086211,967.4911$16.96
ETH<0.01%$1.0416.0074$16.66
ETH<0.01%$0.035928462.2917$16.61
ETH<0.01%$0.99985616.4532$16.45
ETH<0.01%$0.000354,185.9915$16.26
ETH<0.01%<$0.000001349,975,619,628.6221$16.16
ETH<0.01%$0.99955516.1$16.09
ETH<0.01%$0.0050763,163.697$16.06
ETH<0.01%$0.00101515,798.5423$16.04
ETH<0.01%$0.040626393.7417$16
ETH<0.01%$0.28576455.8255$15.95
ETH<0.01%$120.550.1321$15.93
ETH<0.01%$0.025092633.6911$15.9
ETH<0.01%$0.99832715.8963$15.87
ETH<0.01%<$0.000001874,901,507,612,295.88$15.84
ETH<0.01%$0.032474487.5596$15.83
ETH<0.01%$2,099.020.00752581$15.8
ETH<0.01%$0.066904235.3113$15.74
ETH<0.01%$0.0101861,535.3423$15.64
ETH<0.01%$0.095896162.1257$15.55
ETH<0.01%$0.05955260.28$15.5
ETH<0.01%$0.0137861,112.4363$15.34
ETH<0.01%$0.0027635,537.5457$15.3
ETH<0.01%$8.641.7684$15.28
ETH<0.01%$0.0029415,160.3102$15.17
ETH<0.01%$0.00796.954$0.00
ETH<0.01%$0.065994228.4028$15.07
ETH<0.01%$0.000037397,467.017$14.82
ETH<0.01%$1.4510.1971$14.79
ETH<0.01%$0.079682184.2817$14.68
ETH<0.01%$0.00042934,076.5946$14.61
ETH<0.01%$0.028778503.7119$14.5
ETH<0.01%$5.362.6913$14.44
ETH<0.01%$0.0122791,163.2409$14.28
ETH<0.01%$0.60141423.4511$14.1
ETH<0.01%$0.15295391.8037$14.04
ETH<0.01%$76,0430.00018407$14
ETH<0.01%$1.0113.8991$13.97
ETH<0.01%$0.0026495,262.2189$13.94
ETH<0.01%$0.000116119,704.8711$13.92
ETH<0.01%$0.049548280.8531$13.92
ETH<0.01%$0.000072191,656.9872$13.79
ETH<0.01%$1.1811.5947$13.68
ETH<0.01%$0.14946290.8954$13.59
ETH<0.01%$0.28857547$13.56
ETH<0.01%<$0.000001219,691,879.9841$13.5
ETH<0.01%$0.99920813.5056$13.49
ETH<0.01%$0.019473689.4206$13.42
ETH<0.01%$1.1811.3597$13.4
ETH<0.01%$0.007121,881.694$13.4
ETH<0.01%$1.1211.8225$13.24
ETH<0.01%$0.42751330.9076$13.21
ETH<0.01%$0.0054712,414.0433$13.21
ETH<0.01%$0.00003440,546.5824$13.16
ETH<0.01%$0.032213407.4462$13.13
ETH<0.01%$0.0099411,319.9367$13.12
ETH<0.01%$0.9979113.1333$13.11
ETH<0.01%$0.0050412,585.3069$13.03
ETH<0.01%$0.0015418,386.3867$12.92
ETH<0.01%$0.14056291.3871$12.85
ETH<0.01%$0.30145342.3956$12.78
ETH<0.01%$0.000074172,191.6516$12.68
ETH<0.01%$0.00096613,101.5077$12.66
ETH<0.01%$0.30908240.8377$12.62
ETH<0.01%$0.0092861,350.774$12.54
ETH<0.01%$0.112418111.4884$12.53
ETH<0.01%$0.0089851,393.6198$12.52
ETH<0.01%$2,407.090.0051801$12.47
ETH<0.01%$0.0000028,117,215.3218$12.42
ETH<0.01%<$0.0000011,830,680,941.9062$12.33
ETH<0.01%$0.00080115,382.2179$12.32
ETH<0.01%$0.23559451.3348$12.09
ETH<0.01%$0.012637949.5353$12
ETH<0.01%$0.000095125,524.8625$11.98
ETH<0.01%$0.0060111,987.295$11.95
ETH<0.01%$0.0113771,048.8373$11.93
ETH<0.01%$1,977.210.00601446$11.89
ETH<0.01%$0.069821170.0297$11.87
ETH<0.01%$0.0013438,817.5008$11.85
ETH<0.01%$0.9998111.8431$11.84
ETH<0.01%$3.383.4378$11.62
ETH<0.01%$42.670.2715$11.58
ETH<0.01%$0.00087613,114.6903$11.49
ETH<0.01%$0.0042492,703.0064$11.49
ETH<0.01%$0.08069142.3338$11.48
ETH<0.01%$0.81384914.0806$11.46
ETH<0.01%$127.360.0894$11.39
ETH<0.01%$0.029851380.7591$11.37
ETH<0.01%$0.002045,549.8476$11.32
ETH<0.01%$1.288.8329$11.31
ETH<0.01%$0.67387616.7735$11.3
ETH<0.01%$0.103438108.7463$11.25
ETH<0.01%$0.0030933,623.8818$11.21
ETH<0.01%$0.00492,278.6787$11.17
ETH<0.01%$0.19477957.201$11.14
ETH<0.01%$1.318.4007$11
ETH<0.01%$0.027788383.5546$10.66
ETH<0.01%$1.328.0481$10.62
ETH<0.01%$0.0000026,151,258.3187$10.39
ETH<0.01%$0.057566180$10.36
ETH<0.01%$0.0018435,622.1384$10.36
ETH<0.01%$0.000081127,486$10.35
ETH<0.01%$0.0010969,372.4971$10.27
ETH<0.01%$0.036197283.523$10.26
ETH<0.01%$0.0017135,971.5761$10.23
ETH<0.01%$0.0016716,097.2926$10.19
ETH<0.01%$1,889.480.00538275$10.17
ETH<0.01%$1.556.5603$10.17
ETH<0.01%$0.010011,013.7758$10.15
ETH<0.01%$0.00083112,206.1818$10.14
ETH<0.01%$0.0017275,835.7015$10.08
ETH<0.01%$1.188.5322$10.06
ETH<0.01%$1.188.5322$10.06
ETH<0.01%$0.060916164.7701$10.04
ETH<0.01%$0.0050211,988.2582$9.98
ETH<0.01%$0.0018535,355.4242$9.92
ETH<0.01%$0.012925761.8037$9.85
ETH<0.01%$0.000034289,003.1956$9.81
ETH<0.01%$0.00048420,196.4631$9.77
ETH<0.01%$0.10976387.5751$9.61
ETH<0.01%$0.0013337,151.4344$9.53
ETH<0.01%$0.18932349.8781$9.44
ETH<0.01%$0.35163926.6614$9.38
ETH<0.01%<$0.000001183,931,927.0422$9.36
ETH<0.01%<$0.00000127,215,570.5204$9.35
ETH<0.01%$0.52168717.8396$9.31
ETH<0.01%$0.00010687,189.0618$9.28
ETH<0.01%$0.00060815,248.0894$9.27
ETH<0.01%$0.0012347,462.9864$9.21
ETH<0.01%$0.55546116.3914$9.1
ETH<0.01%$0.19590846.1327$9.04
ETH<0.01%$0.0049681,818.2696$9.03
ETH<0.01%<$0.000001476,658,660.5513$9.03
ETH<0.01%$0.0013286,737.6735$8.95
ETH<0.01%$0.020885428.3308$8.95
ETH<0.01%$0.0003624,824.3578$8.94
ETH<0.01%<$0.0000015,570,168,899.0524$8.94
ETH<0.01%$0.27087132.7149$8.86
ETH<0.01%$3.172.7949$8.86
ETH<0.01%$0.72977712.0623$8.8
ETH<0.01%$0.0031312,807.408$8.79
ETH<0.01%$0.00016353,914.0274$8.78
ETH<0.01%$0.012948676.549$8.76
ETH<0.01%$0.00000111,823,088.9279$8.76
ETH<0.01%$0.009066943.8409$8.56
ETH<0.01%$0.001127,589.6113$8.5
ETH<0.01%$0.0012386,863.5303$8.49
ETH<0.01%$0.0047011,803.7668$8.48
ETH<0.01%<$0.000001614,323,562,722.006$8.46
ETH<0.01%$0.14813257.0851$8.46
ETH<0.01%$0.0078461,076.0475$8.44
ETH<0.01%$0.0053381,577.6605$8.42
ETH<0.01%$0.45794318.3553$8.41
ETH<0.01%$0.000014580,838.8554$8.34
ETH<0.01%$0.15519253.3405$8.28
ETH<0.01%$0.0012946,394.486$8.28
ETH<0.01%$18.2568$8.26
ETH<0.01%$0.098583.5674$8.23
ETH<0.01%$0.09380787.45$8.2
ETH<0.01%$0.013342610.5482$8.15
ETH<0.01%$0.999518.1298$8.13
ETH<0.01%$0.9988598.0888$8.08
ETH<0.01%$1.018.0294$8.07
ETH<0.01%$0.00074710,769.7707$8.04
ETH<0.01%$0.0074161,073.9242$7.96
ETH<0.01%$0.069161115.1192$7.96
ETH<0.01%$0.0010967,239.103$7.94
ETH<0.01%$0.011346698.5061$7.93
ETH<0.01%$0.24720431.9588$7.9
ETH<0.01%$0.0044461,776.8116$7.9
ETH<0.01%$0.0026372,959.8111$7.8
ETH<0.01%$0.00059313,099.3874$7.76
ETH<0.01%$0.020758372.9832$7.74
ETH<0.01%$1.116.9619$7.73
ETH<0.01%$41.940.1841$7.72
ETH<0.01%$1.624.7551$7.7
ETH<0.01%$0.00013855,946.9061$7.7
ETH<0.01%$1.057.2611$7.65
ETH<0.01%$0.36412820.9915$7.64
ETH<0.01%$0.0009457,978.4135$7.54
ETH<0.01%$0.011804637.6523$7.53
ETH<0.01%$0.014779507.9116$7.51
ETH<0.01%$0.051733144.2082$7.46
ETH<0.01%$0.20047637.082$7.43
ETH<0.01%$0.065672113.0793$7.43
ETH<0.01%$0.16347545.2172$7.39
ETH<0.01%$0.0067341,085.4262$7.31
ETH<0.01%$0.004451,636.9795$7.28
ETH<0.01%$0.040062180.1472$7.22
ETH<0.01%$0.039666180.9866$7.18
ETH<0.01%$0.0015074,744.1417$7.15
ETH<0.01%$0.00023829,893.2655$7.12
ETH<0.01%$2,453.130.00290086$7.12
ETH<0.01%$0.01665426.8895$7.11
ETH<0.01%$78,8780.00009$7.1
ETH<0.01%$0.023403301.9658$7.07
ETH<0.01%$0.08787580.1072$7.04
ETH<0.01%$0.03187219.8142$7.01
ETH<0.01%$10.530.6647$7
ETH<0.01%$0.0000014,936,415.7336$6.96
ETH<0.01%$2,027.170.00343206$6.96
ETH<0.01%$0.08806678.9862$6.96
ETH<0.01%$2,452.980.00283289$6.95
ETH<0.01%$0.0010036,901.071$6.92
ETH<0.01%$0.015403448.4345$6.91
ETH<0.01%$0.017658389.8612$6.88
ETH<0.01%$0.00028524,086.691$6.87
ETH<0.01%$0.00054312,629.5759$6.86
ETH<0.01%$0.042379159.7515$6.77
ETH<0.01%$0.0025022,701.2572$6.76
ETH<0.01%$0.1962334.267$6.72
ETH<0.01%$0.0040391,659.2335$6.7
ETH<0.01%$15.950.4183$6.67
ETH<0.01%$1.723.8639$6.65
ETH<0.01%$0.008056820.6986$6.61
ETH<0.01%$0.27900623.6726$6.6
ETH<0.01%$0.07905283.3993$6.59
ETH<0.01%$0.16527339.6578$6.55
ETH<0.01%$0.055755117.0852$6.53
ETH<0.01%$0.11778155.2338$6.51
ETH<0.01%$0.9993116.4627$6.46
ETH<0.01%$0.0051061,259.4648$6.43
ETH<0.01%<$0.00000119,046,335.4807$6.41
ETH<0.01%$0.02794228.7682$6.39
ETH<0.01%$0.039746159.5361$6.34
ETH<0.01%$185.70.0341$6.32
ETH<0.01%$0.9806896.4403$6.32
ETH<0.01%$0.21172929.5842$6.26
ETH<0.01%$0.00034218,259.5$6.25
ETH<0.01%$75,5570.00008188$6.19
ETH<0.01%$0.010722575.8652$6.17
ETH<0.01%$0.009487646.5145$6.13
ETH<0.01%$1.244.9419$6.13
ETH<0.01%$1.324.6349$6.12
ETH<0.01%$71,0990.00008555$6.08
ETH<0.01%$607.050.00999156$6.07
ETH<0.01%$0.9275156.5379$6.06
ETH<0.01%$0.13086346.1785$6.04
ETH<0.01%$0.21181628.2996$5.99
ETH<0.01%$46.310.1291$5.98
ETH<0.01%$0.15386738.7654$5.96
ETH<0.01%$0.009383631.9218$5.93
ETH<0.01%$0.0017013,462.5225$5.89
ETH<0.01%$0.025607228.1869$5.84
ETH<0.01%$0.0057771,009.0928$5.83
ETH<0.01%$0.06083995.7771$5.83
ETH<0.01%$0.13755342.0033$5.78
ETH<0.01%$0.013836416.0797$5.76
ETH<0.01%$0.9997615.7511$5.75
ETH<0.01%$8.640.664$5.74
ETH<0.01%$0.0042711,338.341$5.72
ETH<0.01%$0.000648,923$5.71
ETH<0.01%$0.0649387.3222$5.67
ETH<0.01%<$0.0000019,451,716,716.6651$5.67
ETH<0.01%$0.10525653.8453$5.67
ETH<0.01%$0.0008356,788.1868$5.67
ETH<0.01%$2,265.170.00247955$5.62
ETH<0.01%$0.6745218.2931$5.59
ETH<0.01%$0.022795245.2593$5.59
ETH<0.01%$0.014424387.1859$5.58
ETH<0.01%$0.0035441,575.6609$5.58
ETH<0.01%$0.0034251,616.1959$5.54
ETH<0.01%$0.00038814,085.0924$5.46
ETH<0.01%$0.009434578.1262$5.45
ETH<0.01%$0.9951335.4804$5.45
ETH<0.01%$1.164.678$5.43
ETH<0.01%$0.000.97$0.00
ETH<0.01%$1.164.5958$5.33
ETH<0.01%$0.00020326,172.4564$5.33
ETH<0.01%$0.010166517.8238$5.26
ETH<0.01%$0.29846517.6022$5.25
ETH<0.01%$0.021576241.7759$5.22
ETH<0.01%$0.00774673.6587$5.21
ETH<0.01%$0.40206312.9627$5.21
ETH<0.01%$15.2069$5.21
ETH<0.01%$0.0614284.0308$5.16
ETH<0.01%$0.009925518.8749$5.15
ETH<0.01%$0.005344963.5344$5.15
ETH<0.01%$0.14945934.2246$5.12
ETH<0.01%$0.000036141,006.6653$5.11
ETH<0.01%$0.035383144.3801$5.11
ETH<0.01%$0.0014583,485.0246$5.08
ETH<0.01%$0.10123948.7084$4.93
ETH<0.01%$3.431.4337$4.92
ETH<0.01%$0.9861884.983$4.91
ETH<0.01%$0.000029166,836.5005$4.9
ETH<0.01%$0.3010816.2144$4.88
ETH<0.01%<$0.00000182,156,818.8698$4.85
ETH<0.01%$14.8191$4.82
ETH<0.01%$76,2120.0000632$4.82
ETH<0.01%$0.9789874.8853$4.78
ETH<0.01%$0.0006787,022.4762$4.76
ETH<0.01%$0.019363245.7306$4.76
ETH<0.01%$0.035061135.5144$4.75
ETH<0.01%$0.9985334.7526$4.75
ETH<0.01%$0.024108196.4075$4.74
ETH<0.01%$0.04753999.4864$4.73
ETH<0.01%$0.5931597.973$4.73
ETH<0.01%$14.6915$4.71
ETH<0.01%$2,084.790.00225345$4.7
ETH<0.01%$0.028585164.215$4.69
ETH<0.01%$0.09633148.4556$4.67
ETH<0.01%$0.0009464,905.2194$4.64
ETH<0.01%$0.005873790.2532$4.64
ETH<0.01%$0.0544384.5956$4.6
ETH<0.01%$0.0028871,592.304$4.6
ETH<0.01%$2,777.070.00165229$4.59
ETH<0.01%$0.004973918.6427$4.57
ETH<0.01%$0.0037691,210.366$4.56
ETH<0.01%$31.517$4.55
ETH<0.01%<$0.000001104,266,494.518$4.54
ETH<0.01%$0.14066332.2658$4.54
ETH<0.01%<$0.000001125,744,270,498.3449$4.53
ETH<0.01%$0.0001432,302.205$4.51
ETH<0.01%$0.00023319,261.8119$4.5
ETH<0.01%$0.006196722.2442$4.47
ETH<0.01%$0.31436614.1181$4.44
ETH<0.01%$14.3824$4.38
ETH<0.01%$0.000006681,568.77$4.38
ETH<0.01%$0.0021472,038.0186$4.38
ETH<0.01%$0.508728.547$4.35
ETH<0.01%$411.650.0105$4.34
ETH<0.01%$0.037099116.4561$4.32
ETH<0.01%$0.015226279.7827$4.26
ETH<0.01%$0.0004469,533.1237$4.26
ETH<0.01%$0.000034125,732.4754$4.25
ETH<0.01%$263.90.0161$4.25
ETH<0.01%<$0.0000018,500,000$4.21
ETH<0.01%$0.0008195,137.2904$4.2
ETH<0.01%$0.005195803.0686$4.17
ETH<0.01%$0.07893752.6824$4.16
ETH<0.01%$0.00029913,806.2237$4.13
ETH<0.01%<$0.00000143,097,199,181.8234$4.11
ETH<0.01%$0.020549198.6637$4.08
ETH<0.01%$0.0034241,186.4914$4.06
ETH<0.01%$0.0037991,068.7259$4.06
ETH<0.01%<$0.000001272,405,237.1228$4.03
ETH<0.01%<$0.000001327,367,962.8529$3.99
ETH<0.01%$0.00005374,908.7046$3.97
ETH<0.01%<$0.0000013,881,056,611.6794$3.97
ETH<0.01%$0.38077410.4065$3.96
ETH<0.01%$0.00019619,994.2003$3.92
ETH<0.01%$0.00009441,598.696$3.9
ETH<0.01%$0.007891493.8116$3.9
ETH<0.01%$0.23001316.908$3.89
ETH<0.01%$0.25303415.282$3.87
ETH<0.01%$0.00008346,392.1733$3.87
ETH<0.01%$2.041.8829$3.85
ETH<0.01%<$0.000001495,439,416.3735$3.84
ETH<0.01%$0.018656205.2285$3.83
ETH<0.01%$0.02053185.2589$3.8
ETH<0.01%$0.22624816.7058$3.78
ETH<0.01%$0.005806650.728$3.78
ETH<0.01%$0.013011288.65$3.76
ETH<0.01%$0.006037622$3.75
ETH<0.01%$0.00014625,682.0213$3.74
ETH<0.01%$7,123.40.00052515$3.74
ETH<0.01%$0.0006375,841.8642$3.72
ETH<0.01%$0.014729250.9205$3.7
ETH<0.01%$0.09664438.0502$3.68
ETH<0.01%$0.000007542,666.7689$3.67
ETH<0.01%$0.00024115,186.3275$3.67
ETH<0.01%<$0.000001135,780,787.2425$3.62
ETH<0.01%$0.007389484.2375$3.58
ETH<0.01%$0.0024311,467.4292$3.57
ETH<0.01%$0.0008334,258.9588$3.55
ETH<0.01%<$0.00000139,249,840.4424$3.54
ETH<0.01%<$0.00000152,433,706,107.809$3.53
ETH<0.01%$0.011255312.7019$3.52
ETH<0.01%$195.520.018$3.52
ETH<0.01%$0.000135,293.4753$3.52
ETH<0.01%$0.03892989.6591$3.49
ETH<0.01%$0.07175248.6415$3.49
ETH<0.01%$0.12226528.2901$3.46
ETH<0.01%$0.5826045.9102$3.44
ETH<0.01%$0.009881344.5884$3.4
ETH<0.01%$0.0068499.8777$3.4
ETH<0.01%$0.031052109.3014$3.39
ETH<0.01%$0.007533449.6681$3.39
ETH<0.01%$0.0004467,573.4331$3.38
ETH<0.01%$2,012.240.00167128$3.36
ETH<0.01%$0.0000014,555,539.9911$3.3
ETH<0.01%$0.00674485.7287$3.27
ETH<0.01%$0.14581922.3859$3.26
ETH<0.01%$0.003548915.5681$3.25
ETH<0.01%$0.0015232,122.1851$3.23
ETH<0.01%$0.0013412,400.3607$3.22
ETH<0.01%$0.010487304.0009$3.19
ETH<0.01%$0.000023136,144.0063$3.18
ETH<0.01%$0.3314219.538$3.16
ETH<0.01%$0.019099164.6337$3.14
ETH<0.01%$0.0006514,810.9611$3.13
ETH<0.01%$0.000028110,727.6139$3.11
ETH<0.01%$1.332.3274$3.1
ETH<0.01%$0.25730611.8809$3.06
ETH<0.01%$0.0024731,233.52$3.05
ETH<0.01%$0.000015204,961.2316$3.05
ETH<0.01%$0.03013100.0889$3.02
ETH<0.01%$0.025284119.1443$3.01
ETH<0.01%$0.000644,694.8035$3
ETH<0.01%$0.011142268.4302$2.99
ETH<0.01%$0.0010652,805.3873$2.99
ETH<0.01%$0.5861145.0956$2.99
ETH<0.01%$0.8476183.5164$2.98
ETH<0.01%$0.0006514,574.4578$2.98
ETH<0.01%$0.09606230.8782$2.97
ETH<0.01%$64,9570.00004513$2.93
ETH<0.01%$0.000018161,903.8392$2.91
ETH<0.01%$0.0001717,122.2062$2.91
ETH<0.01%$0.00064,843.5019$2.91
ETH<0.01%$0.00018215,694.0653$2.86
ETH<0.01%$0.00023811,985.153$2.86
ETH<0.01%$0.0007493,786.3251$2.84
ETH<0.01%$0.19839214.2588$2.83
ETH<0.01%$1.092.588$2.81
ETH<0.01%$0.006437435.225$2.8
ETH<0.01%$0.000019144,622.6054$2.78
ETH<0.01%$0.00011524,123.7268$2.77
ETH<0.01%$0.7118973.8885$2.77
ETH<0.01%$0.654614.2243$2.77
ETH<0.01%$0.2429911.3232$2.75
ETH<0.01%$0.000021128,828.3179$2.74
ETH<0.01%$0.00020413,404.513$2.73
ETH<0.01%$0.0006014,541.1183$2.73
ETH<0.01%$0.00016616,404.9708$2.72
ETH<0.01%$0.008797309.0957$2.72
ETH<0.01%$0.00055,430.7265$2.71
ETH<0.01%$0.0003178,546.4296$2.71
ETH<0.01%$0.00017914,974.347$2.69
ETH<0.01%$0.25622410.3655$2.66
ETH<0.01%$0.05580947.4094$2.65
ETH<0.01%$0.08111432.6089$2.65
ETH<0.01%$0.00005349,474.8227$2.64
ETH<0.01%$0.002917893.7592$2.61
ETH<0.01%$0.05180250$2.59
ETH<0.01%$0.00010325,132.9226$2.58
ETH<0.01%$0.0000551,504.1983$2.57
ETH<0.01%$0.0003746,849.9487$2.56
ETH<0.01%$0.34887.264$2.53
ETH<0.01%$0.10715923.5708$2.53
ETH<0.01%$0.00011821,462.6505$2.53
ETH<0.01%$0.4815245.2266$2.52
ETH<0.01%$0.06506338.6678$2.52
ETH<0.01%$0.0013591,846.3808$2.51
ETH<0.01%$0.006788368.9859$2.5
ETH<0.01%$0.009195271.1532$2.49
ETH<0.01%$0.09984924.6387$2.46
ETH<0.01%$0.03860863.665$2.46
ETH<0.01%$0.004038603.2611$2.44
ETH<0.01%$0.16826214.3871$2.42
ETH<0.01%$688.850.0034793$2.4
ETH<0.01%$0.022601105.7858$2.39
ETH<0.01%$0.005344446.5223$2.39
ETH<0.01%$0.0012781,866.4063$2.39
ETH<0.01%$0.017323137.4532$2.38
ETH<0.01%<$0.0000012,557,682,240.328$2.37
ETH<0.01%$100.630.0235$2.36
ETH<0.01%$0.06940333.87$2.35
ETH<0.01%$0.0690633.9078$2.34
ETH<0.01%<$0.000001187,337,931.5894$2.34
ETH<0.01%$0.0010372,254.7447$2.34
ETH<0.01%$0.000014166,257.4718$2.33
ETH<0.01%<$0.00000116,279,584,456.8955$2.33
ETH<0.01%$0.0011322,053.6732$2.32
ETH<0.01%$76,3400.00003042$2.32
ETH<0.01%$0.02482993.3985$2.32
ETH<0.01%$0.0014051,633.202$2.29
ETH<0.01%$0.02674183.2676$2.23
ETH<0.01%$0.00007130,980.8385$2.21
ETH<0.01%$0.03869357.0881$2.21
ETH<0.01%$0.007022314.3058$2.21
ETH<0.01%$0.003277669.9836$2.2
ETH<0.01%$0.004396498.3885$2.19
ETH<0.01%$0.0006693,264.753$2.18
ETH<0.01%$0.003841568.8043$2.18
ETH<0.01%$0.10083621.4874$2.17
ETH<0.01%$0.010317209.9358$2.17
ETH<0.01%$0.013809155.9571$2.15
ETH<0.01%$0.04657346.1979$2.15
ETH<0.01%$0.0007282,939.4912$2.14
ETH<0.01%$0.02717278.6759$2.14
ETH<0.01%$0.0009112,345.4763$2.14
ETH<0.01%<$0.0000011,393,260,187.5973$2.13
ETH<0.01%$0.06007535.1439$2.11
ETH<0.01%$0.00002582,530.1734$2.1
ETH<0.01%$0.0000011,526,441.4106$2.09
ETH<0.01%$0.0012381,679.934$2.08
ETH<0.01%<$0.00000112,987,726.5173$2.08
ETH<0.01%$0.007905262.2737$2.07
ETH<0.01%$0.9999772.0676$2.07
ETH<0.01%$4,937.030.00041506$2.05
ETH<0.01%$0.13722114.8398$2.04
ETH<0.01%$0.0370654.9487$2.04
ETH<0.01%$0.00307661.7297$2.03
ETH<0.01%$0.15772612.799$2.02
ETH<0.01%$0.15169313.291$2.02
ETH<0.01%$0.02388984.0137$2.01
ETH<0.01%<$0.0000019,880,677.9156$2
ETH<0.01%$0.001491,339.6381$2
ETH<0.01%$0.9967342.0026$2
ETH<0.01%$0.006835291.4473$1.99
ETH<0.01%$0.008338238.6652$1.99
ETH<0.01%$0.003846500.1254$1.92
ETH<0.01%$0.009174209.5392$1.92
ETH<0.01%$0.06633728.9541$1.92
ETH<0.01%$0.999481.9128$1.91
ETH<0.01%$0.0012321,547.0295$1.91
ETH<0.01%$0.03049362.3963$1.9
ETH<0.01%$1.451.3122$1.9
ETH<0.01%$0.0010451,819.0496$1.9
ETH<0.01%$0.011993156.7274$1.88
ETH<0.01%$0.09000320.5971$1.85
ETH<0.01%$0.00937196.9087$1.85
ETH<0.01%$0.00009719,071.7867$1.84
ETH<0.01%$0.00334545.6109$1.82
ETH<0.01%$0.0012251,479.5635$1.81
ETH<0.01%$0.02515272.0416$1.81
ETH<0.01%$0.0010291,757.351$1.81
ETH<0.01%$0.00004144,126.7723$1.79
ETH<0.01%$0.05834730.4891$1.78
ETH<0.01%<$0.00000152,206,283.1878$1.76
ETH<0.01%$0.002075841.4734$1.75
ETH<0.01%$0.000009198,177.6026$1.73
ETH<0.01%$0.000.0714$0.00
ETH<0.01%$0.0002636,521.7088$1.71
ETH<0.01%$0.0212380.4979$1.71
ETH<0.01%$0.000582,936.1087$1.7
ETH<0.01%$0.00015311,109.8828$1.7
ETH<0.01%$0.003739454.1667$1.7
ETH<0.01%$0.2885255.885$1.7
ETH<0.01%$0.000016107,536.3281$1.69
ETH<0.01%$0.0016781,006.1264$1.69
ETH<0.01%$0.0000011,342,089.9691$1.68
ETH<0.01%$0.007278227.8201$1.66
ETH<0.01%$0.00004140,671.5777$1.66
ETH<0.01%$0.0002227,453.7365$1.65
ETH<0.01%$0.00007322,540.7337$1.65
ETH<0.01%$0.002461668.6348$1.65
ETH<0.01%$3.10.5292$1.64
ETH<0.01%$0.03318849.1203$1.63
ETH<0.01%$0.0003514,624.9028$1.63
ETH<0.01%$0.0004543,577.9947$1.62
ETH<0.01%$0.2021247.9459$1.61
ETH<0.01%$0.001968814.0624$1.6
ETH<0.01%$1.131.4116$1.6
ETH<0.01%$0.0000819,754.0099$1.57
ETH<0.01%$0.0001599,820.6233$1.56
ETH<0.01%$0.02621559.3562$1.56
ETH<0.01%$0.002143720.0304$1.54
ETH<0.01%$0.01729289.0716$1.54
ETH<0.01%$0.002636582.5432$1.54
ETH<0.01%$0.002916520.0422$1.52
ETH<0.01%$0.0005422,785.0353$1.51
ETH<0.01%$1,962.890.00076878$1.51
ETH<0.01%$0.004861309.0782$1.5
ETH<0.01%$0.02493259.9632$1.5
ETH<0.01%$0.08549817.4143$1.49
ETH<0.01%$0.08351817.7171$1.48
ETH<0.01%$0.5990582.4672$1.48
ETH<0.01%<$0.00000162,499,241.1075$1.47
ETH<0.01%$0.00014310,287.8965$1.47
ETH<0.01%$0.0012821,138.6388$1.46
ETH<0.01%$0.000011130,917.7747$1.46
ETH<0.01%<$0.000001450,407,538.575$1.46
ETH<0.01%$156.140.00931818$1.45
ETH<0.01%$0.004406329.2854$1.45
ETH<0.01%$0.000443,290.5904$1.45
ETH<0.01%$0.00004333,483.734$1.42
ETH<0.01%$0.001812783.8909$1.42
ETH<0.01%$0.02050668.7578$1.41
ETH<0.01%$0.000004345,408.9195$1.39
ETH<0.01%$0.00008815,768.8394$1.39
ETH<0.01%$0.0009951,400.2265$1.39
ETH<0.01%$0.0001688,246.6139$1.38
ETH<0.01%$0.006308217.5242$1.37
ETH<0.01%$0.000592,319.8653$1.37
ETH<0.01%$0.0013391,021.3157$1.37
ETH<0.01%$0.0006841,996.2336$1.37
ETH<0.01%$0.0002355,817.0026$1.37
ETH<0.01%$0.00009514,381.6887$1.36
ETH<0.01%$0.0168980.6628$1.36
ETH<0.01%$0.002673506.7749$1.35
ETH<0.01%$0.0002944,588.4571$1.35
ETH<0.01%<$0.00000120,622,252.9311$1.34
ETH<0.01%$0.00404330.6082$1.34
ETH<0.01%$0.008006166.3436$1.33
ETH<0.01%<$0.00000113,488,444,199.543$1.33
ETH<0.01%$0.0004313,077.9051$1.33
ETH<0.01%$0.0004363,037.0969$1.32
ETH<0.01%$0.0001767,542.4189$1.32
ETH<0.01%$0.9514511.39$1.32
ETH<0.01%$0.01844571.6457$1.32
ETH<0.01%$0.0002255,844.6874$1.32
ETH<0.01%$0.0003583,679.9834$1.32
ETH<0.01%$0.001916682.7573$1.31
ETH<0.01%$0.001496874.3301$1.31
ETH<0.01%$0.01779673.2876$1.3
ETH<0.01%$0.000005258,177.9279$1.3
ETH<0.01%$0.001708761.4409$1.3
ETH<0.01%$0.00186698.2095$1.3
ETH<0.01%$0.000005281,509.7189$1.3
ETH<0.01%$205.190.00630617$1.29
ETH<0.01%$0.00010911,833.826$1.29
ETH<0.01%$0.000004328,957.274$1.29
ETH<0.01%$0.08368415.3894$1.29
ETH<0.01%$0.001678767.1025$1.29
ETH<0.01%$0.00323397.134$1.28
ETH<0.01%$0.03272639.1037$1.28
ETH<0.01%$0.01853268.9358$1.28
ETH<0.01%$0.218355.8231$1.27
ETH<0.01%$1.061.1873$1.26
ETH<0.01%$0.1530258.2308$1.26
ETH<0.01%$0.003493359.74$1.26
ETH<0.01%$0.020461.5096$1.25
ETH<0.01%$0.004006310.7465$1.24
ETH<0.01%<$0.00000110,221,019.9527$1.24
ETH<0.01%$0.00206599.6246$1.24
ETH<0.01%$0.06878917.9463$1.23
ETH<0.01%$0.007158171.6559$1.23
ETH<0.01%$0.9886851.2346$1.22
ETH<0.01%$0.01675772.6486$1.22
ETH<0.01%$0.0000011,263,638.5722$1.22
ETH<0.01%$0.01222599.2724$1.21
ETH<0.01%$0.09853312.3094$1.21
ETH<0.01%$3.140.3838$1.21
ETH<0.01%$0.9996091.2049$1.2
ETH<0.01%<$0.00000112,401,074.2713$1.2
ETH<0.01%$0.001884633.327$1.19
ETH<0.01%$0.01404183.9449$1.18
ETH<0.01%$0.001363858.0294$1.17
ETH<0.01%$8.050.1451$1.17
ETH<0.01%$0.1456658.0129$1.17
ETH<0.01%$1.11.0639$1.17
ETH<0.01%$0.0233649.5835$1.16
ETH<0.01%$0.003306348.93$1.15
ETH<0.01%<$0.0000018,233,124$1.15
ETH<0.01%$2.460.4672$1.15
ETH<0.01%$0.10022711.3858$1.14
ETH<0.01%$0.02325948.5$1.13
ETH<0.01%$0.000004290,907.8486$1.12
ETH<0.01%$0.0000011,049,841.9614$1.11
ETH<0.01%$0.005668196.2393$1.11
ETH<0.01%$0.001108993.8044$1.1
ETH<0.01%$0.0005491,999.5237$1.1
ETH<0.01%$0.001268864.4147$1.1
ETH<0.01%$0.003505310.8431$1.09
ETH<0.01%$0.00751144.9009$1.09
ETH<0.01%$0.009684112.0239$1.08
ETH<0.01%$15.770.0682$1.08
ETH<0.01%$0.0001556,810.9546$1.05
ETH<0.01%$0.04767122.0082$1.05
ETH<0.01%$0.2999073.495$1.05
ETH<0.01%$0.001323786.901$1.04
ETH<0.01%<$0.000001832,009,135.8841$1.04
ETH<0.01%$0.08280812.5616$1.04
ETH<0.01%$0.01386575$1.04
ETH<0.01%$0.01782358.2755$1.04
ETH<0.01%$0.03337231.0522$1.04
ETH<0.01%$0.01366375.6937$1.03
ETH<0.01%$0.1650156.25$1.03
ETH<0.01%$0.02840136.0345$1.02
ETH<0.01%$0.02812435.8786$1.01
ETH<0.01%$0.07821912.8258$1
ETH<0.01%$0.05374818.3243$0.9848
ETH<0.01%$0.000005183,464.3096$0.9811
ETH<0.01%$0.2526513.8761$0.9792
ETH<0.01%$0.5203831.8769$0.9767
ETH<0.01%<$0.00000194,844,978.9289$0.972
ETH<0.01%$0.000006164,836.5617$0.9692
ETH<0.01%$0.0001556,246.0216$0.9681
ETH<0.01%$0.01038893.1297$0.9674
ETH<0.01%$0.00977798.6283$0.9643
ETH<0.01%$65,3840.00001463$0.9565
ETH<0.01%$1.110.8573$0.9515
ETH<0.01%$0.0000811,952.511$0.9509
ETH<0.01%<$0.00000151,018,758.802$0.9455
ETH<0.01%$0.002209427.4738$0.9442
ETH<0.01%$0.000004264,353.3214$0.9349
ETH<0.01%<$0.000001679,065,939.0587$0.9323
ETH<0.01%$0.0006811,368.4783$0.9317
ETH<0.01%$0.9998850.9304$0.9302
ETH<0.01%$0.00105883.9588$0.9277
ETH<0.01%$0.001032895.8772$0.9241
ETH<0.01%$0.01825649.9603$0.912
ETH<0.01%$0.005575163.3044$0.9103
ETH<0.01%$303.870.00299408$0.9098
ETH<0.01%$0.0001884,834.4915$0.9072
ETH<0.01%<$0.0000012,164,817.2474$0.9046
ETH<0.01%$0.0001028,750.3244$0.8931
ETH<0.01%$0.0004561,951.8618$0.8899
ETH<0.01%$0.1208857.3532$0.8888
ETH<0.01%$0.844191.0529$0.8888
ETH<0.01%$0.0017521.45$0.8864
ETH<0.01%$0.007766113.8888$0.8844
ETH<0.01%$0.0002213,974.0266$0.8801
ETH<0.01%$0.01550156.6222$0.8777
ETH<0.01%<$0.00000176,820,947,785.9438$0.8769
ETH<0.01%$0.05177316.8399$0.8718
ETH<0.01%$0.6889431.2452$0.8578
ETH<0.01%$2.790.3068$0.8572
ETH<0.01%$0.3693392.2655$0.8367
ETH<0.01%$0.00863295.9116$0.8278
ETH<0.01%$1.160.7136$0.8242
ETH<0.01%$0.004512181.0389$0.8168
ETH<0.01%$0.000001974,485.7172$0.8161
ETH<0.01%$0.5269521.542$0.8125
ETH<0.01%$0.005714142.0744$0.8118
ETH<0.01%$0.1438875.6242$0.8092
ETH<0.01%$0.000916882.2591$0.8083
ETH<0.01%$0.02942527.2477$0.8017
ETH<0.01%<$0.000001696,636,900.377$0.8011
ETH<0.01%$0.00003622,020.174$0.7929
ETH<0.01%$0.01605449.2152$0.7901
ETH<0.01%$0.001041755.3494$0.7866
ETH<0.01%$24.820.0313$0.7759
ETH<0.01%$0.0004471,724.6201$0.7701
ETH<0.01%$0.0003052,495.7177$0.7604
ETH<0.01%$0.0007171,060.3272$0.7597
ETH<0.01%$0.02397131.5262$0.7557
ETH<0.01%$0.7996350.945$0.7556
ETH<0.01%$0.0003432,172.808$0.7452
ETH<0.01%$0.00006411,630.1213$0.7439
ETH<0.01%$0.02019836.5719$0.7386
ETH<0.01%$0.0006731,088.772$0.7331
ETH<0.01%$0.000841867.8363$0.7298
ETH<0.01%$0.000931783.298$0.7292
ETH<0.01%$0.01540647.2281$0.7275
ETH<0.01%$188.470.00383229$0.7222
ETH<0.01%<$0.0000014,730,536.9963$0.7199
ETH<0.01%$0.01723341.5035$0.7152
ETH<0.01%$0.002006355.9929$0.7142
ETH<0.01%$0.00678105.3337$0.7141
ETH<0.01%$0.001849381.4118$0.7053
ETH<0.01%$0.00001162,165.2907$0.7043
ETH<0.01%$0.0003352,100.424$0.7032
ETH<0.01%$0.001383506$0.6999
ETH<0.01%$0.00125$0.00
ETH<0.01%$0.02445528.2623$0.6911
ETH<0.01%<$0.00000147,919,323.0283$0.6895
ETH<0.01%<$0.0000011,388,759,059.0875$0.6832
ETH<0.01%$0.0001863,623.3402$0.6753
ETH<0.01%$0.005046132.5897$0.669
ETH<0.01%$0.0084,474,941.5353$0.00
ETH<0.01%<$0.00000115,272,455,487.0191$0.6641
ETH<0.01%$0.001658397.255$0.6585
ETH<0.01%$0.0005651,164.4829$0.6579
ETH<0.01%$0.001512425.9487$0.644
ETH<0.01%$0.000993647.8969$0.6431
ETH<0.01%$0.001291494.5131$0.6382
ETH<0.01%$2,595.960.00024586$0.6382
ETH<0.01%$0.001186533.451$0.6329
ETH<0.01%$0.000694908.1999$0.6306
ETH<0.01%$0.1839613.4146$0.6281
ETH<0.01%$0.001401447.0334$0.6262
ETH<0.01%$0.00004414,152.6814$0.6254
ETH<0.01%$0.000006106,067.8635$0.6151
ETH<0.01%$0.003777162.004$0.6118
ETH<0.01%$0.9938130.6147$0.6109
ETH<0.01%$0.00004413,829.8868$0.6069
ETH<0.01%$0.00003119,418.0218$0.6029
ETH<0.01%$0.00001637,756.0061$0.6024
ETH<0.01%$2,061.640.00029086$0.5996
ETH<0.01%$0.005764103.1208$0.5943
ETH<0.01%$0.002591228.2295$0.5912
ETH<0.01%$2,257.290.00026092$0.5889
ETH<0.01%$0.02028229.0165$0.5884
ETH<0.01%<$0.0000012,427,141.398$0.5871
ETH<0.01%$0.002371247.3718$0.5865
ETH<0.01%$0.0003471,683.9417$0.5845
ETH<0.01%$0.9464320.612$0.5792
ETH<0.01%$0.9984190.5797$0.5787
ETH<0.01%$0.00000695,737.0884$0.5744
ETH<0.01%$0.0935386.123$0.5727
ETH<0.01%$0.0001663,431.8512$0.5699
ETH<0.01%$0.0005311,073.0946$0.5695
ETH<0.01%<$0.0000012,047,083,806.1086$0.569
ETH<0.01%<$0.0000013,377,858,078.1772$0.5683
ETH<0.01%$0.1062015.3176$0.5647
ETH<0.01%$0.00001536,939.2146$0.5619
ETH<0.01%$0.3635431.5406$0.56
ETH<0.01%$0.000004152,164.611$0.5599
ETH<0.01%$0.000232,410.7159$0.5541
ETH<0.01%$0.002387231.3325$0.5521
ETH<0.01%$7.10.0774$0.5496
ETH<0.01%$0.0873916.2688$0.5478
ETH<0.01%$0.318191.7193$0.547
ETH<0.01%$0.0000678,163.3537$0.546
ETH<0.01%$0.0003681,474.5667$0.5433
ETH<0.01%<$0.000001107,292,804.8925$0.5406
ETH<0.01%$0.0003571,508.615$0.5388
ETH<0.01%$0.0600478.9245$0.5358
ETH<0.01%$0.0003491,528.799$0.5337
ETH<0.01%$0.01827429.1974$0.5335
ETH<0.01%$2.360.2236$0.5272
ETH<0.01%$0.0005081,036.9258$0.5265
ETH<0.01%$1.070.4912$0.526
ETH<0.01%<$0.000001909,500,000$0.525
ETH<0.01%$0.00862159.9084$0.5164
ETH<0.01%$0.002073248.9605$0.5162
ETH<0.01%$0.000002309,780.7117$0.5142
ETH<0.01%$0.00709672.2384$0.5125
ETH<0.01%$0.0625458.1654$0.5107
ETH<0.01%$0.00003514,394.0908$0.5091
ETH<0.01%$0.005$0.00
ETH<0.01%$0.0004071,240.0526$0.5043
ETH<0.01%$0.00001827,593.8278$0.5037
ETH<0.01%$3,369.130.00014947$0.5035
ETH<0.01%$0.000504999.313$0.5033
ETH<0.01%$0.03879712.8849$0.4998
ETH<0.01%$0.0001643,041.552$0.4979
ETH<0.01%$0.002535196.3805$0.4978
ETH<0.01%$0.00524694.8421$0.4975
ETH<0.01%$0.0626837.8432$0.4916
ETH<0.01%$2,133.770.00022836$0.4872
ETH<0.01%$1.520.32$0.4864
ETH<0.01%$0.000001530,082.5528$0.4793
ETH<0.01%<$0.000001363,458,957.8288$0.4779
ETH<0.01%$0.01611329.5887$0.4767
ETH<0.01%$0.000002267,541.3989$0.4762
ETH<0.01%$0.7508470.6304$0.4733
ETH<0.01%$0.0299115.4576$0.4623
ETH<0.01%$56.930.0081174$0.4621
ETH<0.01%$0.6187960.7428$0.4596
ETH<0.01%$2,019.460.0002272$0.4588
ETH<0.01%$0.000652702.1944$0.4577
ETH<0.01%$1.010.4484$0.4517
ETH<0.01%$0.1006564.4438$0.4472
ETH<0.01%$0.0002441,809.792$0.4413
ETH<0.01%<$0.0000011,609,352,464.5602$0.441
ETH<0.01%$0.000311,422.1015$0.441
ETH<0.01%$0.00713861.3556$0.4379
ETH<0.01%$0.000528824.2859$0.4351
ETH<0.01%$0.0002022,123.1735$0.4289
ETH<0.01%$0.003119135.0056$0.4211
ETH<0.01%$0.0001253,356.4122$0.4204
ETH<0.01%$76.490.0054915$0.42
ETH<0.01%$45.460.00919407$0.4179
ETH<0.01%$0.02141719.456$0.4166
ETH<0.01%$71.780.00578279$0.415
ETH<0.01%$0.998190.4157$0.4149
ETH<0.01%$0.01699624.2942$0.4128
ETH<0.01%$0.1487912.77$0.4121
ETH<0.01%$0.04062310.064$0.4088
ETH<0.01%$0.0001392,920.5481$0.4065
ETH<0.01%$0.01467127.5436$0.404
ETH<0.01%$0.00003910,390.3583$0.401
ETH<0.01%$0.00472384.1732$0.3975
ETH<0.01%<$0.0000011,265,479,469.8804$0.3958
ETH<0.01%$0.054977.1485$0.3929
ETH<0.01%$0.000003149,010.9404$0.3904
ETH<0.01%$0.0490267.9506$0.3897
ETH<0.01%$0.00003511,174.8901$0.3886
ETH<0.01%$0.1665482.3324$0.3884
ETH<0.01%<$0.0000012,992,267.2893$0.3836
ETH<0.01%$0.001937197.9162$0.3834
ETH<0.01%$0.00729552.2731$0.3813
ETH<0.01%$0.00381799.761$0.3808
ETH<0.01%$0.01403926.9169$0.3778
ETH<0.01%$0.001954193.2039$0.3775
ETH<0.01%$0.00773348.5154$0.3751
ETH<0.01%$0.105523.5546$0.375
ETH<0.01%$0.001129327.8818$0.37
ETH<0.01%$0.01036335.693$0.3698
ETH<0.01%$0.00529869.724$0.3693
ETH<0.01%$0.001403262.5347$0.3682
ETH<0.01%$0.000398911.3095$0.3629
ETH<0.01%<$0.000001136,183,204.6343$0.3611
ETH<0.01%$0.01494724.0792$0.3599
ETH<0.01%$0.000602597.3607$0.3597
ETH<0.01%$0.0085641.9547$0.3591
ETH<0.01%$0.03179311.2911$0.3589
ETH<0.01%$0.0001252,865$0.3576
ETH<0.01%$0.0000615,888.5046$0.3573
ETH<0.01%<$0.00000172,216,551.513$0.3516
ETH<0.01%$0.0826964.2181$0.3488
ETH<0.01%$0.9971730.3496$0.3486
ETH<0.01%$0.001408245.9012$0.3461
ETH<0.01%$0.00684249.9726$0.3419
ETH<0.01%$0.01555121.8448$0.3397
ETH<0.01%$0.0314710.7828$0.3393
ETH<0.01%$0.00131254.1624$0.3329
ETH<0.01%$0.02320413.9674$0.3241
ETH<0.01%$0.02345513.7829$0.3232
ETH<0.01%$0.0001621,990.836$0.3225
ETH<0.01%$0.0000339,632.3264$0.3196
ETH<0.01%$0.0001132,803.4894$0.3178
ETH<0.01%$0.02845311.1419$0.317
ETH<0.01%$0.1636551.9342$0.3165
ETH<0.01%$0.0002791,128.4269$0.3144
ETH<0.01%$0.0000823,822.4681$0.3138
ETH<0.01%$0.000977319.8411$0.3123
ETH<0.01%$2,594.710.00011949$0.31
ETH<0.01%$0.001496204.4322$0.3058
ETH<0.01%$0.0000446,871.1332$0.3054
ETH<0.01%$0.00002313,330.558$0.3051
ETH<0.01%$0.0000397,850.8191$0.3049
ETH<0.01%$0.00879734.6571$0.3048
ETH<0.01%$0.00095320.328$0.3043
ETH<0.01%$0.00000935,285.2654$0.3027
ETH<0.01%$0.000412732.6353$0.3016
ETH<0.01%$0.9979660.3018$0.3011
ETH<0.01%$0.0000714,242.3016$0.3007
ETH<0.01%$0.00467963.7044$0.298
ETH<0.01%<$0.000001364,551,734.4613$0.2979
ETH<0.01%$0.0439836.7584$0.2972
ETH<0.01%$0.5056390.5869$0.2967
ETH<0.01%$0.002663110.7843$0.295
ETH<0.01%$0.000365804.7146$0.2938
ETH<0.01%$0.0007417.5256$0.2924
ETH<0.01%<$0.00000134,237,851,894.1121$0.2916
ETH<0.01%$0.000047,240.72$0.2912
ETH<0.01%$0.001516191.9154$0.2909
ETH<0.01%$0.000093,226.7104$0.2899
ETH<0.01%$0.000703411.1339$0.289
ETH<0.01%$642.310.00044888$0.2883
ETH<0.01%$0.030099.5659$0.2878
ETH<0.01%$0.0000436,627.3826$0.2818
ETH<0.01%$0.001916146.9042$0.2815
ETH<0.01%$0.01747716.0515$0.2805
ETH<0.01%$0.001981141.4783$0.2802
ETH<0.01%$0.00001125,000$0.2794
ETH<0.01%$0.00802834.675$0.2783
ETH<0.01%$0.000.000000002155$0.00
ETH<0.01%$0.000426648.1096$0.2758
ETH<0.01%$0.1350092.0369$0.2749
ETH<0.01%$0.00258105.58$0.2724
ETH<0.01%$0.000879309.2647$0.2718
ETH<0.01%$0.00091297.1619$0.2702
ETH<0.01%$0.001991135.4816$0.2697
ETH<0.01%$0.9895130.2711$0.2682
ETH<0.01%$0.001385192.6358$0.2668
ETH<0.01%$0.00691938.2611$0.2647
ETH<0.01%$0.01145323.0995$0.2645
ETH<0.01%$1.040.2541$0.2642
ETH<0.01%$0.01533316.9963$0.2606
ETH<0.01%$0.00300186.8039$0.2604
ETH<0.01%$1.190.2159$0.2569
ETH<0.01%$1.630.1576$0.2562
ETH<0.01%$29.910.0085572$0.2559
ETH<0.01%$0.00209122.4378$0.2558
ETH<0.01%<$0.00000116,773,514.5872$0.2515
ETH<0.01%$0.01797113.8953$0.2497
ETH<0.01%$0.4662580.5298$0.247
ETH<0.01%$0.0000653,827.4524$0.2469
ETH<0.01%$0.00437555.4374$0.2425
ETH<0.01%$0.001085223.3634$0.2423
ETH<0.01%$0.0318247.5992$0.2418
ETH<0.01%$0.02134411.3159$0.2415
ETH<0.01%$0.002292105.3521$0.2414
ETH<0.01%$0.00749331.9523$0.2394
ETH<0.01%$0.0064136.6075$0.2346
ETH<0.01%$10.2319$0.2321
ETH<0.01%$0.107312.1534$0.231
ETH<0.01%$0.000545422.9655$0.2304
ETH<0.01%$0.000782294.2483$0.2299
ETH<0.01%$0.000463495.3374$0.2292
ETH<0.01%$0.0000653,482.3275$0.2278
ETH<0.01%$0.0927222.4527$0.2274
ETH<0.01%$0.001254180.4195$0.2263
ETH<0.01%$0.0000395,796.8212$0.2238
ETH<0.01%$0.00000925,923.3813$0.2229
ETH<0.01%$0.0000249,108.851$0.2224
ETH<0.01%<$0.0000011,305,869,340.5151$0.2202
ETH<0.01%$0.01463814.9951$0.2194
ETH<0.01%$0.5051970.4296$0.217
ETH<0.01%$0.00000453,402.508$0.2168
ETH<0.01%<$0.0000013,342,092,293.9809$0.2168
ETH<0.01%$0.000288750$0.2158
ETH<0.01%$0.4858390.439$0.2132
ETH<0.01%$0.00288473.7143$0.2126
ETH<0.01%<$0.000001806,656.826$0.2071
ETH<0.01%$0.00055373.2492$0.2051
ETH<0.01%$0.00456444.5883$0.2035
ETH<0.01%<$0.0000011,660,901,403.8863$0.203
ETH<0.01%<$0.000001118,871,652.9692$0.2024
ETH<0.01%$0.000.00202578$0.00
ETH<0.01%$0.00001711,653.1264$0.2022
ETH<0.01%$0.001282157.4646$0.2018
ETH<0.01%$0.00309964.7774$0.2007
ETH<0.01%$0.0000121,000$0.2005
ETH<0.01%$0.000397504.1547$0.2003
ETH<0.01%<$0.000001414,422,180.1031$0.1981
ETH<0.01%$0.0000355,583.0933$0.1974
ETH<0.01%$78.980.0025$0.1974
ETH<0.01%$0.00700727.9962$0.1961
ETH<0.01%$0.0001091,766.913$0.192
ETH<0.01%$65.870.00290667$0.1914
ETH<0.01%<$0.0000011,084,945.9994$0.1912
ETH<0.01%$0.00000539,786.7352$0.1891
ETH<0.01%$0.4992310.3772$0.1883
ETH<0.01%<$0.0000011,276,556,543.8548$0.1864
ETH<0.01%$0.001394133.3028$0.1858
ETH<0.01%$0.000.0155$0.00
ETH<0.01%$0.6535170.2792$0.1824
ETH<0.01%$0.00946819.1376$0.1811
ETH<0.01%$0.0000682,670.5412$0.181
ETH<0.01%$0.0001531,181.0432$0.1806
ETH<0.01%$4.90.0368$0.1801
ETH<0.01%$0.001422124.712$0.1772
ETH<0.01%$0.00001512,058.1941$0.177
ETH<0.01%<$0.0000014,818,872,090.7533$0.177
ETH<0.01%$0.00715324.7313$0.1769
ETH<0.01%$0.00000353,923.2867$0.1769
ETH<0.01%$0.000915192.8539$0.1765
ETH<0.01%$0.0329475.324$0.1754
ETH<0.01%$0.00406543.0467$0.1749
ETH<0.01%$1.220.1432$0.1746
ETH<0.01%$0.00000629,270.2947$0.1744
ETH<0.01%$0.00149115.4612$0.172
ETH<0.01%$199.990.00084435$0.1688
ETH<0.01%$0.000997166.0383$0.1654
ETH<0.01%$0.0255036.4789$0.1652
ETH<0.01%$0.0000782,091.7636$0.1622
ETH<0.01%$0.00000270,152.5447$0.1613
ETH<0.01%$0.0001211,329.99$0.1612
ETH<0.01%$0.000732219.0688$0.1603
ETH<0.01%$0.000091,773.3525$0.1603
ETH<0.01%$0.070962.2448$0.1592
ETH<0.01%$0.000614258.7447$0.1587
ETH<0.01%$0.0000188,766.3175$0.1566
ETH<0.01%$0.00000441,567.5324$0.1542
ETH<0.01%<$0.00000196,048,647.3027$0.1531
ETH<0.01%$0.00934816.2407$0.1518
ETH<0.01%$0.00000721,717.1731$0.1494
ETH<0.01%$0.00000355,546.099$0.1488
ETH<0.01%$0.00194174.6028$0.1448
ETH<0.01%$0.035044.1037$0.1437
ETH<0.01%$0.00000349,625.7725$0.1429
ETH<0.01%$0.0000159,501.4765$0.1429
ETH<0.01%$0.0001211,170.3333$0.1417
ETH<0.01%$0.00232860.7397$0.1414
ETH<0.01%$0.1096891.2884$0.1413
ETH<0.01%$0.0000891,563.8506$0.1392
ETH<0.01%$0.0000236,183.0467$0.1391
ETH<0.01%$0.0000216,632.106$0.1383
ETH<0.01%$0.0000265,379.4227$0.1376
ETH<0.01%$0.0757691.808$0.1369
ETH<0.01%$51.240.00267054$0.1368
ETH<0.01%$0.0000393,518.5832$0.1359
ETH<0.01%$0.0001281,059.2105$0.1357
ETH<0.01%$0.000873154.01$0.1344
ETH<0.01%$40.970.00325655$0.1334
ETH<0.01%$0.0235335.6602$0.1332
ETH<0.01%$0.000391336.4137$0.1314
ETH<0.01%$0.00024544.881$0.1305
ETH<0.01%$0.0775721.6623$0.1289
ETH<0.01%$0.000.0028722$0.00
ETH<0.01%$0.00769116.7115$0.1285
ETH<0.01%$0.000206625$0.1284
ETH<0.01%$0.000894143.1845$0.1279
ETH<0.01%$0.0019665.1429$0.1277
ETH<0.01%$0.0411223.0917$0.1271
ETH<0.01%$0.0000622,056.9229$0.1267
ETH<0.01%$0.00265847.3797$0.1259
ETH<0.01%$1.110.1134$0.1259
ETH<0.01%<$0.0000011,934,831,711.3966$0.1256
ETH<0.01%$0.00190765.7511$0.1254
ETH<0.01%$0.000534234.6879$0.1253
ETH<0.01%$0.9970760.1247$0.1243
ETH<0.01%$0.000236527.3114$0.1241
ETH<0.01%$1.940.0639$0.124
ETH<0.01%$0.000216574.5299$0.124
ETH<0.01%$0.000.00104989$0.00
ETH<0.01%$0.0000422,950.5354$0.1236
ETH<0.01%$0.0000363,371.1484$0.1229
ETH<0.01%$0.0000393,121.6875$0.1213
ETH<0.01%$0.000293413.5221$0.121
ETH<0.01%$0.4335570.2779$0.1204
ETH<0.01%$0.0121859.7062$0.1182
ETH<0.01%$0.00305938.5522$0.1179
ETH<0.01%$0.0741551.5883$0.1177
ETH<0.01%$0.0000611,924.4912$0.1177
ETH<0.01%$0.0246374.7757$0.1176
ETH<0.01%$0.0035133.3657$0.1171
ETH<0.01%$0.000265441.3434$0.1171
ETH<0.01%$0.0000821,421.2992$0.1159
ETH<0.01%$0.00248146.6851$0.1158
ETH<0.01%$0.0314333.6812$0.1157
ETH<0.01%$0.0000981,175.3175$0.1152
ETH<0.01%$0.742010.1542$0.1143
ETH<0.01%$0.0222165.1412$0.1142
ETH<0.01%$0.001139100.3055$0.1142
ETH<0.01%$0.00287239.643$0.1138
ETH<0.01%$0.000413275$0.1136
ETH<0.01%$0.2740450.4143$0.1135
ETH<0.01%$0.0000111,759.3205$0.1128
ETH<0.01%$0.001078104.212$0.1122
ETH<0.01%$0.2321880.4816$0.1118
ETH<0.01%$1.050.1059$0.1113
ETH<0.01%$0.0017861.9856$0.1103
ETH<0.01%$0.00366529.852$0.1094
ETH<0.01%$0.020675.2413$0.1083
ETH<0.01%$0.0001041,043.8505$0.108
ETH<0.01%$0.01001510.6179$0.1063
ETH<0.01%$0.0000432,408.9166$0.1047
ETH<0.01%<$0.00000114,467,468,983.6757$0.1044
ETH<0.01%$0.00408525.0271$0.1022
ETH<0.01%$0.002.8011$0.00
ETH<0.01%$0.0041624.4599$0.1017
ETH<0.01%$0.00175457.7942$0.1013
ETH<0.01%$0.00534518.928$0.1011
ETH<0.01%$0.000384263.6604$0.1011
ETH<0.01%$0.001,172.0207$0.00
ETH<0.01%<$0.00000157,347,620.4835$0.1003
ETH<0.01%<$0.000001603,029,265.9327$0.1002
ETH<0.01%$0.00647715.4755$0.1002
BASE<0.01%$0.019895160$3.18
CELO<0.01%$0.0788610.00001435$0.000001
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.