S Price: $0.459871 (+0.73%)

Contract

0x8f7BCcCc0EfeCa85b103D9783055704E37e40F2C

Overview

S Balance

Sonic LogoSonic LogoSonic Logo1,525.261712433729185599 S

S Value

$701.42 (@ $0.46/S)

Token Holdings

Amount:Between 1-100
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions and > 10 Token Transfers found.

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
214927912025-04-22 5:19:3833 mins ago1745299178
0x8f7BCcCc...E37e40F2C
0 S
214794062025-04-22 3:09:212 hrs ago1745291361
0x8f7BCcCc...E37e40F2C
0.01013073 S
214785012025-04-22 3:01:232 hrs ago1745290883
0x8f7BCcCc...E37e40F2C
0 S
214740602025-04-22 2:23:563 hrs ago1745288636
0x8f7BCcCc...E37e40F2C
0.032071 S
214567102025-04-22 0:05:395 hrs ago1745280339
0x8f7BCcCc...E37e40F2C
0.0009288 S
214509892025-04-21 23:07:396 hrs ago1745276859
0x8f7BCcCc...E37e40F2C
357 wei
214346832025-04-21 20:22:509 hrs ago1745266970
0x8f7BCcCc...E37e40F2C
0.08993995 S
214339512025-04-21 20:15:589 hrs ago1745266558
0x8f7BCcCc...E37e40F2C
438 wei
214275752025-04-21 19:21:0610 hrs ago1745263266
0x8f7BCcCc...E37e40F2C
124 wei
213978172025-04-21 15:47:0914 hrs ago1745250429
0x8f7BCcCc...E37e40F2C
0.00009357 S
213633742025-04-21 11:38:3218 hrs ago1745235512
0x8f7BCcCc...E37e40F2C
303 wei
213586402025-04-21 11:01:3918 hrs ago1745233299
0x8f7BCcCc...E37e40F2C
535 wei
213566822025-04-21 10:46:5019 hrs ago1745232410
0x8f7BCcCc...E37e40F2C
0.00101476 S
213432512025-04-21 9:00:1220 hrs ago1745226012
0x8f7BCcCc...E37e40F2C
822 wei
213249582025-04-21 6:33:3923 hrs ago1745217219
0x8f7BCcCc...E37e40F2C
0.00000202 S
213248512025-04-21 6:32:5523 hrs ago1745217175
0x8f7BCcCc...E37e40F2C
201 wei
213220392025-04-21 6:11:0423 hrs ago1745215864
0x8f7BCcCc...E37e40F2C
329 wei
213218392025-04-21 6:09:1823 hrs ago1745215758
0x8f7BCcCc...E37e40F2C
0.00098883 S
213209622025-04-21 6:01:4723 hrs ago1745215307
0x8f7BCcCc...E37e40F2C
0.00000204 S
212980632025-04-21 3:15:3926 hrs ago1745205339
0x8f7BCcCc...E37e40F2C
0 S
212936332025-04-21 2:52:3427 hrs ago1745203954
0x8f7BCcCc...E37e40F2C
0.00000211 S
212917712025-04-21 2:42:4727 hrs ago1745203367
0x8f7BCcCc...E37e40F2C
0.00953184 S
212904982025-04-21 2:36:0027 hrs ago1745202960
0x8f7BCcCc...E37e40F2C
0.86612277 S
212829632025-04-21 1:55:0727 hrs ago1745200507
0x8f7BCcCc...E37e40F2C
0.00009931 S
212481182025-04-20 21:59:5331 hrs ago1745186393
0x8f7BCcCc...E37e40F2C
0.00003152 S
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 SonicScan.org on 2025-02-23
*/

// 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"}]

60a06040523480156200001157600080fd5b506040516200103638038062001036833981016040819052620000349162000159565b826200004033620000c2565b6001600160a01b038116600081815260026020908152604091829020805460ff1916600190811790915591519182527f878d105ed19c01e992a54459c2f04ba19432ac45600b42ce340d034272207436910160405180910390a250600380546001600160a01b0319166001600160a01b039384161790551660805250620001a3565b600180546001600160a01b0319169055620000e981620000ec602090811b6200082217901c565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200015457600080fd5b919050565b6000806000606084860312156200016f57600080fd5b6200017a846200013c565b92506200018a602085016200013c565b91506200019a604085016200013c565b90509250925092565b608051610e71620001c56000396000818160ff015261062e0152610e716000f3fe6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063dae9ab7211610059578063dae9ab7214610277578063e30c3978146102a4578063f2fde38b146102cf578063f32a12ac146102ef57600080fd5b80638da5cb5b14610217578063b081b4eb14610242578063d9caed121461025757600080fd5b80636e9821c2116100bb5780636e9821c21461018d578063715018a6146101cd57806377a93894146101e257806379ba50971461020257600080fd5b80633fc8cef3146100ed57806352f5df801461014b57806354a0af171461016d57600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b506101217f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561015757600080fd5b5061016b610166366004610bc1565b61030f565b005b34801561017957600080fd5b5061016b610188366004610c33565b610428565b34801561019957600080fd5b506101bd6101a8366004610c8a565b60026020526000908152604090205460ff1681565b6040519015158152602001610142565b3480156101d957600080fd5b5061016b6104ae565b3480156101ee57600080fd5b5061016b6101fd366004610c8a565b6104c2565b34801561020e57600080fd5b5061016b610511565b34801561022357600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610121565b34801561024e57600080fd5b5061016b6105cb565b34801561026357600080fd5b5061016b610272366004610cac565b61068f565b34801561028357600080fd5b506003546101219073ffffffffffffffffffffffffffffffffffffffff1681565b3480156102b057600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff16610121565b3480156102db57600080fd5b5061016b6102ea366004610c8a565b6106e0565b3480156102fb57600080fd5b5061016b61030a366004610cf6565b610790565b3360009081526002602052604090205460ff16610358576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035461037d90869073ffffffffffffffffffffffffffffffffffffffff1686610897565b6003546040517f2646478b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690632646478b906103dd90889088908890889030908990600401610d59565b6020604051808303816000875af11580156103fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104209190610de9565b505050505050565b610430610a0c565b60008373ffffffffffffffffffffffffffffffffffffffff1683836040516104589190610e02565b60006040518083038185875af1925050503d8060008114610495576040519150601f19603f3d011682016040523d82523d6000602084013e61049a565b606091505b50509050806104a857600080fd5b50505050565b6104b6610a0c565b6104c06000610a8d565b565b6104ca610a0c565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600154339073ffffffffffffffffffffffffffffffffffffffff1681146105bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105c881610a8d565b50565b3360009081526002602052604090205460ff16610614576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016904790600081818185875af1925050503d806000811461068a576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b505050565b610697610a0c565b73ffffffffffffffffffffffffffffffffffffffff8316156106be5761068a838383610897565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610458565b6106e8610a0c565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116811790915561074b60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610798610a0c565b73ffffffffffffffffffffffffffffffffffffffff821660008181526002602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f878d105ed19c01e992a54459c2f04ba19432ac45600b42ce340d034272207436910160405180910390a25050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790529151600092839287169161095e9190610e02565b6000604051808303816000865af19150503d806000811461099b576040519150601f19603f3d011682016040523d82523d6000602084013e6109a0565b606091505b50915091508115806109ce57508051158015906109ce5750808060200190518101906109cc9190610e1e565b155b15610a05576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146104c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b6565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556105c881610822565b803573ffffffffffffffffffffffffffffffffffffffff81168114610ae257600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112610b2757600080fd5b813567ffffffffffffffff80821115610b4257610b42610ae7565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715610b8857610b88610ae7565b81604052838152866020858801011115610ba157600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a08688031215610bd957600080fd5b610be286610abe565b945060208601359350610bf760408701610abe565b925060608601359150608086013567ffffffffffffffff811115610c1a57600080fd5b610c2688828901610b16565b9150509295509295909350565b600080600060608486031215610c4857600080fd5b610c5184610abe565b925060208401359150604084013567ffffffffffffffff811115610c7457600080fd5b610c8086828701610b16565b9150509250925092565b600060208284031215610c9c57600080fd5b610ca582610abe565b9392505050565b600080600060608486031215610cc157600080fd5b610cca84610abe565b9250610cd860208501610abe565b9150604084013590509250925092565b80151581146105c857600080fd5b60008060408385031215610d0957600080fd5b610d1283610abe565b91506020830135610d2281610ce8565b809150509250929050565b60005b83811015610d48578181015183820152602001610d30565b838111156104a85750506000910152565b600073ffffffffffffffffffffffffffffffffffffffff8089168352876020840152808716604084015285606084015280851660808401525060c060a083015282518060c0840152610db28160e0850160208701610d2d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160e001979650505050505050565b600060208284031215610dfb57600080fd5b5051919050565b60008251610e14818460208701610d2d565b9190910192915050565b600060208284031215610e3057600080fd5b8151610ca581610ce856fea2646970667358221220764fa9018c34aaea1950f8eb9365275cbed1c9cda82f211b42f5db907da382ce64736f6c634300080a00330000000000000000000000004bb4c1b0745ef7b4642feeccd0740dec417ca0a000000000000000000000000085cd07ea01423b1e937929b44e4ad8c40bbb5e71000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38

Deployed Bytecode

0x6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063dae9ab7211610059578063dae9ab7214610277578063e30c3978146102a4578063f2fde38b146102cf578063f32a12ac146102ef57600080fd5b80638da5cb5b14610217578063b081b4eb14610242578063d9caed121461025757600080fd5b80636e9821c2116100bb5780636e9821c21461018d578063715018a6146101cd57806377a93894146101e257806379ba50971461020257600080fd5b80633fc8cef3146100ed57806352f5df801461014b57806354a0af171461016d57600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b506101217f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3881565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561015757600080fd5b5061016b610166366004610bc1565b61030f565b005b34801561017957600080fd5b5061016b610188366004610c33565b610428565b34801561019957600080fd5b506101bd6101a8366004610c8a565b60026020526000908152604090205460ff1681565b6040519015158152602001610142565b3480156101d957600080fd5b5061016b6104ae565b3480156101ee57600080fd5b5061016b6101fd366004610c8a565b6104c2565b34801561020e57600080fd5b5061016b610511565b34801561022357600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610121565b34801561024e57600080fd5b5061016b6105cb565b34801561026357600080fd5b5061016b610272366004610cac565b61068f565b34801561028357600080fd5b506003546101219073ffffffffffffffffffffffffffffffffffffffff1681565b3480156102b057600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff16610121565b3480156102db57600080fd5b5061016b6102ea366004610c8a565b6106e0565b3480156102fb57600080fd5b5061016b61030a366004610cf6565b610790565b3360009081526002602052604090205460ff16610358576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035461037d90869073ffffffffffffffffffffffffffffffffffffffff1686610897565b6003546040517f2646478b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690632646478b906103dd90889088908890889030908990600401610d59565b6020604051808303816000875af11580156103fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104209190610de9565b505050505050565b610430610a0c565b60008373ffffffffffffffffffffffffffffffffffffffff1683836040516104589190610e02565b60006040518083038185875af1925050503d8060008114610495576040519150601f19603f3d011682016040523d82523d6000602084013e61049a565b606091505b50509050806104a857600080fd5b50505050565b6104b6610a0c565b6104c06000610a8d565b565b6104ca610a0c565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600154339073ffffffffffffffffffffffffffffffffffffffff1681146105bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105c881610a8d565b50565b3360009081526002602052604090205460ff16610614576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3816904790600081818185875af1925050503d806000811461068a576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b505050565b610697610a0c565b73ffffffffffffffffffffffffffffffffffffffff8316156106be5761068a838383610897565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610458565b6106e8610a0c565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116811790915561074b60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610798610a0c565b73ffffffffffffffffffffffffffffffffffffffff821660008181526002602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f878d105ed19c01e992a54459c2f04ba19432ac45600b42ce340d034272207436910160405180910390a25050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790529151600092839287169161095e9190610e02565b6000604051808303816000865af19150503d806000811461099b576040519150601f19603f3d011682016040523d82523d6000602084013e6109a0565b606091505b50915091508115806109ce57508051158015906109ce5750808060200190518101906109cc9190610e1e565b155b15610a05576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146104c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b6565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556105c881610822565b803573ffffffffffffffffffffffffffffffffffffffff81168114610ae257600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112610b2757600080fd5b813567ffffffffffffffff80821115610b4257610b42610ae7565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715610b8857610b88610ae7565b81604052838152866020858801011115610ba157600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a08688031215610bd957600080fd5b610be286610abe565b945060208601359350610bf760408701610abe565b925060608601359150608086013567ffffffffffffffff811115610c1a57600080fd5b610c2688828901610b16565b9150509295509295909350565b600080600060608486031215610c4857600080fd5b610c5184610abe565b925060208401359150604084013567ffffffffffffffff811115610c7457600080fd5b610c8086828701610b16565b9150509250925092565b600060208284031215610c9c57600080fd5b610ca582610abe565b9392505050565b600080600060608486031215610cc157600080fd5b610cca84610abe565b9250610cd860208501610abe565b9150604084013590509250925092565b80151581146105c857600080fd5b60008060408385031215610d0957600080fd5b610d1283610abe565b91506020830135610d2281610ce8565b809150509250929050565b60005b83811015610d48578181015183820152602001610d30565b838111156104a85750506000910152565b600073ffffffffffffffffffffffffffffffffffffffff8089168352876020840152808716604084015285606084015280851660808401525060c060a083015282518060c0840152610db28160e0850160208701610d2d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160e001979650505050505050565b600060208284031215610dfb57600080fd5b5051919050565b60008251610e14818460208701610d2d565b9190910192915050565b600060208284031215610e3057600080fd5b8151610ca581610ce856fea2646970667358221220764fa9018c34aaea1950f8eb9365275cbed1c9cda82f211b42f5db907da382ce64736f6c634300080a0033

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

0000000000000000000000004bb4c1b0745ef7b4642feeccd0740dec417ca0a000000000000000000000000085cd07ea01423b1e937929b44e4ad8c40bbb5e71000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38

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

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


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
BASE35.99%$1,579.2943.6901$68,999.39
BASE12.99%$1,582.5315.7334$24,898.48
BASE9.18%$0.99997117,591.5076$17,591
BASE<0.01%$0.22962150.3358$11.56
BASE<0.01%$0.04548102.3602$4.66
BASE<0.01%$171.390.0129$2.2
BASE<0.01%$10.9994$0.9994
BASE<0.01%$87,9450.00001017$0.8944
BASE<0.01%$144.140.00546181$0.7872
BASE<0.01%$0.9117370.8597$0.7838
BASE<0.01%$0.0765979.901$0.7583
BASE<0.01%$0.9992630.7502$0.7496
BASE<0.01%$1.150.6315$0.7262
BASE<0.01%$0.02971724.1048$0.7163
BASE<0.01%$0.0000729,791.5168$0.7031
BASE<0.01%$0.001978352.058$0.6963
BASE<0.01%$0.001262549.4326$0.6935
BASE<0.01%$0.6015181.1202$0.6737
BASE<0.01%$0.00744989.3556$0.6656
BASE<0.01%$3.270.1886$0.6166
BASE<0.01%$0.084387.1779$0.6056
BASE<0.01%$0.00636694.3295$0.6005
BASE<0.01%$0.9997160.5841$0.5839
BASE<0.01%$0.5698630.948$0.5402
BASE<0.01%$0.001676312.591$0.5238
BASE<0.01%$0.9995450.5164$0.5161
BASE<0.01%$0.5547760.8903$0.4939
BASE<0.01%$0.001004480.3047$0.4822
BASE<0.01%$0.3954071.1945$0.4723
BASE<0.01%$0.138453.2732$0.4531
BASE<0.01%$0.000745591.8341$0.4412
BASE<0.01%$0.000616698.5467$0.4304
BASE<0.01%$0.00397105.2035$0.4176
BASE<0.01%$1,703.930.000242$0.4123
BASE<0.01%$0.0058369.724$0.4064
BASE<0.01%$0.00000667,649.0762$0.4025
BASE<0.01%$0.00185215.0407$0.3977
BASE<0.01%$0.01629124.3408$0.3965
BASE<0.01%$0.0003491,104.9702$0.3854
BASE<0.01%$0.01012137.4624$0.3791
BASE<0.01%$0.0489917.7265$0.3785
BASE<0.01%$0.1747842.1009$0.3672
BASE<0.01%$0.01713420.4621$0.3506
BASE<0.01%$0.000003106,195.3502$0.343
BASE<0.01%$0.039038.6031$0.3357
BASE<0.01%$0.9966270.3339$0.3328
BASE<0.01%$1,682.50.0001912$0.3217
BASE<0.01%$0.0000863,671.1647$0.3167
BASE<0.01%$0.0000214,739.353$0.3006
BASE<0.01%$0.01419220.5052$0.291
BASE<0.01%<$0.0000012,815,079.8285$0.2891
BASE<0.01%$0.01383120.5387$0.284
BASE<0.01%$0.0000863,228.9571$0.2785
BASE<0.01%$0.0001441,926.3048$0.2782
BASE<0.01%$0.0362987.5993$0.2758
BASE<0.01%$0.001076254.7099$0.2739
BASE<0.01%$0.00000648,761.7815$0.2701
BASE<0.01%$0.0001531,671.7336$0.2565
BASE<0.01%$0.00471450.4476$0.2378
BASE<0.01%$0.00892526.3853$0.2354
BASE<0.01%<$0.0000013,134,527.0364$0.2275
BASE<0.01%$0.00000548,630.0535$0.2236
BASE<0.01%$0.01786611.4048$0.2037
BASE<0.01%$88,2840.00000227$0.2004
BASE<0.01%$0.000334597.6296$0.1996
BASE<0.01%$0.00232983.761$0.195
BASE<0.01%$0.2207720.8498$0.1876
BASE<0.01%$0.01578411.8692$0.1873
BASE<0.01%$0.01018618.3944$0.1873
BASE<0.01%$0.000224803.2743$0.1798
BASE<0.01%$0.0001211,481.5913$0.1797
BASE<0.01%<$0.000001889,202.1$0.1791
BASE<0.01%$2.460.0723$0.1779
BASE<0.01%$0.4959080.354$0.1755
BASE<0.01%$0.6595410.2561$0.1689
BASE<0.01%<$0.0000018,417,169.3836$0.1675
BASE<0.01%$0.000382427.6899$0.1635
BASE<0.01%$0.0535843.0219$0.1619
BASE<0.01%$0.00132121.2376$0.16
BASE<0.01%$2.140.0742$0.1587
BASE<0.01%$2.240.0708$0.1586
BASE<0.01%$0.0000114,079.3381$0.1448
BASE<0.01%$0.00504728.2115$0.1423
BASE<0.01%$1,651.340.00008181$0.1351
BASE<0.01%$0.2492270.5391$0.1343
BASE<0.01%$0.000462276.8447$0.1279
BASE<0.01%$0.0835651.4973$0.1251
BASE<0.01%$0.0229525.3248$0.1222
BASE<0.01%$0.9998850.1218$0.1217
BASE<0.01%$224.710.00054162$0.1217
BASE<0.01%$0.3022930.386$0.1166
BASE<0.01%$0.0846981.3593$0.1151
BASE<0.01%$0.9998790.1134$0.1133
BASE<0.01%$0.0275993.8817$0.1071
BASE<0.01%$0.037932.7304$0.1035
BASE<0.01%$0.0000731,378.0263$0.1006
ETH8.33%$1,581.9210.0964$15,971.77
ETH6.79%$1,581.928.2316$13,021.79
ETH5.45%$0.9999410,457.3694$10,456.74
ETH2.18%$0.9999684,185.4552$4,185.32
ETH0.91%$0.00008221,326,099.358$1,753.99
ETH0.02%$1,780.010.0164$29.14
ETH0.01%$2,027.170.0113$22.81
ETH<0.01%$0.51310819.7954$10.16
ETH<0.01%$88,1480.00011276$9.94
ETH<0.01%$14.220.6759$9.61
ETH<0.01%$0.038956242.133$9.43
ETH<0.01%$3,504.110.00258292$9.05
ETH<0.01%$3.272.66$8.7
ETH<0.01%$0.026021332.5357$8.65
ETH<0.01%$144.040.0595$8.58
ETH<0.01%$139.020.0611$8.5
ETH<0.01%$0.58754213.5444$7.96
ETH<0.01%<$0.0000011,362,390,103.0672$7.59
ETH<0.01%$0.013865518.7708$7.19
ETH<0.01%$0.014946480.9488$7.19
ETH<0.01%$17.160.4155$7.13
ETH<0.01%$0.17503739.3203$6.88
ETH<0.01%$0.06146106.3695$6.54
ETH<0.01%$0.000034190,068.9553$6.52
ETH<0.01%$3,516.50.001833$6.45
ETH<0.01%$0.00025923,304.4289$6.03
ETH<0.01%$0.000008755,704.7441$6.02
ETH<0.01%$0.2244926.7412$6
ETH<0.01%$0.056178105.109$5.9
ETH<0.01%$0.0017583,226.2679$5.67
ETH<0.01%$0.6609827.6397$5.05
ETH<0.01%$0.06319378.7515$4.98
ETH<0.01%$0.16898328.922$4.89
ETH<0.01%$66.690.0711$4.74
ETH<0.01%$0.5941257.7489$4.6
ETH<0.01%$0.27780916.0447$4.46
ETH<0.01%$0.0000018,201,686.6411$4.3
ETH<0.01%$0.000745,699.7294$4.22
ETH<0.01%$0.0024581,657.0753$4.07
ETH<0.01%$0.000017229,874.2479$4.02
ETH<0.01%$4.370.9039$3.95
ETH<0.01%<$0.0000012,846,470,635.3843$3.92
ETH<0.01%$7.610.513$3.9
ETH<0.01%$0.006337609.8591$3.86
ETH<0.01%$0.13281728.7541$3.82
ETH<0.01%$0.034901108.4038$3.78
ETH<0.01%$0.015828228.0119$3.61
ETH<0.01%$0.14768123.4105$3.46
ETH<0.01%<$0.00000156,760,960.8202$3.31
ETH<0.01%$0.024689120.6887$2.98
ETH<0.01%$0.09651430.6262$2.96
ETH<0.01%$0.0019651,458.2105$2.87
ETH<0.01%$0.26285310.8762$2.86
ETH<0.01%$0.021887130.0369$2.85
ETH<0.01%<$0.0000015,942,601.1841$2.84
ETH<0.01%$0.07327838.4483$2.82
ETH<0.01%$0.00015317,446.2677$2.67
ETH<0.01%$0.0021021,267.3763$2.66
ETH<0.01%$0.008235318.1499$2.62
ETH<0.01%$0.0000641,153.89$2.46
ETH<0.01%$0.008364266.5984$2.23
ETH<0.01%$0.6809333.087$2.1
ETH<0.01%<$0.00000120,439,871.4147$2.1
ETH<0.01%$0.03878953.9664$2.09
ETH<0.01%$0.010973184.3462$2.02
ETH<0.01%$0.02657673.1247$1.94
ETH<0.01%$5.830.326$1.9
ETH<0.01%$1.071.7574$1.87
ETH<0.01%$1,579.170.00118254$1.87
ETH<0.01%$0.07673923.7636$1.82
ETH<0.01%$0.02912562.2141$1.81
ETH<0.01%$0.05257234.2407$1.8
ETH<0.01%$0.2296217.7747$1.79
ETH<0.01%$43.320.0411$1.78
ETH<0.01%$0.02567468.6983$1.76
ETH<0.01%$0.09210618.4342$1.7
ETH<0.01%$0.00002860,884.3483$1.69
ETH<0.01%<$0.00000133,753,210.8669$1.65
ETH<0.01%<$0.00000114,020,748.7961$1.63
ETH<0.01%$0.1831578.8743$1.63
ETH<0.01%$0.11399114.192$1.62
ETH<0.01%$88,2600.00001827$1.61
ETH<0.01%$1,893.740.0008488$1.61
ETH<0.01%$0.3306224.6614$1.54
ETH<0.01%$1,727.720.00087671$1.51
ETH<0.01%$0.02762754.5359$1.51
ETH<0.01%$0.002325631.9179$1.47
ETH<0.01%$0.003803381.3909$1.45
ETH<0.01%$0.06223.349$1.45
ETH<0.01%$0.5010062.8334$1.42
ETH<0.01%$1.171.2114$1.42
ETH<0.01%$0.001539911.2717$1.4
ETH<0.01%$0.06899119.9668$1.38
ETH<0.01%$0.01375799.0557$1.36
ETH<0.01%$0.006886193.606$1.33
ETH<0.01%$0.9992871.3212$1.32
ETH<0.01%$0.9995651.3136$1.31
ETH<0.01%$0.4627822.7647$1.28
ETH<0.01%$0.0008251,512.2134$1.25
ETH<0.01%$0.02591548.0165$1.24
ETH<0.01%$0.9601631.2635$1.21
ETH<0.01%$0.0011011,097.5191$1.21
ETH<0.01%$0.0146882.208$1.21
ETH<0.01%$0.005488218.9$1.2
ETH<0.01%$8.460.1419$1.2
ETH<0.01%$0.001901612.2877$1.16
ETH<0.01%$87,9100.00001314$1.16
ETH<0.01%$0.02878739.7035$1.14
ETH<0.01%$0.22295.0907$1.13
ETH<0.01%$0.7827441.4312$1.12
ETH<0.01%$0.009113122.6512$1.12
ETH<0.01%$0.00001289,593.6913$1.11
ETH<0.01%$1.260.837$1.05
ETH<0.01%$0.06705515.4257$1.03
ETH<0.01%$0.08770111.6838$1.02
ETH<0.01%$0.7290341.4012$1.02
ETH<0.01%$0.07925212.8877$1.02
ETH<0.01%$0.05490818.3715$1.01
ETH<0.01%$0.1301497.6692$0.9981
ETH<0.01%$0.0003073,241.4467$0.9955
ETH<0.01%$0.0001785,536.512$0.9837
ETH<0.01%$0.03507327.8297$0.976
ETH<0.01%$0.1914934.875$0.9335
ETH<0.01%$0.9999250.9178$0.9176
ETH<0.01%$0.00912798.8238$0.9019
ETH<0.01%$0.1754815.1351$0.9011
ETH<0.01%$600.60.00149734$0.8993
ETH<0.01%$0.05720315.6548$0.8955
ETH<0.01%$0.0990149.0413$0.8952
ETH<0.01%$0.0002523,549.4082$0.894
ETH<0.01%$0.6156721.4034$0.864
ETH<0.01%$0.9993560.8643$0.8637
ETH<0.01%$0.000004244,822.9303$0.8612
ETH<0.01%$0.8675450.9912$0.8598
ETH<0.01%$0.0006241,368.5791$0.8533
ETH<0.01%$0.2356463.4667$0.8169
ETH<0.01%$0.002461327.4264$0.8058
ETH<0.01%$0.03319123.9906$0.7962
ETH<0.01%<$0.00000176,208,662.785$0.7857
ETH<0.01%$0.8152250.9436$0.7692
ETH<0.01%$0.2733862.7295$0.7462
ETH<0.01%$0.04304117.1776$0.7393
ETH<0.01%$4.430.1666$0.7382
ETH<0.01%$0.091397.9196$0.7237
ETH<0.01%$0.0863618.2082$0.7088
ETH<0.01%$0.00783189.9208$0.7041
ETH<0.01%$1.960.359$0.7036
ETH<0.01%$0.2280413.0669$0.6993
ETH<0.01%$0.00002329,538.8794$0.6929
ETH<0.01%$0.00001352,777.8512$0.6797
ETH<0.01%$0.002147316.0049$0.6785
ETH<0.01%$0.02195729.8955$0.6564
ETH<0.01%$0.0000669,606.0315$0.6378
ETH<0.01%$39.390.0161$0.6327
ETH<0.01%$0.2548972.4281$0.6189
ETH<0.01%$0.3626251.6358$0.5931
ETH<0.01%$1,650.90.00035288$0.5825
ETH<0.01%$0.761170.7591$0.5777
ETH<0.01%$0.0944426.118$0.5777
ETH<0.01%$0.003673153.8179$0.565
ETH<0.01%$0.0614989.0795$0.5583
ETH<0.01%$0.9993970.5585$0.5581
ETH<0.01%$0.001315418.2326$0.5499
ETH<0.01%$13.080.0392$0.5131
ETH<0.01%$2.630.1887$0.4957
ETH<0.01%$0.7021950.7042$0.4945
ETH<0.01%$7.90.0625$0.4936
ETH<0.01%$0.1717452.7871$0.4786
ETH<0.01%$0.0561348.0136$0.4498
ETH<0.01%$0.7549080.5708$0.4309
ETH<0.01%$0.0747985.7272$0.4283
ETH<0.01%$0.0001353,136.9567$0.4247
ETH<0.01%$0.02890814.2246$0.4112
ETH<0.01%<$0.000001788,957,650.3206$0.4099
ETH<0.01%$2.410.1682$0.4053
ETH<0.01%$0.0001772,269.5229$0.402
ETH<0.01%$1.260.3153$0.3962
ETH<0.01%$1,682.490.00023198$0.3903
ETH<0.01%$0.569830.6805$0.3877
ETH<0.01%$0.0001073,428.4976$0.3683
ETH<0.01%<$0.0000016,671,499.3264$0.3682
ETH<0.01%$14.830.0238$0.3531
ETH<0.01%$0.125482.7255$0.342
ETH<0.01%$20.110.0168$0.3368
ETH<0.01%$0.082624.0362$0.3334
ETH<0.01%$2.920.1067$0.3115
ETH<0.01%$0.0000674,568.5288$0.306
ETH<0.01%<$0.000001154,210,567.9608$0.3022
ETH<0.01%$0.6614150.4358$0.2882
ETH<0.01%<$0.0000011,437,209,582.7863$0.2881
ETH<0.01%$0.6227080.4551$0.2833
ETH<0.01%$0.3942480.7062$0.2784
ETH<0.01%$0.1374682.0169$0.2772
ETH<0.01%$2.10.1309$0.2749
ETH<0.01%$0.0001921,426.496$0.2741
ETH<0.01%$0.9997870.2726$0.2724
ETH<0.01%<$0.00000175,554,337.0513$0.2722
ETH<0.01%<$0.00000178,782,087,872,627.563$0.2711
ETH<0.01%$0.5982260.4419$0.2643
ETH<0.01%$0.0000594,402.4676$0.2594
ETH<0.01%$0.00721635.0091$0.2526
ETH<0.01%$0.1361.8093$0.246
ETH<0.01%$0.00503748.6525$0.245
ETH<0.01%$4.120.0588$0.2422
ETH<0.01%$0.0535714.4427$0.238
ETH<0.01%$0.01291118.4144$0.2377
ETH<0.01%$0.0000584,070.5412$0.2353
ETH<0.01%$0.1618421.3706$0.2218
ETH<0.01%$7,583.880.00002924$0.2217
ETH<0.01%$0.269340.8228$0.2216
ETH<0.01%$0.511930.4282$0.2192
ETH<0.01%$0.00435449.759$0.2166
ETH<0.01%$0.3023630.7095$0.2145
ETH<0.01%$0.024788.5641$0.2122
ETH<0.01%$2.180.0962$0.2096
ETH<0.01%$0.001146181.824$0.2083
ETH<0.01%$0.1286171.6091$0.2069
ETH<0.01%$0.01751411.7231$0.2053
ETH<0.01%$0.2778490.7162$0.1989
ETH<0.01%$134.410.00146366$0.1967
ETH<0.01%$0.1162991.6589$0.1929
ETH<0.01%$0.00255775.3244$0.1925
ETH<0.01%$0.00000919,870.2728$0.1853
ETH<0.01%$0.2063230.8823$0.182
ETH<0.01%$0.00001511,619.1824$0.1744
ETH<0.01%$1.920.0906$0.1743
ETH<0.01%$0.2300490.7379$0.1697
ETH<0.01%$0.2852480.5901$0.1683
ETH<0.01%$0.2178590.7661$0.1669
ETH<0.01%<$0.000001913,580,862.3506$0.1653
ETH<0.01%$0.00889818.2009$0.1619
ETH<0.01%$0.0001511,069.6987$0.1616
ETH<0.01%$0.2938630.5444$0.1599
ETH<0.01%$0.1259751.1962$0.1506
ETH<0.01%$0.0608352.471$0.1503
ETH<0.01%$0.001331107.0786$0.1424
ETH<0.01%$0.00800917.6438$0.1413
ETH<0.01%$0.0140959.3967$0.1324
ETH<0.01%$0.9974940.1319$0.1316
ETH<0.01%$0.0156768.4004$0.1316
ETH<0.01%$0.0207466.3256$0.1312
ETH<0.01%$0.00001210,905.5058$0.1273
ETH<0.01%$0.0929491.3673$0.127
ETH<0.01%$0.001046119.7895$0.1253
ETH<0.01%$25.740.00481074$0.1238
ETH<0.01%$0.2052190.594$0.1218
ETH<0.01%$0.0267254.481$0.1197
ETH<0.01%$0.00424227.5801$0.117
ETH<0.01%$0.000117989.8756$0.1157
ETH<0.01%$0.000001162,245.5945$0.1145
ETH<0.01%<$0.000001264,157.4464$0.1118
ETH<0.01%$0.9613250.1155$0.111
ETH<0.01%$0.9997610.106$0.1059
ETH<0.01%$0.4138660.2505$0.1036
ETH<0.01%<$0.00000161,650,326.4866$0.101
ETH<0.01%$0.085351.1794$0.1006
ETH<0.01%$0.2027760.4937$0.1001
BSC2.68%$0.07415269,384.9861$5,145.04
BSC2.53%$600.338.0792$4,850.17
BSC2.44%$0.9999074,683.4967$4,683.06
BSC2.21%$600.67.0434$4,230.33
BSC0.16%$0.999968306.5384$306.53
BSC0.16%$0.001713174,440.0519$298.83
BSC0.15%$0.2550751,127.9026$287.7
BSC0.06%$87,8100.00140249$123.15
BSC0.06%$88,213.810.00132563$116.94
BSC0.04%$1,581.130.0469$74.12
BSC0.04%$0.012235,880.4913$71.92
BSC0.03%$0.173819308.5663$53.63
BSC0.01%$0.36524273.3281$26.78
BSC0.01%$0.0043584,433.7516$19.32
BSC<0.01%$0.027043422.2164$11.42
BSC<0.01%$0.022942474.0755$10.88
BSC<0.01%$0.079431106.7342$8.48
BSC<0.01%$0.00018845,006.4517$8.46
BSC<0.01%$0.025198298.3299$7.52
BSC<0.01%$0.025636290.145$7.44
BSC<0.01%$0.027145262.971$7.14
BSC<0.01%$0.0000023,072,954.7573$6.56
BSC<0.01%$15.5779$5.58
BSC<0.01%$0.49506810.2262$5.06
BSC<0.01%$0.0018142,644.2164$4.8
BSC<0.01%$0.00015129,955.0036$4.53
BSC<0.01%$0.0018732,204.0403$4.13
BSC<0.01%$0.6319515.2771$3.33
BSC<0.01%$2.11.5308$3.21
BSC<0.01%<$0.000001286,626,687.3075$3.05
BSC<0.01%$0.0004946,137.4019$3.03
BSC<0.01%$0.0001322,568.0023$2.93
BSC<0.01%$0.16102517.7936$2.87
BSC<0.01%$1.961.4514$2.84
BSC<0.01%$0.02860294.0614$2.69
BSC<0.01%$2.080.9708$2.02
BSC<0.01%$0.1831579.1268$1.67
BSC<0.01%$13.070.1159$1.52
BSC<0.01%$0.00008217,918.9355$1.46
BSC<0.01%$144.30.00816467$1.18
BSC<0.01%<$0.00000195,123,789.9642$0.9548
BSC<0.01%$0.0001984,752.5059$0.9426
BSC<0.01%$78.610.012$0.9406
BSC<0.01%$2.180.4134$0.9016
BSC<0.01%$0.2946382.8332$0.8347
BSC<0.01%$1.30.6048$0.7879
BSC<0.01%$0.000814909.5924$0.74
BSC<0.01%$0.0000612,328.1932$0.7378
BSC<0.01%$0.6247881.1182$0.6986
BSC<0.01%$0.24192.8667$0.6934
BSC<0.01%$88,1480.00000734$0.647
BSC<0.01%$2.520.2349$0.5923
BSC<0.01%$0.05478410.687$0.5854
BSC<0.01%$0.001834314.4821$0.5767
BSC<0.01%$0.003751153.5426$0.5759
BSC<0.01%$0.000006103,021.0846$0.5748
BSC<0.01%$0.0777217.3049$0.5677
BSC<0.01%$0.0000995,641.9509$0.5583
BSC<0.01%$0.2778491.9834$0.551
BSC<0.01%$0.00541498.8421$0.5351
BSC<0.01%$0.9982460.5111$0.5102
BSC<0.01%$0.01373736.2442$0.4978
BSC<0.01%$0.0653757.2726$0.4754
BSC<0.01%$139.450.00336137$0.4687
BSC<0.01%$0.02333618.9774$0.4428
BSC<0.01%$2.920.1418$0.414
BSC<0.01%$0.5119430.7185$0.3678
BSC<0.01%$0.02188715.3675$0.3363
BSC<0.01%$0.003082109.0354$0.336
BSC<0.01%$0.2464331.3525$0.3333
BSC<0.01%$0.0417157.9758$0.3327
BSC<0.01%$0.0999282.7889$0.2786
BSC<0.01%$0.001239217.7139$0.2697
BSC<0.01%$0.5131080.5194$0.2665
BSC<0.01%$19.870.0129$0.257
BSC<0.01%$0.0099725.4058$0.2532
BSC<0.01%$8.470.0297$0.2517
BSC<0.01%$1,650.90.00015126$0.2497
BSC<0.01%$0.00946326.2262$0.2481
BSC<0.01%$0.002357103.9387$0.2449
BSC<0.01%$0.00418955.9591$0.2344
BSC<0.01%$4.020.0569$0.2288
BSC<0.01%$3.730.0606$0.2261
BSC<0.01%$0.01377115.8451$0.2181
BSC<0.01%$1.860.1164$0.2165
BSC<0.01%$0.01703312.0461$0.2051
BSC<0.01%$0.001652122.8149$0.2029
BSC<0.01%$0.000214850.6395$0.1819
BSC<0.01%<$0.0000019,121,157.0904$0.1816
BSC<0.01%$0.1286581.411$0.1815
BSC<0.01%$0.00394942.8672$0.1692
BSC<0.01%$0.00169295.0197$0.1607
BSC<0.01%$5.240.0303$0.1591
BSC<0.01%$0.0185777.9907$0.1484
BSC<0.01%$0.0249075.3026$0.132
BSC<0.01%$0.000126993.9999$0.1251
BSC<0.01%<$0.00000191,724,418.7775$0.1164
BSC<0.01%$0.0000871,332.0149$0.1161
BSC<0.01%$0.9998790.1104$0.1104
BSC<0.01%$0.00000812,801.2103$0.1018
AVAX1.90%$1,579.292.3095$3,647.4
AVAX0.17%$19.8616.0649$319.02
AVAX0.03%$0.0080427,232.7942$58.17
AVAX0.02%$0.99998132.3914$32.39
AVAX<0.01%$0.9999757.7175$7.72
AVAX<0.01%$0.00651332.55$2.16
AVAX<0.01%$19.810.0773$1.53
AVAX<0.01%$88,2280.00001144$1.01
AVAX<0.01%$0.1352067.2091$0.9747
AVAX<0.01%$0.02467734.4725$0.8506
AVAX<0.01%<$0.000001110,270,200.1689$0.7167
AVAX<0.01%$0.9999810.6329$0.6328
AVAX<0.01%$88,1640.00000552$0.4866
AVAX<0.01%$0.9998810.3345$0.3345
AVAX<0.01%$0.000001495,932.8579$0.3014
AVAX<0.01%$0.9999750.2159$0.2159
AVAX<0.01%$13.050.0133$0.1738
AVAX<0.01%$1.220.1309$0.1596
ARB0.54%$11,041.8672$1,041.87
ARB0.45%$1,582.040.5454$862.9
ARB0.39%$1,579.320.4721$745.55
ARB0.38%$0.999963736.1375$736.11
ARB<0.01%$0.0017671,142.6496$2.02
ARB<0.01%$3.630.4026$1.46
ARB<0.01%$144.080.00682505$0.9833
ARB<0.01%$0.00335230.9037$0.7735
ARB<0.01%$0.0764767.438$0.5688
ARB<0.01%$0.005326101.4042$0.5401
ARB<0.01%$0.1932112.6476$0.5115
ARB<0.01%$0.9995920.5112$0.511
ARB<0.01%$0.000001441,930.6587$0.5082
ARB<0.01%$0.9999470.5043$0.5042
ARB<0.01%$0.02173922.5398$0.49
ARB<0.01%$0.01350535.0946$0.4739
ARB<0.01%$0.02143818.5307$0.3972
ARB<0.01%$13.510.0294$0.3967
ARB<0.01%$0.190312.0737$0.3946
ARB<0.01%$0.01006638.3536$0.386
ARB<0.01%$0.295881.1449$0.3387
ARB<0.01%$1,893.820.00017247$0.3266
ARB<0.01%$0.2776081.106$0.307
ARB<0.01%$4.120.068$0.2799
ARB<0.01%$88,2620.00000262$0.2312
ARB<0.01%$0.01304315.9969$0.2086
ARB<0.01%$0.001254165.2832$0.2072
ARB<0.01%$0.0275977.2047$0.1988
ARB<0.01%$87,9570.00000216$0.1899
ARB<0.01%$88,1920.00000197$0.1737
ARB<0.01%$10.1683$0.1683
ARB<0.01%$0.9991350.1671$0.1669
ARB<0.01%$0.0434273.7195$0.1615
ARB<0.01%<$0.0000011,548,701.4508$0.159
ARB<0.01%$0.00710821.9926$0.1563
ARB<0.01%$0.9992840.1514$0.1513
ARB<0.01%$1.960.0753$0.1475
ARB<0.01%<$0.0000014,276,851.5483$0.1295
ARB<0.01%$0.00000814,458.7283$0.115
ARB<0.01%$13.080.00846378$0.1107
POL1.17%$1,581.131.4153$2,237.81
POL0.21%$0.2076531,976.7921$410.49
POL<0.01%<$0.0000012,687,342,540.1095$13.97
POL<0.01%$0.999948.6728$8.67
POL<0.01%<$0.0000013,225,050,264.7417$0.9675
POL<0.01%$0.2992473.1019$0.9282
POL<0.01%$4.370.2119$0.926
POL<0.01%$0.1708875.3102$0.9074
POL<0.01%$0.5982261.4394$0.861
POL<0.01%$14.860.0527$0.7824
POL<0.01%$0.003544218.6305$0.7747
POL<0.01%$0.2703962.8113$0.7601
POL<0.01%$3,504.110.00021426$0.7507
POL<0.01%$0.999940.735$0.7349
POL<0.01%$19.860.0344$0.6825
POL<0.01%$0.0001773,737.5873$0.6621
POL<0.01%$1.150.5732$0.6592
POL<0.01%$1.150.5732$0.6592
POL<0.01%$0.0000867,615.3084$0.657
POL<0.01%$0.9999680.6357$0.6357
POL<0.01%$5.240.1147$0.6008
POL<0.01%$0.001917264.7837$0.5076
POL<0.01%$0.5131080.9076$0.4657
POL<0.01%$0.00626171.6173$0.4484
POL<0.01%$0.02947614.5368$0.4284
POL<0.01%$139.310.00264431$0.3683
POL<0.01%$0.3098871.1396$0.3531
POL<0.01%$0.082623.3138$0.2737
POL<0.01%$0.0588994.0604$0.2391
POL<0.01%$0.1283311.6777$0.2153
POL<0.01%$0.299280.5888$0.1762
POL<0.01%$0.0213498.2388$0.1758
POL<0.01%$0.00548830.14$0.1654
POL<0.01%$3.90.0422$0.1646
POL<0.01%$0.000419389.6102$0.1632
POL<0.01%$0.322250.4708$0.1517
POL<0.01%$0.6010430.2446$0.147
POL<0.01%$0.2487210.5243$0.1304
POL<0.01%$0.187650.6759$0.1268
POL<0.01%<$0.00000122,437,563.5554$0.1256
POL<0.01%$0.001218102.498$0.1248
POL<0.01%$88,1480.00000135$0.1189
POL<0.01%$0.0000138,584.0533$0.1073
POL<0.01%$0.768120.1393$0.1069
POL<0.01%$0.0071214.9792$0.1066
POL<0.01%$0.9999250.1009$0.1009
SONIC0.79%$0.9999811,509.1141$1,509.09
SONIC
S (S)
0.37%$0.4601571,525.2617$701.86
SONIC0.04%$0.459382177.5526$81.56
SONIC<0.01%$1,579.290.00451622$7.13
SONIC<0.01%$0.9986661.0757$1.07
SONIC<0.01%$1.350.72$0.972
SONIC<0.01%$0.0778944.1556$0.3236
SONIC<0.01%$0.4660130.2774$0.1292
OP0.32%$1,579.290.3828$604.59
OP0.24%$1,581.760.2879$455.41
OP<0.01%$10.8965$0.8965
OP<0.01%$2.410.3221$0.7762
OP<0.01%$144.140.00533304$0.7687
OP<0.01%$88,1640.00000815$0.7185
OP<0.01%$0.6603591.0692$0.706
OP<0.01%$0.9999540.692$0.6919
OP<0.01%$0.04495615.1114$0.6793
OP<0.01%$0.6936010.7992$0.5543
OP<0.01%$1,893.720.00028466$0.539
OP<0.01%$0.000162,905.3049$0.4638
OP<0.01%$0.9999220.378$0.3779
OP<0.01%$13.080.0245$0.3209
OP<0.01%$0.9999810.3209$0.3208
OP<0.01%$1,651.350.00014586$0.2408
OP<0.01%$1,780.030.00012604$0.2243
CRONOS0.02%$0.99995432.8546$32.85
CRONOS0.01%$0.99998126.2795$26.28
CRONOS0.01%$0.082016302.8192$24.84
CRONOS0.01%$139.330.1592$22.18
CRONOS<0.01%$0.000013227,675.584$2.93
CRONOS<0.01%$3.450.7151$2.47
CRONOS<0.01%$0.0010991,669.8895$1.84
CRONOS<0.01%<$0.00000161,889,990.5588$1.23
CRONOS<0.01%$0.000215,587.5653$1.18
CRONOS<0.01%$0.0001467,902.4065$1.16
CRONOS<0.01%$2.080.5308$1.1
CRONOS<0.01%$0.000002295,672.402$0.609
CRONOS<0.01%$0.0333368.9141$0.2971
CRONOS<0.01%$88,1640.00000114$0.1005
TAIKO0.02%$0.59322165.1895$38.67
TAIKO<0.01%$1,581.920.0105$16.61
TAIKO<0.01%$0.9990070.7424$0.7416
TAIKO<0.01%$1,586.580.00038183$0.6058
MOVR0.01%$1,579.480.0164$25.84
MOVR0.01%$0.99968924.3866$24.38
MOVR<0.01%$5.680.0000000000050766<$0.000001
CELO0.01%$0.99995422.9062$22.91
CELO<0.01%$0.9995535.3923$5.39
CELO<0.01%$0.30961510.7068$3.31
CELO<0.01%$0.9997751.6615$1.66
CELO<0.01%$1.150.1861$0.214
LINEA0.01%$1,581.490.013$20.5
LINEA<0.01%$1,582.290.00692874$10.96
LINEA<0.01%$0.999940.3635$0.3634
LINEA<0.01%$0.9999680.354$0.354
LINEA<0.01%$1.960.1358$0.2662
LINEA<0.01%$0.9999250.2215$0.2215
LINEA<0.01%$0.001297168.8638$0.219
LINEA<0.01%$88,1480.00000168$0.148
LINEA<0.01%$1,650.90.0000643$0.1061
SCROLL<0.01%$1,581.920.00753492$11.92
SCROLL<0.01%$0.9999711.6778$1.68
SCROLL<0.01%$0.9998310.7627$0.7626
MANTLE<0.01%$16.5476$6.55
MANTLE<0.01%$11.8158$1.82
MANTLE<0.01%$1,580.860.00094525$1.49
MANTLE<0.01%$0.6614490.6913$0.457243
MANTLE<0.01%$1,681.240.00013297$0.2235
BLAST<0.01%$1,579.290.00388204$6.13
BLAST<0.01%$1,582.530.00248248$3.93
BLAST<0.01%$10.1091$0.1092
GNO<0.01%$0.9999293.8555$3.86
GNO<0.01%$1,579.290.00081333$1.28
GNO<0.01%$0.9999810.9365$0.9364
GNO<0.01%$1.150.415$0.4772
GNO<0.01%$1.150.415$0.4772
GNO<0.01%$0.9999290.3439$0.343853
GNO<0.01%$103.870.0023748$0.2466
ARBNOVA<0.01%$1,582.260.00038856$0.614807
ARBNOVA<0.01%$1,579.310.00026552$0.4193
ZKEVM<0.01%$1,582.290.00019779$0.31296
ZKEVM<0.01%$0.9999540.1599$0.1598
APE<0.01%$0.4624290.0486$0.02248
GLMR<0.01%$0.0701760.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.