More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
21479406 | 6 mins ago | 0.01013073 S | ||||
21478501 | 14 mins ago | 0 S | ||||
21474060 | 51 mins ago | 0.032071 S | ||||
21456710 | 3 hrs ago | 0.0009288 S | ||||
21450989 | 4 hrs ago | 357 wei | ||||
21434683 | 6 hrs ago | 0.08993995 S | ||||
21433951 | 6 hrs ago | 438 wei | ||||
21427575 | 7 hrs ago | 124 wei | ||||
21397817 | 11 hrs ago | 0.00009357 S | ||||
21363374 | 15 hrs ago | 303 wei | ||||
21358640 | 16 hrs ago | 535 wei | ||||
21356682 | 16 hrs ago | 0.00101476 S | ||||
21343251 | 18 hrs ago | 822 wei | ||||
21324958 | 20 hrs ago | 0.00000202 S | ||||
21324851 | 20 hrs ago | 201 wei | ||||
21322039 | 21 hrs ago | 329 wei | ||||
21321839 | 21 hrs ago | 0.00098883 S | ||||
21320962 | 21 hrs ago | 0.00000204 S | ||||
21298063 | 23 hrs ago | 0 S | ||||
21293633 | 24 hrs ago | 0.00000211 S | ||||
21291771 | 24 hrs ago | 0.00953184 S | ||||
21290498 | 24 hrs ago | 0.86612277 S | ||||
21282963 | 25 hrs ago | 0.00009931 S | ||||
21248118 | 29 hrs ago | 0.00003152 S | ||||
21230540 | 31 hrs ago | 342 wei |
Loading...
Loading
Contract Name:
TokenChomper
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *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
- No Contract Security Audit Submitted- Submit Audit Here
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"}]
Contract Creation Code
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
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BASE | 36.11% | $1,574.84 | 43.6901 | $68,804.96 | |
BASE | 13.00% | $1,574.01 | 15.7333 | $24,764.42 | |
BASE | 9.23% | $0.999955 | 17,590.9029 | $17,590.11 | |
BASE | <0.01% | $0.239714 | 50.3358 | $12.07 | |
BASE | <0.01% | $0.046559 | 102.3602 | $4.77 | |
BASE | <0.01% | $171.41 | 0.0129 | $2.2 | |
BASE | <0.01% | $1 | 0.9994 | $0.9994 | |
BASE | <0.01% | $87,761 | 0.00001017 | $0.8925 | |
BASE | <0.01% | $0.925226 | 0.8596 | $0.7953 | |
BASE | <0.01% | $142.39 | 0.00546181 | $0.7777 | |
BASE | <0.01% | $0.077004 | 9.901 | $0.7624 | |
BASE | <0.01% | $0.999686 | 0.7502 | $0.75 | |
BASE | <0.01% | $0.000074 | 9,791.5168 | $0.7239 | |
BASE | <0.01% | $0.0013 | 549.4326 | $0.714 | |
BASE | <0.01% | $0.029507 | 24.1048 | $0.7112 | |
BASE | <0.01% | $1.15 | 0.6127 | $0.7045 | |
BASE | <0.01% | $0.001972 | 352.058 | $0.694 | |
BASE | <0.01% | $0.00758 | 89.3556 | $0.6773 | |
BASE | <0.01% | $0.597614 | 1.1202 | $0.6694 | |
BASE | <0.01% | $3.26 | 0.1886 | $0.6147 | |
BASE | <0.01% | $0.084304 | 7.1779 | $0.6051 | |
BASE | <0.01% | $0.006366 | 94.3295 | $0.6005 | |
BASE | <0.01% | $0.998834 | 0.5841 | $0.5834 | |
BASE | <0.01% | $0.57476 | 0.9458 | $0.5436 | |
BASE | <0.01% | $0.001131 | 480.3047 | $0.5432 | |
BASE | <0.01% | $0.001684 | 312.591 | $0.5264 | |
BASE | <0.01% | $0.999329 | 0.5164 | $0.516 | |
BASE | <0.01% | $0.554669 | 0.8903 | $0.4938 | |
BASE | <0.01% | $0.396303 | 1.1945 | $0.4733 | |
BASE | <0.01% | $0.141908 | 3.2732 | $0.4644 | |
BASE | <0.01% | $0.000757 | 591.8341 | $0.4479 | |
BASE | <0.01% | $0.000608 | 698.5467 | $0.4249 | |
BASE | <0.01% | $0.00397 | 105.2035 | $0.4176 | |
BASE | <0.01% | $1,695.15 | 0.000242 | $0.4102 | |
BASE | <0.01% | $0.005851 | 69.724 | $0.4079 | |
BASE | <0.01% | $0.000006 | 67,649.0762 | $0.4072 | |
BASE | <0.01% | $0.016434 | 24.3408 | $0.40 | |
BASE | <0.01% | $0.001842 | 215.0407 | $0.396 | |
BASE | <0.01% | $0.000348 | 1,104.9702 | $0.384 | |
BASE | <0.01% | $0.010081 | 37.4624 | $0.3776 | |
BASE | <0.01% | $0.177966 | 2.1009 | $0.3738 | |
BASE | <0.01% | $0.046664 | 7.7265 | $0.3605 | |
BASE | <0.01% | $0.017247 | 20.4621 | $0.3529 | |
BASE | <0.01% | $0.000003 | 106,195.3502 | $0.3461 | |
BASE | <0.01% | $0.039066 | 8.6031 | $0.336 | |
BASE | <0.01% | $1,677.82 | 0.0001912 | $0.3208 | |
BASE | <0.01% | $0.000086 | 3,671.1647 | $0.3164 | |
BASE | <0.01% | $0.000021 | 14,739.353 | $0.3053 | |
BASE | <0.01% | $0.014202 | 20.5052 | $0.2912 | |
BASE | <0.01% | $0.996079 | 0.2884 | $0.2872 | |
BASE | <0.01% | $0.0139 | 20.5387 | $0.2854 | |
BASE | <0.01% | <$0.000001 | 2,815,079.8285 | $0.2848 | |
BASE | <0.01% | $0.036692 | 7.5993 | $0.2788 | |
BASE | <0.01% | $0.000086 | 3,228.9571 | $0.2783 | |
BASE | <0.01% | $0.000144 | 1,926.3048 | $0.2782 | |
BASE | <0.01% | $0.001077 | 254.7099 | $0.2744 | |
BASE | <0.01% | $0.000005 | 48,761.7815 | $0.2608 | |
BASE | <0.01% | $0.000153 | 1,671.7336 | $0.2565 | |
BASE | <0.01% | $0.004703 | 50.4476 | $0.2372 | |
BASE | <0.01% | $0.008979 | 25.8393 | $0.2319 | |
BASE | <0.01% | <$0.000001 | 3,134,527.0364 | $0.2281 | |
BASE | <0.01% | $0.000005 | 48,630.0535 | $0.2198 | |
BASE | <0.01% | $0.018375 | 11.4048 | $0.2095 | |
BASE | <0.01% | $0.000336 | 597.6296 | $0.2008 | |
BASE | <0.01% | $0.002338 | 83.761 | $0.1958 | |
BASE | <0.01% | $0.221963 | 0.8498 | $0.1886 | |
BASE | <0.01% | $0.015843 | 11.8692 | $0.188 | |
BASE | <0.01% | $0.01016 | 18.3944 | $0.1868 | |
BASE | <0.01% | $87,919 | 0.00000206 | $0.1811 | |
BASE | <0.01% | <$0.000001 | 889,202.1 | $0.1805 | |
BASE | <0.01% | $2.49 | 0.0723 | $0.1801 | |
BASE | <0.01% | $0.000223 | 803.2743 | $0.1791 | |
BASE | <0.01% | $0.000121 | 1,481.5913 | $0.179 | |
BASE | <0.01% | $0.000411 | 427.6899 | $0.1757 | |
BASE | <0.01% | $0.491341 | 0.354 | $0.1739 | |
BASE | <0.01% | <$0.000001 | 8,417,169.3836 | $0.1683 | |
BASE | <0.01% | $0.655794 | 0.2561 | $0.1679 | |
BASE | <0.01% | $0.055047 | 3.0219 | $0.1663 | |
BASE | <0.01% | $2.19 | 0.0742 | $0.1624 | |
BASE | <0.01% | $0.001311 | 121.2376 | $0.1589 | |
BASE | <0.01% | $2.24 | 0.0708 | $0.1586 | |
BASE | <0.01% | $0.000011 | 14,079.3381 | $0.1513 | |
BASE | <0.01% | $0.00516 | 28.2115 | $0.1455 | |
BASE | <0.01% | $1,647.03 | 0.00008181 | $0.1347 | |
BASE | <0.01% | $0.248136 | 0.5391 | $0.1337 | |
BASE | <0.01% | $0.00046 | 276.8447 | $0.1273 | |
BASE | <0.01% | $0.084269 | 1.4973 | $0.1261 | |
BASE | <0.01% | $0.999906 | 0.1218 | $0.1217 | |
BASE | <0.01% | $0.022846 | 5.3248 | $0.1216 | |
BASE | <0.01% | $221.01 | 0.00054162 | $0.1197 | |
BASE | <0.01% | $0.303439 | 0.386 | $0.1171 | |
BASE | <0.01% | $0.082805 | 1.3593 | $0.1125 | |
BASE | <0.01% | $0.027484 | 3.8817 | $0.1066 | |
BASE | <0.01% | $1 | 0.1028 | $0.1027 | |
BASE | <0.01% | $0.037154 | 2.7304 | $0.1014 | |
BASE | <0.01% | $0.000073 | 1,378.0263 | $0.1006 | |
ETH | 8.34% | $1,574.67 | 10.0961 | $15,898.03 | |
ETH | 6.80% | $1,574.67 | 8.2316 | $12,962.07 | |
ETH | 5.49% | $0.999989 | 10,454.3103 | $10,454.2 | |
ETH | 2.20% | $1 | 4,184.9289 | $4,184.93 | |
ETH | 0.92% | $0.000082 | 21,326,099.358 | $1,759.06 | |
ETH | 0.02% | $1,774.71 | 0.0164 | $29.06 | |
ETH | 0.01% | $2,027.17 | 0.0113 | $22.81 | |
ETH | <0.01% | $0.518775 | 19.7954 | $10.27 | |
ETH | <0.01% | $88,076 | 0.00011276 | $9.93 | |
ETH | <0.01% | $14.29 | 0.6759 | $9.66 | |
ETH | <0.01% | $0.038955 | 242.133 | $9.43 | |
ETH | <0.01% | $3,496.54 | 0.00258292 | $9.03 | |
ETH | <0.01% | $3.26 | 2.66 | $8.67 | |
ETH | <0.01% | $139.01 | 0.0611 | $8.5 | |
ETH | <0.01% | $142.5 | 0.0595 | $8.49 | |
ETH | <0.01% | $0.025516 | 332.5357 | $8.48 | |
ETH | <0.01% | $0.596144 | 13.5444 | $8.07 | |
ETH | <0.01% | <$0.000001 | 1,362,390,103.0672 | $7.49 | |
ETH | <0.01% | $17.35 | 0.4155 | $7.21 | |
ETH | <0.01% | $0.013894 | 518.7708 | $7.21 | |
ETH | <0.01% | $0.014768 | 480.9488 | $7.1 | |
ETH | <0.01% | $0.1781 | 39.3203 | $7 | |
ETH | <0.01% | $0.061778 | 106.3695 | $6.57 | |
ETH | <0.01% | $0.000035 | 190,068.9553 | $6.56 | |
ETH | <0.01% | $3,496.26 | 0.001833 | $6.41 | |
ETH | <0.01% | $0.228667 | 26.7412 | $6.11 | |
ETH | <0.01% | $0.000259 | 23,304.4289 | $6.04 | |
ETH | <0.01% | $0.000008 | 755,704.7441 | $5.99 | |
ETH | <0.01% | $0.056292 | 105.109 | $5.92 | |
ETH | <0.01% | $0.001759 | 3,226.2679 | $5.68 | |
ETH | <0.01% | $0.656291 | 7.6397 | $5.01 | |
ETH | <0.01% | $0.171756 | 28.6602 | $4.92 | |
ETH | <0.01% | $0.060173 | 78.7515 | $4.74 | |
ETH | <0.01% | $66.62 | 0.0711 | $4.74 | |
ETH | <0.01% | $0.590293 | 7.7489 | $4.57 | |
ETH | <0.01% | $0.281015 | 16.0447 | $4.51 | |
ETH | <0.01% | $0.000018 | 229,874.2479 | $4.23 | |
ETH | <0.01% | $0.000001 | 8,201,686.6411 | $4.22 | |
ETH | <0.01% | $0.037781 | 108.4038 | $4.1 | |
ETH | <0.01% | $4.4 | 0.9017 | $3.97 | |
ETH | <0.01% | $0.002385 | 1,657.0753 | $3.95 | |
ETH | <0.01% | $7.61 | 0.513 | $3.91 | |
ETH | <0.01% | <$0.000001 | 2,846,470,635.3843 | $3.9 | |
ETH | <0.01% | $0.006364 | 609.8591 | $3.88 | |
ETH | <0.01% | $0.130881 | 28.7541 | $3.76 | |
ETH | <0.01% | $0.015733 | 228.0119 | $3.59 | |
ETH | <0.01% | $0.146518 | 23.4105 | $3.43 | |
ETH | <0.01% | <$0.000001 | 56,760,960.8202 | $3.43 | |
ETH | <0.01% | $0.024689 | 120.6887 | $2.98 | |
ETH | <0.01% | $0.002013 | 1,458.2105 | $2.93 | |
ETH | <0.01% | $0.095667 | 30.6262 | $2.93 | |
ETH | <0.01% | $0.021959 | 130.0369 | $2.86 | |
ETH | <0.01% | <$0.000001 | 5,942,601.1841 | $2.84 | |
ETH | <0.01% | $0.073184 | 38.4483 | $2.81 | |
ETH | <0.01% | $0.008458 | 318.1499 | $2.69 | |
ETH | <0.01% | $0.000154 | 17,446.2677 | $2.68 | |
ETH | <0.01% | $0.002101 | 1,267.3763 | $2.66 | |
ETH | <0.01% | $0.242254 | 10.8762 | $2.63 | |
ETH | <0.01% | $0.000059 | 41,153.89 | $2.42 | |
ETH | <0.01% | $0.00838 | 266.5984 | $2.23 | |
ETH | <0.01% | $0.040177 | 53.9664 | $2.17 | |
ETH | <0.01% | $0.679444 | 3.087 | $2.1 | |
ETH | <0.01% | <$0.000001 | 20,439,871.4147 | $2.07 | |
ETH | <0.01% | $0.010668 | 184.3462 | $1.97 | |
ETH | <0.01% | $0.026601 | 73.1247 | $1.95 | |
ETH | <0.01% | $5.91 | 0.326 | $1.93 | |
ETH | <0.01% | $1.06 | 1.7574 | $1.87 | |
ETH | <0.01% | $1,574.28 | 0.00118254 | $1.86 | |
ETH | <0.01% | $0.238793 | 7.7747 | $1.86 | |
ETH | <0.01% | $0.029742 | 62.2141 | $1.85 | |
ETH | <0.01% | $0.077252 | 23.7636 | $1.84 | |
ETH | <0.01% | $0.053144 | 34.2407 | $1.82 | |
ETH | <0.01% | $42.98 | 0.0411 | $1.77 | |
ETH | <0.01% | $0.025597 | 68.6983 | $1.76 | |
ETH | <0.01% | $0.092165 | 18.4342 | $1.7 | |
ETH | <0.01% | $0.000028 | 60,884.3483 | $1.69 | |
ETH | <0.01% | <$0.000001 | 33,753,210.8669 | $1.66 | |
ETH | <0.01% | <$0.000001 | 14,020,748.7961 | $1.64 | |
ETH | <0.01% | $0.113991 | 14.192 | $1.62 | |
ETH | <0.01% | $0.181903 | 8.8743 | $1.61 | |
ETH | <0.01% | $88,039 | 0.00001827 | $1.61 | |
ETH | <0.01% | $1,889.59 | 0.0008488 | $1.6 | |
ETH | <0.01% | $0.331944 | 4.6614 | $1.55 | |
ETH | <0.01% | $1,726.25 | 0.00087671 | $1.51 | |
ETH | <0.01% | $0.027747 | 54.5359 | $1.51 | |
ETH | <0.01% | $0.002298 | 631.9179 | $1.45 | |
ETH | <0.01% | $0.507785 | 2.8334 | $1.44 | |
ETH | <0.01% | $0.003726 | 381.3909 | $1.42 | |
ETH | <0.01% | $1.17 | 1.2114 | $1.42 | |
ETH | <0.01% | $0.00154 | 911.2717 | $1.4 | |
ETH | <0.01% | $0.070131 | 19.9668 | $1.4 | |
ETH | <0.01% | $1.1 | 1.2635 | $1.38 | |
ETH | <0.01% | $0.013797 | 99.0557 | $1.37 | |
ETH | <0.01% | $0.058215 | 23.349 | $1.36 | |
ETH | <0.01% | $0.006852 | 193.606 | $1.33 | |
ETH | <0.01% | $0.999064 | 1.3212 | $1.32 | |
ETH | <0.01% | $0.999829 | 1.3136 | $1.31 | |
ETH | <0.01% | $0.000856 | 1,512.2134 | $1.3 | |
ETH | <0.01% | $0.463887 | 2.7647 | $1.28 | |
ETH | <0.01% | $0.026222 | 48.0165 | $1.26 | |
ETH | <0.01% | $8.58 | 0.1419 | $1.22 | |
ETH | <0.01% | $0.001102 | 1,097.5191 | $1.21 | |
ETH | <0.01% | $0.005511 | 218.9 | $1.21 | |
ETH | <0.01% | $0.014572 | 82.208 | $1.2 | |
ETH | <0.01% | $87,763 | 0.00001314 | $1.15 | |
ETH | <0.01% | $0.029042 | 39.7035 | $1.15 | |
ETH | <0.01% | $0.001882 | 612.2877 | $1.15 | |
ETH | <0.01% | $0.224444 | 5.0907 | $1.14 | |
ETH | <0.01% | $0.796271 | 1.4312 | $1.14 | |
ETH | <0.01% | $0.009087 | 122.6512 | $1.11 | |
ETH | <0.01% | $0.000012 | 89,593.6913 | $1.11 | |
ETH | <0.01% | $1.25 | 0.837 | $1.05 | |
ETH | <0.01% | $0.746094 | 1.4012 | $1.05 | |
ETH | <0.01% | $0.088753 | 11.6838 | $1.04 | |
ETH | <0.01% | $0.066963 | 15.4257 | $1.03 | |
ETH | <0.01% | $0.079026 | 12.8877 | $1.02 | |
ETH | <0.01% | $0.000312 | 3,241.4467 | $1.01 | |
ETH | <0.01% | $0.131744 | 7.6692 | $1.01 | |
ETH | <0.01% | $0.054845 | 18.3715 | $1.01 | |
ETH | <0.01% | $0.000178 | 5,536.512 | $0.9837 | |
ETH | <0.01% | $0.034739 | 27.8297 | $0.9667 | |
ETH | <0.01% | $0.000263 | 3,549.4082 | $0.935 | |
ETH | <0.01% | $1 | 0.9178 | $0.9177 | |
ETH | <0.01% | $0.000004 | 244,822.9303 | $0.9096 | |
ETH | <0.01% | $0.176929 | 5.1351 | $0.9085 | |
ETH | <0.01% | $0.000662 | 1,368.5791 | $0.9058 | |
ETH | <0.01% | $0.185356 | 4.875 | $0.9036 | |
ETH | <0.01% | $0.009111 | 98.8238 | $0.9003 | |
ETH | <0.01% | $0.099273 | 9.0413 | $0.8975 | |
ETH | <0.01% | $598.99 | 0.00149734 | $0.8968 | |
ETH | <0.01% | $0.055474 | 15.6548 | $0.8684 | |
ETH | <0.01% | $0.999502 | 0.8643 | $0.8639 | |
ETH | <0.01% | $0.614379 | 1.4034 | $0.8622 | |
ETH | <0.01% | $0.867545 | 0.9912 | $0.8598 | |
ETH | <0.01% | $0.000674 | 1,219.8743 | $0.8215 | |
ETH | <0.01% | $0.23648 | 3.4667 | $0.8198 | |
ETH | <0.01% | $0.033821 | 23.9906 | $0.8113 | |
ETH | <0.01% | $0.002458 | 327.4264 | $0.8049 | |
ETH | <0.01% | <$0.000001 | 76,208,662.785 | $0.7865 | |
ETH | <0.01% | $0.82711 | 0.9436 | $0.7804 | |
ETH | <0.01% | $0.274977 | 2.7295 | $0.7505 | |
ETH | <0.01% | $0.043362 | 17.1776 | $0.7448 | |
ETH | <0.01% | $4.45 | 0.1666 | $0.7415 | |
ETH | <0.01% | $0.024566 | 29.8955 | $0.7344 | |
ETH | <0.01% | $0.232348 | 3.0669 | $0.7125 | |
ETH | <0.01% | $0.007831 | 89.9208 | $0.7041 | |
ETH | <0.01% | $0.085605 | 8.2082 | $0.7026 | |
ETH | <0.01% | $1.93 | 0.359 | $0.6928 | |
ETH | <0.01% | $0.000072 | 9,606.0315 | $0.6902 | |
ETH | <0.01% | $0.000013 | 52,777.8512 | $0.6818 | |
ETH | <0.01% | $0.002147 | 316.0049 | $0.6785 | |
ETH | <0.01% | $0.085059 | 7.9196 | $0.6736 | |
ETH | <0.01% | $0.000023 | 29,538.8794 | $0.6731 | |
ETH | <0.01% | $0.265176 | 2.4281 | $0.6438 | |
ETH | <0.01% | $39.63 | 0.0161 | $0.6365 | |
ETH | <0.01% | $0.37505 | 1.6358 | $0.6135 | |
ETH | <0.01% | $1,647.39 | 0.00035288 | $0.5813 | |
ETH | <0.01% | $0.759629 | 0.7591 | $0.5766 | |
ETH | <0.01% | $0.094207 | 6.118 | $0.5763 | |
ETH | <0.01% | $0.062217 | 9.0795 | $0.5648 | |
ETH | <0.01% | $0.003663 | 153.8179 | $0.5633 | |
ETH | <0.01% | $0.999544 | 0.5585 | $0.5582 | |
ETH | <0.01% | $0.001328 | 418.2326 | $0.5554 | |
ETH | <0.01% | $2.64 | 0.1887 | $0.4986 | |
ETH | <0.01% | $0.707501 | 0.7042 | $0.4982 | |
ETH | <0.01% | $7.85 | 0.0625 | $0.4905 | |
ETH | <0.01% | $0.170761 | 2.7871 | $0.4759 | |
ETH | <0.01% | $0.056211 | 8.0136 | $0.4504 | |
ETH | <0.01% | $0.755847 | 0.5708 | $0.4314 | |
ETH | <0.01% | $0.074798 | 5.7272 | $0.4283 | |
ETH | <0.01% | $0.000136 | 3,136.9567 | $0.4259 | |
ETH | <0.01% | $2.45 | 0.1682 | $0.4121 | |
ETH | <0.01% | <$0.000001 | 788,957,650.3206 | $0.4109 | |
ETH | <0.01% | $0.000174 | 2,269.5229 | $0.3953 | |
ETH | <0.01% | $0.027663 | 14.2246 | $0.3934 | |
ETH | <0.01% | $0.578077 | 0.6805 | $0.3933 | |
ETH | <0.01% | $1,677.84 | 0.00023198 | $0.3892 | |
ETH | <0.01% | $1.23 | 0.3153 | $0.3892 | |
ETH | <0.01% | $0.000107 | 3,428.4976 | $0.3683 | |
ETH | <0.01% | <$0.000001 | 6,671,499.3264 | $0.3673 | |
ETH | <0.01% | $14.93 | 0.0238 | $0.3555 | |
ETH | <0.01% | $0.123857 | 2.7255 | $0.3375 | |
ETH | <0.01% | $0.082963 | 4.0362 | $0.3348 | |
ETH | <0.01% | $19.83 | 0.0168 | $0.3321 | |
ETH | <0.01% | $2.9 | 0.1067 | $0.3094 | |
ETH | <0.01% | $0.000067 | 4,568.5288 | $0.3059 | |
ETH | <0.01% | <$0.000001 | 154,210,567.9608 | $0.3004 | |
ETH | <0.01% | $0.674894 | 0.4358 | $0.294 | |
ETH | <0.01% | $13.15 | 0.0219 | $0.2875 | |
ETH | <0.01% | <$0.000001 | 1,437,209,582.7863 | $0.2868 | |
ETH | <0.01% | $0.628491 | 0.4551 | $0.286 | |
ETH | <0.01% | $0.397252 | 0.7062 | $0.2805 | |
ETH | <0.01% | $0.137485 | 2.0169 | $0.2772 | |
ETH | <0.01% | $2.09 | 0.1309 | $0.2736 | |
ETH | <0.01% | $0.99983 | 0.2726 | $0.2725 | |
ETH | <0.01% | $0.000189 | 1,426.496 | $0.2698 | |
ETH | <0.01% | <$0.000001 | 78,782,087,872,627.563 | $0.2663 | |
ETH | <0.01% | <$0.000001 | 75,554,337.0513 | $0.265 | |
ETH | <0.01% | $0.598691 | 0.4419 | $0.2645 | |
ETH | <0.01% | $0.000059 | 4,402.4676 | $0.2605 | |
ETH | <0.01% | $0.005174 | 48.6525 | $0.2517 | |
ETH | <0.01% | $0.007144 | 35.0091 | $0.2501 | |
ETH | <0.01% | $0.138 | 1.8093 | $0.2496 | |
ETH | <0.01% | $0.055223 | 4.4427 | $0.2453 | |
ETH | <0.01% | $4.14 | 0.0588 | $0.2434 | |
ETH | <0.01% | $0.013065 | 18.4144 | $0.2405 | |
ETH | <0.01% | $0.0013 | 181.824 | $0.2364 | |
ETH | <0.01% | $0.000058 | 4,070.5412 | $0.2353 | |
ETH | <0.01% | $0.004505 | 49.759 | $0.2241 | |
ETH | <0.01% | $0.163377 | 1.3706 | $0.2239 | |
ETH | <0.01% | $0.271419 | 0.8228 | $0.2233 | |
ETH | <0.01% | $7,626.16 | 0.00002924 | $0.223 | |
ETH | <0.01% | $0.512067 | 0.4282 | $0.2192 | |
ETH | <0.01% | $0.303756 | 0.7095 | $0.2155 | |
ETH | <0.01% | $0.02468 | 8.5641 | $0.2113 | |
ETH | <0.01% | $2.19 | 0.0962 | $0.2106 | |
ETH | <0.01% | $0.128821 | 1.6091 | $0.2072 | |
ETH | <0.01% | $0.017488 | 11.7231 | $0.205 | |
ETH | <0.01% | $0.278399 | 0.7162 | $0.1993 | |
ETH | <0.01% | $134.99 | 0.00146366 | $0.1975 | |
ETH | <0.01% | $0.116234 | 1.6589 | $0.1928 | |
ETH | <0.01% | $0.002551 | 75.3244 | $0.1921 | |
ETH | <0.01% | $0.000009 | 19,870.2728 | $0.1853 | |
ETH | <0.01% | $0.199712 | 0.8823 | $0.1762 | |
ETH | <0.01% | $0.238195 | 0.7379 | $0.1757 | |
ETH | <0.01% | $0.000015 | 11,619.1824 | $0.1749 | |
ETH | <0.01% | $1.92 | 0.0906 | $0.1741 | |
ETH | <0.01% | $0.28738 | 0.5901 | $0.1695 | |
ETH | <0.01% | $0.217859 | 0.7661 | $0.1669 | |
ETH | <0.01% | <$0.000001 | 913,580,862.3506 | $0.1653 | |
ETH | <0.01% | $0.000153 | 1,069.6987 | $0.1636 | |
ETH | <0.01% | $0.293802 | 0.5444 | $0.1599 | |
ETH | <0.01% | $0.008701 | 18.2009 | $0.1583 | |
ETH | <0.01% | $0.060974 | 2.471 | $0.1506 | |
ETH | <0.01% | $0.124025 | 1.1962 | $0.1483 | |
ETH | <0.01% | $0.022583 | 6.3256 | $0.1428 | |
ETH | <0.01% | $0.00133 | 107.0786 | $0.1424 | |
ETH | <0.01% | $0.00801 | 17.6438 | $0.1413 | |
ETH | <0.01% | $0.014259 | 9.3967 | $0.1339 | |
ETH | <0.01% | $0.997781 | 0.1319 | $0.1316 | |
ETH | <0.01% | $0.015616 | 8.4004 | $0.1311 | |
ETH | <0.01% | $0.093543 | 1.3673 | $0.1279 | |
ETH | <0.01% | $26.5 | 0.00481074 | $0.1274 | |
ETH | <0.01% | $0.210063 | 0.594 | $0.1247 | |
ETH | <0.01% | $0.001037 | 119.7895 | $0.1241 | |
ETH | <0.01% | $0.026747 | 4.481 | $0.1198 | |
ETH | <0.01% | $0.004265 | 27.5801 | $0.1176 | |
ETH | <0.01% | $0.000116 | 989.8756 | $0.1148 | |
ETH | <0.01% | $0.000001 | 162,245.5945 | $0.1145 | |
ETH | <0.01% | $0.00001 | 10,905.5058 | $0.1135 | |
ETH | <0.01% | <$0.000001 | 264,157.4464 | $0.1116 | |
ETH | <0.01% | $0.961862 | 0.1155 | $0.111 | |
ETH | <0.01% | $1 | 0.106 | $0.106 | |
ETH | <0.01% | $0.414157 | 0.2505 | $0.1037 | |
ETH | <0.01% | $0.085984 | 1.1794 | $0.1014 | |
ETH | <0.01% | <$0.000001 | 61,650,326.4866 | $0.101 | |
ETH | <0.01% | $0.204203 | 0.4937 | $0.1008 | |
BSC | 2.54% | $598.19 | 8.0791 | $4,832.84 | |
BSC | 2.46% | $0.999894 | 4,683.4961 | $4,683 | |
BSC | 2.37% | $0.065077 | 69,384.9861 | $4,515.37 | |
BSC | 2.21% | $598.99 | 7.0434 | $4,218.97 | |
BSC | 0.16% | $1 | 306.5382 | $306.54 | |
BSC | 0.15% | $0.001689 | 174,440.0519 | $294.6 | |
BSC | 0.15% | $0.254239 | 1,127.9026 | $286.76 | |
BSC | 0.06% | $87,560 | 0.00140249 | $122.8 | |
BSC | 0.06% | $88,101.59 | 0.00132563 | $116.79 | |
BSC | 0.04% | $1,575.36 | 0.0469 | $73.84 | |
BSC | 0.04% | $0.011953 | 5,880.4913 | $70.29 | |
BSC | 0.03% | $0.17702 | 308.5663 | $54.62 | |
BSC | 0.01% | $0.367124 | 73.3281 | $26.92 | |
BSC | <0.01% | $0.004281 | 3,766.9198 | $16.13 | |
BSC | <0.01% | $0.027209 | 422.2164 | $11.49 | |
BSC | <0.01% | $0.023048 | 474.0755 | $10.93 | |
BSC | <0.01% | $0.000217 | 45,006.4517 | $9.78 | |
BSC | <0.01% | $0.080036 | 106.7342 | $8.54 | |
BSC | <0.01% | $0.026865 | 290.145 | $7.79 | |
BSC | <0.01% | $0.025051 | 298.3299 | $7.47 | |
BSC | <0.01% | $0.02719 | 262.971 | $7.15 | |
BSC | <0.01% | $0.000002 | 3,065,497.0087 | $5.62 | |
BSC | <0.01% | $1 | 5.5779 | $5.58 | |
BSC | <0.01% | $0.493725 | 10.2262 | $5.05 | |
BSC | <0.01% | $0.001789 | 2,644.2164 | $4.73 | |
BSC | <0.01% | $0.000153 | 29,955.0036 | $4.58 | |
BSC | <0.01% | $0.001933 | 2,204.0403 | $4.26 | |
BSC | <0.01% | $0.614402 | 5.2771 | $3.24 | |
BSC | <0.01% | $2.1 | 1.5308 | $3.21 | |
BSC | <0.01% | <$0.000001 | 286,626,687.3075 | $2.99 | |
BSC | <0.01% | $0.000129 | 22,568.0023 | $2.91 | |
BSC | <0.01% | $0.000471 | 6,137.4019 | $2.89 | |
BSC | <0.01% | $0.159858 | 17.7936 | $2.84 | |
BSC | <0.01% | $1.93 | 1.4514 | $2.8 | |
BSC | <0.01% | $0.028613 | 94.0614 | $2.69 | |
BSC | <0.01% | $2.08 | 0.9708 | $2.02 | |
BSC | <0.01% | $0.181903 | 9.1268 | $1.66 | |
BSC | <0.01% | $13.15 | 0.1159 | $1.52 | |
BSC | <0.01% | $0.000081 | 17,918.9355 | $1.45 | |
BSC | <0.01% | $142.56 | 0.00816467 | $1.16 | |
BSC | <0.01% | $0.000215 | 4,752.5059 | $1.02 | |
BSC | <0.01% | <$0.000001 | 95,123,789.9642 | $0.9548 | |
BSC | <0.01% | $78.77 | 0.012 | $0.9425 | |
BSC | <0.01% | $2.19 | 0.4134 | $0.9049 | |
BSC | <0.01% | $0.294881 | 2.8332 | $0.8354 | |
BSC | <0.01% | $1.3 | 0.6048 | $0.7879 | |
BSC | <0.01% | $0.000831 | 909.5924 | $0.756 | |
BSC | <0.01% | $0.000061 | 12,328.1932 | $0.7493 | |
BSC | <0.01% | $0.623353 | 1.1182 | $0.697 | |
BSC | <0.01% | $0.242651 | 2.8667 | $0.6956 | |
BSC | <0.01% | $88,076 | 0.00000734 | $0.6464 | |
BSC | <0.01% | $2.59 | 0.2349 | $0.6091 | |
BSC | <0.01% | $0.081744 | 7.3049 | $0.5971 | |
BSC | <0.01% | $0.000006 | 103,021.0846 | $0.5882 | |
BSC | <0.01% | $0.054987 | 10.687 | $0.5876 | |
BSC | <0.01% | $0.001834 | 314.4821 | $0.5767 | |
BSC | <0.01% | $0.003686 | 153.5426 | $0.5659 | |
BSC | <0.01% | $0.000099 | 5,641.9509 | $0.5583 | |
BSC | <0.01% | $0.278399 | 1.9834 | $0.5521 | |
BSC | <0.01% | $0.005541 | 98.8421 | $0.5476 | |
BSC | <0.01% | $0.998132 | 0.5111 | $0.5101 | |
BSC | <0.01% | $0.013737 | 36.2442 | $0.4978 | |
BSC | <0.01% | $0.06582 | 7.2726 | $0.4786 | |
BSC | <0.01% | $139.03 | 0.00336137 | $0.4673 | |
BSC | <0.01% | $0.023421 | 18.9774 | $0.4444 | |
BSC | <0.01% | $2.9 | 0.1418 | $0.4112 | |
BSC | <0.01% | $0.512345 | 0.7185 | $0.3681 | |
BSC | <0.01% | $0.045608 | 7.9758 | $0.3637 | |
BSC | <0.01% | $0.021878 | 15.3675 | $0.3362 | |
BSC | <0.01% | $0.246192 | 1.3525 | $0.3329 | |
BSC | <0.01% | $0.002957 | 109.0354 | $0.3223 | |
BSC | <0.01% | $0.101887 | 2.7889 | $0.2841 | |
BSC | <0.01% | $0.518775 | 0.5194 | $0.2694 | |
BSC | <0.01% | $0.001185 | 217.7139 | $0.2579 | |
BSC | <0.01% | $19.92 | 0.0129 | $0.2576 | |
BSC | <0.01% | $0.01007 | 25.4058 | $0.2558 | |
BSC | <0.01% | $8.58 | 0.0297 | $0.2549 | |
BSC | <0.01% | $1,647.39 | 0.00015126 | $0.2491 | |
BSC | <0.01% | $0.009452 | 26.2262 | $0.2478 | |
BSC | <0.01% | $0.002344 | 103.9387 | $0.2436 | |
BSC | <0.01% | $0.00423 | 55.9591 | $0.2366 | |
BSC | <0.01% | $4.05 | 0.0569 | $0.2307 | |
BSC | <0.01% | $3.76 | 0.0606 | $0.2278 | |
BSC | <0.01% | $0.013818 | 15.8451 | $0.2189 | |
BSC | <0.01% | $1.86 | 0.1164 | $0.2165 | |
BSC | <0.01% | $0.017053 | 12.0461 | $0.2054 | |
BSC | <0.01% | $0.001618 | 122.8149 | $0.1987 | |
BSC | <0.01% | <$0.000001 | 9,121,157.0904 | $0.1824 | |
BSC | <0.01% | $0.000214 | 850.6395 | $0.1819 | |
BSC | <0.01% | $0.12878 | 1.411 | $0.1817 | |
BSC | <0.01% | $0.003949 | 42.8672 | $0.1692 | |
BSC | <0.01% | $5.26 | 0.0303 | $0.1595 | |
BSC | <0.01% | $0.001671 | 95.0197 | $0.1587 | |
BSC | <0.01% | $0.019538 | 7.9907 | $0.1561 | |
BSC | <0.01% | $0.000126 | 993.9999 | $0.1249 | |
BSC | <0.01% | $0.022877 | 5.3026 | $0.1213 | |
BSC | <0.01% | <$0.000001 | 91,724,418.7775 | $0.1166 | |
BSC | <0.01% | $0.000087 | 1,332.0149 | $0.1162 | |
BSC | <0.01% | $0.999952 | 0.1104 | $0.1104 | |
BSC | <0.01% | $0.000008 | 12,801.2103 | $0.1013 | |
AVAX | 1.91% | $1,574.87 | 2.3095 | $3,637.19 | |
AVAX | 0.17% | $19.83 | 16.0643 | $318.5 | |
AVAX | 0.03% | $0.008042 | 7,232.7942 | $58.17 | |
AVAX | 0.02% | $0.999941 | 32.2598 | $32.26 | |
AVAX | <0.01% | $1 | 7.7171 | $7.72 | |
AVAX | <0.01% | $0.006875 | 332.55 | $2.29 | |
AVAX | <0.01% | $19.95 | 0.0773 | $1.54 | |
AVAX | <0.01% | $88,042 | 0.00001144 | $1.01 | |
AVAX | <0.01% | $0.136018 | 7.2091 | $0.9805 | |
AVAX | <0.01% | $0.02469 | 34.4725 | $0.8511 | |
AVAX | <0.01% | <$0.000001 | 110,270,200.1689 | $0.7167 | |
AVAX | <0.01% | $0.999941 | 0.6329 | $0.6328 | |
AVAX | <0.01% | $87,912 | 0.00000552 | $0.4852 | |
AVAX | <0.01% | $0.999891 | 0.3345 | $0.3345 | |
AVAX | <0.01% | $0.000001 | 495,932.8579 | $0.3042 | |
AVAX | <0.01% | $1 | 0.2159 | $0.2159 | |
AVAX | <0.01% | $13.16 | 0.0133 | $0.1753 | |
AVAX | <0.01% | $1.22 | 0.1309 | $0.1596 | |
ARB | 0.55% | $0.999955 | 1,041.8265 | $1,041.78 | |
ARB | 0.45% | $1,574.67 | 0.5454 | $858.88 | |
ARB | 0.39% | $1,574.84 | 0.472 | $743.38 | |
ARB | 0.39% | $1 | 736.1247 | $736.12 | |
ARB | <0.01% | $0.001767 | 1,142.6496 | $2.02 | |
ARB | <0.01% | $3.63 | 0.4026 | $1.46 | |
ARB | <0.01% | $142.39 | 0.00682505 | $0.9718 | |
ARB | <0.01% | $0.00333 | 230.9037 | $0.7689 | |
ARB | <0.01% | $0.077004 | 7.438 | $0.5727 | |
ARB | <0.01% | $0.005326 | 101.4042 | $0.5401 | |
ARB | <0.01% | $0.19381 | 2.6476 | $0.5131 | |
ARB | <0.01% | $0.999759 | 0.5112 | $0.5111 | |
ARB | <0.01% | $0.000001 | 441,930.6587 | $0.5082 | |
ARB | <0.01% | $1 | 0.5043 | $0.5042 | |
ARB | <0.01% | $0.021783 | 22.5398 | $0.4909 | |
ARB | <0.01% | $0.013381 | 35.0946 | $0.4695 | |
ARB | <0.01% | $13.61 | 0.0294 | $0.3997 | |
ARB | <0.01% | $0.192327 | 2.0737 | $0.3988 | |
ARB | <0.01% | $0.021229 | 18.5307 | $0.3933 | |
ARB | <0.01% | $0.00947 | 38.3536 | $0.3632 | |
ARB | <0.01% | $0.297363 | 1.1332 | $0.3369 | |
ARB | <0.01% | $1,889.58 | 0.00017247 | $0.3259 | |
ARB | <0.01% | $0.280768 | 1.106 | $0.3105 | |
ARB | <0.01% | $4.13 | 0.068 | $0.2806 | |
ARB | <0.01% | $87,919 | 0.00000262 | $0.2303 | |
ARB | <0.01% | $0.001362 | 165.2832 | $0.2251 | |
ARB | <0.01% | $0.012972 | 15.9969 | $0.2075 | |
ARB | <0.01% | $0.027729 | 7.2047 | $0.1997 | |
ARB | <0.01% | $87,761 | 0.00000216 | $0.1894 | |
ARB | <0.01% | $0.999955 | 0.1683 | $0.1683 | |
ARB | <0.01% | $0.998834 | 0.1671 | $0.1669 | |
ARB | <0.01% | $0.043318 | 3.7195 | $0.1611 | |
ARB | <0.01% | <$0.000001 | 1,548,701.4508 | $0.1567 | |
ARB | <0.01% | $0.007124 | 21.9926 | $0.1566 | |
ARB | <0.01% | $0.999686 | 0.1514 | $0.1513 | |
ARB | <0.01% | $1.93 | 0.0753 | $0.1453 | |
ARB | <0.01% | <$0.000001 | 4,276,851.5483 | $0.1291 | |
ARB | <0.01% | $0.000008 | 14,458.7283 | $0.1145 | |
ARB | <0.01% | $13.14 | 0.00846378 | $0.1112 | |
POL | 1.17% | $1,575.36 | 1.4153 | $2,229.64 | |
POL | 0.21% | $0.199779 | 1,976.7921 | $394.92 | |
POL | <0.01% | $0.999989 | 8.6728 | $8.67 | |
POL | <0.01% | <$0.000001 | 2,687,342,540.1095 | $4.57 | |
POL | <0.01% | <$0.000001 | 3,225,050,264.7417 | $0.9675 | |
POL | <0.01% | $4.4 | 0.2119 | $0.9324 | |
POL | <0.01% | $0.298753 | 3.1019 | $0.9266 | |
POL | <0.01% | $0.171058 | 5.3102 | $0.9083 | |
POL | <0.01% | $0.598691 | 1.4394 | $0.8617 | |
POL | <0.01% | $0.00356 | 218.6305 | $0.7782 | |
POL | <0.01% | $14.74 | 0.0527 | $0.7761 | |
POL | <0.01% | $0.271863 | 2.8113 | $0.7642 | |
POL | <0.01% | $3,496.54 | 0.00021426 | $0.7491 | |
POL | <0.01% | $0.999989 | 0.7314 | $0.7313 | |
POL | <0.01% | $19.92 | 0.0344 | $0.6846 | |
POL | <0.01% | $1.15 | 0.5732 | $0.6592 | |
POL | <0.01% | $1.15 | 0.5732 | $0.6592 | |
POL | <0.01% | $0.000176 | 3,737.5873 | $0.6588 | |
POL | <0.01% | $0.000086 | 7,615.3084 | $0.6564 | |
POL | <0.01% | $5.26 | 0.1147 | $0.6031 | |
POL | <0.01% | $1 | 0.5613 | $0.5613 | |
POL | <0.01% | $0.001858 | 264.7837 | $0.4918 | |
POL | <0.01% | $0.518775 | 0.9076 | $0.4708 | |
POL | <0.01% | $0.006261 | 71.6173 | $0.4483 | |
POL | <0.01% | $0.029884 | 14.5368 | $0.4344 | |
POL | <0.01% | $139.07 | 0.00264431 | $0.3677 | |
POL | <0.01% | $0.311538 | 1.1396 | $0.355 | |
POL | <0.01% | $0.082963 | 3.3138 | $0.2749 | |
POL | <0.01% | $0.059924 | 4.0604 | $0.2433 | |
POL | <0.01% | $0.128675 | 1.6777 | $0.2158 | |
POL | <0.01% | $0.306747 | 0.5888 | $0.1806 | |
POL | <0.01% | $0.021198 | 8.2388 | $0.1746 | |
POL | <0.01% | $0.005511 | 30.14 | $0.166 | |
POL | <0.01% | $3.9 | 0.0422 | $0.1646 | |
POL | <0.01% | $0.000413 | 389.6102 | $0.1607 | |
POL | <0.01% | $0.322092 | 0.4708 | $0.1516 | |
POL | <0.01% | $0.598299 | 0.2446 | $0.1463 | |
POL | <0.01% | $0.248317 | 0.5243 | $0.1302 | |
POL | <0.01% | $0.18857 | 0.6759 | $0.1274 | |
POL | <0.01% | <$0.000001 | 22,437,563.5554 | $0.1256 | |
POL | <0.01% | $0.001205 | 102.498 | $0.1235 | |
POL | <0.01% | $88,076 | 0.00000135 | $0.1189 | |
POL | <0.01% | $0.000012 | 8,584.0533 | $0.107 | |
POL | <0.01% | $0.767971 | 0.1392 | $0.1069 | |
POL | <0.01% | $0.007124 | 14.9792 | $0.1067 | |
POL | <0.01% | $1 | 0.1009 | $0.1009 | |
SONIC | 0.79% | $0.999941 | 1,509.1141 | $1,509.03 | |
SONIC | 0.37% | $0.46389 | 1,525.2617 | $707.55 | |
SONIC | 0.04% | $0.466008 | 177.5526 | $82.74 | |
SONIC | <0.01% | $1,574.87 | 0.00451622 | $7.11 | |
SONIC | <0.01% | $0.998562 | 1.0757 | $1.07 | |
SONIC | <0.01% | $1.41 | 0.72 | $1.02 | |
SONIC | <0.01% | $0.078052 | 4.1556 | $0.3243 | |
SONIC | <0.01% | $0.473661 | 0.2774 | $0.1313 | |
OP | 0.32% | $1,574.87 | 0.3828 | $602.9 | |
OP | 0.24% | $1,574.46 | 0.2879 | $453.31 | |
OP | <0.01% | $1 | 0.8965 | $0.8965 | |
OP | <0.01% | $2.44 | 0.3221 | $0.7859 | |
OP | <0.01% | $142.39 | 0.00533304 | $0.7593 | |
OP | <0.01% | $87,912 | 0.00000815 | $0.7164 | |
OP | <0.01% | $0.669354 | 1.0692 | $0.7156 | |
OP | <0.01% | $1 | 0.69 | $0.69 | |
OP | <0.01% | $0.044729 | 15.1114 | $0.6759 | |
OP | <0.01% | $0.698702 | 0.7847 | $0.5482 | |
OP | <0.01% | $1,889.35 | 0.00028466 | $0.5378 | |
OP | <0.01% | $0.000159 | 2,905.3049 | $0.4615 | |
OP | <0.01% | $1 | 0.378 | $0.378 | |
OP | <0.01% | $13.14 | 0.0245 | $0.3224 | |
OP | <0.01% | $0.999941 | 0.2641 | $0.264 | |
OP | <0.01% | $1,646.9 | 0.00014586 | $0.2402 | |
OP | <0.01% | $1,774.34 | 0.00012604 | $0.2236 | |
CRONOS | 0.02% | $1 | 32.8546 | $32.85 | |
CRONOS | 0.01% | $0.999941 | 26.2795 | $26.28 | |
CRONOS | 0.01% | $0.081925 | 302.8192 | $24.81 | |
CRONOS | 0.01% | $139.03 | 0.1592 | $22.14 | |
CRONOS | <0.01% | $0.000013 | 227,675.584 | $2.93 | |
CRONOS | <0.01% | $3.46 | 0.7151 | $2.47 | |
CRONOS | <0.01% | $0.001099 | 1,669.8895 | $1.83 | |
CRONOS | <0.01% | <$0.000001 | 61,889,990.5588 | $1.24 | |
CRONOS | <0.01% | $0.00021 | 5,587.5653 | $1.17 | |
CRONOS | <0.01% | $0.000143 | 7,902.4065 | $1.13 | |
CRONOS | <0.01% | $2.08 | 0.5308 | $1.1 | |
CRONOS | <0.01% | $0.000002 | 295,672.402 | $0.609 | |
CRONOS | <0.01% | $0.033336 | 8.9141 | $0.2971 | |
CRONOS | <0.01% | $87,912 | 0.00000114 | $0.1002 | |
TAIKO | 0.02% | $0.59759 | 65.1895 | $38.96 | |
TAIKO | <0.01% | $1,573.14 | 0.0105 | $16.52 | |
TAIKO | <0.01% | $0.99571 | 0.7424 | $0.7392 | |
TAIKO | <0.01% | $1,568.76 | 0.00038183 | $0.599 | |
MOVR | 0.01% | $1,576.15 | 0.0164 | $25.79 | |
MOVR | 0.01% | $0.999752 | 24.3866 | $24.38 | |
MOVR | <0.01% | $5.69 | 0.0000000000050766 | <$0.000001 | |
CELO | 0.01% | $1 | 22.9062 | $22.91 | |
CELO | <0.01% | $0.999894 | 5.3923 | $5.39 | |
CELO | <0.01% | $0.310348 | 10.7068 | $3.32 | |
CELO | <0.01% | $1 | 1.6615 | $1.66 | |
CELO | <0.01% | $1.15 | 0.1861 | $0.214 | |
LINEA | 0.01% | $1,577.62 | 0.013 | $20.45 | |
LINEA | <0.01% | $1,573.14 | 0.00692874 | $10.9 | |
LINEA | <0.01% | $0.999989 | 0.3635 | $0.3634 | |
LINEA | <0.01% | $1 | 0.354 | $0.354 | |
LINEA | <0.01% | $1.93 | 0.1358 | $0.2621 | |
LINEA | <0.01% | $1 | 0.2215 | $0.2215 | |
LINEA | <0.01% | $0.001298 | 168.8638 | $0.2191 | |
LINEA | <0.01% | $88,076 | 0.00000168 | $0.1479 | |
LINEA | <0.01% | $1,647.39 | 0.0000643 | $0.1059 | |
SCROLL | <0.01% | $1,573.14 | 0.00753492 | $11.85 | |
SCROLL | <0.01% | $0.999955 | 1.6778 | $1.68 | |
SCROLL | <0.01% | $1 | 0.7627 | $0.7627 | |
MANTLE | <0.01% | $0.99859 | 6.5476 | $6.54 | |
MANTLE | <0.01% | $0.998048 | 1.8158 | $1.81 | |
MANTLE | <0.01% | $1,575.9 | 0.00094525 | $1.49 | |
MANTLE | <0.01% | $0.658647 | 0.6913 | $0.455306 | |
MANTLE | <0.01% | $1,676.77 | 0.00013297 | $0.2229 | |
BLAST | <0.01% | $1,574.87 | 0.00388204 | $6.11 | |
BLAST | <0.01% | $1,573.99 | 0.00248248 | $3.91 | |
BLAST | <0.01% | $0.99787 | 0.1091 | $0.1089 | |
GNO | <0.01% | $0.999949 | 3.8555 | $3.86 | |
GNO | <0.01% | $1,574.87 | 0.00081333 | $1.28 | |
GNO | <0.01% | $0.999941 | 0.9365 | $0.9364 | |
GNO | <0.01% | $1.15 | 0.415 | $0.4772 | |
GNO | <0.01% | $1.15 | 0.415 | $0.4772 | |
GNO | <0.01% | $0.999949 | 0.3439 | $0.34386 | |
GNO | <0.01% | $104.94 | 0.0023748 | $0.2492 | |
ARBNOVA | <0.01% | $1,573.99 | 0.00038856 | $0.61159 | |
ARBNOVA | <0.01% | $1,574.29 | 0.00026552 | $0.418 | |
ZKEVM | <0.01% | $1,573.14 | 0.00019779 | $0.311152 | |
ZKEVM | <0.01% | $1 | 0.1599 | $0.1598 | |
APE | <0.01% | $0.46243 | 0.0486 | $0.02248 | |
GLMR | <0.01% | $0.070015 | 0.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.