BTT Price: $0.00000064 (-0.28%)

Contract

0x8f7BCcCc0EfeCa85b103D9783055704E37e40F2C
Transaction Hash
Method
Block
From
To
Set Trusted490234242025-02-23 7:45:5459 days ago1740296754IN
0x8f7BCcCc...E37e40F2C
0 BTT17.70961011370,130
Update Route Pro...490218202025-02-23 6:50:4259 days ago1740293442IN
0x8f7BCcCc...E37e40F2C
0 BTT10.72747779370,130
Transfer Ownersh...490175932025-02-23 4:25:2459 days ago1740284724IN
0x8f7BCcCc...E37e40F2C
0 BTT17.66926594370,130
Accept Ownership490175882025-02-23 4:25:1459 days ago1740284714IN
0x8f7BCcCc...E37e40F2C
0 BTT6.6919504370,130
Transfer Ownersh...489010122025-02-20 9:37:5462 days ago1740044274IN
0x8f7BCcCc...E37e40F2C
0 BTT14.3214300,000

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TokenChomper

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at bttcscan.com on 2025-02-24
*/

// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >=0.8.0 ^0.8.0;

// lib/openzeppelin-contracts/contracts/utils/Context.sol

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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

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

// src/interfaces/IERC20.sol

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

/**
 * @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);
}

// src/interfaces/IRouteProcessor.sol

interface IRouteProcessor {
  
  struct RouteProcessorData {
        address tokenIn;
        uint256 amountIn;
        address tokenOut;
        uint256 amountOutMin;
        address to;
        bytes route;
  }
  
  function processRoute(
    address tokenIn,
    uint256 amountIn,
    address tokenOut,
    uint256 amountOutMin,
    address to,
    bytes memory route
  ) external payable returns (uint256 amountOut);
}

// lib/openzeppelin-contracts/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

// lib/openzeppelin-contracts/contracts/access/Ownable2Step.sol

// OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol)

/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() external {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}

// src/Auth.sol

abstract contract Auth is Ownable2Step {

    event SetTrusted(address indexed user, bool isTrusted);

    mapping(address => bool) public trusted;

    error OnlyTrusted();

    modifier onlyTrusted() {
        if (!trusted[msg.sender]) revert OnlyTrusted();
        _;
    }

    constructor(address trustedUser) {
        trusted[trustedUser] = true;
        emit SetTrusted(trustedUser, true);
    }

    function setTrusted(address user, bool isTrusted) external onlyOwner {
        trusted[user] = isTrusted;
        emit SetTrusted(user, isTrusted);
    }

}

// src/TokenChomper.sol

/// @title TokenChomper for selling accumulated tokens for weth or other base assets
/// @notice This contract will be used for fee collection and breakdown
/// @dev Uses Auth contract for 2-step owner process and trust operators to guard functions
contract TokenChomper is Auth {
  address public immutable weth;
  IRouteProcessor public routeProcessor;

  bytes4 private constant TRANSFER_SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)')));

  error TransferFailed();

  constructor(
    address _operator,
    address _routeProcessor,
    address _weth
  ) Auth(_operator) {
    // initial owner is msg.sender
    routeProcessor = IRouteProcessor(_routeProcessor);
    weth = _weth;
  }

  /// @notice Updates the route processor to be used for swapping tokens
  /// @dev make sure new route processor is backwards compatiable (should be)
  /// @param _routeProcessor The address of the new route processor
  function updateRouteProcessor(address _routeProcessor) external onlyOwner {
    routeProcessor = IRouteProcessor(_routeProcessor);
  }
  
  /// @notice Processes a route selling any of the tokens in TokenChomper for an output token
  /// @dev can be called by operators
  /// @param tokenIn The address of the token to be sold
  /// @param amountIn The amount of the token to be sold
  /// @param tokenOut The address of the token to be bought
  /// @param amoutOutMin The minimum amount of the token to be bought (slippage protection)
  /// @param route The route to be used for swapping
  function processRoute(
    address tokenIn,
    uint256 amountIn,
    address tokenOut,
    uint256 amoutOutMin,
    bytes memory route
  ) external onlyTrusted {
    // process route to any output token, slippage will be handled by the route processor
    _safeTransfer(tokenIn, address(routeProcessor), amountIn);
    routeProcessor.processRoute(
      tokenIn, amountIn, tokenOut, amoutOutMin, address(this), route
    ); 
  }

  /// @notice Withdraw any token or eth from the contract
  /// @dev can only be called by owner
  /// @param token The address of the token to be withdrawn, 0x0 for eth
  /// @param to The address to send the token to
  /// @param _value The amount of the token to be withdrawn
  function withdraw(address token, address to, uint256 _value) onlyOwner external {
    if (token != address(0)) {
      _safeTransfer(token, to, _value);
    } 
    else {
      (bool success, ) = to.call{value: _value}("");
      require(success);
    }
  }
  
  function _safeTransfer(address token, address to, uint value) internal {
    (bool success, bytes memory data) = token.call(abi.encodeWithSelector(TRANSFER_SELECTOR, to, value));
    if (!success || (data.length != 0 && !abi.decode(data, (bool)))) revert TransferFailed();
  }

  /// @notice In case we receive any unwrapped eth (native token) we can call this
  /// @dev operators can call this 
  function wrapEth() onlyTrusted external {
    weth.call{value: address(this).balance}("");
  }

  /// @notice Available function in case we need to do any calls that aren't supported by the contract (unwinding lp positions, etc.)
  /// @dev can only be called by owner
  /// @param to The address to send the call to
  /// @param _value The amount of eth to send with the call
  /// @param data The data to be sent with the call
  function doAction(address to, uint256 _value, bytes memory data) onlyOwner external {
    (bool success, ) = to.call{value: _value}(data);
    require(success);
  }

  receive() external payable {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"address","name":"_routeProcessor","type":"address"},{"internalType":"address","name":"_weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"OnlyTrusted","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"isTrusted","type":"bool"}],"name":"SetTrusted","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"doAction","outputs":[],"stateMutability":"nonpayable","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":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint256","name":"amoutOutMin","type":"uint256"},{"internalType":"bytes","name":"route","type":"bytes"}],"name":"processRoute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routeProcessor","outputs":[{"internalType":"contract IRouteProcessor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"isTrusted","type":"bool"}],"name":"setTrusted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"trusted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_routeProcessor","type":"address"}],"name":"updateRouteProcessor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wrapEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040516200103638038062001036833981016040819052620000349162000159565b826200004033620000c2565b6001600160a01b038116600081815260026020908152604091829020805460ff1916600190811790915591519182527f878d105ed19c01e992a54459c2f04ba19432ac45600b42ce340d034272207436910160405180910390a250600380546001600160a01b0319166001600160a01b039384161790551660805250620001a3565b600180546001600160a01b0319169055620000e981620000ec602090811b6200082217901c565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200015457600080fd5b919050565b6000806000606084860312156200016f57600080fd5b6200017a846200013c565b92506200018a602085016200013c565b91506200019a604085016200013c565b90509250925092565b608051610e71620001c56000396000818160ff015261062e0152610e716000f3fe6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063dae9ab7211610059578063dae9ab7214610277578063e30c3978146102a4578063f2fde38b146102cf578063f32a12ac146102ef57600080fd5b80638da5cb5b14610217578063b081b4eb14610242578063d9caed121461025757600080fd5b80636e9821c2116100bb5780636e9821c21461018d578063715018a6146101cd57806377a93894146101e257806379ba50971461020257600080fd5b80633fc8cef3146100ed57806352f5df801461014b57806354a0af171461016d57600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b506101217f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561015757600080fd5b5061016b610166366004610bc1565b61030f565b005b34801561017957600080fd5b5061016b610188366004610c33565b610428565b34801561019957600080fd5b506101bd6101a8366004610c8a565b60026020526000908152604090205460ff1681565b6040519015158152602001610142565b3480156101d957600080fd5b5061016b6104ae565b3480156101ee57600080fd5b5061016b6101fd366004610c8a565b6104c2565b34801561020e57600080fd5b5061016b610511565b34801561022357600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610121565b34801561024e57600080fd5b5061016b6105cb565b34801561026357600080fd5b5061016b610272366004610cac565b61068f565b34801561028357600080fd5b506003546101219073ffffffffffffffffffffffffffffffffffffffff1681565b3480156102b057600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff16610121565b3480156102db57600080fd5b5061016b6102ea366004610c8a565b6106e0565b3480156102fb57600080fd5b5061016b61030a366004610cf6565b610790565b3360009081526002602052604090205460ff16610358576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035461037d90869073ffffffffffffffffffffffffffffffffffffffff1686610897565b6003546040517f2646478b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690632646478b906103dd90889088908890889030908990600401610d59565b6020604051808303816000875af11580156103fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104209190610de9565b505050505050565b610430610a0c565b60008373ffffffffffffffffffffffffffffffffffffffff1683836040516104589190610e02565b60006040518083038185875af1925050503d8060008114610495576040519150601f19603f3d011682016040523d82523d6000602084013e61049a565b606091505b50509050806104a857600080fd5b50505050565b6104b6610a0c565b6104c06000610a8d565b565b6104ca610a0c565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600154339073ffffffffffffffffffffffffffffffffffffffff1681146105bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105c881610a8d565b50565b3360009081526002602052604090205460ff16610614576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016904790600081818185875af1925050503d806000811461068a576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b505050565b610697610a0c565b73ffffffffffffffffffffffffffffffffffffffff8316156106be5761068a838383610897565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610458565b6106e8610a0c565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116811790915561074b60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610798610a0c565b73ffffffffffffffffffffffffffffffffffffffff821660008181526002602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f878d105ed19c01e992a54459c2f04ba19432ac45600b42ce340d034272207436910160405180910390a25050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790529151600092839287169161095e9190610e02565b6000604051808303816000865af19150503d806000811461099b576040519150601f19603f3d011682016040523d82523d6000602084013e6109a0565b606091505b50915091508115806109ce57508051158015906109ce5750808060200190518101906109cc9190610e1e565b155b15610a05576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146104c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b6565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556105c881610822565b803573ffffffffffffffffffffffffffffffffffffffff81168114610ae257600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112610b2757600080fd5b813567ffffffffffffffff80821115610b4257610b42610ae7565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715610b8857610b88610ae7565b81604052838152866020858801011115610ba157600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a08688031215610bd957600080fd5b610be286610abe565b945060208601359350610bf760408701610abe565b925060608601359150608086013567ffffffffffffffff811115610c1a57600080fd5b610c2688828901610b16565b9150509295509295909350565b600080600060608486031215610c4857600080fd5b610c5184610abe565b925060208401359150604084013567ffffffffffffffff811115610c7457600080fd5b610c8086828701610b16565b9150509250925092565b600060208284031215610c9c57600080fd5b610ca582610abe565b9392505050565b600080600060608486031215610cc157600080fd5b610cca84610abe565b9250610cd860208501610abe565b9150604084013590509250925092565b80151581146105c857600080fd5b60008060408385031215610d0957600080fd5b610d1283610abe565b91506020830135610d2281610ce8565b809150509250929050565b60005b83811015610d48578181015183820152602001610d30565b838111156104a85750506000910152565b600073ffffffffffffffffffffffffffffffffffffffff8089168352876020840152808716604084015285606084015280851660808401525060c060a083015282518060c0840152610db28160e0850160208701610d2d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160e001979650505050505050565b600060208284031215610dfb57600080fd5b5051919050565b60008251610e14818460208701610d2d565b9190910192915050565b600060208284031215610e3057600080fd5b8151610ca581610ce856fea2646970667358221220764fa9018c34aaea1950f8eb9365275cbed1c9cda82f211b42f5db907da382ce64736f6c634300080a00330000000000000000000000004bb4c1b0745ef7b4642feeccd0740dec417ca0a000000000000000000000000085cd07ea01423b1e937929b44e4ad8c40bbb5e7100000000000000000000000023181f21dea5936e24163ffaba4ea3b316b57f3c

Deployed Bytecode

0x6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063dae9ab7211610059578063dae9ab7214610277578063e30c3978146102a4578063f2fde38b146102cf578063f32a12ac146102ef57600080fd5b80638da5cb5b14610217578063b081b4eb14610242578063d9caed121461025757600080fd5b80636e9821c2116100bb5780636e9821c21461018d578063715018a6146101cd57806377a93894146101e257806379ba50971461020257600080fd5b80633fc8cef3146100ed57806352f5df801461014b57806354a0af171461016d57600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b506101217f00000000000000000000000023181f21dea5936e24163ffaba4ea3b316b57f3c81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561015757600080fd5b5061016b610166366004610bc1565b61030f565b005b34801561017957600080fd5b5061016b610188366004610c33565b610428565b34801561019957600080fd5b506101bd6101a8366004610c8a565b60026020526000908152604090205460ff1681565b6040519015158152602001610142565b3480156101d957600080fd5b5061016b6104ae565b3480156101ee57600080fd5b5061016b6101fd366004610c8a565b6104c2565b34801561020e57600080fd5b5061016b610511565b34801561022357600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610121565b34801561024e57600080fd5b5061016b6105cb565b34801561026357600080fd5b5061016b610272366004610cac565b61068f565b34801561028357600080fd5b506003546101219073ffffffffffffffffffffffffffffffffffffffff1681565b3480156102b057600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff16610121565b3480156102db57600080fd5b5061016b6102ea366004610c8a565b6106e0565b3480156102fb57600080fd5b5061016b61030a366004610cf6565b610790565b3360009081526002602052604090205460ff16610358576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035461037d90869073ffffffffffffffffffffffffffffffffffffffff1686610897565b6003546040517f2646478b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690632646478b906103dd90889088908890889030908990600401610d59565b6020604051808303816000875af11580156103fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104209190610de9565b505050505050565b610430610a0c565b60008373ffffffffffffffffffffffffffffffffffffffff1683836040516104589190610e02565b60006040518083038185875af1925050503d8060008114610495576040519150601f19603f3d011682016040523d82523d6000602084013e61049a565b606091505b50509050806104a857600080fd5b50505050565b6104b6610a0c565b6104c06000610a8d565b565b6104ca610a0c565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600154339073ffffffffffffffffffffffffffffffffffffffff1681146105bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105c881610a8d565b50565b3360009081526002602052604090205460ff16610614576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000023181f21dea5936e24163ffaba4ea3b316b57f3c16904790600081818185875af1925050503d806000811461068a576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b505050565b610697610a0c565b73ffffffffffffffffffffffffffffffffffffffff8316156106be5761068a838383610897565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610458565b6106e8610a0c565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116811790915561074b60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610798610a0c565b73ffffffffffffffffffffffffffffffffffffffff821660008181526002602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f878d105ed19c01e992a54459c2f04ba19432ac45600b42ce340d034272207436910160405180910390a25050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790529151600092839287169161095e9190610e02565b6000604051808303816000865af19150503d806000811461099b576040519150601f19603f3d011682016040523d82523d6000602084013e6109a0565b606091505b50915091508115806109ce57508051158015906109ce5750808060200190518101906109cc9190610e1e565b155b15610a05576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146104c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b6565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556105c881610822565b803573ffffffffffffffffffffffffffffffffffffffff81168114610ae257600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112610b2757600080fd5b813567ffffffffffffffff80821115610b4257610b42610ae7565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715610b8857610b88610ae7565b81604052838152866020858801011115610ba157600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a08688031215610bd957600080fd5b610be286610abe565b945060208601359350610bf760408701610abe565b925060608601359150608086013567ffffffffffffffff811115610c1a57600080fd5b610c2688828901610b16565b9150509295509295909350565b600080600060608486031215610c4857600080fd5b610c5184610abe565b925060208401359150604084013567ffffffffffffffff811115610c7457600080fd5b610c8086828701610b16565b9150509250925092565b600060208284031215610c9c57600080fd5b610ca582610abe565b9392505050565b600080600060608486031215610cc157600080fd5b610cca84610abe565b9250610cd860208501610abe565b9150604084013590509250925092565b80151581146105c857600080fd5b60008060408385031215610d0957600080fd5b610d1283610abe565b91506020830135610d2281610ce8565b809150509250929050565b60005b83811015610d48578181015183820152602001610d30565b838111156104a85750506000910152565b600073ffffffffffffffffffffffffffffffffffffffff8089168352876020840152808716604084015285606084015280851660808401525060c060a083015282518060c0840152610db28160e0850160208701610d2d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160e001979650505050505050565b600060208284031215610dfb57600080fd5b5051919050565b60008251610e14818460208701610d2d565b9190910192915050565b600060208284031215610e3057600080fd5b8151610ca581610ce856fea2646970667358221220764fa9018c34aaea1950f8eb9365275cbed1c9cda82f211b42f5db907da382ce64736f6c634300080a0033

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

0000000000000000000000004bb4c1b0745ef7b4642feeccd0740dec417ca0a000000000000000000000000085cd07ea01423b1e937929b44e4ad8c40bbb5e7100000000000000000000000023181f21dea5936e24163ffaba4ea3b316b57f3c

-----Decoded View---------------
Arg [0] : _operator (address): 0x4bb4c1B0745ef7B4642fEECcd0740deC417ca0a0
Arg [1] : _routeProcessor (address): 0x85CD07Ea01423b1E937929B44E4Ad8c40BbB5E71
Arg [2] : _weth (address): 0x23181F21DEa5936e24163FFABa4Ea3B316B57f3C

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000004bb4c1b0745ef7b4642feeccd0740dec417ca0a0
Arg [1] : 00000000000000000000000085cd07ea01423b1e937929b44e4ad8c40bbb5e71
Arg [2] : 00000000000000000000000023181f21dea5936e24163ffaba4ea3b316b57f3c


Deployed Bytecode Sourcemap

9775:3355:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9810:29;;;;;;;;;;;;;;;;;;190:42:1;178:55;;;160:74;;148:2;133:18;9810:29:0;;;;;;;;11075:441;;;;;;;;;;-1:-1:-1;11075:441:0;;;;;:::i;:::-;;:::i;:::-;;12925:167;;;;;;;;;;-1:-1:-1;12925:167:0;;;;;:::i;:::-;;:::i;9015:39::-;;;;;;;;;;-1:-1:-1;9015:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2851:14:1;;2844:22;2826:41;;2814:2;2799:18;9015:39:0;2686:187:1;6086:103:0;;;;;;;;;;;;;:::i;10473:136::-;;;;;;;;;;-1:-1:-1;10473:136:0;;;;;:::i;:::-;;:::i;8668:210::-;;;;;;;;;;;;;:::i;5438:87::-;;;;;;;;;;-1:-1:-1;5484:7:0;5511:6;;;5438:87;;12485:96;;;;;;;;;;;;;:::i;11806:265::-;;;;;;;;;;-1:-1:-1;11806:265:0;;;;;:::i;:::-;;:::i;9844:37::-;;;;;;;;;;-1:-1:-1;9844:37:0;;;;;;;;7756:101;;;;;;;;;;-1:-1:-1;7836:13:0;;;;7756:101;;8056:181;;;;;;;;;;-1:-1:-1;8056:181:0;;;;;:::i;:::-;;:::i;9331:156::-;;;;;;;;;;-1:-1:-1;9331:156:0;;;;;:::i;:::-;;:::i;11075:441::-;9138:10;9130:19;;;;:7;:19;;;;;;;;9125:46;;9158:13;;;;;;;;;;;;;;9125:46;11371:14:::1;::::0;11340:57:::1;::::0;11354:7;;11371:14:::1;;11388:8:::0;11340:13:::1;:57::i;:::-;11404:14;::::0;:105:::1;::::0;;;;:14:::1;::::0;;::::1;::::0;:27:::1;::::0;:105:::1;::::0;11440:7;;11449:8;;11459;;11469:11;;11490:4:::1;::::0;11497:5;;11404:105:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11075:441:::0;;;;;:::o;12925:167::-;5324:13;:11;:13::i;:::-;13017:12:::1;13035:2;:7;;13050:6;13058:4;13035:28;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13016:47;;;13078:7;13070:16;;;::::0;::::1;;13009:83;12925:167:::0;;;:::o;6086:103::-;5324:13;:11;:13::i;:::-;6151:30:::1;6178:1;6151:18;:30::i;:::-;6086:103::o:0;10473:136::-;5324:13;:11;:13::i;:::-;10554:14:::1;:49:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;10473:136::o;8668:210::-;7836:13;;818:10;;8763:24;7836:13;8763:24;;8755:78;;;;;;;5735:2:1;8755:78:0;;;5717:21:1;5774:2;5754:18;;;5747:30;5813:34;5793:18;;;5786:62;5884:11;5864:18;;;5857:39;5913:19;;8755:78:0;;;;;;;;;8844:26;8863:6;8844:18;:26::i;:::-;8704:174;8668:210::o;12485:96::-;9138:10;9130:19;;;;:7;:19;;;;;;;;9125:46;;9158:13;;;;;;;;;;;;;;9125:46;12532:43:::1;::::0;:9:::1;:4;:9;::::0;12549:21:::1;::::0;12532:43:::1;::::0;;;12549:21;12532:9;:43:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12485:96::o:0;12532:43::-:1;-1:-1:-1::0;;;12485:96:0:o;11806:265::-;5324:13;:11;:13::i;:::-;11897:19:::1;::::0;::::1;::::0;11893:173:::1;;11927:32;11941:5;11948:2;11952:6;11927:13;:32::i;11893:173::-;11989:12;12007:2;:7;;12022:6;12007:26;;;5943:205:1::0;8056:181:0;5324:13;:11;:13::i;:::-;8146::::1;:24:::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;8211:7:::1;5484::::0;5511:6;;;;5438:87;8211:7:::1;8186:43;;;;;;;;;;;;8056:181:::0;:::o;9331:156::-;5324:13;:11;:13::i;:::-;9411::::1;::::0;::::1;;::::0;;;:7:::1;:13;::::0;;;;;;;;:25;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;9452:27;;2826:41:1;;;9452:27:0::1;::::0;2799:18:1;9452:27:0::1;;;;;;;9331:156:::0;;:::o;6705:191::-;6779:16;6798:6;;;6815:17;;;;;;;;;;6848:40;;6798:6;;;;;;;6848:40;;6779:16;6848:40;6768:128;6705:191;:::o;12079:279::-;9949:34;;;;;;;;;;;;;;;;;12204:52;;12193:10;6345:55:1;;;12204:52:0;;;6327:74:1;6417:18;;;;6410:34;;;12204:52:0;;;;;;;;;;6300:18:1;;;;12204:52:0;;;;;;;;;;;;;12193:64;;-1:-1:-1;;;;12193:10:0;;;:64;;12204:52;12193:64;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12157:100;;;;12269:7;12268:8;:59;;;-1:-1:-1;12281:11:0;;:16;;;;:45;;;12313:4;12302:24;;;;;;;;;;;;:::i;:::-;12301:25;12281:45;12264:88;;;12336:16;;;;;;;;;;;;;;12264:88;12150:208;;12079:279;;;:::o;5603:132::-;5484:7;5511:6;5667:23;5511:6;818:10;5667:23;5659:68;;;;;;;6907:2:1;5659:68:0;;;6889:21:1;;;6926:18;;;6919:30;6985:34;6965:18;;;6958:62;7037:18;;5659:68:0;6705:356:1;8427:156:0;8517:13;8510:20;;;;;;8541:34;8566:8;8541:24;:34::i;245:196:1:-;313:20;;373:42;362:54;;352:65;;342:93;;431:1;428;421:12;342:93;245:196;;;:::o;446:184::-;498:77;495:1;488:88;595:4;592:1;585:15;619:4;616:1;609:15;635:777;677:5;730:3;723:4;715:6;711:17;707:27;697:55;;748:1;745;738:12;697:55;784:6;771:20;810:18;847:2;843;840:10;837:36;;;853:18;;:::i;:::-;987:2;981:9;1049:4;1041:13;;892:66;1037:22;;;1061:2;1033:31;1029:40;1017:53;;;1085:18;;;1105:22;;;1082:46;1079:72;;;1131:18;;:::i;:::-;1171:10;1167:2;1160:22;1206:2;1198:6;1191:18;1252:3;1245:4;1240:2;1232:6;1228:15;1224:26;1221:35;1218:55;;;1269:1;1266;1259:12;1218:55;1333:2;1326:4;1318:6;1314:17;1307:4;1299:6;1295:17;1282:54;1380:1;1373:4;1368:2;1360:6;1356:15;1352:26;1345:37;1400:6;1391:15;;;;;;635:777;;;;:::o;1417:606::-;1521:6;1529;1537;1545;1553;1606:3;1594:9;1585:7;1581:23;1577:33;1574:53;;;1623:1;1620;1613:12;1574:53;1646:29;1665:9;1646:29;:::i;:::-;1636:39;;1722:2;1711:9;1707:18;1694:32;1684:42;;1745:38;1779:2;1768:9;1764:18;1745:38;:::i;:::-;1735:48;;1830:2;1819:9;1815:18;1802:32;1792:42;;1885:3;1874:9;1870:19;1857:33;1913:18;1905:6;1902:30;1899:50;;;1945:1;1942;1935:12;1899:50;1968:49;2009:7;2000:6;1989:9;1985:22;1968:49;:::i;:::-;1958:59;;;1417:606;;;;;;;;:::o;2028:462::-;2114:6;2122;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2222:29;2241:9;2222:29;:::i;:::-;2212:39;;2298:2;2287:9;2283:18;2270:32;2260:42;;2353:2;2342:9;2338:18;2325:32;2380:18;2372:6;2369:30;2366:50;;;2412:1;2409;2402:12;2366:50;2435:49;2476:7;2467:6;2456:9;2452:22;2435:49;:::i;:::-;2425:59;;;2028:462;;;;;:::o;2495:186::-;2554:6;2607:2;2595:9;2586:7;2582:23;2578:32;2575:52;;;2623:1;2620;2613:12;2575:52;2646:29;2665:9;2646:29;:::i;:::-;2636:39;2495:186;-1:-1:-1;;;2495:186:1:o;2878:328::-;2955:6;2963;2971;3024:2;3012:9;3003:7;2999:23;2995:32;2992:52;;;3040:1;3037;3030:12;2992:52;3063:29;3082:9;3063:29;:::i;:::-;3053:39;;3111:38;3145:2;3134:9;3130:18;3111:38;:::i;:::-;3101:48;;3196:2;3185:9;3181:18;3168:32;3158:42;;2878:328;;;;;:::o;3465:118::-;3551:5;3544:13;3537:21;3530:5;3527:32;3517:60;;3573:1;3570;3563:12;3588:315;3653:6;3661;3714:2;3702:9;3693:7;3689:23;3685:32;3682:52;;;3730:1;3727;3720:12;3682:52;3753:29;3772:9;3753:29;:::i;:::-;3743:39;;3832:2;3821:9;3817:18;3804:32;3845:28;3867:5;3845:28;:::i;:::-;3892:5;3882:15;;;3588:315;;;;;:::o;3908:258::-;3980:1;3990:113;4004:6;4001:1;3998:13;3990:113;;;4080:11;;;4074:18;4061:11;;;4054:39;4026:2;4019:10;3990:113;;;4121:6;4118:1;4115:13;4112:48;;;-1:-1:-1;;4156:1:1;4138:16;;4131:27;3908:258::o;4171:889::-;4421:4;4450:42;4531:2;4523:6;4519:15;4508:9;4501:34;4571:6;4566:2;4555:9;4551:18;4544:34;4626:2;4618:6;4614:15;4609:2;4598:9;4594:18;4587:43;4666:6;4661:2;4650:9;4646:18;4639:34;4722:2;4714:6;4710:15;4704:3;4693:9;4689:19;4682:44;;4763:3;4757;4746:9;4742:19;4735:32;4796:6;4790:13;4840:6;4834:3;4823:9;4819:19;4812:35;4856:67;4916:6;4910:3;4899:9;4895:19;4890:2;4882:6;4878:15;4856:67;:::i;:::-;4975:2;4963:15;4980:66;4959:88;4944:104;;;;5050:3;4940:114;;4171:889;-1:-1:-1;;;;;;;4171:889:1:o;5065:184::-;5135:6;5188:2;5176:9;5167:7;5163:23;5159:32;5156:52;;;5204:1;5201;5194:12;5156:52;-1:-1:-1;5227:16:1;;5065:184;-1:-1:-1;5065:184:1:o;5254:274::-;5383:3;5421:6;5415:13;5437:53;5483:6;5478:3;5471:4;5463:6;5459:17;5437:53;:::i;:::-;5506:16;;;;;5254:274;-1:-1:-1;;5254:274:1:o;6455:245::-;6522:6;6575:2;6563:9;6554:7;6550:23;6546:32;6543:52;;;6591:1;6588;6581:12;6543:52;6623:9;6617:16;6642:28;6664:5;6642:28;:::i

Swarm Source

ipfs://764fa9018c34aaea1950f8eb9365275cbed1c9cda82f211b42f5db907da382ce

Block Transaction 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
BASE36.99%$1,805.5243.6905$78,884.02
BASE14.21%$1,805.7616.7805$30,301.57
BASE8.30%$0.99994417,701.0776$17,700.09
BASE<0.01%$53.960.2693$14.53
BASE<0.01%$0.26174954.3935$14.24
BASE<0.01%$0.0014227,275.3043$10.34
BASE<0.01%$0.0035972,554.7243$9.19
BASE<0.01%$0.05566126.7135$7.05
BASE<0.01%$0.9988956.7667$6.76
BASE<0.01%$0.11581444.505$5.15
BASE<0.01%$0.7835525.7692$4.52
BASE<0.01%$0.031897107.1055$3.42
BASE<0.01%$93,6290.00003419$3.2
BASE<0.01%$191.310.0129$2.46
BASE<0.01%$0.018408125.5429$2.31
BASE<0.01%$0.003536472.639$1.67
BASE<0.01%$0.9995721.5921$1.59
BASE<0.01%$0.5604472.8156$1.58
BASE<0.01%$0.003887389.475$1.51
BASE<0.01%$0.06235621.4106$1.34
BASE<0.01%$0.5035822.6477$1.33
BASE<0.01%$0.000005232,317.7584$1.26
BASE<0.01%$0.9995931.0162$1.02
BASE<0.01%$0.2456053.9481$0.9696
BASE<0.01%$93,6740.00001034$0.9686
BASE<0.01%$0.03815324.1048$0.9196
BASE<0.01%$165.890.00546228$0.9061
BASE<0.01%$0.001647549.4326$0.9051
BASE<0.01%$0.006127147.6901$0.9049
BASE<0.01%$1.030.8604$0.8844
BASE<0.01%$0.03434924.2087$0.8315
BASE<0.01%$0.002333352.058$0.8212
BASE<0.01%$0.0822869.901$0.8147
BASE<0.01%$1.140.7053$0.804
BASE<0.01%$0.0000819,850.4513$0.8005
BASE<0.01%$0.6861091.1202$0.7685
BASE<0.01%$0.9995340.7503$0.7499
BASE<0.01%$0.00824989.3556$0.7371
BASE<0.01%$0.0006251,104.9702$0.6909
BASE<0.01%$0.0952927.1779$0.6839
BASE<0.01%$0.04849314.0777$0.6826
BASE<0.01%$3.50.1886$0.66
BASE<0.01%$0.02313127.1626$0.6283
BASE<0.01%$0.000788772.5425$0.6087
BASE<0.01%$0.0062894.3295$0.5924
BASE<0.01%$0.9985350.5841$0.5832
BASE<0.01%$0.1744043.2936$0.5744
BASE<0.01%$0.000751753.6698$0.5658
BASE<0.01%$0.6176660.8903$0.5499
BASE<0.01%$0.001725312.591$0.5393
BASE<0.01%$0.01188344.6261$0.5302
BASE<0.01%$0.0003861,317.1347$0.5079
BASE<0.01%$0.234712.1009$0.4931
BASE<0.01%$1,943.10.000242$0.4702
BASE<0.01%$0.0756235.989$0.4529
BASE<0.01%$0.000911480.3047$0.4376
BASE<0.01%$0.0551957.7265$0.4264
BASE<0.01%$0.01131437.4624$0.4238
BASE<0.01%$0.000716591.8341$0.4237
BASE<0.01%$0.00000667,861.7208$0.4227
BASE<0.01%$0.00397105.2035$0.4176
BASE<0.01%$0.02214917.595$0.3897
BASE<0.01%$0.0190220.4795$0.3895
BASE<0.01%$0.000004106,195.3502$0.3876
BASE<0.01%$1,923.440.0001912$0.3677
BASE<0.01%$0.000468774.7269$0.3624
BASE<0.01%<$0.0000012,815,079.8285$0.3589
BASE<0.01%$2.760.1299$0.3584
BASE<0.01%$0.00002314,739.353$0.3413
BASE<0.01%$0.01649820.5387$0.3388
BASE<0.01%$0.001306254.7099$0.3327
BASE<0.01%$0.000093,671.1647$0.3294
BASE<0.01%$2.410.136$0.3277
BASE<0.01%$0.01585520.5052$0.3251
BASE<0.01%$0.0001651,926.3048$0.3176
BASE<0.01%$0.00603550.4476$0.3044
BASE<0.01%$0.0001761,671.7336$0.2939
BASE<0.01%$0.0381497.5993$0.2899
BASE<0.01%$0.000093,228.9571$0.2897
BASE<0.01%$0.00000648,630.0535$0.281
BASE<0.01%$0.000305886.0427$0.2704
BASE<0.01%$0.0001791,481.5913$0.2647
BASE<0.01%<$0.0000013,134,527.0364$0.2629
BASE<0.01%$10.2571$0.2571
BASE<0.01%$0.00001318,784.966$0.2393
BASE<0.01%$30.0758$0.2275
BASE<0.01%$0.000334681.5624$0.2273
BASE<0.01%$2.890.0708$0.2046
BASE<0.01%$0.01650811.9221$0.1968
BASE<0.01%$0.5444460.354$0.1927
BASE<0.01%<$0.00000110,112,561.7758$0.1921
BASE<0.01%$0.001522125.5738$0.191
BASE<0.01%<$0.0000018,417,169.3836$0.1885
BASE<0.01%<$0.000001889,202.1$0.1885
BASE<0.01%$0.01018618.3944$0.1873
BASE<0.01%$0.000562328.6493$0.1847
BASE<0.01%$0.7116990.2561$0.1822
BASE<0.01%$0.0063528.2115$0.1791
BASE<0.01%$2.710.0656$0.1778
BASE<0.01%$1,886.880.00008776$0.1655
BASE<0.01%$282.90.00054162$0.1532
BASE<0.01%$0.00329244.9718$0.148
BASE<0.01%$0.0273715.3248$0.1457
BASE<0.01%$0.2499190.5391$0.1347
BASE<0.01%$0.3332110.386$0.1286
BASE<0.01%$2,021.830.0000622$0.1257
BASE<0.01%$0.0921041.3593$0.1252
BASE<0.01%$10.125$0.1249
BASE<0.01%$0.0310733.8817$0.1206
BASE<0.01%$0.043272.7304$0.1181
BASE<0.01%$0.00000249,756.5613$0.1169
BASE<0.01%$0.000052,296.4268$0.1151
BASE<0.01%$0.0000274,183.9458$0.1134
BASE<0.01%$0.0000821,378.0263$0.1127
ETH8.60%$1,804.610.1673$18,347.98
ETH6.97%$1,804.68.2425$14,874.47
ETH4.92%$0.99994410,499.9312$10,499.34
ETH2.11%$14,506.5695$4,506.57
ETH0.91%$0.00009121,326,099.358$1,933.92
ETH0.10%$336.160.6205$208.6
ETH0.05%$1.1697.1375$112.68
ETH0.02%<$0.0000017,164,878,901.8916$46.82
ETH0.02%$2,034.230.0164$33.31
ETH0.01%$0.0143421,892.2536$27.14
ETH0.01%$2,027.170.0113$22.81
ETH<0.01%$0.0000091,234,449.641$11.41
ETH<0.01%$0.56062719.7954$11.1
ETH<0.01%$93,7520.0001171$10.98
ETH<0.01%$3,353.080.00327244$10.97
ETH<0.01%$16.030.6759$10.83
ETH<0.01%$0.043525242.133$10.54
ETH<0.01%$0.62904416.5803$10.43
ETH<0.01%$165.890.0595$9.88
ETH<0.01%$1530.0642$9.83
ETH<0.01%$1,976.040.00485058$9.58
ETH<0.01%$3.52.66$9.31
ETH<0.01%$0.23485739.3203$9.23
ETH<0.01%$0.02732332.5357$9.08
ETH<0.01%$0.000048190,068.9553$9.07
ETH<0.01%$0.016465518.7708$8.54
ETH<0.01%<$0.0000011,362,390,103.0672$8.29
ETH<0.01%$19.250.4155$8
ETH<0.01%$0.015941480.9488$7.67
ETH<0.01%$0.0003223,304.4289$7.46
ETH<0.01%$0.066015106.3695$7.02
ETH<0.01%$0.06494105.109$6.83
ETH<0.01%$0.08304678.7515$6.54
ETH<0.01%$4.681.3962$6.53
ETH<0.01%$0.23764626.7412$6.35
ETH<0.01%<$0.0000012,846,470,635.3843$6.32
ETH<0.01%$0.8172317.6397$6.24
ETH<0.01%$3,348.50.001833$6.14
ETH<0.01%$0.09158965.2348$5.97
ETH<0.01%$0.0017633,226.2679$5.69
ETH<0.01%$0.2710519.6578$5.33
ETH<0.01%$71.720.0711$5.1
ETH<0.01%$0.17623328.922$5.1
ETH<0.01%$0.31351616.0447$5.03
ETH<0.01%$0.0000018,201,686.6411$4.93
ETH<0.01%$0.16431728.7541$4.72
ETH<0.01%$0.007335621.9319$4.56
ETH<0.01%$0.5885377.7489$4.56
ETH<0.01%$8.820.513$4.52
ETH<0.01%$15.660.2884$4.52
ETH<0.01%$0.000019229,874.2479$4.45
ETH<0.01%$0.0007355,869.9914$4.31
ETH<0.01%$0.017153250.3793$4.29
ETH<0.01%$0.17974523.4105$4.21
ETH<0.01%$0.0023981,657.0753$3.97
ETH<0.01%$13.9441$3.95
ETH<0.01%$0.12092830.6262$3.7
ETH<0.01%$0.0000016,109,694.9331$3.58
ETH<0.01%$0.029434120.6887$3.55
ETH<0.01%<$0.00000156,760,960.8202$3.53
ETH<0.01%$0.03115108.4038$3.38
ETH<0.01%$0.025183130.0369$3.27
ETH<0.01%$0.0021661,458.2105$3.16
ETH<0.01%$0.00018117,446.2677$3.15
ETH<0.01%$0.0024111,267.3763$3.06
ETH<0.01%$0.07748438.4483$2.98
ETH<0.01%$0.004401669.0965$2.94
ETH<0.01%$0.008603318.1499$2.74
ETH<0.01%$0.00882305.6243$2.7
ETH<0.01%<$0.00000120,439,871.4147$2.61
ETH<0.01%$0.0000460,884.3483$2.45
ETH<0.01%$0.00005941,153.89$2.43
ETH<0.01%$57.190.0411$2.35
ETH<0.01%$0.21463710.8762$2.33
ETH<0.01%$0.06572734.2407$2.25
ETH<0.01%$0.7257933.087$2.24
ETH<0.01%$0.21652510.2796$2.23
ETH<0.01%$0.03566362.2141$2.22
ETH<0.01%$0.0407753.9664$2.2
ETH<0.01%$6.590.326$2.15
ETH<0.01%$1,801.780.00118281$2.13
ETH<0.01%$0.011074184.3462$2.04
ETH<0.01%$0.2603727.7747$2.02
ETH<0.01%$0.02713673.1247$1.98
ETH<0.01%$0.08306123.7636$1.97
ETH<0.01%$0.02832368.6983$1.95
ETH<0.01%<$0.00000114,020,748.7961$1.91
ETH<0.01%$0.2118598.8743$1.88
ETH<0.01%$1.061.7574$1.86
ETH<0.01%$2,165.30.0008488$1.84
ETH<0.01%$0.09878318.4342$1.82
ETH<0.01%<$0.00000134,412,778.478$1.78
ETH<0.01%$0.01698103.4461$1.76
ETH<0.01%$0.006238277.42$1.73
ETH<0.01%$93,6290.00001846$1.73
ETH<0.01%$0.02970654.5359$1.62
ETH<0.01%$0.11399114.192$1.62
ETH<0.01%$0.566892.8334$1.61
ETH<0.01%$0.3438534.6614$1.6
ETH<0.01%$0.004023381.3909$1.53
ETH<0.01%$0.03161248.0165$1.52
ETH<0.01%$0.2482895.9908$1.49
ETH<0.01%$0.01497399.0557$1.48
ETH<0.01%$0.07225419.9668$1.44
ETH<0.01%$0.001558911.2717$1.42
ETH<0.01%$0.01153122.6512$1.41
ETH<0.01%$0.5082242.7647$1.41
ETH<0.01%$0.002267612.2877$1.39
ETH<0.01%$0.0004263,241.4467$1.38
ETH<0.01%$0.0012491,097.5191$1.37
ETH<0.01%$0.9995341.3654$1.36
ETH<0.01%$9.550.1419$1.35
ETH<0.01%$0.006913193.606$1.34
ETH<0.01%$0.9995431.3339$1.33
ETH<0.01%$0.0008751,512.2134$1.32
ETH<0.01%$0.3808253.4667$1.32
ETH<0.01%$0.03144640.372$1.27
ETH<0.01%$0.01541782.208$1.27
ETH<0.01%$93,7070.00001348$1.26
ETH<0.01%$0.872161.4312$1.25
ETH<0.01%$0.149428.338$1.25
ETH<0.01%$0.05275523.349$1.23
ETH<0.01%$0.00001489,593.6913$1.23
ETH<0.01%$0.09391812.8877$1.21
ETH<0.01%$0.0008411,368.5791$1.15
ETH<0.01%$0.8904111.2635$1.13
ETH<0.01%$0.06069418.3715$1.12
ETH<0.01%$0.7953931.4012$1.11
ETH<0.01%$0.2195334.875$1.07
ETH<0.01%$1.270.837$1.06
ETH<0.01%$0.01073198.8238$1.06
ETH<0.01%$0.06711715.6548$1.05
ETH<0.01%$0.001565657.2483$1.03
ETH<0.01%$0.03651327.8297$1.02
ETH<0.01%$0.1949635.1351$1
ETH<0.01%$0.063615.4257$0.981
ETH<0.01%$0.01917951.1029$0.98
ETH<0.01%$0.02885933.4988$0.9667
ETH<0.01%$0.0002723,549.4082$0.9662
ETH<0.01%$0.1059699.0413$0.958
ETH<0.01%$0.672971.4034$0.9444
ETH<0.01%$0.9445950.9912$0.9362
ETH<0.01%$0.05391417.1776$0.9261
ETH<0.01%$0.9784630.9436$0.9232
ETH<0.01%$612.810.00149734$0.9175
ETH<0.01%<$0.00000176,208,662.785$0.8856
ETH<0.01%$0.06225514.2246$0.8855
ETH<0.01%$0.0000329,538.8794$0.8808
ETH<0.01%$0.3201712.7295$0.8739
ETH<0.01%$0.9993880.8643$0.8638
ETH<0.01%$0.0000889,606.0315$0.8471
ETH<0.01%$0.03464923.9906$0.8312
ETH<0.01%$0.000003244,822.9303$0.8257
ETH<0.01%$0.9351630.8712$0.8147
ETH<0.01%$4.580.1666$0.7632
ETH<0.01%$0.00001452,777.8512$0.7573
ETH<0.01%$0.00835789.921$0.7515
ETH<0.01%$0.2433233.0669$0.7462
ETH<0.01%$0.0901278.2082$0.7397
ETH<0.01%$2.030.359$0.7287
ETH<0.01%$0.002193327.4264$0.7181
ETH<0.01%$43.490.0161$0.6985
ETH<0.01%$0.002147316.0049$0.6785
ETH<0.01%$0.004359153.8181$0.6704
ETH<0.01%$0.0734389.0795$0.6667
ETH<0.01%$0.2744612.4281$0.6664
ETH<0.01%$1,886.880.00035288$0.6658
ETH<0.01%$0.3952051.6358$0.6464
ETH<0.01%$0.001525418.2326$0.6375
ETH<0.01%$0.0786967.9196$0.6232
ETH<0.01%$0.1084615.6537$0.6132
ETH<0.01%$0.8032280.7591$0.6097
ETH<0.01%$15.110.0392$0.5928
ETH<0.01%$0.0962026.118$0.5885
ETH<0.01%$0.8166450.7042$0.5751
ETH<0.01%$10.5585$0.5584
ETH<0.01%$2.90.1887$0.5471
ETH<0.01%$0.7798390.6805$0.5306
ETH<0.01%$0.0636448.0136$0.51
ETH<0.01%$0.0879675.7272$0.5038
ETH<0.01%$1,923.440.00026106$0.5021
ETH<0.01%$80.0625$0.4999
ETH<0.01%$0.0000875,536.512$0.4812
ETH<0.01%<$0.000001788,957,650.3206$0.4678
ETH<0.01%$2.710.1682$0.4558
ETH<0.01%<$0.0000016,671,499.3264$0.4525
ETH<0.01%$0.7925910.5708$0.4524
ETH<0.01%$0.0001433,136.9567$0.4499
ETH<0.01%$1.320.3153$0.4153
ETH<0.01%$17.380.0238$0.4139
ETH<0.01%$0.0001822,269.5229$0.4132
ETH<0.01%$23.110.0168$0.3871
ETH<0.01%$0.1390472.7255$0.3789
ETH<0.01%$0.000113,428.4976$0.3774
ETH<0.01%$0.0915994.0362$0.3697
ETH<0.01%<$0.00000175,554,337.0513$0.3572
ETH<0.01%<$0.000001154,210,567.9608$0.3486
ETH<0.01%$0.3460760.9715$0.3362
ETH<0.01%$0.0756024.4427$0.3358
ETH<0.01%$3.120.1067$0.3328
ETH<0.01%$0.7279840.4551$0.3312
ETH<0.01%$5.60.0588$0.3293
ETH<0.01%$0.1629542.0169$0.3286
ETH<0.01%$0.7150430.4358$0.3115
ETH<0.01%$0.0002141,426.496$0.3058
ETH<0.01%$0.0000664,568.5288$0.303
ETH<0.01%<$0.0000011,437,209,582.7863$0.2983
ETH<0.01%$0.6747890.4419$0.2982
ETH<0.01%$2.260.1309$0.2958
ETH<0.01%$0.01425420.581$0.2933
ETH<0.01%$0.0083235.0091$0.2912
ETH<0.01%$0.0000664,402.4676$0.2905
ETH<0.01%$0.3956750.7062$0.2794
ETH<0.01%$0.00572148.6525$0.2783
ETH<0.01%<$0.00000178,782,087,872,627.563$0.2769
ETH<0.01%$0.1990041.3706$0.2727
ETH<0.01%$0.9997930.2726$0.2725
ETH<0.01%$0.00547849.759$0.2725
ETH<0.01%$0.1470011.8093$0.2659
ETH<0.01%$0.01369518.4144$0.2521
ETH<0.01%$0.3461320.7162$0.2478
ETH<0.01%$0.2998170.8228$0.2466
ETH<0.01%$0.570260.4282$0.2441
ETH<0.01%$8,204.990.00002924$0.2399
ETH<0.01%$0.027998.5641$0.2397
ETH<0.01%$2.490.0962$0.2395
ETH<0.01%$0.148211.6091$0.2384
ETH<0.01%$0.3332110.7095$0.2364
ETH<0.01%$161.560.00146366$0.2364
ETH<0.01%$0.0000584,070.5412$0.2353
ETH<0.01%$0.00309475.3244$0.233
ETH<0.01%$0.00001119,870.2728$0.2249
ETH<0.01%$0.1348571.6589$0.2237
ETH<0.01%$0.01853211.7231$0.2172
ETH<0.01%<$0.000001913,580,862.3506$0.213
ETH<0.01%$2.260.0906$0.2051
ETH<0.01%$0.00001711,619.1824$0.2001
ETH<0.01%$0.2234830.8823$0.1971
ETH<0.01%$0.3560380.5444$0.1938
ETH<0.01%$0.00106181.824$0.1927
ETH<0.01%$0.2551010.7379$0.1882
ETH<0.01%$0.000909190.6927$0.1733
ETH<0.01%$0.0001621,069.6987$0.1729
ETH<0.01%$0.00922318.2009$0.1678
ETH<0.01%$0.1396441.1962$0.167
ETH<0.01%$0.2178590.7661$0.1669
ETH<0.01%$0.1196791.3673$0.1636
ETH<0.01%$0.0166749.3967$0.1566
ETH<0.01%$0.0633182.471$0.1564
ETH<0.01%$0.0237566.3256$0.1502
ETH<0.01%$0.00138107.0786$0.1477
ETH<0.01%$0.001219119.7903$0.146
ETH<0.01%$0.0172068.4004$0.1445
ETH<0.01%<$0.00000161,650,326.4866$0.1429
ETH<0.01%$0.00001310,905.5058$0.1405
ETH<0.01%$29.130.00481074$0.1401
ETH<0.01%$0.2223530.594$0.132
ETH<0.01%$0.9975890.1319$0.1316
ETH<0.01%$0.000132989.8756$0.1303
ETH<0.01%$0.00735717.6438$0.1297
ETH<0.01%$0.0287154.481$0.1286
ETH<0.01%<$0.000001264,157.4464$0.1252
ETH<0.01%$0.0000139,405.0926$0.1237
ETH<0.01%$0.3159370.3885$0.1227
ETH<0.01%$0.00436927.5801$0.1204
ETH<0.01%$0.1008031.115$0.1123
ETH<0.01%$0.2274570.4937$0.1122
ETH<0.01%$0.9625750.1155$0.1111
ETH<0.01%$0.4374460.2505$0.1095
ETH<0.01%$0.00686515.8054$0.1085
ETH<0.01%$10.106$0.106
ETH<0.01%$0.0897291.1794$0.1058
ETH<0.01%$0.00742814.1992$0.1054
ETH<0.01%$0.000001162,245.5945$0.1053
BSC2.34%$612.788.1386$4,987.2
BSC2.24%$0.9998624,780.0753$4,779.41
BSC2.02%$612.817.0434$4,316.29
BSC1.85%$0.05687269,384.9861$3,946.06
BSC0.17%$1360.6902$360.69
BSC0.13%$0.2547041,127.9026$287.28
BSC0.13%$0.001623174,440.0519$283.06
BSC0.06%$93,1430.00140249$130.63
BSC0.06%$93,656.020.00135615$127.01
BSC0.04%$1,804.690.0506$91.35
BSC0.03%$0.011155,880.4913$65.57
BSC0.03%$0.183162308.5663$56.52
BSC0.03%$0.27105205.9958$55.84
BSC0.01%$0.41760373.3615$30.64
BSC<0.01%$0.00149514,146.0381$21.15
BSC<0.01%$0.0311422.2164$13.13
BSC<0.01%$0.0000043,180,816.485$12.06
BSC<0.01%$0.022965474.0755$10.89
BSC<0.01%$0.09128106.7342$9.74
BSC<0.01%$0.030849298.3299$9.2
BSC<0.01%$0.028975290.145$8.41
BSC<0.01%$0.02645264.9412$7.01
BSC<0.01%$0.00014943,778.4373$6.52
BSC<0.01%$0.0021852,644.2164$5.78
BSC<0.01%$15.5782$5.58
BSC<0.01%$0.53204110.2262$5.44
BSC<0.01%$0.00016229,955.0036$4.84
BSC<0.01%$0.0019182,204.0403$4.23
BSC<0.01%$0.000676,137.4019$4.11
BSC<0.01%<$0.000001286,760,712.4128$3.86
BSC<0.01%$0.0005766,079.8479$3.5
BSC<0.01%$0.0004457,723.443$3.44
BSC<0.01%$0.6440425.2771$3.4
BSC<0.01%$0.18333317.7936$3.26
BSC<0.01%$2.081.5308$3.18
BSC<0.01%$2.031.4575$2.96
BSC<0.01%<$0.000001628,851,138.3339$2.94
BSC<0.01%$0.03017994.0614$2.84
BSC<0.01%$2.281.1223$2.55
BSC<0.01%$0.2118599.1268$1.93
BSC<0.01%$15.120.1163$1.76
BSC<0.01%$0.00009517,918.9355$1.69
BSC<0.01%$165.880.00816467$1.35
BSC<0.01%$0.3159223.8343$1.21
BSC<0.01%$0.0468325.4058$1.19
BSC<0.01%$2.490.4134$1.03
BSC<0.01%$0.0002164,752.5059$1.03
BSC<0.01%$84.310.0121$1.02
BSC<0.01%<$0.00000195,123,789.9642$0.9548
BSC<0.01%$0.000007118,514.058$0.8734
BSC<0.01%$0.705731.1182$0.7891
BSC<0.01%$1.30.6048$0.7879
BSC<0.01%$0.00006412,328.1932$0.7855
BSC<0.01%$0.000815909.5924$0.7415
BSC<0.01%$0.252022.8684$0.7229
BSC<0.01%$93,7520.00000742$0.6956
BSC<0.01%$0.3461321.9834$0.6865
BSC<0.01%$0.004319153.5426$0.663
BSC<0.01%$2.740.2349$0.6445
BSC<0.01%$0.0861047.3049$0.6289
BSC<0.01%$0.05639910.687$0.6027
BSC<0.01%$0.001834318.1904$0.5835
BSC<0.01%$0.01572336.2442$0.5698
BSC<0.01%$0.0000995,641.9509$0.5583
BSC<0.01%$0.00551798.8421$0.5453
BSC<0.01%$0.9988270.5441$0.5434
BSC<0.01%$0.071267.2726$0.5182
BSC<0.01%$152.890.00336137$0.5139
BSC<0.01%$0.02616718.9774$0.4965
BSC<0.01%$3.120.1418$0.4424
BSC<0.01%$10.4374$0.4377
BSC<0.01%$0.569980.7185$0.4095
BSC<0.01%$0.02382115.3675$0.366
BSC<0.01%$0.126742.7889$0.3534
BSC<0.01%$0.0431117.9758$0.3438
BSC<0.01%$0.00312109.0354$0.3401
BSC<0.01%$0.2455351.3525$0.332
BSC<0.01%$0.001506217.7139$0.3279
BSC<0.01%$22.90.0129$0.2961
BSC<0.01%$0.5606270.5194$0.2911
BSC<0.01%$1,886.880.00015126$0.2854
BSC<0.01%$9.550.0297$0.2837
BSC<0.01%$0.00468355.9591$0.262
BSC<0.01%$0.002107122.8149$0.2587
BSC<0.01%$0.00958826.2262$0.2514
BSC<0.01%$4.140.0606$0.2508
BSC<0.01%$4.380.0569$0.2493
BSC<0.01%$2.10.1164$0.2444
BSC<0.01%$0.002348103.9387$0.244
BSC<0.01%$0.01498315.9268$0.2386
BSC<0.01%$0.01917912.0461$0.231
BSC<0.01%<$0.0000019,121,157.0904$0.2038
BSC<0.01%$0.140931.411$0.1988
BSC<0.01%$93,3100.00000201$0.1879
BSC<0.01%$0.000218850.6395$0.1852
BSC<0.01%$6.040.0303$0.1833
BSC<0.01%$0.0309495.3026$0.1641
BSC<0.01%$0.00382342.8672$0.1638
BSC<0.01%$0.0201227.9907$0.1607
BSC<0.01%$0.0016795.0197$0.1586
BSC<0.01%$0.0000921,619.7027$0.1486
BSC<0.01%$0.000141993.9999$0.1404
BSC<0.01%<$0.00000191,724,418.7775$0.1344
BSC<0.01%$0.00000912,801.2103$0.1182
BSC<0.01%$0.00134782.1091$0.1105
BSC<0.01%$10.1104$0.1104
BSC<0.01%$0.0127628.4449$0.1077
BSC<0.01%$0.0310593.2362$0.1005
AVAX1.96%$1,805.542.3096$4,170.02
AVAX0.18%$22.8116.4443$375.12
AVAX0.03%$0.0080427,232.7942$58.17
AVAX0.02%$138.4216$38.42
AVAX<0.01%$18.5066$8.51
AVAX<0.01%$0.007926332.55$2.64
AVAX<0.01%$22.930.0773$1.77
AVAX<0.01%$93,5970.00001217$1.14
AVAX<0.01%$0.1508957.2091$1.09
AVAX<0.01%<$0.000001110,270,200.1689$0.9152
AVAX<0.01%$0.0246934.4725$0.8511
AVAX<0.01%$10.6329$0.6329
AVAX<0.01%$93,7450.00000552$0.5174
AVAX<0.01%$0.000001546,623.5297$0.3884
AVAX<0.01%$10.3345$0.3345
AVAX<0.01%$10.2159$0.2159
AVAX<0.01%$15.120.0133$0.2014
AVAX<0.01%$1.340.1309$0.1753
AVAX<0.01%$0.2026690.6654$0.1348
ARB0.49%$0.999961,055.2683$1,055.23
ARB0.46%$1,805.550.5454$984.81
ARB0.40%$1,805.560.4748$857.24
ARB0.35%$1743.3716$743.37
ARB<0.01%$0.21487123.3499$5.02
ARB<0.01%$93,7910.00002391$2.24
ARB<0.01%$0.0017671,142.6496$2.02
ARB<0.01%$165.850.00969072$1.61
ARB<0.01%$3.630.4026$1.46
ARB<0.01%$0.33092.8867$0.9551
ARB<0.01%$0.00354230.9037$0.8174
ARB<0.01%$0.9989390.7365$0.7357
ARB<0.01%$0.0820957.5226$0.6175
ARB<0.01%$0.0265622.5398$0.5986
ARB<0.01%$0.005326101.4042$0.5401
ARB<0.01%$0.2027922.6531$0.538
ARB<0.01%$10.5318$0.5323
ARB<0.01%$0.9995730.512$0.5117
ARB<0.01%$0.000001441,930.6587$0.5082
ARB<0.01%$0.01417635.0946$0.4974
ARB<0.01%$93,7150.00000488$0.4573
ARB<0.01%$15.130.0294$0.4443
ARB<0.01%$0.1016374.1911$0.4259
ARB<0.01%$0.02081118.5307$0.3856
ARB<0.01%$5.60.068$0.3805
ARB<0.01%$2,165.30.00017247$0.3734
ARB<0.01%$0.1796972.0737$0.3726
ARB<0.01%$0.00941538.3536$0.361
ARB<0.01%$0.312681.106$0.3458
ARB<0.01%$2.710.0925$0.2506
ARB<0.01%$0.001424165.2832$0.2353
ARB<0.01%$2.030.106$0.2151
ARB<0.01%$0.0296947.2047$0.2139
ARB<0.01%$93,7270.00000216$0.2023
ARB<0.01%$0.01243915.9969$0.1989
ARB<0.01%<$0.0000011,548,701.4508$0.1974
ARB<0.01%$0.999960.192$0.192
ARB<0.01%$0.9994670.1671$0.167
ARB<0.01%<$0.0000014,276,851.5483$0.1659
ARB<0.01%$0.00719621.9926$0.1582
ARB<0.01%$0.0417673.7195$0.1553
ARB<0.01%$0.00000914,458.7283$0.1334
ARB<0.01%$15.10.00846378$0.1278
ARB<0.01%$0.0000138,138.5968$0.1054
POL1.20%$1,806.641.4173$2,560.47
POL0.21%$0.2232142,009.6028$448.57
POL<0.01%$0.9999612.5174$12.52
POL<0.01%<$0.0000012,687,342,540.1095$12.09
POL<0.01%$0.999968.7153$8.71
POL<0.01%$14.8654$4.87
POL<0.01%$0.0019321,259.03$2.43
POL<0.01%$165.850.00932254$1.55
POL<0.01%$4.680.2635$1.23
POL<0.01%$1.140.9228$1.05
POL<0.01%$1.140.9228$1.05
POL<0.01%$0.2820263.61$1.02
POL<0.01%$0.6746521.4875$1
POL<0.01%<$0.0000013,225,050,264.7417$0.9675
POL<0.01%$0.1740515.3102$0.9242
POL<0.01%$0.004121218.6305$0.9009
POL<0.01%$0.2998592.8334$0.8496
POL<0.01%$22.90.0351$0.8029
POL<0.01%$14.890.0527$0.784
POL<0.01%$0.0001953,737.5873$0.7297
POL<0.01%$3,353.130.00021426$0.7184
POL<0.01%$6.040.1147$0.6926
POL<0.01%$0.000097,615.3084$0.6834
POL<0.01%$0.2231342.7135$0.6054
POL<0.01%$0.5620180.9076$0.51
POL<0.01%$0.0063371.6173$0.4533
POL<0.01%$152.470.00289012$0.4406
POL<0.01%$0.3150161.1396$0.3589
POL<0.01%$0.02343514.5368$0.3406
POL<0.01%$15.10.0204$0.3085
POL<0.01%$0.0915313.3138$0.3033
POL<0.01%$0.00001618,256.3919$0.2952
POL<0.01%$0.0583784.0604$0.237
POL<0.01%$0.000575389.6102$0.224
POL<0.01%$0.1259771.6777$0.2113
POL<0.01%$0.0237438.2388$0.1956
POL<0.01%$0.00623130.14$0.1878
POL<0.01%$4.430.0422$0.187
POL<0.01%$0.3139680.5888$0.1848
POL<0.01%$0.6858520.2446$0.1677
POL<0.01%$0.3373450.4708$0.1588
POL<0.01%$93,7910.00000157$0.1472
POL<0.01%$0.001374102.498$0.1408
POL<0.01%<$0.00000122,437,563.5554$0.1368
POL<0.01%$0.2543370.5243$0.1333
POL<0.01%$0.1727220.6759$0.1167
POL<0.01%$0.00000246,750$0.1098
POL<0.01%$0.7646520.1401$0.1071
POL<0.01%$0.00704914.9792$0.1055
POL<0.01%$10.1051$0.1051
SONIC0.71%$0.9999051,509.1761$1,509.03
SONIC0.37%$0.5199741,526.9426$793.97
SONIC0.04%$0.520495177.5526$92.42
SONIC<0.01%$1,805.540.00454357$8.2
SONIC<0.01%$0.9986151.7193$1.72
SONIC<0.01%$1.60.72$1.15
SONIC<0.01%$0.1135464.1556$0.4718
SONIC<0.01%$0.5289560.2774$0.1467
OP0.32%$1,805.540.3829$691.29
OP0.24%$1,806.030.2885$521.12
OP<0.01%$0.9999052.046$2.05
OP<0.01%$93,8290.00001777$1.67
OP<0.01%$11.0637$1.06
OP<0.01%$15.10.0678$1.02
OP<0.01%$2.710.3336$0.9041
OP<0.01%$10.8965$0.8965
OP<0.01%$165.880.00533304$0.8846
OP<0.01%$0.7361021.0692$0.787
OP<0.01%$0.7597341.0131$0.7696
OP<0.01%$0.04997715.1127$0.7552
OP<0.01%$2,165.090.00028466$0.6163
OP<0.01%$0.0001962,905.3049$0.5696
OP<0.01%$10.3869$0.3872
OP<0.01%$1,887.020.00014586$0.2752
OP<0.01%$2,034.540.00012607$0.2564
CRONOS0.02%$132.8546$32.85
CRONOS0.01%$0.091478307.6144$28.14
CRONOS0.01%$127.2715$27.27
CRONOS0.01%$152.370.1592$24.26
CRONOS<0.01%$0.000015227,675.652$3.44
CRONOS<0.01%$3.850.7151$2.75
CRONOS<0.01%$0.0011421,669.8895$1.91
CRONOS<0.01%<$0.00000161,889,990.5588$1.39
CRONOS<0.01%$0.0002395,587.5653$1.34
CRONOS<0.01%$0.0001547,902.4065$1.22
CRONOS<0.01%$2.270.5308$1.2
CRONOS<0.01%$0.000002303,229.0504$0.6943
CRONOS<0.01%$0.0333368.9141$0.2971
CRONOS<0.01%$93,7450.00000114$0.1068
TAIKO0.02%$0.65035365.1895$42.4
TAIKO<0.01%$1,804.60.0105$18.97
TAIKO<0.01%$1.010.7424$0.7461
TAIKO<0.01%$1,804.810.00038183$0.6891
MOVR0.01%$1,806.710.0164$29.56
MOVR0.01%$0.99990524.3866$24.38
MOVR<0.01%$6.370.0000000000050766<$0.000001
LINEA0.01%$1,799.870.013$23.33
LINEA<0.01%$1,804.60.00707359$12.77
LINEA<0.01%$0.9999640.5403$0.5402
LINEA<0.01%$10.3777$0.3777
LINEA<0.01%$2.030.1655$0.336
LINEA<0.01%$0.001603168.8638$0.2707
LINEA<0.01%$10.2215$0.2217
LINEA<0.01%$93,7850.00000181$0.1697
LINEA<0.01%$1,887.040.0000643$0.1213
CELO0.01%$122.9064$22.91
CELO<0.01%$15.4257$5.43
CELO<0.01%$0.33225510.9344$3.63
CELO<0.01%$0.9997371.6615$1.66
CELO<0.01%$1,805.540.00079704$1.44
CELO<0.01%$1.140.1861$0.2121
SCROLL<0.01%$1,804.840.00753689$13.6
SCROLL<0.01%$0.999961.6903$1.69
SCROLL<0.01%$10.7676$0.7677
BLAST<0.01%$1,805.540.00388204$7.01
BLAST<0.01%$1,804.540.0024831$4.48
BLAST<0.01%$10.1101$0.1103
MANTLE<0.01%$0.9995996.5476$6.55
MANTLE<0.01%$0.9996611.8158$1.82
MANTLE<0.01%$1,805.770.00094525$1.71
MANTLE<0.01%$0.7096760.6913$0.490585
MANTLE<0.01%$1,920.70.00013297$0.2553
GNO<0.01%$13.8556$3.86
GNO<0.01%$1,805.910.00081333$1.47
GNO<0.01%$0.9999710.9365$0.9364
GNO<0.01%$1.140.4151$0.4732
GNO<0.01%$1.140.4151$0.4732
GNO<0.01%$10.3439$0.34392
GNO<0.01%$114.20.00237509$0.2712
ARBNOVA<0.01%$1,805.960.00038856$0.701726
ARBNOVA<0.01%$1,805.560.00026552$0.4794
ZKEVM<0.01%$1,804.840.00019779$0.356978
ZKEVM<0.01%$10.1695$0.1694
APE<0.01%$0.5080820.0486$0.024699
GLMR<0.01%$0.077970.00002856$0.000002
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.