S Price: $0.464226 (+1.68%)

Contract

0x8f7BCcCc0EfeCa85b103D9783055704E37e40F2C

Overview

S Balance

Sonic LogoSonic LogoSonic Logo1,525.261712433729062615 S

S Value

$708.07 (@ $0.46/S)

Token Holdings

Amount:Between 1-10
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
214794062025-04-22 3:09:216 mins ago1745291361
0x8f7BCcCc...E37e40F2C
0.01013073 S
214785012025-04-22 3:01:2314 mins ago1745290883
0x8f7BCcCc...E37e40F2C
0 S
214740602025-04-22 2:23:5651 mins ago1745288636
0x8f7BCcCc...E37e40F2C
0.032071 S
214567102025-04-22 0:05:393 hrs ago1745280339
0x8f7BCcCc...E37e40F2C
0.0009288 S
214509892025-04-21 23:07:394 hrs ago1745276859
0x8f7BCcCc...E37e40F2C
357 wei
214346832025-04-21 20:22:506 hrs ago1745266970
0x8f7BCcCc...E37e40F2C
0.08993995 S
214339512025-04-21 20:15:586 hrs ago1745266558
0x8f7BCcCc...E37e40F2C
438 wei
214275752025-04-21 19:21:067 hrs ago1745263266
0x8f7BCcCc...E37e40F2C
124 wei
213978172025-04-21 15:47:0911 hrs ago1745250429
0x8f7BCcCc...E37e40F2C
0.00009357 S
213633742025-04-21 11:38:3215 hrs ago1745235512
0x8f7BCcCc...E37e40F2C
303 wei
213586402025-04-21 11:01:3916 hrs ago1745233299
0x8f7BCcCc...E37e40F2C
535 wei
213566822025-04-21 10:46:5016 hrs ago1745232410
0x8f7BCcCc...E37e40F2C
0.00101476 S
213432512025-04-21 9:00:1218 hrs ago1745226012
0x8f7BCcCc...E37e40F2C
822 wei
213249582025-04-21 6:33:3920 hrs ago1745217219
0x8f7BCcCc...E37e40F2C
0.00000202 S
213248512025-04-21 6:32:5520 hrs ago1745217175
0x8f7BCcCc...E37e40F2C
201 wei
213220392025-04-21 6:11:0421 hrs ago1745215864
0x8f7BCcCc...E37e40F2C
329 wei
213218392025-04-21 6:09:1821 hrs ago1745215758
0x8f7BCcCc...E37e40F2C
0.00098883 S
213209622025-04-21 6:01:4721 hrs ago1745215307
0x8f7BCcCc...E37e40F2C
0.00000204 S
212980632025-04-21 3:15:3923 hrs ago1745205339
0x8f7BCcCc...E37e40F2C
0 S
212936332025-04-21 2:52:3424 hrs ago1745203954
0x8f7BCcCc...E37e40F2C
0.00000211 S
212917712025-04-21 2:42:4724 hrs ago1745203367
0x8f7BCcCc...E37e40F2C
0.00953184 S
212904982025-04-21 2:36:0024 hrs ago1745202960
0x8f7BCcCc...E37e40F2C
0.86612277 S
212829632025-04-21 1:55:0725 hrs ago1745200507
0x8f7BCcCc...E37e40F2C
0.00009931 S
212481182025-04-20 21:59:5329 hrs ago1745186393
0x8f7BCcCc...E37e40F2C
0.00003152 S
212305402025-04-20 19:53:2131 hrs ago1745178801
0x8f7BCcCc...E37e40F2C
342 wei
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
BASE36.11%$1,574.8443.6901$68,804.96
BASE13.00%$1,574.0115.7333$24,764.42
BASE9.23%$0.99995517,590.9029$17,590.11
BASE<0.01%$0.23971450.3358$12.07
BASE<0.01%$0.046559102.3602$4.77
BASE<0.01%$171.410.0129$2.2
BASE<0.01%$10.9994$0.9994
BASE<0.01%$87,7610.00001017$0.8925
BASE<0.01%$0.9252260.8596$0.7953
BASE<0.01%$142.390.00546181$0.7777
BASE<0.01%$0.0770049.901$0.7624
BASE<0.01%$0.9996860.7502$0.75
BASE<0.01%$0.0000749,791.5168$0.7239
BASE<0.01%$0.0013549.4326$0.714
BASE<0.01%$0.02950724.1048$0.7112
BASE<0.01%$1.150.6127$0.7045
BASE<0.01%$0.001972352.058$0.694
BASE<0.01%$0.0075889.3556$0.6773
BASE<0.01%$0.5976141.1202$0.6694
BASE<0.01%$3.260.1886$0.6147
BASE<0.01%$0.0843047.1779$0.6051
BASE<0.01%$0.00636694.3295$0.6005
BASE<0.01%$0.9988340.5841$0.5834
BASE<0.01%$0.574760.9458$0.5436
BASE<0.01%$0.001131480.3047$0.5432
BASE<0.01%$0.001684312.591$0.5264
BASE<0.01%$0.9993290.5164$0.516
BASE<0.01%$0.5546690.8903$0.4938
BASE<0.01%$0.3963031.1945$0.4733
BASE<0.01%$0.1419083.2732$0.4644
BASE<0.01%$0.000757591.8341$0.4479
BASE<0.01%$0.000608698.5467$0.4249
BASE<0.01%$0.00397105.2035$0.4176
BASE<0.01%$1,695.150.000242$0.4102
BASE<0.01%$0.00585169.724$0.4079
BASE<0.01%$0.00000667,649.0762$0.4072
BASE<0.01%$0.01643424.3408$0.40
BASE<0.01%$0.001842215.0407$0.396
BASE<0.01%$0.0003481,104.9702$0.384
BASE<0.01%$0.01008137.4624$0.3776
BASE<0.01%$0.1779662.1009$0.3738
BASE<0.01%$0.0466647.7265$0.3605
BASE<0.01%$0.01724720.4621$0.3529
BASE<0.01%$0.000003106,195.3502$0.3461
BASE<0.01%$0.0390668.6031$0.336
BASE<0.01%$1,677.820.0001912$0.3208
BASE<0.01%$0.0000863,671.1647$0.3164
BASE<0.01%$0.00002114,739.353$0.3053
BASE<0.01%$0.01420220.5052$0.2912
BASE<0.01%$0.9960790.2884$0.2872
BASE<0.01%$0.013920.5387$0.2854
BASE<0.01%<$0.0000012,815,079.8285$0.2848
BASE<0.01%$0.0366927.5993$0.2788
BASE<0.01%$0.0000863,228.9571$0.2783
BASE<0.01%$0.0001441,926.3048$0.2782
BASE<0.01%$0.001077254.7099$0.2744
BASE<0.01%$0.00000548,761.7815$0.2608
BASE<0.01%$0.0001531,671.7336$0.2565
BASE<0.01%$0.00470350.4476$0.2372
BASE<0.01%$0.00897925.8393$0.2319
BASE<0.01%<$0.0000013,134,527.0364$0.2281
BASE<0.01%$0.00000548,630.0535$0.2198
BASE<0.01%$0.01837511.4048$0.2095
BASE<0.01%$0.000336597.6296$0.2008
BASE<0.01%$0.00233883.761$0.1958
BASE<0.01%$0.2219630.8498$0.1886
BASE<0.01%$0.01584311.8692$0.188
BASE<0.01%$0.0101618.3944$0.1868
BASE<0.01%$87,9190.00000206$0.1811
BASE<0.01%<$0.000001889,202.1$0.1805
BASE<0.01%$2.490.0723$0.1801
BASE<0.01%$0.000223803.2743$0.1791
BASE<0.01%$0.0001211,481.5913$0.179
BASE<0.01%$0.000411427.6899$0.1757
BASE<0.01%$0.4913410.354$0.1739
BASE<0.01%<$0.0000018,417,169.3836$0.1683
BASE<0.01%$0.6557940.2561$0.1679
BASE<0.01%$0.0550473.0219$0.1663
BASE<0.01%$2.190.0742$0.1624
BASE<0.01%$0.001311121.2376$0.1589
BASE<0.01%$2.240.0708$0.1586
BASE<0.01%$0.00001114,079.3381$0.1513
BASE<0.01%$0.0051628.2115$0.1455
BASE<0.01%$1,647.030.00008181$0.1347
BASE<0.01%$0.2481360.5391$0.1337
BASE<0.01%$0.00046276.8447$0.1273
BASE<0.01%$0.0842691.4973$0.1261
BASE<0.01%$0.9999060.1218$0.1217
BASE<0.01%$0.0228465.3248$0.1216
BASE<0.01%$221.010.00054162$0.1197
BASE<0.01%$0.3034390.386$0.1171
BASE<0.01%$0.0828051.3593$0.1125
BASE<0.01%$0.0274843.8817$0.1066
BASE<0.01%$10.1028$0.1027
BASE<0.01%$0.0371542.7304$0.1014
BASE<0.01%$0.0000731,378.0263$0.1006
ETH8.34%$1,574.6710.0961$15,898.03
ETH6.80%$1,574.678.2316$12,962.07
ETH5.49%$0.99998910,454.3103$10,454.2
ETH2.20%$14,184.9289$4,184.93
ETH0.92%$0.00008221,326,099.358$1,759.06
ETH0.02%$1,774.710.0164$29.06
ETH0.01%$2,027.170.0113$22.81
ETH<0.01%$0.51877519.7954$10.27
ETH<0.01%$88,0760.00011276$9.93
ETH<0.01%$14.290.6759$9.66
ETH<0.01%$0.038955242.133$9.43
ETH<0.01%$3,496.540.00258292$9.03
ETH<0.01%$3.262.66$8.67
ETH<0.01%$139.010.0611$8.5
ETH<0.01%$142.50.0595$8.49
ETH<0.01%$0.025516332.5357$8.48
ETH<0.01%$0.59614413.5444$8.07
ETH<0.01%<$0.0000011,362,390,103.0672$7.49
ETH<0.01%$17.350.4155$7.21
ETH<0.01%$0.013894518.7708$7.21
ETH<0.01%$0.014768480.9488$7.1
ETH<0.01%$0.178139.3203$7
ETH<0.01%$0.061778106.3695$6.57
ETH<0.01%$0.000035190,068.9553$6.56
ETH<0.01%$3,496.260.001833$6.41
ETH<0.01%$0.22866726.7412$6.11
ETH<0.01%$0.00025923,304.4289$6.04
ETH<0.01%$0.000008755,704.7441$5.99
ETH<0.01%$0.056292105.109$5.92
ETH<0.01%$0.0017593,226.2679$5.68
ETH<0.01%$0.6562917.6397$5.01
ETH<0.01%$0.17175628.6602$4.92
ETH<0.01%$0.06017378.7515$4.74
ETH<0.01%$66.620.0711$4.74
ETH<0.01%$0.5902937.7489$4.57
ETH<0.01%$0.28101516.0447$4.51
ETH<0.01%$0.000018229,874.2479$4.23
ETH<0.01%$0.0000018,201,686.6411$4.22
ETH<0.01%$0.037781108.4038$4.1
ETH<0.01%$4.40.9017$3.97
ETH<0.01%$0.0023851,657.0753$3.95
ETH<0.01%$7.610.513$3.91
ETH<0.01%<$0.0000012,846,470,635.3843$3.9
ETH<0.01%$0.006364609.8591$3.88
ETH<0.01%$0.13088128.7541$3.76
ETH<0.01%$0.015733228.0119$3.59
ETH<0.01%$0.14651823.4105$3.43
ETH<0.01%<$0.00000156,760,960.8202$3.43
ETH<0.01%$0.024689120.6887$2.98
ETH<0.01%$0.0020131,458.2105$2.93
ETH<0.01%$0.09566730.6262$2.93
ETH<0.01%$0.021959130.0369$2.86
ETH<0.01%<$0.0000015,942,601.1841$2.84
ETH<0.01%$0.07318438.4483$2.81
ETH<0.01%$0.008458318.1499$2.69
ETH<0.01%$0.00015417,446.2677$2.68
ETH<0.01%$0.0021011,267.3763$2.66
ETH<0.01%$0.24225410.8762$2.63
ETH<0.01%$0.00005941,153.89$2.42
ETH<0.01%$0.00838266.5984$2.23
ETH<0.01%$0.04017753.9664$2.17
ETH<0.01%$0.6794443.087$2.1
ETH<0.01%<$0.00000120,439,871.4147$2.07
ETH<0.01%$0.010668184.3462$1.97
ETH<0.01%$0.02660173.1247$1.95
ETH<0.01%$5.910.326$1.93
ETH<0.01%$1.061.7574$1.87
ETH<0.01%$1,574.280.00118254$1.86
ETH<0.01%$0.2387937.7747$1.86
ETH<0.01%$0.02974262.2141$1.85
ETH<0.01%$0.07725223.7636$1.84
ETH<0.01%$0.05314434.2407$1.82
ETH<0.01%$42.980.0411$1.77
ETH<0.01%$0.02559768.6983$1.76
ETH<0.01%$0.09216518.4342$1.7
ETH<0.01%$0.00002860,884.3483$1.69
ETH<0.01%<$0.00000133,753,210.8669$1.66
ETH<0.01%<$0.00000114,020,748.7961$1.64
ETH<0.01%$0.11399114.192$1.62
ETH<0.01%$0.1819038.8743$1.61
ETH<0.01%$88,0390.00001827$1.61
ETH<0.01%$1,889.590.0008488$1.6
ETH<0.01%$0.3319444.6614$1.55
ETH<0.01%$1,726.250.00087671$1.51
ETH<0.01%$0.02774754.5359$1.51
ETH<0.01%$0.002298631.9179$1.45
ETH<0.01%$0.5077852.8334$1.44
ETH<0.01%$0.003726381.3909$1.42
ETH<0.01%$1.171.2114$1.42
ETH<0.01%$0.00154911.2717$1.4
ETH<0.01%$0.07013119.9668$1.4
ETH<0.01%$1.11.2635$1.38
ETH<0.01%$0.01379799.0557$1.37
ETH<0.01%$0.05821523.349$1.36
ETH<0.01%$0.006852193.606$1.33
ETH<0.01%$0.9990641.3212$1.32
ETH<0.01%$0.9998291.3136$1.31
ETH<0.01%$0.0008561,512.2134$1.3
ETH<0.01%$0.4638872.7647$1.28
ETH<0.01%$0.02622248.0165$1.26
ETH<0.01%$8.580.1419$1.22
ETH<0.01%$0.0011021,097.5191$1.21
ETH<0.01%$0.005511218.9$1.21
ETH<0.01%$0.01457282.208$1.2
ETH<0.01%$87,7630.00001314$1.15
ETH<0.01%$0.02904239.7035$1.15
ETH<0.01%$0.001882612.2877$1.15
ETH<0.01%$0.2244445.0907$1.14
ETH<0.01%$0.7962711.4312$1.14
ETH<0.01%$0.009087122.6512$1.11
ETH<0.01%$0.00001289,593.6913$1.11
ETH<0.01%$1.250.837$1.05
ETH<0.01%$0.7460941.4012$1.05
ETH<0.01%$0.08875311.6838$1.04
ETH<0.01%$0.06696315.4257$1.03
ETH<0.01%$0.07902612.8877$1.02
ETH<0.01%$0.0003123,241.4467$1.01
ETH<0.01%$0.1317447.6692$1.01
ETH<0.01%$0.05484518.3715$1.01
ETH<0.01%$0.0001785,536.512$0.9837
ETH<0.01%$0.03473927.8297$0.9667
ETH<0.01%$0.0002633,549.4082$0.935
ETH<0.01%$10.9178$0.9177
ETH<0.01%$0.000004244,822.9303$0.9096
ETH<0.01%$0.1769295.1351$0.9085
ETH<0.01%$0.0006621,368.5791$0.9058
ETH<0.01%$0.1853564.875$0.9036
ETH<0.01%$0.00911198.8238$0.9003
ETH<0.01%$0.0992739.0413$0.8975
ETH<0.01%$598.990.00149734$0.8968
ETH<0.01%$0.05547415.6548$0.8684
ETH<0.01%$0.9995020.8643$0.8639
ETH<0.01%$0.6143791.4034$0.8622
ETH<0.01%$0.8675450.9912$0.8598
ETH<0.01%$0.0006741,219.8743$0.8215
ETH<0.01%$0.236483.4667$0.8198
ETH<0.01%$0.03382123.9906$0.8113
ETH<0.01%$0.002458327.4264$0.8049
ETH<0.01%<$0.00000176,208,662.785$0.7865
ETH<0.01%$0.827110.9436$0.7804
ETH<0.01%$0.2749772.7295$0.7505
ETH<0.01%$0.04336217.1776$0.7448
ETH<0.01%$4.450.1666$0.7415
ETH<0.01%$0.02456629.8955$0.7344
ETH<0.01%$0.2323483.0669$0.7125
ETH<0.01%$0.00783189.9208$0.7041
ETH<0.01%$0.0856058.2082$0.7026
ETH<0.01%$1.930.359$0.6928
ETH<0.01%$0.0000729,606.0315$0.6902
ETH<0.01%$0.00001352,777.8512$0.6818
ETH<0.01%$0.002147316.0049$0.6785
ETH<0.01%$0.0850597.9196$0.6736
ETH<0.01%$0.00002329,538.8794$0.6731
ETH<0.01%$0.2651762.4281$0.6438
ETH<0.01%$39.630.0161$0.6365
ETH<0.01%$0.375051.6358$0.6135
ETH<0.01%$1,647.390.00035288$0.5813
ETH<0.01%$0.7596290.7591$0.5766
ETH<0.01%$0.0942076.118$0.5763
ETH<0.01%$0.0622179.0795$0.5648
ETH<0.01%$0.003663153.8179$0.5633
ETH<0.01%$0.9995440.5585$0.5582
ETH<0.01%$0.001328418.2326$0.5554
ETH<0.01%$2.640.1887$0.4986
ETH<0.01%$0.7075010.7042$0.4982
ETH<0.01%$7.850.0625$0.4905
ETH<0.01%$0.1707612.7871$0.4759
ETH<0.01%$0.0562118.0136$0.4504
ETH<0.01%$0.7558470.5708$0.4314
ETH<0.01%$0.0747985.7272$0.4283
ETH<0.01%$0.0001363,136.9567$0.4259
ETH<0.01%$2.450.1682$0.4121
ETH<0.01%<$0.000001788,957,650.3206$0.4109
ETH<0.01%$0.0001742,269.5229$0.3953
ETH<0.01%$0.02766314.2246$0.3934
ETH<0.01%$0.5780770.6805$0.3933
ETH<0.01%$1,677.840.00023198$0.3892
ETH<0.01%$1.230.3153$0.3892
ETH<0.01%$0.0001073,428.4976$0.3683
ETH<0.01%<$0.0000016,671,499.3264$0.3673
ETH<0.01%$14.930.0238$0.3555
ETH<0.01%$0.1238572.7255$0.3375
ETH<0.01%$0.0829634.0362$0.3348
ETH<0.01%$19.830.0168$0.3321
ETH<0.01%$2.90.1067$0.3094
ETH<0.01%$0.0000674,568.5288$0.3059
ETH<0.01%<$0.000001154,210,567.9608$0.3004
ETH<0.01%$0.6748940.4358$0.294
ETH<0.01%$13.150.0219$0.2875
ETH<0.01%<$0.0000011,437,209,582.7863$0.2868
ETH<0.01%$0.6284910.4551$0.286
ETH<0.01%$0.3972520.7062$0.2805
ETH<0.01%$0.1374852.0169$0.2772
ETH<0.01%$2.090.1309$0.2736
ETH<0.01%$0.999830.2726$0.2725
ETH<0.01%$0.0001891,426.496$0.2698
ETH<0.01%<$0.00000178,782,087,872,627.563$0.2663
ETH<0.01%<$0.00000175,554,337.0513$0.265
ETH<0.01%$0.5986910.4419$0.2645
ETH<0.01%$0.0000594,402.4676$0.2605
ETH<0.01%$0.00517448.6525$0.2517
ETH<0.01%$0.00714435.0091$0.2501
ETH<0.01%$0.1381.8093$0.2496
ETH<0.01%$0.0552234.4427$0.2453
ETH<0.01%$4.140.0588$0.2434
ETH<0.01%$0.01306518.4144$0.2405
ETH<0.01%$0.0013181.824$0.2364
ETH<0.01%$0.0000584,070.5412$0.2353
ETH<0.01%$0.00450549.759$0.2241
ETH<0.01%$0.1633771.3706$0.2239
ETH<0.01%$0.2714190.8228$0.2233
ETH<0.01%$7,626.160.00002924$0.223
ETH<0.01%$0.5120670.4282$0.2192
ETH<0.01%$0.3037560.7095$0.2155
ETH<0.01%$0.024688.5641$0.2113
ETH<0.01%$2.190.0962$0.2106
ETH<0.01%$0.1288211.6091$0.2072
ETH<0.01%$0.01748811.7231$0.205
ETH<0.01%$0.2783990.7162$0.1993
ETH<0.01%$134.990.00146366$0.1975
ETH<0.01%$0.1162341.6589$0.1928
ETH<0.01%$0.00255175.3244$0.1921
ETH<0.01%$0.00000919,870.2728$0.1853
ETH<0.01%$0.1997120.8823$0.1762
ETH<0.01%$0.2381950.7379$0.1757
ETH<0.01%$0.00001511,619.1824$0.1749
ETH<0.01%$1.920.0906$0.1741
ETH<0.01%$0.287380.5901$0.1695
ETH<0.01%$0.2178590.7661$0.1669
ETH<0.01%<$0.000001913,580,862.3506$0.1653
ETH<0.01%$0.0001531,069.6987$0.1636
ETH<0.01%$0.2938020.5444$0.1599
ETH<0.01%$0.00870118.2009$0.1583
ETH<0.01%$0.0609742.471$0.1506
ETH<0.01%$0.1240251.1962$0.1483
ETH<0.01%$0.0225836.3256$0.1428
ETH<0.01%$0.00133107.0786$0.1424
ETH<0.01%$0.0080117.6438$0.1413
ETH<0.01%$0.0142599.3967$0.1339
ETH<0.01%$0.9977810.1319$0.1316
ETH<0.01%$0.0156168.4004$0.1311
ETH<0.01%$0.0935431.3673$0.1279
ETH<0.01%$26.50.00481074$0.1274
ETH<0.01%$0.2100630.594$0.1247
ETH<0.01%$0.001037119.7895$0.1241
ETH<0.01%$0.0267474.481$0.1198
ETH<0.01%$0.00426527.5801$0.1176
ETH<0.01%$0.000116989.8756$0.1148
ETH<0.01%$0.000001162,245.5945$0.1145
ETH<0.01%$0.0000110,905.5058$0.1135
ETH<0.01%<$0.000001264,157.4464$0.1116
ETH<0.01%$0.9618620.1155$0.111
ETH<0.01%$10.106$0.106
ETH<0.01%$0.4141570.2505$0.1037
ETH<0.01%$0.0859841.1794$0.1014
ETH<0.01%<$0.00000161,650,326.4866$0.101
ETH<0.01%$0.2042030.4937$0.1008
BSC2.54%$598.198.0791$4,832.84
BSC2.46%$0.9998944,683.4961$4,683
BSC2.37%$0.06507769,384.9861$4,515.37
BSC2.21%$598.997.0434$4,218.97
BSC0.16%$1306.5382$306.54
BSC0.15%$0.001689174,440.0519$294.6
BSC0.15%$0.2542391,127.9026$286.76
BSC0.06%$87,5600.00140249$122.8
BSC0.06%$88,101.590.00132563$116.79
BSC0.04%$1,575.360.0469$73.84
BSC0.04%$0.0119535,880.4913$70.29
BSC0.03%$0.17702308.5663$54.62
BSC0.01%$0.36712473.3281$26.92
BSC<0.01%$0.0042813,766.9198$16.13
BSC<0.01%$0.027209422.2164$11.49
BSC<0.01%$0.023048474.0755$10.93
BSC<0.01%$0.00021745,006.4517$9.78
BSC<0.01%$0.080036106.7342$8.54
BSC<0.01%$0.026865290.145$7.79
BSC<0.01%$0.025051298.3299$7.47
BSC<0.01%$0.02719262.971$7.15
BSC<0.01%$0.0000023,065,497.0087$5.62
BSC<0.01%$15.5779$5.58
BSC<0.01%$0.49372510.2262$5.05
BSC<0.01%$0.0017892,644.2164$4.73
BSC<0.01%$0.00015329,955.0036$4.58
BSC<0.01%$0.0019332,204.0403$4.26
BSC<0.01%$0.6144025.2771$3.24
BSC<0.01%$2.11.5308$3.21
BSC<0.01%<$0.000001286,626,687.3075$2.99
BSC<0.01%$0.00012922,568.0023$2.91
BSC<0.01%$0.0004716,137.4019$2.89
BSC<0.01%$0.15985817.7936$2.84
BSC<0.01%$1.931.4514$2.8
BSC<0.01%$0.02861394.0614$2.69
BSC<0.01%$2.080.9708$2.02
BSC<0.01%$0.1819039.1268$1.66
BSC<0.01%$13.150.1159$1.52
BSC<0.01%$0.00008117,918.9355$1.45
BSC<0.01%$142.560.00816467$1.16
BSC<0.01%$0.0002154,752.5059$1.02
BSC<0.01%<$0.00000195,123,789.9642$0.9548
BSC<0.01%$78.770.012$0.9425
BSC<0.01%$2.190.4134$0.9049
BSC<0.01%$0.2948812.8332$0.8354
BSC<0.01%$1.30.6048$0.7879
BSC<0.01%$0.000831909.5924$0.756
BSC<0.01%$0.00006112,328.1932$0.7493
BSC<0.01%$0.6233531.1182$0.697
BSC<0.01%$0.2426512.8667$0.6956
BSC<0.01%$88,0760.00000734$0.6464
BSC<0.01%$2.590.2349$0.6091
BSC<0.01%$0.0817447.3049$0.5971
BSC<0.01%$0.000006103,021.0846$0.5882
BSC<0.01%$0.05498710.687$0.5876
BSC<0.01%$0.001834314.4821$0.5767
BSC<0.01%$0.003686153.5426$0.5659
BSC<0.01%$0.0000995,641.9509$0.5583
BSC<0.01%$0.2783991.9834$0.5521
BSC<0.01%$0.00554198.8421$0.5476
BSC<0.01%$0.9981320.5111$0.5101
BSC<0.01%$0.01373736.2442$0.4978
BSC<0.01%$0.065827.2726$0.4786
BSC<0.01%$139.030.00336137$0.4673
BSC<0.01%$0.02342118.9774$0.4444
BSC<0.01%$2.90.1418$0.4112
BSC<0.01%$0.5123450.7185$0.3681
BSC<0.01%$0.0456087.9758$0.3637
BSC<0.01%$0.02187815.3675$0.3362
BSC<0.01%$0.2461921.3525$0.3329
BSC<0.01%$0.002957109.0354$0.3223
BSC<0.01%$0.1018872.7889$0.2841
BSC<0.01%$0.5187750.5194$0.2694
BSC<0.01%$0.001185217.7139$0.2579
BSC<0.01%$19.920.0129$0.2576
BSC<0.01%$0.0100725.4058$0.2558
BSC<0.01%$8.580.0297$0.2549
BSC<0.01%$1,647.390.00015126$0.2491
BSC<0.01%$0.00945226.2262$0.2478
BSC<0.01%$0.002344103.9387$0.2436
BSC<0.01%$0.0042355.9591$0.2366
BSC<0.01%$4.050.0569$0.2307
BSC<0.01%$3.760.0606$0.2278
BSC<0.01%$0.01381815.8451$0.2189
BSC<0.01%$1.860.1164$0.2165
BSC<0.01%$0.01705312.0461$0.2054
BSC<0.01%$0.001618122.8149$0.1987
BSC<0.01%<$0.0000019,121,157.0904$0.1824
BSC<0.01%$0.000214850.6395$0.1819
BSC<0.01%$0.128781.411$0.1817
BSC<0.01%$0.00394942.8672$0.1692
BSC<0.01%$5.260.0303$0.1595
BSC<0.01%$0.00167195.0197$0.1587
BSC<0.01%$0.0195387.9907$0.1561
BSC<0.01%$0.000126993.9999$0.1249
BSC<0.01%$0.0228775.3026$0.1213
BSC<0.01%<$0.00000191,724,418.7775$0.1166
BSC<0.01%$0.0000871,332.0149$0.1162
BSC<0.01%$0.9999520.1104$0.1104
BSC<0.01%$0.00000812,801.2103$0.1013
AVAX1.91%$1,574.872.3095$3,637.19
AVAX0.17%$19.8316.0643$318.5
AVAX0.03%$0.0080427,232.7942$58.17
AVAX0.02%$0.99994132.2598$32.26
AVAX<0.01%$17.7171$7.72
AVAX<0.01%$0.006875332.55$2.29
AVAX<0.01%$19.950.0773$1.54
AVAX<0.01%$88,0420.00001144$1.01
AVAX<0.01%$0.1360187.2091$0.9805
AVAX<0.01%$0.0246934.4725$0.8511
AVAX<0.01%<$0.000001110,270,200.1689$0.7167
AVAX<0.01%$0.9999410.6329$0.6328
AVAX<0.01%$87,9120.00000552$0.4852
AVAX<0.01%$0.9998910.3345$0.3345
AVAX<0.01%$0.000001495,932.8579$0.3042
AVAX<0.01%$10.2159$0.2159
AVAX<0.01%$13.160.0133$0.1753
AVAX<0.01%$1.220.1309$0.1596
ARB0.55%$0.9999551,041.8265$1,041.78
ARB0.45%$1,574.670.5454$858.88
ARB0.39%$1,574.840.472$743.38
ARB0.39%$1736.1247$736.12
ARB<0.01%$0.0017671,142.6496$2.02
ARB<0.01%$3.630.4026$1.46
ARB<0.01%$142.390.00682505$0.9718
ARB<0.01%$0.00333230.9037$0.7689
ARB<0.01%$0.0770047.438$0.5727
ARB<0.01%$0.005326101.4042$0.5401
ARB<0.01%$0.193812.6476$0.5131
ARB<0.01%$0.9997590.5112$0.5111
ARB<0.01%$0.000001441,930.6587$0.5082
ARB<0.01%$10.5043$0.5042
ARB<0.01%$0.02178322.5398$0.4909
ARB<0.01%$0.01338135.0946$0.4695
ARB<0.01%$13.610.0294$0.3997
ARB<0.01%$0.1923272.0737$0.3988
ARB<0.01%$0.02122918.5307$0.3933
ARB<0.01%$0.0094738.3536$0.3632
ARB<0.01%$0.2973631.1332$0.3369
ARB<0.01%$1,889.580.00017247$0.3259
ARB<0.01%$0.2807681.106$0.3105
ARB<0.01%$4.130.068$0.2806
ARB<0.01%$87,9190.00000262$0.2303
ARB<0.01%$0.001362165.2832$0.2251
ARB<0.01%$0.01297215.9969$0.2075
ARB<0.01%$0.0277297.2047$0.1997
ARB<0.01%$87,7610.00000216$0.1894
ARB<0.01%$0.9999550.1683$0.1683
ARB<0.01%$0.9988340.1671$0.1669
ARB<0.01%$0.0433183.7195$0.1611
ARB<0.01%<$0.0000011,548,701.4508$0.1567
ARB<0.01%$0.00712421.9926$0.1566
ARB<0.01%$0.9996860.1514$0.1513
ARB<0.01%$1.930.0753$0.1453
ARB<0.01%<$0.0000014,276,851.5483$0.1291
ARB<0.01%$0.00000814,458.7283$0.1145
ARB<0.01%$13.140.00846378$0.1112
POL1.17%$1,575.361.4153$2,229.64
POL0.21%$0.1997791,976.7921$394.92
POL<0.01%$0.9999898.6728$8.67
POL<0.01%<$0.0000012,687,342,540.1095$4.57
POL<0.01%<$0.0000013,225,050,264.7417$0.9675
POL<0.01%$4.40.2119$0.9324
POL<0.01%$0.2987533.1019$0.9266
POL<0.01%$0.1710585.3102$0.9083
POL<0.01%$0.5986911.4394$0.8617
POL<0.01%$0.00356218.6305$0.7782
POL<0.01%$14.740.0527$0.7761
POL<0.01%$0.2718632.8113$0.7642
POL<0.01%$3,496.540.00021426$0.7491
POL<0.01%$0.9999890.7314$0.7313
POL<0.01%$19.920.0344$0.6846
POL<0.01%$1.150.5732$0.6592
POL<0.01%$1.150.5732$0.6592
POL<0.01%$0.0001763,737.5873$0.6588
POL<0.01%$0.0000867,615.3084$0.6564
POL<0.01%$5.260.1147$0.6031
POL<0.01%$10.5613$0.5613
POL<0.01%$0.001858264.7837$0.4918
POL<0.01%$0.5187750.9076$0.4708
POL<0.01%$0.00626171.6173$0.4483
POL<0.01%$0.02988414.5368$0.4344
POL<0.01%$139.070.00264431$0.3677
POL<0.01%$0.3115381.1396$0.355
POL<0.01%$0.0829633.3138$0.2749
POL<0.01%$0.0599244.0604$0.2433
POL<0.01%$0.1286751.6777$0.2158
POL<0.01%$0.3067470.5888$0.1806
POL<0.01%$0.0211988.2388$0.1746
POL<0.01%$0.00551130.14$0.166
POL<0.01%$3.90.0422$0.1646
POL<0.01%$0.000413389.6102$0.1607
POL<0.01%$0.3220920.4708$0.1516
POL<0.01%$0.5982990.2446$0.1463
POL<0.01%$0.2483170.5243$0.1302
POL<0.01%$0.188570.6759$0.1274
POL<0.01%<$0.00000122,437,563.5554$0.1256
POL<0.01%$0.001205102.498$0.1235
POL<0.01%$88,0760.00000135$0.1189
POL<0.01%$0.0000128,584.0533$0.107
POL<0.01%$0.7679710.1392$0.1069
POL<0.01%$0.00712414.9792$0.1067
POL<0.01%$10.1009$0.1009
SONIC0.79%$0.9999411,509.1141$1,509.03
SONIC
S (S)
0.37%$0.463891,525.2617$707.55
SONIC0.04%$0.466008177.5526$82.74
SONIC<0.01%$1,574.870.00451622$7.11
SONIC<0.01%$0.9985621.0757$1.07
SONIC<0.01%$1.410.72$1.02
SONIC<0.01%$0.0780524.1556$0.3243
SONIC<0.01%$0.4736610.2774$0.1313
OP0.32%$1,574.870.3828$602.9
OP0.24%$1,574.460.2879$453.31
OP<0.01%$10.8965$0.8965
OP<0.01%$2.440.3221$0.7859
OP<0.01%$142.390.00533304$0.7593
OP<0.01%$87,9120.00000815$0.7164
OP<0.01%$0.6693541.0692$0.7156
OP<0.01%$10.69$0.69
OP<0.01%$0.04472915.1114$0.6759
OP<0.01%$0.6987020.7847$0.5482
OP<0.01%$1,889.350.00028466$0.5378
OP<0.01%$0.0001592,905.3049$0.4615
OP<0.01%$10.378$0.378
OP<0.01%$13.140.0245$0.3224
OP<0.01%$0.9999410.2641$0.264
OP<0.01%$1,646.90.00014586$0.2402
OP<0.01%$1,774.340.00012604$0.2236
CRONOS0.02%$132.8546$32.85
CRONOS0.01%$0.99994126.2795$26.28
CRONOS0.01%$0.081925302.8192$24.81
CRONOS0.01%$139.030.1592$22.14
CRONOS<0.01%$0.000013227,675.584$2.93
CRONOS<0.01%$3.460.7151$2.47
CRONOS<0.01%$0.0010991,669.8895$1.83
CRONOS<0.01%<$0.00000161,889,990.5588$1.24
CRONOS<0.01%$0.000215,587.5653$1.17
CRONOS<0.01%$0.0001437,902.4065$1.13
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%$87,9120.00000114$0.1002
TAIKO0.02%$0.5975965.1895$38.96
TAIKO<0.01%$1,573.140.0105$16.52
TAIKO<0.01%$0.995710.7424$0.7392
TAIKO<0.01%$1,568.760.00038183$0.599
MOVR0.01%$1,576.150.0164$25.79
MOVR0.01%$0.99975224.3866$24.38
MOVR<0.01%$5.690.0000000000050766<$0.000001
CELO0.01%$122.9062$22.91
CELO<0.01%$0.9998945.3923$5.39
CELO<0.01%$0.31034810.7068$3.32
CELO<0.01%$11.6615$1.66
CELO<0.01%$1.150.1861$0.214
LINEA0.01%$1,577.620.013$20.45
LINEA<0.01%$1,573.140.00692874$10.9
LINEA<0.01%$0.9999890.3635$0.3634
LINEA<0.01%$10.354$0.354
LINEA<0.01%$1.930.1358$0.2621
LINEA<0.01%$10.2215$0.2215
LINEA<0.01%$0.001298168.8638$0.2191
LINEA<0.01%$88,0760.00000168$0.1479
LINEA<0.01%$1,647.390.0000643$0.1059
SCROLL<0.01%$1,573.140.00753492$11.85
SCROLL<0.01%$0.9999551.6778$1.68
SCROLL<0.01%$10.7627$0.7627
MANTLE<0.01%$0.998596.5476$6.54
MANTLE<0.01%$0.9980481.8158$1.81
MANTLE<0.01%$1,575.90.00094525$1.49
MANTLE<0.01%$0.6586470.6913$0.455306
MANTLE<0.01%$1,676.770.00013297$0.2229
BLAST<0.01%$1,574.870.00388204$6.11
BLAST<0.01%$1,573.990.00248248$3.91
BLAST<0.01%$0.997870.1091$0.1089
GNO<0.01%$0.9999493.8555$3.86
GNO<0.01%$1,574.870.00081333$1.28
GNO<0.01%$0.9999410.9365$0.9364
GNO<0.01%$1.150.415$0.4772
GNO<0.01%$1.150.415$0.4772
GNO<0.01%$0.9999490.3439$0.34386
GNO<0.01%$104.940.0023748$0.2492
ARBNOVA<0.01%$1,573.990.00038856$0.61159
ARBNOVA<0.01%$1,574.290.00026552$0.418
ZKEVM<0.01%$1,573.140.00019779$0.311152
ZKEVM<0.01%$10.1599$0.1598
APE<0.01%$0.462430.0486$0.02248
GLMR<0.01%$0.0700150.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.