ETH Price: $1,815.50 (+10.46%)

Contract

0xF93191d350117723DBEda5484a3b0996d285CECF

Overview

ETH Balance

1.583417985156197553 ETH

ETH Value

$2,874.69 (@ $1,815.50/ETH)

Token Holdings

Transaction Hash
Method
Block
From
To
Sweep Token3229589012025-04-04 20:55:5318 days ago1743800153IN
0xF93191d3...6d285CECF
0 ETH0.000000560.01
Sweep Eth2947917342025-01-12 22:37:46100 days ago1736721466IN
0xF93191d3...6d285CECF
0 ETH0.000000470.01

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
3293796122025-04-23 12:45:4015 mins ago1745412340
0xF93191d3...6d285CECF
0.00001514 ETH
3293782882025-04-23 12:40:1221 mins ago1745412012
0xF93191d3...6d285CECF
0.00002095 ETH
3293745522025-04-23 12:24:4236 mins ago1745411082
0xF93191d3...6d285CECF
0.0000101 ETH
3293732202025-04-23 12:19:1442 mins ago1745410754
0xF93191d3...6d285CECF
0.0000233 ETH
3293731872025-04-23 12:19:0642 mins ago1745410746
0xF93191d3...6d285CECF
0.00000068 ETH
3293709382025-04-23 12:09:5151 mins ago1745410191
0xF93191d3...6d285CECF
0.00003623 ETH
3293704512025-04-23 12:07:4753 mins ago1745410067
0xF93191d3...6d285CECF
0.0000032 ETH
3293675362025-04-23 11:55:431 hr ago1745409343
0xF93191d3...6d285CECF
0.00000124 ETH
3293653002025-04-23 11:46:221 hr ago1745408782
0xF93191d3...6d285CECF
0.00000366 ETH
3293624672025-04-23 11:34:351 hr ago1745408075
0xF93191d3...6d285CECF
0.00000314 ETH
3293623832025-04-23 11:34:141 hr ago1745408054
0xF93191d3...6d285CECF
0.00000075 ETH
3293623602025-04-23 11:34:081 hr ago1745408048
0xF93191d3...6d285CECF
0.00000199 ETH
3293619882025-04-23 11:32:381 hr ago1745407958
0xF93191d3...6d285CECF
0.00002454 ETH
3293615892025-04-23 11:30:581 hr ago1745407858
0xF93191d3...6d285CECF
0.00032712 ETH
3293612432025-04-23 11:29:311 hr ago1745407771
0xF93191d3...6d285CECF
0.00002454 ETH
3293610942025-04-23 11:28:541 hr ago1745407734
0xF93191d3...6d285CECF
0.0000299 ETH
3293606202025-04-23 11:26:541 hr ago1745407614
0xF93191d3...6d285CECF
0.00002866 ETH
3293548382025-04-23 11:02:581 hr ago1745406178
0xF93191d3...6d285CECF
0.00000109 ETH
3293542052025-04-23 11:00:222 hrs ago1745406022
0xF93191d3...6d285CECF
0.00000215 ETH
3293516962025-04-23 10:49:562 hrs ago1745405396
0xF93191d3...6d285CECF
0.00000292 ETH
3293510572025-04-23 10:47:182 hrs ago1745405238
0xF93191d3...6d285CECF
0.00000313 ETH
3293484052025-04-23 10:36:172 hrs ago1745404577
0xF93191d3...6d285CECF
0.00000014 ETH
3293458032025-04-23 10:25:332 hrs ago1745403933
0xF93191d3...6d285CECF
0.00002257 ETH
3293382892025-04-23 9:54:243 hrs ago1745402064
0xF93191d3...6d285CECF
0.00000292 ETH
3293362092025-04-23 9:45:443 hrs ago1745401544
0xF93191d3...6d285CECF
0.00000014 ETH
View All Internal Transactions

Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FeeManager

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : FeeManager.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./interfaces/IFeeManager.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

contract FeeManager is IFeeManager {

	using SafeERC20 for IERC20;

	address public operator;
	address public nextOperator;
	uint8 public baseBps;
	address public treasury;

	constructor(address _operator, uint8 _baseBps) {
		operator = _operator;
		baseBps = _baseBps;
	}
	
	function calcProtocolBps(
		uint64 amountIn,
		address tokenIn,
		bytes32 tokenOut,
		uint16 destChain,
		uint8 referrerBps
	) external view override returns (uint8) {
		if (referrerBps > baseBps) {
			return referrerBps;
		} else {
			return baseBps;
		}
	}

	function feeCollector() external view override returns (address) {
		if (treasury != address(0)) {
			return treasury;
		} else {
			return address(this);
		}
	}

	function changeOperator(address _nextOperator) external {
		require(msg.sender == operator, 'only operator');
		nextOperator = _nextOperator;
	}	

	function claimOperator() external {
		require(msg.sender == nextOperator, 'only next operator');
		operator = nextOperator;
	}

	function sweepToken(address token, uint256 amount, address to) public {
		require(msg.sender == operator, 'only operator');
		IERC20(token).safeTransfer(to, amount);
	}

	function sweepEth(uint256 amount, address payable to) public {
		require(msg.sender == operator, 'only operator');
		require(to != address(0), 'transfer to the zero address');
		to.transfer(amount);
	}

	function setBaseBps(uint8 _baseBps) external {
		require(msg.sender == operator, 'only operator');
		baseBps = _baseBps;
	}

	function setTreasury(address _treasury) external {
		require(msg.sender == operator, 'only operator');
		treasury = _treasury;
	}

	receive() external payable {}
}

File 2 of 6 : IFeeManager.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IFeeManager {
    function calcProtocolBps(
        uint64 amountIn,
        address tokenIn,
        bytes32 tokenOut,
        uint16 destChain,
        uint8 referrerBps
    ) external view returns (uint8);

	function feeCollector() external view returns (address);
}

File 3 of 6 : IERC20.sol
// 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);
}

File 4 of 6 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

File 5 of 6 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 6 of 6 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"uint8","name":"_baseBps","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"baseBps","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"amountIn","type":"uint64"},{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"bytes32","name":"tokenOut","type":"bytes32"},{"internalType":"uint16","name":"destChain","type":"uint16"},{"internalType":"uint8","name":"referrerBps","type":"uint8"}],"name":"calcProtocolBps","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_nextOperator","type":"address"}],"name":"changeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOperator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_baseBps","type":"uint8"}],"name":"setBaseBps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"sweepEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"sweepToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b50604051610ac2380380610ac283398101604081905261002f91610074565b600080546001600160a01b039093166001600160a01b0319909316929092179091556001805460ff909216600160a01b0260ff60a01b199092169190911790556100bd565b60008060408385031215610086578182fd5b82516001600160a01b038116811461009c578283fd5b602084015190925060ff811681146100b2578182fd5b809150509250929050565b6109f6806100cc6000396000f3fe6080604052600436106100ab5760003560e01c8063a86b06e511610064578063a86b06e5146101a9578063bd1e6382146101c9578063c415b95c146101e9578063d54e65fb146101fe578063df2ab5bb14610213578063f0f442601461023357600080fd5b806302fb1eec146100b757806306394c9b146100ee5780634018e9f614610110578063570ca73514610131578063580094b71461016957806361d027b31461018957600080fd5b366100b257005b600080fd5b3480156100c357600080fd5b506100d76100d2366004610873565b610253565b60405160ff90911681526020015b60405180910390f35b3480156100fa57600080fd5b5061010e6101093660046107c0565b61028d565b005b34801561011c57600080fd5b506001546100d790600160a01b900460ff1681565b34801561013d57600080fd5b50600054610151906001600160a01b031681565b6040516001600160a01b0390911681526020016100e5565b34801561017557600080fd5b5061010e610184366004610844565b6102e2565b34801561019557600080fd5b50600254610151906001600160a01b031681565b3480156101b557600080fd5b50600154610151906001600160a01b031681565b3480156101d557600080fd5b5061010e6101e43660046108e8565b61039d565b3480156101f557600080fd5b506101516103e7565b34801561020a57600080fd5b5061010e610410565b34801561021f57600080fd5b5061010e61022e3660046107e3565b610483565b34801561023f57600080fd5b5061010e61024e3660046107c0565b6104c1565b60015460009060ff600160a01b90910481169083161115610275575080610284565b50600154600160a01b900460ff165b95945050505050565b6000546001600160a01b031633146102c05760405162461bcd60e51b81526004016102b790610951565b60405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461030c5760405162461bcd60e51b81526004016102b790610951565b6001600160a01b0381166103625760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f20616464726573730000000060448201526064016102b7565b6040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610398573d6000803e3d6000fd5b505050565b6000546001600160a01b031633146103c75760405162461bcd60e51b81526004016102b790610951565b6001805460ff909216600160a01b0260ff60a01b19909216919091179055565b6002546000906001600160a01b03161561040b57506002546001600160a01b031690565b503090565b6001546001600160a01b0316331461045f5760405162461bcd60e51b815260206004820152601260248201527137b7363c903732bc3a1037b832b930ba37b960711b60448201526064016102b7565b600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000546001600160a01b031633146104ad5760405162461bcd60e51b81526004016102b790610951565b6103986001600160a01b038416828461050d565b6000546001600160a01b031633146104eb5760405162461bcd60e51b81526004016102b790610951565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564908401526103989286929160009161059d91851690849061061d565b90508051600014806105be5750808060200190518101906105be9190610824565b6103985760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102b7565b606061062c8484600085610634565b949350505050565b6060824710156106955760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102b7565b600080866001600160a01b031685876040516106b19190610902565b60006040518083038185875af1925050503d80600081146106ee576040519150601f19603f3d011682016040523d82523d6000602084013e6106f3565b606091505b50915091506107048783838761070f565b979650505050505050565b6060831561077b578251610774576001600160a01b0385163b6107745760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102b7565b508161062c565b61062c83838151156107905781518083602001fd5b8060405162461bcd60e51b81526004016102b7919061091e565b803560ff811681146107bb57600080fd5b919050565b6000602082840312156107d1578081fd5b81356107dc816109a8565b9392505050565b6000806000606084860312156107f7578182fd5b8335610802816109a8565b9250602084013591506040840135610819816109a8565b809150509250925092565b600060208284031215610835578081fd5b815180151581146107dc578182fd5b60008060408385031215610856578182fd5b823591506020830135610868816109a8565b809150509250929050565b600080600080600060a0868803121561088a578081fd5b853567ffffffffffffffff811681146108a1578182fd5b945060208601356108b1816109a8565b935060408601359250606086013561ffff811681146108ce578182fd5b91506108dc608087016107aa565b90509295509295909350565b6000602082840312156108f9578081fd5b6107dc826107aa565b60008251610914818460208701610978565b9190910192915050565b602081526000825180602084015261093d816040850160208701610978565b601f01601f19169190910160400192915050565b6020808252600d908201526c37b7363c9037b832b930ba37b960991b604082015260600190565b60005b8381101561099357818101518382015260200161097b565b838111156109a2576000848401525b50505050565b6001600160a01b03811681146109bd57600080fd5b5056fea2646970667358221220c6c664842d558874f1e2850375c6643a0a5c8a06d717d4b34c7f31046e8ac4d164736f6c63430008040033000000000000000000000000933e3922e04d47a466e60a20e486b372b64f1ea80000000000000000000000000000000000000000000000000000000000000003

Deployed Bytecode

0x6080604052600436106100ab5760003560e01c8063a86b06e511610064578063a86b06e5146101a9578063bd1e6382146101c9578063c415b95c146101e9578063d54e65fb146101fe578063df2ab5bb14610213578063f0f442601461023357600080fd5b806302fb1eec146100b757806306394c9b146100ee5780634018e9f614610110578063570ca73514610131578063580094b71461016957806361d027b31461018957600080fd5b366100b257005b600080fd5b3480156100c357600080fd5b506100d76100d2366004610873565b610253565b60405160ff90911681526020015b60405180910390f35b3480156100fa57600080fd5b5061010e6101093660046107c0565b61028d565b005b34801561011c57600080fd5b506001546100d790600160a01b900460ff1681565b34801561013d57600080fd5b50600054610151906001600160a01b031681565b6040516001600160a01b0390911681526020016100e5565b34801561017557600080fd5b5061010e610184366004610844565b6102e2565b34801561019557600080fd5b50600254610151906001600160a01b031681565b3480156101b557600080fd5b50600154610151906001600160a01b031681565b3480156101d557600080fd5b5061010e6101e43660046108e8565b61039d565b3480156101f557600080fd5b506101516103e7565b34801561020a57600080fd5b5061010e610410565b34801561021f57600080fd5b5061010e61022e3660046107e3565b610483565b34801561023f57600080fd5b5061010e61024e3660046107c0565b6104c1565b60015460009060ff600160a01b90910481169083161115610275575080610284565b50600154600160a01b900460ff165b95945050505050565b6000546001600160a01b031633146102c05760405162461bcd60e51b81526004016102b790610951565b60405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461030c5760405162461bcd60e51b81526004016102b790610951565b6001600160a01b0381166103625760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f20616464726573730000000060448201526064016102b7565b6040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610398573d6000803e3d6000fd5b505050565b6000546001600160a01b031633146103c75760405162461bcd60e51b81526004016102b790610951565b6001805460ff909216600160a01b0260ff60a01b19909216919091179055565b6002546000906001600160a01b03161561040b57506002546001600160a01b031690565b503090565b6001546001600160a01b0316331461045f5760405162461bcd60e51b815260206004820152601260248201527137b7363c903732bc3a1037b832b930ba37b960711b60448201526064016102b7565b600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000546001600160a01b031633146104ad5760405162461bcd60e51b81526004016102b790610951565b6103986001600160a01b038416828461050d565b6000546001600160a01b031633146104eb5760405162461bcd60e51b81526004016102b790610951565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564908401526103989286929160009161059d91851690849061061d565b90508051600014806105be5750808060200190518101906105be9190610824565b6103985760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102b7565b606061062c8484600085610634565b949350505050565b6060824710156106955760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102b7565b600080866001600160a01b031685876040516106b19190610902565b60006040518083038185875af1925050503d80600081146106ee576040519150601f19603f3d011682016040523d82523d6000602084013e6106f3565b606091505b50915091506107048783838761070f565b979650505050505050565b6060831561077b578251610774576001600160a01b0385163b6107745760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102b7565b508161062c565b61062c83838151156107905781518083602001fd5b8060405162461bcd60e51b81526004016102b7919061091e565b803560ff811681146107bb57600080fd5b919050565b6000602082840312156107d1578081fd5b81356107dc816109a8565b9392505050565b6000806000606084860312156107f7578182fd5b8335610802816109a8565b9250602084013591506040840135610819816109a8565b809150509250925092565b600060208284031215610835578081fd5b815180151581146107dc578182fd5b60008060408385031215610856578182fd5b823591506020830135610868816109a8565b809150509250929050565b600080600080600060a0868803121561088a578081fd5b853567ffffffffffffffff811681146108a1578182fd5b945060208601356108b1816109a8565b935060408601359250606086013561ffff811681146108ce578182fd5b91506108dc608087016107aa565b90509295509295909350565b6000602082840312156108f9578081fd5b6107dc826107aa565b60008251610914818460208701610978565b9190910192915050565b602081526000825180602084015261093d816040850160208701610978565b601f01601f19169190910160400192915050565b6020808252600d908201526c37b7363c9037b832b930ba37b960991b604082015260600190565b60005b8381101561099357818101518382015260200161097b565b838111156109a2576000848401525b50505050565b6001600160a01b03811681146109bd57600080fd5b5056fea2646970667358221220c6c664842d558874f1e2850375c6643a0a5c8a06d717d4b34c7f31046e8ac4d164736f6c63430008040033

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

000000000000000000000000933e3922e04d47a466e60a20e486b372b64f1ea80000000000000000000000000000000000000000000000000000000000000003

-----Decoded View---------------
Arg [0] : _operator (address): 0x933E3922E04d47a466e60A20e486b372B64F1Ea8
Arg [1] : _baseBps (uint8): 3

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000933e3922e04d47a466e60a20e486b372b64f1ea8
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000003


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
BSC30.77%$0.0090536,147,019.6261$55,645.9
BSC4.96%$611.5514.6683$8,970.46
BSC3.18%$15,756.2255$5,756.23
BSC2.00%$6.74537.0912$3,619.99
BSC1.47%$0.9999872,657.0886$2,657.05
BSC0.34%$115.475.2771$609.35
BSC0.18%$2.28142.4443$325.43
BSC0.09%$93,789.910.00181325$170.06
BSC0.07%$0.830937156.709$130.22
BSC0.06%$0.00907312,641.0567$114.7
BSC0.06%$0.184399617.5667$113.88
BSC0.06%$611.160.1714$104.72
BSC0.04%$173.4541$73.48
BSC0.03%$0.70844175.7681$53.68
BSC0.03%$1,811.010.0264$47.79
BSC0.03%$152.20.3013$45.85
BSC0.02%$0.0318541,339.683$42.67
BSC0.02%$0.056041748.6071$41.95
BSC0.02%$2.0319.5228$39.63
BSC0.02%$1.327.9399$36.4
BSC0.02%$0.07333490.2968$35.95
BSC0.01%$0.030906868.009$26.83
BSC0.01%$15.181.2801$19.43
BSC0.01%$0.034387540.8406$18.6
BSC<0.01%$0.125707138.9543$17.47
BSC<0.01%$0.99858916.5265$16.5
BSC<0.01%$0.0000071,786,641.5017$13.17
BSC<0.01%$0.072297175.7989$12.71
BSC<0.01%$0.49415924.3154$12.02
BSC<0.01%$0.41800228.2911$11.83
BSC<0.01%$0.9427511.913$11.23
BSC<0.01%$4.112.6605$10.94
BSC<0.01%$0.000091119,451.4231$10.93
BSC<0.01%$2.54.2934$10.73
BSC<0.01%$2.763.6739$10.13
BSC<0.01%$0.013747692.5615$9.52
BSC<0.01%$0.9999989.312$9.31
BSC<0.01%$0.67638613.3686$9.04
BSC<0.01%$3.512.5295$8.88
BSC<0.01%$0.026433290.6373$7.68
BSC<0.01%$84.50.0884$7.47
BSC<0.01%$0.031707227.3853$7.21
BSC<0.01%$0.52221813.2136$6.9
BSC<0.01%$167.310.0405$6.77
BSC<0.01%$0.09154473.1323$6.69
BSC<0.01%<$0.000001474,758,621.9489$6.51
BSC<0.01%$0.0000024,035,339.4669$6.34
BSC<0.01%$0.24629324.8089$6.11
BSC<0.01%$0.000009659,876.5463$6.04
BSC<0.01%$0.0016033,034.7052$4.86
BSC<0.01%$0.00032414,421.9443$4.68
BSC<0.01%$0.004649924.8702$4.3
BSC<0.01%$0.011114386.7551$4.3
BSC<0.01%<$0.000001777,233,907.6086$4.25
BSC<0.01%$0.00005971,558.24$4.21
BSC<0.01%$0.564747.4239$4.19
BSC<0.01%$0.04661787.8858$4.1
BSC<0.01%$93,6410.00004316$4.04
BSC<0.01%$0.0020871,915.0265$4
BSC<0.01%$0.000014285,632.4694$3.91
BSC<0.01%$0.0000021,866,788.2951$3.66
BSC<0.01%$0.07484248.1386$3.6
BSC<0.01%$0.19578218.1693$3.56
BSC<0.01%$0.028818117.3592$3.38
BSC<0.01%$0.000003984,716.4216$3.32
BSC<0.01%$22.780.1368$3.12
BSC<0.01%$2.741.0691$2.93
BSC<0.01%$0.2919959.6037$2.8
BSC<0.01%$0.01338193.7536$2.59
BSC<0.01%$0.279368.9491$2.5
BSC<0.01%$0.003838648.8722$2.49
BSC<0.01%$0.0000011,870,150.2728$2.39
BSC<0.01%$0.02627686.373$2.27
BSC<0.01%$0.01176178.3168$2.1
BSC<0.01%$93,2670.00002161$2.02
BSC<0.01%$0.0019151,046.5925$2
BSC<0.01%$0.0062318.3378$1.97
BSC<0.01%$9.540.1905$1.82
BSC<0.01%$11.8086$1.81
BSC<0.01%$0.03194755.306$1.77
BSC<0.01%$0.998681.761$1.76
BSC<0.01%$0.2084688.2836$1.73
BSC<0.01%$0.03188153.1403$1.69
BSC<0.01%$4.40.3707$1.63
BSC<0.01%$0.3442544.6701$1.61
BSC<0.01%$0.05778727.2084$1.57
BSC<0.01%$0.01604997.5611$1.57
BSC<0.01%<$0.00000130,375,646.2419$1.53
BSC<0.01%$3.130.466$1.46
BSC<0.01%<$0.00000121,132,065.2958$1.44
BSC<0.01%$0.07450519.2764$1.44
BSC<0.01%$0.2230246.3025$1.41
BSC<0.01%$0.02074766.2365$1.37
BSC<0.01%$0.0290946.1487$1.34
BSC<0.01%$0.1698657.6322$1.3
BSC<0.01%$0.0874814.1071$1.23
BSC<0.01%$0.001263911.4923$1.15
BSC<0.01%$92,9650.00001204$1.12
BSC<0.01%$0.005248204.4385$1.07
BSC<0.01%$0.2515364.1128$1.03
BSC<0.01%$0.03085933.3019$1.03
BSC<0.01%$0.925671.106$1.02
BSC<0.01%$6.040.1641$0.9904
BSC<0.01%$0.001033954.815$0.9867
BSC<0.01%$2.430.3998$0.9723
BSC<0.01%$0.1849215.2113$0.9636
BSC<0.01%$0.007737123.2708$0.9536
BSC<0.01%$0.0001815,177.7555$0.9353
BSC<0.01%$0.003956231.6354$0.9162
BSC<0.01%$0.01279868.8272$0.8808
BSC<0.01%$0.01745450.4602$0.8807
BSC<0.01%$0.5712991.5044$0.8594
BSC<0.01%$0.2995182.7726$0.8304
BSC<0.01%$0.2761132.9068$0.8026
BSC<0.01%$0.0939758.3898$0.7884
BSC<0.01%$15.840.0486$0.7697
BSC<0.01%$0.002696280.819$0.7571
BSC<0.01%$0.2115643.5077$0.7421
BSC<0.01%$0.01135464.9257$0.7371
BSC<0.01%$0.0952727.7264$0.7361
BSC<0.01%$0.00001644,337.3141$0.7027
BSC<0.01%$0.02831624.5235$0.6944
BSC<0.01%$0.135515.0843$0.6889
BSC<0.01%$0.0450814.8747$0.6705
BSC<0.01%$92,7730.00000717$0.6656
BSC<0.01%$0.2354722.7736$0.6531
BSC<0.01%$0.002058313.3769$0.645
BSC<0.01%$0.01807434.711$0.6273
BSC<0.01%$40.880.0151$0.6184
BSC<0.01%$0.1214455.0013$0.6073
BSC<0.01%$0.003777159.6735$0.6031
BSC<0.01%$0.04231214.254$0.6031
BSC<0.01%$0.00882567.836$0.5986
BSC<0.01%$2.860.2017$0.5768
BSC<0.01%$0.000892646.9369$0.5768
BSC<0.01%<$0.00000141,794,423.6058$0.5669
BSC<0.01%$0.9975710.5589$0.5575
BSC<0.01%$0.01969528.1177$0.5537
BSC<0.01%$0.2135922.5401$0.5425
BSC<0.01%$0.002509208.8707$0.5241
BSC<0.01%$0.00890458.1057$0.5173
BSC<0.01%$0.00706471.3037$0.5037
BSC<0.01%$0.4091451.191$0.4872
BSC<0.01%$0.00578482.456$0.4768
BSC<0.01%$0.140283.331$0.4672
BSC<0.01%$0.0770756.0331$0.4649
BSC<0.01%$0.004171105.4338$0.4398
BSC<0.01%$0.0573017.6149$0.4363
BSC<0.01%$0.000076,186.5132$0.4326
BSC<0.01%$0.0473558.9473$0.4237
BSC<0.01%$0.001166358.9055$0.4184
BSC<0.01%$0.0831844.9706$0.4134
BSC<0.01%$93,6240.00000439$0.411
BSC<0.01%$0.01660324.6666$0.4095
BSC<0.01%<$0.000001393,490,092.5589$0.4075
BSC<0.01%$0.01000439.2939$0.393
BSC<0.01%$0.0615165.6843$0.3496
BSC<0.01%$359.550.00094763$0.3407
BSC<0.01%$0.6672090.4825$0.3219
BSC<0.01%$0.0436577.3119$0.3192
BSC<0.01%$0.000056,315.7127$0.3127
BSC<0.01%$0.01671518.6181$0.3111
BSC<0.01%$0.01500820.0944$0.3015
BSC<0.01%$0.001834163.8013$0.3003
BSC<0.01%<$0.0000012,109,237.3533$0.2978
BSC<0.01%$0.3145790.9082$0.2857
BSC<0.01%$0.0514215.5161$0.2836
BSC<0.01%$0.0003927.9794$0.2787
BSC<0.01%$1,400.620.00019874$0.2783
BSC<0.01%$0.000343803.6689$0.2753
BSC<0.01%$1,511.730.00017579$0.2657
BSC<0.01%$2.930.0902$0.2643
BSC<0.01%$36.120.00684148$0.2471
BSC<0.01%$0.02315910.4573$0.2421
BSC<0.01%$0.000543444.9406$0.2417
BSC<0.01%$0.0042256.3956$0.2379
BSC<0.01%$0.0001341,747.9479$0.2334
BSC<0.01%$0.4964480.4701$0.2333
BSC<0.01%$0.00001417,000.8054$0.2317
BSC<0.01%$0.1543581.4792$0.2283
BSC<0.01%$0.2559740.8686$0.2223
BSC<0.01%$0.00441249.3212$0.2176
BSC<0.01%$0.001471142.6546$0.2098
BSC<0.01%$0.5166650.4031$0.2082
BSC<0.01%$0.0761382.6901$0.2048
BSC<0.01%$1,897.010.00010599$0.201
BSC<0.01%$0.00866823.1259$0.2004
BSC<0.01%$0.0027871.8406$0.1997
BSC<0.01%$0.001361145.2026$0.1976
BSC<0.01%$0.0197219.9565$0.1963
BSC<0.01%$0.000981196.8572$0.1932
BSC<0.01%$0.00000359,145.2233$0.1886
BSC<0.01%$16.950.011$0.1869
BSC<0.01%$0.000485378.4634$0.1834
BSC<0.01%$0.00869620.9411$0.1821
BSC<0.01%$0.000673268.5225$0.1807
BSC<0.01%$0.0261686.8469$0.1791
BSC<0.01%$0.0184739.3616$0.1729
BSC<0.01%$0.000323512.713$0.1657
BSC<0.01%$0.0810062.0183$0.1634
BSC<0.01%$0.0325944.9645$0.1618
BSC<0.01%$0.001072144.5681$0.155
BSC<0.01%<$0.00000131,640,509.0774$0.1506
BSC<0.01%$7.860.0189$0.1487
BSC<0.01%$0.1892650.7809$0.1477
BSC<0.01%$0.00773119.1173$0.1477
BSC<0.01%$0.1137781.2936$0.1471
BSC<0.01%$0.0219466.6841$0.1466
BSC<0.01%$33.670.00431773$0.1453
BSC<0.01%$0.00180580.1283$0.1446
BSC<0.01%$43.580.00314472$0.137
BSC<0.01%$49.650.00273214$0.1356
BSC<0.01%$0.0365093.6681$0.1339
BSC<0.01%$0.2030660.6455$0.131
BSC<0.01%$0.8065930.1615$0.1303
BSC<0.01%$0.00014914.8608$0.1282
BSC<0.01%<$0.0000011,269,514.7613$0.1238
BSC<0.01%$0.0620131.957$0.1213
BSC<0.01%$0.00989312.1584$0.1202
BSC<0.01%$0.0200595.8956$0.1182
BSC<0.01%$0.0880851.3333$0.1174
BSC<0.01%$0.032773.5231$0.1154
BSC<0.01%$2.550.0434$0.1107
BSC<0.01%$0.3149160.3495$0.11
BSC<0.01%<$0.00000172,948,989.242$0.1067
BSC<0.01%$0.525310.1998$0.1049
BSC<0.01%$0.000114914.6692$0.104
BSC<0.01%$0.00241242.7245$0.103
BSC<0.01%$0.141290.7296$0.103
BSC<0.01%$0.00351129.0542$0.102
BSC<0.01%$0.2118680.4758$0.1008
ETH9.27%$0.99996316,755.8072$16,755.19
ETH5.23%$19,454.0203$9,454.02
ETH3.67%$1,816.263.6493$6,628
ETH0.76%$11,372.4668$1,372.47
ETH0.49%$93,6410.00955531$894.77
ETH0.15%$1,816.260.1502$272.85
ETH0.14%$2,027.170.126$255.41
ETH0.12%$93,7540.00235785$221.06
ETH0.09%$0.796694211.8277$168.76
ETH0.09%$0.999495154.0064$153.93
ETH0.08%$0.93779156.0955$146.38
ETH0.06%$15.167.3928$112.07
ETH0.04%$167.340.4527$75.75
ETH0.04%$1.1663.5197$73.68
ETH0.04%$0.0196953,729.9695$73.46
ETH0.04%$0.0000097,776,272.8797$71.23
ETH0.04%$3,335.480.0211$70.54
ETH0.03%$1.1550.592$58.18
ETH0.03%$0.99938457.4678$57.43
ETH0.03%$0.349681154.442$54.01
ETH0.03%$0.00070875,795.4223$53.63
ETH0.02%$3,332.670.0131$43.55
ETH0.02%$0.99966438.4858$38.47
ETH0.02%$93,6240.00039676$37.15
ETH0.02%$2,176.620.017$36.91
ETH0.02%$0.0062015,744.07$35.62
ETH0.02%$1.1428.7362$32.76
ETH0.02%$0.178391179.5091$32.02
ETH0.01%$0.79089633.4827$26.48
ETH0.01%$152.550.1586$24.2
ETH0.01%$0.0000141,768,757.5408$24.2
ETH0.01%$0.027333847.6868$23.17
ETH0.01%$0.99956922.6853$22.68
ETH0.01%$1,811.090.0124$22.39
ETH0.01%$4.654.802$22.33
ETH0.01%$335.590.0651$21.83
ETH0.01%$0.000178121,582.3147$21.65
ETH0.01%<$0.000001454,949,905.359$19.85
ETH0.01%$8.852.2309$19.73
ETH0.01%$0.0086392,281.7952$19.71
ETH0.01%$0.0169161,111.3839$18.8
ETH<0.01%$0.092373189.549$17.51
ETH<0.01%$0.5647427.9523$15.79
ETH<0.01%$0.0039533,956.3256$15.64
ETH<0.01%$1,724.360.00872779$15.05
ETH<0.01%$0.065209215.9055$14.08
ETH<0.01%$10.351.3358$13.83
ETH<0.01%$0.66720920.0825$13.4
ETH<0.01%$0.17949773.4012$13.18
ETH<0.01%$0.68301119.1098$13.05
ETH<0.01%$111.4682$11.51
ETH<0.01%$0.09145117.9764$10.79
ETH<0.01%$0.69342115.4131$10.69
ETH<0.01%$0.016381637.7948$10.45
ETH<0.01%$0.21486247.8234$10.28
ETH<0.01%$93,6460.00010908$10.21
ETH<0.01%$0.18452554.447$10.05
ETH<0.01%$2,041.960.00478337$9.77
ETH<0.01%$0.63025114.941$9.42
ETH<0.01%$0.12216176.389$9.33
ETH<0.01%$0.9996239.1598$9.16
ETH<0.01%$23.060.3835$8.84
ETH<0.01%$9.530.9276$8.84
ETH<0.01%$6.031.4517$8.75
ETH<0.01%$0.5278316.1826$8.54
ETH<0.01%$0.22247938.0794$8.47
ETH<0.01%$0.00023935,479.7035$8.46
ETH<0.01%$0.15309253.2826$8.16
ETH<0.01%$1,930.330.00402915$7.78
ETH<0.01%$17.4814$7.5
ETH<0.01%$0.8206988.7814$7.21
ETH<0.01%$0.028316247.3677$7
ETH<0.01%$0.27244123.2196$6.33
ETH<0.01%$0.9999896.0097$6.01
ETH<0.01%$0.0008876,738.4494$5.97
ETH<0.01%$0.0024132,445.4044$5.9
ETH<0.01%$0.0023022,523.5501$5.81
ETH<0.01%$0.06646585.2658$5.67
ETH<0.01%$0.31491617.8455$5.62
ETH<0.01%$0.997655.6142$5.6
ETH<0.01%$0.0000019,024,798.2084$5.52
ETH<0.01%$0.6458688.4548$5.46
ETH<0.01%$3.511.5306$5.37
ETH<0.01%$71.760.0747$5.36
ETH<0.01%$0.00050410,631.7486$5.36
ETH<0.01%$0.09418455.1059$5.19
ETH<0.01%$1.034.9664$5.13
ETH<0.01%$0.015748319.2184$5.03
ETH<0.01%$0.029753168.0634$5
ETH<0.01%$0.32032415.3153$4.91
ETH<0.01%$0.017222278.2537$4.79
ETH<0.01%$0.044603102.6826$4.58
ETH<0.01%$0.24970317.7796$4.44
ETH<0.01%$0.00003141,394.7663$4.19
ETH<0.01%$0.30056813.7418$4.13
ETH<0.01%$14.02$4.02
ETH<0.01%$0.7629695.0857$3.88
ETH<0.01%$0.21156418.2571$3.86
ETH<0.01%<$0.000001104,560,786.8436$3.76
ETH<0.01%$2.031.8396$3.73
ETH<0.01%$0.0022851,627.3057$3.72
ETH<0.01%$0.013747268.7371$3.69
ETH<0.01%$0.000024150,216.8438$3.62
ETH<0.01%$0.008338434.3087$3.62
ETH<0.01%$0.004719753.8089$3.56
ETH<0.01%$0.0015292,270.3667$3.47
ETH<0.01%$0.00004182,235.5635$3.38
ETH<0.01%$0.741964.5542$3.38
ETH<0.01%$0.0010763,040.1686$3.27
ETH<0.01%$0.01092297.4382$3.25
ETH<0.01%$3.131.008$3.15
ETH<0.01%$0.21785914.2794$3.11
ETH<0.01%$0.08411136.9553$3.11
ETH<0.01%$0.03759382.3466$3.1
ETH<0.01%$0.2983849.8642$2.94
ETH<0.01%$0.009278314.3018$2.92
ETH<0.01%$0.11377825.2554$2.87
ETH<0.01%<$0.00000170,789,546.943$2.87
ETH<0.01%$3.140.9129$2.87
ETH<0.01%<$0.00000120,260,716.3046$2.86
ETH<0.01%$0.03151189.1029$2.81
ETH<0.01%$0.5719314.8458$2.77
ETH<0.01%$0.23579611.6436$2.75
ETH<0.01%$0.00001272,053.087$2.71
ETH<0.01%$0.33238.0574$2.68
ETH<0.01%$0.007321363.2032$2.66
ETH<0.01%$0.006261424.14$2.66
ETH<0.01%$0.025355103.8667$2.63
ETH<0.01%$0.000021125,668.2378$2.6
ETH<0.01%$0.004412581.099$2.56
ETH<0.01%$0.5611884.5662$2.56
ETH<0.01%$0.8679782.9199$2.53
ETH<0.01%$0.14841216.9744$2.52
ETH<0.01%$4.450.5651$2.51
ETH<0.01%$0.023483104.1468$2.45
ETH<0.01%$2.271.0649$2.42
ETH<0.01%$0.14005817.2151$2.41
ETH<0.01%$0.008346284.0123$2.37
ETH<0.01%$0.09154125.8748$2.37
ETH<0.01%$0.17457113.4426$2.35
ETH<0.01%$1.211.8966$2.29
ETH<0.01%$0.4038425.6526$2.28
ETH<0.01%$0.246359.2513$2.28
ETH<0.01%$0.3344046.7905$2.27
ETH<0.01%$1.151.9724$2.27
ETH<0.01%$0.3145797.0959$2.23
ETH<0.01%$0.03177469.5214$2.21
ETH<0.01%$0.004649464.9462$2.16
ETH<0.01%$0.008786244.4563$2.15
ETH<0.01%$0.03633958.9018$2.14
ETH<0.01%<$0.0000016,411,536.6357$2.12
ETH<0.01%$0.02852973.7903$2.11
ETH<0.01%$0.6764853.0565$2.07
ETH<0.01%$93,8790.00002198$2.06
ETH<0.01%$0.11533817.6866$2.04
ETH<0.01%$0.06541231.1235$2.04
ETH<0.01%$2.860.7076$2.02
ETH<0.01%$0.07358127.269$2.01
ETH<0.01%$0.000016125,071.0422$1.98
ETH<0.01%$0.00002580,247.1236$1.98
ETH<0.01%$0.611853.2298$1.98
ETH<0.01%<$0.00000137,956,022.7114$1.97
ETH<0.01%$0.00001199,180.4633$1.94
ETH<0.01%$114.550.0167$1.92
ETH<0.01%$0.3442545.5339$1.91
ETH<0.01%$7.830.2359$1.85
ETH<0.01%<$0.000001157,261,068.9191$1.84
ETH<0.01%<$0.00000150,015,357.3752$1.77
ETH<0.01%$0.06365327.3037$1.74
ETH<0.01%$0.998821.6897$1.69
ETH<0.01%$0.3949894.1229$1.63
ETH<0.01%$0.3612154.2481$1.53
ETH<0.01%$17.280.0887$1.53
ETH<0.01%$0.0005053,029.2271$1.53
ETH<0.01%$0.008958168.2722$1.51
ETH<0.01%$0.9993431.4958$1.49
ETH<0.01%$0.09618315.4996$1.49
ETH<0.01%$1.211.2203$1.47
ETH<0.01%$0.8722811.6327$1.42
ETH<0.01%$0.9758831.4524$1.42
ETH<0.01%$0.003336418.2959$1.4
ETH<0.01%$0.01592886.7042$1.38
ETH<0.01%$0.08250816.7362$1.38
ETH<0.01%$0.0002315,906.851$1.37
ETH<0.01%$0.6469372.093$1.35
ETH<0.01%$0.10155813.0424$1.32
ETH<0.01%$0.3140074.2023$1.32
ETH<0.01%$0.01407693.522$1.32
ETH<0.01%$2.50.5232$1.31
ETH<0.01%$1,814.890.00070129$1.27
ETH<0.01%$0.8626751.4634$1.26
ETH<0.01%$1,897.010.00066036$1.25
ETH<0.01%$0.00001393,255.6285$1.23
ETH<0.01%$0.4180022.9142$1.22
ETH<0.01%$0.2084685.8261$1.21
ETH<0.01%$0.004566263.9663$1.21
ETH<0.01%<$0.00000117,617,535.8194$1.2
ETH<0.01%$0.2072425.7128$1.18
ETH<0.01%$0.1682936.9153$1.16
ETH<0.01%$0.1434368.0883$1.16
ETH<0.01%$5,174.870.00022292$1.15
ETH<0.01%$0.09636411.8763$1.14
ETH<0.01%$2.430.4583$1.11
ETH<0.01%$0.05957718.5636$1.11
ETH<0.01%$2.10.5214$1.1
ETH<0.01%$609.960.00179504$1.09
ETH<0.01%<$0.0000018,474,649.8148$1.08
ETH<0.01%$0.02437944.1339$1.08
ETH<0.01%$94,2330.00001137$1.07
ETH<0.01%$0.2721043.9145$1.07
ETH<0.01%$0.01330978.156$1.04
ETH<0.01%$19.20.0534$1.02
ETH<0.01%$0.00004821,052.3522$1.02
ETH<0.01%$1.050.9522$0.9988
ETH<0.01%$0.3545022.8142$0.9976
ETH<0.01%$0.1428436.9775$0.9966
ETH<0.01%$0.01484366.4283$0.9859
ETH<0.01%$15.570.0627$0.9766
ETH<0.01%$0.0008481,140.0394$0.9669
ETH<0.01%$0.9964280.9568$0.9533
ETH<0.01%$4.610.2059$0.949
ETH<0.01%$0.2612243.6198$0.9455
ETH<0.01%$0.0003222,910.238$0.9379
ETH<0.01%$0.03305727.9099$0.9226
ETH<0.01%$0.02725833.8477$0.9226
ETH<0.01%<$0.0000012,425,168.8579$0.9195
ETH<0.01%$0.05487716.638$0.913
ETH<0.01%$0.7940291.1384$0.9039
ETH<0.01%$0.2287273.8415$0.8786
ETH<0.01%$0.007701113.7769$0.8762
ETH<0.01%$160.720.00541368$0.87
ETH<0.01%$0.0926159.367$0.8675
ETH<0.01%$0.1432126.0244$0.8627
ETH<0.01%$0.01975543.5684$0.8607
ETH<0.01%$10.8534$0.8534
ETH<0.01%$0.02065841.2931$0.853
ETH<0.01%$0.000004213,911.2189$0.8522
ETH<0.01%$0.06774612.5625$0.851
ETH<0.01%<$0.00000156,652,743.9102$0.8435
ETH<0.01%$0.003892212.0685$0.8253
ETH<0.01%$0.01545851.4821$0.7958
ETH<0.01%$2.90.2713$0.7868
ETH<0.01%$0.07340210.679$0.7838
ETH<0.01%$1.580.4866$0.7687
ETH<0.01%$0.1495.0843$0.7575
ETH<0.01%$0.05896712.8007$0.7548
ETH<0.01%$0.04161518.0973$0.7531
ETH<0.01%$0.001149650.1768$0.747
ETH<0.01%<$0.000001151,236,638.0277$0.7436
ETH<0.01%$8.20.0903$0.7404
ETH<0.01%$0.00001263,476.2739$0.7349
ETH<0.01%$0.5138421.4266$0.733
ETH<0.01%$0.3024532.4106$0.729
ETH<0.01%$60.580.0119$0.722
ETH<0.01%$0.1112266.3948$0.7112
ETH<0.01%$2.20.3207$0.7055
ETH<0.01%$0.8187920.8608$0.7047
ETH<0.01%$0.001842382.017$0.7037
ETH<0.01%$0.00998569.6084$0.695
ETH<0.01%$0.00006610,471.3935$0.691
ETH<0.01%$0.04025116.8249$0.6772
ETH<0.01%$0.01981933.8439$0.6707
ETH<0.01%$0.002515266.2764$0.6696
ETH<0.01%$0.006091109.4676$0.6667
ETH<0.01%$0.1042586.3419$0.6611
ETH<0.01%$0.00001834,641.6163$0.636
ETH<0.01%$0.0781278.1158$0.634
ETH<0.01%$0.001224506.678$0.6199
ETH<0.01%$0.02540324.282$0.6168
ETH<0.01%$0.4737661.2948$0.6134
ETH<0.01%$0.005298113.5156$0.6013
ETH<0.01%$0.0707448.4921$0.6007
ETH<0.01%$0.1215844.9223$0.5984
ETH<0.01%$0.0770757.7121$0.5944
ETH<0.01%$0.111845.2879$0.5913
ETH<0.01%$0.01468439.9141$0.586
ETH<0.01%$0.0070383.0967$0.5841
ETH<0.01%$2.740.2081$0.5703
ETH<0.01%$0.0628338.9756$0.5639
ETH<0.01%$0.0713337.7583$0.5534
ETH<0.01%$0.000001737,161.551$0.5493
ETH<0.01%$0.000003172,122.8143$0.5445
ETH<0.01%$0.000808673.6492$0.5442
ETH<0.01%$0.0985385.4664$0.5386
ETH<0.01%$0.5710130.9335$0.533
ETH<0.01%$0.4450421.1879$0.5286
ETH<0.01%$0.7289540.7212$0.5257
ETH<0.01%$0.2075662.4711$0.5129
ETH<0.01%$1,892.280.00026889$0.5088
ETH<0.01%$0.7954260.6355$0.5054
ETH<0.01%$0.02740418.1969$0.4986
ETH<0.01%$165.220.00298176$0.4926
ETH<0.01%$0.2015442.4295$0.4896
ETH<0.01%$0.03296214.7837$0.4872
ETH<0.01%$0.5583120.8622$0.4813
ETH<0.01%$0.01061944.1069$0.4683
ETH<0.01%$0.000588796.3127$0.4683
ETH<0.01%$0.01657927.9633$0.4636
ETH<0.01%$0.00000770,583.7704$0.463
ETH<0.01%$0.163542.7681$0.4526
ETH<0.01%$0.7208310.6268$0.4517
ETH<0.01%$0.001389321.8068$0.447
ETH<0.01%$2.860.1538$0.4399
ETH<0.01%$0.00773155.6115$0.4299
ETH<0.01%$0.1724452.4926$0.4298
ETH<0.01%$0.001438298.419$0.4291
ETH<0.01%$0.998680.4283$0.4277
ETH<0.01%$0.505890.8385$0.4241
ETH<0.01%$0.0746315.5435$0.4137
ETH<0.01%$0.0042296.9071$0.4089
ETH<0.01%$43.550.00925004$0.4028
ETH<0.01%$0.01086636.0773$0.392
ETH<0.01%$0.02539715.3388$0.3895
ETH<0.01%$0.9976950.3837$0.3827
ETH<0.01%$0.3152491.1957$0.3769
ETH<0.01%$2.550.1473$0.3756
ETH<0.01%$0.0638585.8139$0.3712
ETH<0.01%$0.3445191.0616$0.3657
ETH<0.01%$0.3176841.1465$0.3642
ETH<0.01%$0.0517737.0019$0.3625
ETH<0.01%$0.000002154,539.8107$0.3617
ETH<0.01%$0.6278130.5685$0.3569
ETH<0.01%$0.0648395.505$0.3569
ETH<0.01%$0.986960.3515$0.3469
ETH<0.01%$0.7123590.485$0.3454
ETH<0.01%$178.630.00188253$0.3362
ETH<0.01%$7.910.0421$0.3329
ETH<0.01%$0.002566128.0125$0.3285
ETH<0.01%$0.000002148,610.6679$0.3284
ETH<0.01%$0.1979791.6526$0.3271
ETH<0.01%$0.0599365.4348$0.3257
ETH<0.01%$0.0143522.6484$0.325
ETH<0.01%$0.074494.3496$0.3239
ETH<0.01%$0.1076213.005$0.3234
ETH<0.01%$0.02472512.9531$0.3202
ETH<0.01%$0.032889.5662$0.3145
ETH<0.01%$0.001393225.6883$0.3144
ETH<0.01%$0.02339113.3694$0.3127
ETH<0.01%<$0.0000016,431,063.7324$0.3097
ETH<0.01%$16.10.0187$0.3008
ETH<0.01%$0.02394412.5298$0.30
ETH<0.01%$0.002115141.4947$0.2992
ETH<0.01%$0.2091851.4257$0.2982
ETH<0.01%$0.2288931.2933$0.296
ETH<0.01%$0.0980853.0162$0.2958
ETH<0.01%$0.1723811.7067$0.2941
ETH<0.01%$0.0843523.4807$0.2936
ETH<0.01%$0.117322.4242$0.2844
ETH<0.01%$0.3180980.8925$0.2839
ETH<0.01%$0.002175130.2484$0.2832
ETH<0.01%$0.9353070.2991$0.2797
ETH<0.01%$0.001854149.72$0.2775
ETH<0.01%$1.520.1785$0.2713
ETH<0.01%$0.9255440.293$0.2712
ETH<0.01%$0.0609094.3979$0.2678
ETH<0.01%$0.8102220.3193$0.2587
ETH<0.01%$93,2670.00000276$0.2576
ETH<0.01%<$0.000001894,556.135$0.2558
ETH<0.01%$0.00428558.837$0.2521
ETH<0.01%$0.00000468,846.0238$0.2499
ETH<0.01%$0.00745232.4522$0.2418
ETH<0.01%$0.00786730.704$0.2415
ETH<0.01%$0.1477991.6146$0.2386
ETH<0.01%$0.1337371.7834$0.2385
ETH<0.01%$0.000276841.2532$0.2321
ETH<0.01%$1.220.188$0.2293
ETH<0.01%<$0.0000012,549,930.9647$0.2286
ETH<0.01%$0.0001271,781.5202$0.2261
ETH<0.01%$0.2118681.0665$0.2259
ETH<0.01%$0.5505030.4011$0.2208
ETH<0.01%$0.00416151.4397$0.214
ETH<0.01%$0.00691730.4183$0.2104
ETH<0.01%$3.290.0632$0.2078
ETH<0.01%<$0.0000017,139,646.8074$0.206
ETH<0.01%$0.00000540,854.1017$0.2021
ETH<0.01%$0.020259.9327$0.2011
ETH<0.01%$0.0207259.6167$0.1993
ETH<0.01%$0.00377752.2036$0.1971
ETH<0.01%$0.3089480.6378$0.197
ETH<0.01%$0.1291291.4872$0.192
ETH<0.01%$0.001178162.2218$0.191
ETH<0.01%$0.2206440.856$0.1888
ETH<0.01%$0.1376771.3584$0.187
ETH<0.01%$31.050.00588363$0.1826
ETH<0.01%$0.0099718.3118$0.1825
ETH<0.01%$0.00404544.5723$0.1803
ETH<0.01%$0.01617711.1143$0.1798
ETH<0.01%$0.2030660.8591$0.1744
ETH<0.01%$0.494580.3475$0.1718
ETH<0.01%$0.01389412.3659$0.1718
ETH<0.01%$0.00290158.7694$0.1704
ETH<0.01%$1,810.610.00009378$0.1698
ETH<0.01%$0.00284359.6963$0.1697
ETH<0.01%$0.0283255.9935$0.1697
ETH<0.01%$0.3996080.4237$0.1693
ETH<0.01%<$0.0000012,601,370.3045$0.1681
ETH<0.01%$20.110.00825894$0.166
ETH<0.01%$0.0000652,545.7877$0.1646
ETH<0.01%$0.1892650.8656$0.1638
ETH<0.01%$0.00749921.7859$0.1633
ETH<0.01%$4.540.0356$0.1616
ETH<0.01%$0.0183328.8197$0.1616
ETH<0.01%$1,921.010.00008348$0.1603
ETH<0.01%$2.480.0645$0.16
ETH<0.01%$1.420.1125$0.1597
ETH<0.01%$0.00236967.3814$0.1596
ETH<0.01%$1,881.910.00008477$0.1595
ETH<0.01%$0.1132181.4079$0.1593
ETH<0.01%$0.1972560.8075$0.1592
ETH<0.01%$0.5432530.2898$0.1574
ETH<0.01%$0.0276825.6472$0.1563
ETH<0.01%$0.001166132.4818$0.1545
ETH<0.01%$0.00382340.2482$0.1538
ETH<0.01%$82,196.210.00000187$0.1537
ETH<0.01%$0.00605525.3468$0.1534
ETH<0.01%$8.920.0169$0.151
ETH<0.01%$1.140.1314$0.1497
ETH<0.01%$0.000843177.5127$0.1495
ETH<0.01%$0.000511288.2049$0.1471
ETH<0.01%<$0.00000143,713,788.2833$0.1469
ETH<0.01%$5,862.920.00002483$0.1455
ETH<0.01%$0.0001011,435.7183$0.1449
ETH<0.01%$0.00650122.1881$0.1442
ETH<0.01%$0.000919155.6069$0.1429
ETH<0.01%$0.000957146.898$0.1406
ETH<0.01%$1.180.1183$0.1395
ETH<0.01%<$0.00000193,844,441.4308$0.1385
ETH<0.01%$92,3020.0000015$0.1384
ETH<0.01%$0.2150720.6378$0.1371
ETH<0.01%$373.820.00036446$0.1362
ETH<0.01%$0.00679820.0004$0.1359
ETH<0.01%$0.0001081,225.0115$0.1318
ETH<0.01%<$0.000001771,154.0926$0.1306
ETH<0.01%$0.1005911.2966$0.1304
ETH<0.01%$0.2523490.5159$0.1301
ETH<0.01%$7.220.0179$0.1291
ETH<0.01%$0.0399943.2167$0.1286
ETH<0.01%$399.580.0003167$0.1265
ETH<0.01%$0.0453822.7795$0.1261
ETH<0.01%$0.0222425.6402$0.1254
ETH<0.01%$5.570.0225$0.1254
ETH<0.01%$0.0324233.8631$0.1252
ETH<0.01%$1,807.740.00006856$0.1239
ETH<0.01%$0.2210120.5605$0.1238
ETH<0.01%$5.620.0218$0.1224
ETH<0.01%$0.001052115.5586$0.1215
ETH<0.01%$0.000423284.1209$0.1202
ETH<0.01%$9.040.0131$0.1186
ETH<0.01%$0.00000337,951.8624$0.1184
ETH<0.01%$0.2475250.4767$0.118
ETH<0.01%$0.0920051.2761$0.1174
ETH<0.01%$0.00752915.5293$0.1169
ETH<0.01%$0.00987711.8014$0.1165
ETH<0.01%$0.1758440.6544$0.115
ETH<0.01%$0.4223710.2707$0.1143
ETH<0.01%$52.270.00216726$0.1132
ETH<0.01%$0.0000244,750.0377$0.1131
ETH<0.01%$0.1141580.9851$0.1124
ETH<0.01%$7.590.0145$0.1103
ETH<0.01%$0.401840.274$0.11
ETH<0.01%$0.1857490.5918$0.1099
ETH<0.01%$0.00150372.6412$0.1091
ETH<0.01%$0.00436224.9046$0.1086
ETH<0.01%$0.00343131.4964$0.108
ETH<0.01%$0.0126458.4004$0.1062
ETH<0.01%$0.1390570.7622$0.1059
ETH<0.01%$0.6942690.1494$0.1037
ETH<0.01%$0.279360.3699$0.1033
ETH<0.01%$5,670.180.000018$0.102
ETH<0.01%$0.014686.8999$0.1012
ETH<0.01%$0.000762132.4962$0.101
ETH<0.01%$0.0015963.3821$0.1007
ETH<0.01%$1.070.0938$0.1006
BASE9.91%$0.99999417,924.691$17,924.58
BASE6.42%$1,816.396.3962$11,618.02
BASE0.73%$93,8400.0141$1,326.19
BASE0.36%$1,812.330.3587$650.14
BASE0.14%$0.998796255.4456$255.14
BASE0.09%$0.0502773,264.8499$164.15
BASE0.07%$0.000388329,755.6016$127.99
BASE0.04%$0.512205149.3679$76.51
BASE0.03%$159.8861$59.95
BASE0.03%$0.79711273.8811$58.89
BASE0.03%$0.169486344.7233$58.43
BASE0.03%$1.1447.6284$54.3
BASE0.03%$93,7940.00048886$45.85
BASE0.02%$0.0197292,155.9054$42.53
BASE0.02%$0.063582602.1076$38.28
BASE0.02%$0.00070844,372.7677$31.41
BASE0.01%$0.0323830.475$26.82
BASE0.01%$0.00048152,837.9584$25.42
BASE0.01%$0.118444196.1413$23.23
BASE0.01%$0.125618176.0115$22.11
BASE0.01%$0.0033516,019.0695$20.17
BASE0.01%$2.786.9492$19.32
BASE<0.01%$0.0167221,074.7568$17.97
BASE<0.01%$0.023017727.0442$16.73
BASE<0.01%$0.0033884,929.1345$16.7
BASE<0.01%$0.99995314.9043$14.9
BASE<0.01%$0.90606616.2471$14.72
BASE<0.01%$0.0098951,263.8608$12.51
BASE<0.01%$1.0510.5467$11.06
BASE<0.01%$0.052675209.0892$11.01
BASE<0.01%$0.065184153.9265$10.03
BASE<0.01%$2.923.2692$9.55
BASE<0.01%$52.110.179$9.33
BASE<0.01%$0.000013694,324.3603$9.03
BASE<0.01%$1,897.070.00404033$7.66
BASE<0.01%$0.011386645.669$7.35
BASE<0.01%$2.742.6084$7.15
BASE<0.01%$1.017.0225$7.07
BASE<0.01%$0.0039231,565.8388$6.14
BASE<0.01%$0.0000041,460,734.8111$5.45
BASE<0.01%$0.0000022,247,048.1251$5.36
BASE<0.01%<$0.000001132,654,268.469$5.33
BASE<0.01%$0.08267463.8405$5.28
BASE<0.01%$2,176.440.00217045$4.72
BASE<0.01%$0.023792198.1815$4.72
BASE<0.01%$0.07825959.0779$4.62
BASE<0.01%$167.580.0275$4.61
BASE<0.01%$0.018463238.0748$4.4
BASE<0.01%$0.027148159.8062$4.34
BASE<0.01%$1.033.9009$4.02
BASE<0.01%$0.0000016,418,932.3325$3.97
BASE<0.01%$93,7960.00004211$3.95
BASE<0.01%$0.00005175,068.0082$3.8
BASE<0.01%$0.0021561,678.1137$3.62
BASE<0.01%$2.91.2297$3.57
BASE<0.01%$0.05645661.5757$3.48
BASE<0.01%$0.026513128.2026$3.4
BASE<0.01%$0.741994.1039$3.05
BASE<0.01%$0.006281481.0144$3.02
BASE<0.01%$0.3161798.9835$2.84
BASE<0.01%$0.9991842.7124$2.71
BASE<0.01%$3.510.7702$2.7
BASE<0.01%$1,953.810.00126818$2.48
BASE<0.01%$0.05818341.279$2.4
BASE<0.01%$0.016432133.6434$2.2
BASE<0.01%$0.012188171.1882$2.09
BASE<0.01%$0.4694084.31$2.02
BASE<0.01%$11.9754$1.98
BASE<0.01%$0.5562253.47$1.93
BASE<0.01%$0.00008322,525.1212$1.88
BASE<0.01%$0.0000021,058,604.7697$1.87
BASE<0.01%$0.12158515.3998$1.87
BASE<0.01%$0.2690536.9118$1.86
BASE<0.01%$0.9996391.8376$1.84
BASE<0.01%$0.010388175.3071$1.82
BASE<0.01%$1.011.7405$1.76
BASE<0.01%$0.01912181.4842$1.56
BASE<0.01%$0.2465696.0059$1.48
BASE<0.01%$0.9785051.5098$1.48
BASE<0.01%$0.10024114.7255$1.48
BASE<0.01%$0.2301026.2781$1.44
BASE<0.01%$0.001721791.4477$1.36
BASE<0.01%$1,984.070.0006656$1.32
BASE<0.01%$0.7178651.7667$1.27
BASE<0.01%$0.3226623.9269$1.27
BASE<0.01%$191.760.00655677$1.26
BASE<0.01%$0.006164192.5401$1.19
BASE<0.01%$0.0009281,273.3759$1.18
BASE<0.01%$0.565371.9834$1.12
BASE<0.01%$0.4024572.4606$0.9902
BASE<0.01%$0.006543145.7387$0.9535
BASE<0.01%$0.000006157,723.0207$0.9526
BASE<0.01%$0.5729041.5052$0.8623
BASE<0.01%$0.003697212.0757$0.7839
BASE<0.01%$1.330.5689$0.7566
BASE<0.01%$0.003975185.1955$0.7362
BASE<0.01%$1,986.380.00036103$0.7171
BASE<0.01%$1,930.490.00032638$0.63
BASE<0.01%$0.000006112,340.0714$0.6268
BASE<0.01%$0.01889732.2172$0.6088
BASE<0.01%$1.570.387$0.6076
BASE<0.01%$1.160.4995$0.5794
BASE<0.01%$0.00153360.9773$0.5523
BASE<0.01%$0.000794666.684$0.5292
BASE<0.01%$0.1721842.8405$0.489
BASE<0.01%$0.000992492.6131$0.4888
BASE<0.01%$0.03072615.5708$0.4784
BASE<0.01%$0.001454325.4537$0.4731
BASE<0.01%$0.248171.8536$0.46
BASE<0.01%$0.001153395.7228$0.4564
BASE<0.01%$0.03109514.6364$0.4551
BASE<0.01%$93,6660.00000467$0.4374
BASE<0.01%$0.01204433.2319$0.4002
BASE<0.01%$0.0071655.8502$0.3998
BASE<0.01%$0.065415.8681$0.3838
BASE<0.01%$0.0000438,317.2126$0.3566
BASE<0.01%$0.003416102.9421$0.3516
BASE<0.01%$0.00132264.5337$0.3491
BASE<0.01%$0.208551.6001$0.3337
BASE<0.01%$0.063235.0812$0.3212
BASE<0.01%$0.1850861.6963$0.3139
BASE<0.01%$0.3249080.9337$0.3033
BASE<0.01%$0.000297976.6926$0.2899
BASE<0.01%$0.001151246.9686$0.2841
BASE<0.01%$0.0952842.7497$0.2619
BASE<0.01%$9.380.0272$0.255
BASE<0.01%$0.0292438.5273$0.2493
BASE<0.01%$0.5046220.4923$0.2484
BASE<0.01%$0.0915522.7027$0.2474
BASE<0.01%$0.2750120.8953$0.2462
BASE<0.01%$0.01863512.979$0.2418
BASE<0.01%$0.003665.9768$0.2375
BASE<0.01%$0.494890.4569$0.2261
BASE<0.01%$0.0633693.5613$0.2256
BASE<0.01%$0.000304721.8202$0.2194
BASE<0.01%$0.482540.4451$0.2147
BASE<0.01%$0.00001316,855.3737$0.2127
BASE<0.01%$0.5444270.3832$0.2086
BASE<0.01%<$0.000001229,446,096.4707$0.2065
BASE<0.01%$0.00741227.1706$0.2013
BASE<0.01%$0.000307641.6077$0.1969
BASE<0.01%$0.000569321.7787$0.1832
BASE<0.01%$0.01587610.3564$0.1644
BASE<0.01%$2,028.260.00007217$0.1463
BASE<0.01%$0.01269911.1968$0.1421
BASE<0.01%$0.0981891.4441$0.1418
BASE<0.01%$0.000235594.8641$0.14
BASE<0.01%<$0.0000016,990,446.9624$0.1328
BASE<0.01%$0.1134541.1288$0.128
BASE<0.01%$0.00376232.897$0.1237
BASE<0.01%$0.0380473.2463$0.1235
BASE<0.01%$10.1225$0.1225
BASE<0.01%$0.000732166.2995$0.1217
BASE<0.01%$0.000316355.9765$0.1126
BASE<0.01%$0.00826613.2075$0.1091
BASE<0.01%<$0.000001834,912.7265$0.1065
BASE<0.01%$0.0074114.1372$0.1047
BASE<0.01%$0.00168961.5124$0.1039
BASE<0.01%$0.1333580.7629$0.1017
ARB3.23%$0.0016633,510,169.7345$5,838.5
ARB
Ether (ETH)
1.58%$1,815.11.5732$2,855.5
ARB1.57%$12,838.8888$2,838.89
ARB1.15%$12,070.8176$2,070.82
ARB0.26%$1462.9804$462.98
ARB0.23%$93,6870.00436076$408.55
ARB0.14%$1,812.340.1408$255.1
ARB0.09%$0.332403468.8203$155.84
ARB0.06%$0.999709114.9767$114.94
ARB0.02%$167.440.1833$30.69
ARB0.02%$15.161.9533$29.61
ARB0.01%$15.121.2355$18.68
ARB<0.01%$3.513.746$13.15
ARB<0.01%$93,6630.00010545$9.88
ARB<0.01%$2,176.690.00345274$7.52
ARB<0.01%$1,809.650.00400491$7.25
ARB<0.01%$2.742.5651$7.03
ARB<0.01%$15.3106$5.31
ARB<0.01%$1,897.030.00262933$4.99
ARB<0.01%$0.21521620.3793$4.39
ARB<0.01%$93,2710.00004669$4.35
ARB<0.01%$0.27871313.6759$3.81
ARB<0.01%$1.013.5176$3.54
ARB<0.01%$178.640.0191$3.41
ARB<0.01%$0.004874617.2977$3.01
ARB<0.01%$0.08252933.1153$2.73
ARB<0.01%$6.030.4097$2.47
ARB<0.01%$0.683233.1698$2.17
ARB<0.01%$0.09238522.7098$2.1
ARB<0.01%$0.999372.0397$2.04
ARB<0.01%$93,5490.00002158$2.02
ARB<0.01%$0.349835.3492$1.87
ARB<0.01%$0.01507120.2196$1.81
ARB<0.01%$0.00002475,208.3862$1.78
ARB<0.01%$0.06093529.0092$1.77
ARB<0.01%$1.561.0749$1.68
ARB<0.01%$93,7810.00001757$1.65
ARB<0.01%$0.02057778.7149$1.62
ARB<0.01%$0.5722122.6844$1.54
ARB<0.01%$0.02316259.7208$1.38
ARB<0.01%$11.3818$1.38
ARB<0.01%$1.181.0823$1.28
ARB<0.01%$0.1799795.3779$0.9679
ARB<0.01%$0.000009103,677.2535$0.9507
ARB<0.01%$5.620.158$0.8879
ARB<0.01%$0.02976528.2771$0.8416
ARB<0.01%$0.454611.5129$0.6877
ARB<0.01%$0.8208710.7152$0.587
ARB<0.01%$0.002099273.4406$0.5738
ARB<0.01%$15.030.0354$0.5327
ARB<0.01%$382.630.00138109$0.5284
ARB<0.01%$1,814.610.00027418$0.4975
ARB<0.01%$0.9998790.4941$0.494
ARB<0.01%$0.9996260.4558$0.4556
ARB<0.01%$2.10.2129$0.447
ARB<0.01%$93,7060.00000457$0.4282
ARB<0.01%$91,8480.00000444$0.4078
ARB<0.01%$0.03251212.0191$0.3907
ARB<0.01%$0.03725510.4472$0.3892
ARB<0.01%$2,041.990.0001904$0.3887
ARB<0.01%$1.580.2086$0.3295
ARB<0.01%$2.030.159$0.3227
ARB<0.01%$1.950.1565$0.3051
ARB<0.01%$0.2030571.4577$0.2959
ARB<0.01%$0.9999370.2805$0.2804
ARB<0.01%$0.00725637.494$0.272
ARB<0.01%$0.0328458.1855$0.2688
ARB<0.01%$43.550.00563574$0.2454
ARB<0.01%$3.410.0704$0.2398
ARB<0.01%$0.00457151.4042$0.2349
ARB<0.01%$0.0001072,169.0862$0.2328
ARB<0.01%$0.6766810.3266$0.221
ARB<0.01%$0.002088102.0577$0.2131
ARB<0.01%$0.01491913.8994$0.2073
ARB<0.01%$0.00001611,906.6885$0.1888
ARB<0.01%$0.0318835.5063$0.1755
ARB<0.01%$10.1604$0.1604
ARB<0.01%$0.9999370.1594$0.1594
ARB<0.01%$0.3688830.3825$0.141
ARB<0.01%$0.0448483.0944$0.1387
ARB<0.01%$0.00718715.3581$0.1103
POL1.40%$12,536.6607$2,536.66
POL0.87%$11,580.2315$1,580.23
POL0.72%$0.2221195,832.7775$1,295.57
POL0.45%$1816.0025$816
POL0.11%$93,6220.00214402$200.73
POL0.02%$1,811.550.019$34.35
POL0.02%$0.0061934,588.27$28.41
POL0.01%$125.738$25.74
POL0.01%$167.030.1275$21.29
POL0.01%$15.121.2767$19.3
POL<0.01%$152.150.0794$12.08
POL<0.01%$1.148.3453$9.51
POL<0.01%$1.148.3453$9.51
POL<0.01%$0.17486429.9863$5.24
POL<0.01%$0.0045711,059.5758$4.84
POL<0.01%$0.05775378.0432$4.51
POL<0.01%$4.640.9667$4.49
POL<0.01%$93,5490.00004597$4.3
POL<0.01%$0.2224819.2541$4.28
POL<0.01%$0.3379718.522$2.88
POL<0.01%$0.004868587.3118$2.86
POL<0.01%$0.007047396.138$2.79
POL<0.01%$0.000015186,488.6311$2.71
POL<0.01%$0.012257207.6311$2.54
POL<0.01%$0.2857488.2242$2.35
POL<0.01%$4.920.4491$2.21
POL<0.01%$0.2283969.3523$2.14
POL<0.01%<$0.000001284,689,434.7625$1.71
POL<0.01%$14.850.1143$1.7
POL<0.01%$0.0003274,866.4474$1.59
POL<0.01%$0.7605462.0385$1.55
POL<0.01%$0.07258118.2975$1.33
POL<0.01%$0.07015214.8106$1.04
POL<0.01%$0.001218813.1144$0.9904
POL<0.01%$0.00192477.4042$0.9166
POL<0.01%$2,176.160.00041553$0.9042
POL<0.01%$0.6814931.2756$0.8693
POL<0.01%$0.7418031.1426$0.8476
POL<0.01%$0.02535431.0647$0.7876
POL<0.01%$0.5647861.3942$0.7874
POL<0.01%$3,338.750.00022446$0.7494
POL<0.01%$0.000866861.667$0.7463
POL<0.01%$0.3005252.23$0.6701
POL<0.01%$6.030.0962$0.58
POL<0.01%$0.000004135,901.0687$0.5585
POL<0.01%$167.230.00313511$0.5242
POL<0.01%$93,6550.00000495$0.4635
POL<0.01%$0.00962846.515$0.4478
POL<0.01%$0.0000646,532.4869$0.4176
POL<0.01%$178.640.00209745$0.3746
POL<0.01%$0.02846413.1404$0.374
POL<0.01%$1.140.3275$0.3733
POL<0.01%$0.001737201.6692$0.3502
POL<0.01%$0.000484719.7553$0.3485
POL<0.01%$0.8190280.4032$0.3302
POL<0.01%$0.2739871.1966$0.3278
POL<0.01%$10.3256$0.3256
POL<0.01%$1,510.860.00021503$0.3248
POL<0.01%$0.0923673.2425$0.2994
POL<0.01%$0.01224123.517$0.2878
POL<0.01%$0.0002471,141.2746$0.2824
POL<0.01%$1,814.610.0001465$0.2658
POL<0.01%$0.0001971,242.9213$0.2454
POL<0.01%$4.460.0549$0.245
POL<0.01%$0.0345876.9952$0.2419
POL<0.01%$0.0359686.5684$0.2362
POL<0.01%$12.720.0183$0.2331
POL<0.01%$0.0451144.9712$0.2242
POL<0.01%$1.220.1785$0.2178
POL<0.01%$0.2028251.0483$0.2126
POL<0.01%$22.760.00796155$0.1812
POL<0.01%$15.030.012$0.1809
POL<0.01%$0.001376131.3136$0.1806
POL<0.01%$0.255470.663$0.1693
POL<0.01%$0.00000268,250$0.1627
POL<0.01%$43.540.00367138$0.1598
POL<0.01%$0.1266411.1112$0.1407
POL<0.01%$0.2568130.546$0.1402
POL<0.01%$0.0060622.2406$0.1347
POL<0.01%$2.740.0491$0.1345
POL<0.01%$0.0180567.3006$0.1318
POL<0.01%<$0.00000122,785,117.9437$0.1253
POL<0.01%$0.1109081.1235$0.1246
POL<0.01%$0.00723316.9871$0.1228
POL<0.01%$0.000122939.9547$0.1144
POL<0.01%$0.9982550.1119$0.1117
POL<0.01%$0.0000166,873.9472$0.1083
POL<0.01%$0.00227744.6266$0.1016
POL<0.01%$0.00345129.3617$0.1013
OP1.25%$0.9999682,268.0841$2,268.01
OP0.60%$11,092.3715$1,092.37
OP0.60%$1,816.420.5957$1,081.98
OP0.21%$0.999968387.6499$387.64
OP0.11%$0.806439246.9079$199.12
OP0.06%$0.761699150.0792$114.32
OP0.05%$93,6460.00091527$85.71
OP0.05%$1,812.340.0465$84.26
OP<0.01%$2,176.630.00716216$15.59
OP<0.01%$0.86825312.7728$11.09
OP<0.01%$110.4918$10.49
OP<0.01%$15.150.5911$8.95
OP<0.01%$167.20.0403$6.73
OP<0.01%$0.7422398.2222$6.1
OP<0.01%$0.05032979.8589$4.02
OP<0.01%$2.741.4524$3.98
OP<0.01%$1,897.260.00123783$2.35
OP<0.01%$0.7192693.1103$2.24
OP<0.01%$93,7110.00002159$2.02
OP<0.01%$10.911$0.9119
OP<0.01%$0.2030682.5138$0.5104
OP<0.01%$0.02512720.0983$0.505
OP<0.01%$2,042.560.0002442$0.4987
OP<0.01%$1,725.190.00027607$0.4762
OP<0.01%$0.9993620.4274$0.4271
OP<0.01%$0.0825634.9983$0.4126
OP<0.01%$0.0503297.8073$0.3929
OP<0.01%$1.180.2637$0.3111
OP<0.01%$2,029.060.0001151$0.2335
OP<0.01%$15.030.0153$0.2306
OP<0.01%$1.060.1479$0.1573
OP<0.01%$10.1346$0.1349
OP<0.01%$1.020.127$0.1299
OP<0.01%$1,449.390.00008227$0.1192
OP<0.01%$0.3229620.3254$0.105
AVAX0.82%$0.9999861,477.5458$1,477.53
AVAX0.56%$22.7844.4948$1,013.74
AVAX0.12%$1214.5349$214.56
AVAX0.04%$164.536$64.54
AVAX0.03%$0.201986259.3317$52.38
AVAX0.03%$0.00000411,140,034.9721$46.23
AVAX0.02%$1,812.330.0235$42.55
AVAX0.02%$93,8230.00042475$39.85
AVAX<0.01%$22.740.5457$12.41
AVAX<0.01%$0.0000018,797,901.7071$6.33
AVAX<0.01%$93,6660.00005064$4.74
AVAX<0.01%$15.10.2675$4.04
AVAX<0.01%$167.630.0134$2.25
AVAX<0.01%$0.0005883,475.1875$2.04
AVAX<0.01%$0.06059832.5165$1.97
AVAX<0.01%$15.180.1066$1.62
AVAX<0.01%$0.9999861.5465$1.55
AVAX<0.01%$178.440.00640031$1.14
AVAX<0.01%$3.490.3094$1.08
AVAX<0.01%$10.8528$0.8528
AVAX<0.01%$0.1477715.7483$0.8494
AVAX<0.01%$0.9999370.5592$0.5591
AVAX<0.01%$0.00804261.5114$0.4946
AVAX<0.01%$0.00905652.1588$0.4723
AVAX<0.01%$0.00498272.8567$0.3629
AVAX<0.01%$0.9996380.3237$0.3236
AVAX<0.01%<$0.00000133,989,918.4134$0.2821
AVAX<0.01%$0.00034758.1653$0.2577
AVAX<0.01%$2.740.0832$0.2278
AVAX<0.01%<$0.0000012,714,238.8286$0.1813
AVAX<0.01%$15.120.00943768$0.1426
AVAX<0.01%$93,6660.0000014$0.1311
AVAX<0.01%$0.00809114.8716$0.1203
UNI0.02%$1,815.670.0208$37.81
UNI<0.01%$0.99999416.2077$16.21
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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