More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 25 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Process Route | 18413578 | 52 days ago | IN | 0 ETH | 0.00002736 | ||||
Process Route | 18413574 | 52 days ago | IN | 0 ETH | 0.00003992 | ||||
Process Route | 18413570 | 52 days ago | IN | 0 ETH | 0.00003271 | ||||
Process Route | 18158225 | 62 days ago | IN | 0 ETH | 0.00004042 | ||||
Process Route | 18158221 | 62 days ago | IN | 0 ETH | 0.00003259 | ||||
Process Route | 18158218 | 62 days ago | IN | 0 ETH | 0.00004018 | ||||
Process Route | 18040049 | 66 days ago | IN | 0 ETH | 0.00008921 | ||||
Process Route | 18040045 | 66 days ago | IN | 0 ETH | 0.0000842 | ||||
Process Route | 18040041 | 66 days ago | IN | 0 ETH | 0.00007041 | ||||
Process Route | 18040037 | 66 days ago | IN | 0 ETH | 0.0000873 | ||||
Process Route | 18040033 | 66 days ago | IN | 0 ETH | 0.00008325 | ||||
Process Route | 18040029 | 66 days ago | IN | 0 ETH | 0.00006839 | ||||
Process Route | 17750616 | 78 days ago | IN | 0 ETH | 0.00005924 | ||||
Process Route | 17750612 | 78 days ago | IN | 0 ETH | 0.00007824 | ||||
Process Route | 17560933 | 86 days ago | IN | 0 ETH | 0.0000657 | ||||
Process Route | 17560928 | 86 days ago | IN | 0 ETH | 0.00005827 | ||||
Process Route | 17501121 | 88 days ago | IN | 0 ETH | 0.00008292 | ||||
Process Route | 17501117 | 88 days ago | IN | 0 ETH | 0.00008195 | ||||
Process Route | 17501113 | 88 days ago | IN | 0 ETH | 0.0000959 | ||||
Process Route | 17501109 | 88 days ago | IN | 0 ETH | 0.00008249 | ||||
Process Route | 17501105 | 88 days ago | IN | 0 ETH | 0.00009081 | ||||
Process Route | 17501100 | 88 days ago | IN | 0 ETH | 0.00007654 | ||||
Process Route | 17362148 | 94 days ago | IN | 0 ETH | 0.00001561 | ||||
Process Route | 17362144 | 94 days ago | IN | 0 ETH | 0.00001148 | ||||
Process Route | 17362141 | 94 days ago | IN | 0 ETH | 0.00001491 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
19773341 | 20 mins ago | 0.00000545 ETH | ||||
19773341 | 20 mins ago | 0.00000569 ETH | ||||
19772025 | 1 hr ago | 0.00000719 ETH | ||||
19771899 | 1 hr ago | 0.00000596 ETH | ||||
19771707 | 1 hr ago | 0.00000382 ETH | ||||
19771650 | 1 hr ago | 0.00000401 ETH | ||||
19771538 | 2 hrs ago | 0.00000456 ETH | ||||
19771527 | 2 hrs ago | 0.00000835 ETH | ||||
19771489 | 2 hrs ago | 0.00000743 ETH | ||||
19771469 | 2 hrs ago | 0.00000548 ETH | ||||
19771413 | 2 hrs ago | 0.00000441 ETH | ||||
19770984 | 2 hrs ago | 0.00000102 ETH | ||||
19770898 | 2 hrs ago | 0.00000402 ETH | ||||
19770551 | 3 hrs ago | 0.00000014 ETH | ||||
19770518 | 3 hrs ago | 0.00000099 ETH | ||||
19770347 | 3 hrs ago | 0.00000716 ETH | ||||
19770286 | 3 hrs ago | 0 ETH | ||||
19769121 | 4 hrs ago | 0.00000103 ETH | ||||
19768404 | 5 hrs ago | 0.00000032 ETH | ||||
19768356 | 5 hrs ago | 0.00000266 ETH | ||||
19767226 | 6 hrs ago | 0.00000751 ETH | ||||
19767195 | 6 hrs ago | 0.00000054 ETH | ||||
19766035 | 7 hrs ago | 0.00003354 ETH | ||||
19765615 | 7 hrs ago | 0.00000101 ETH | ||||
19764865 | 8 hrs ago | 0.00000104 ETH |
Loading...
Loading
Contract Name:
TokenChomper
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 999999 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.8.0; import "/interfaces/IRouteProcessor.sol"; import "interfaces/IERC20.sol"; import "./Auth.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 IERC20(tokenIn).transfer(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 {} }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >= 0.8.0; 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity >= 0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.8.0; import "openzeppelin/access/Ownable2Step.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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol) pragma solidity ^0.8.0; import "./Ownable.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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } }
{ "remappings": [ "/=src/", "openzeppelin/=lib/openzeppelin-contracts/contracts/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "utils/=utils/", "scripts/=scripts/", "interfaces/=src/interfaces/", "libraries/=src/libraries/", "@uniswap/v3-core/=lib/v3-core/", "BoringSolidity/=lib/BoringSolidity/contracts/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "solbase/=lib/solbase/src/", "solidity-utils/=lib/solidity-utils/contracts/", "solmate/=lib/solmate/src/", "v3-core/=lib/v3-core/contracts/", "v3-periphery/=lib/v3-periphery/contracts/" ], "optimizer": { "enabled": true, "runs": 999999 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "london", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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
60a06040523480156200001157600080fd5b50604051620010af380380620010af833981016040819052620000349162000159565b826200004033620000c2565b6001600160a01b038116600081815260026020908152604091829020805460ff1916600190811790915591519182527f878d105ed19c01e992a54459c2f04ba19432ac45600b42ce340d034272207436910160405180910390a250600380546001600160a01b0319166001600160a01b039384161790551660805250620001a3565b600180546001600160a01b0319169055620000e981620000ec602090811b6200089b17901c565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200015457600080fd5b919050565b6000806000606084860312156200016f57600080fd5b6200017a846200013c565b92506200018a602085016200013c565b91506200019a604085016200013c565b90509250925092565b608051610eea620001c56000396000818160ff01526106a70152610eea6000f3fe6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063dae9ab7211610059578063dae9ab7214610277578063e30c3978146102a4578063f2fde38b146102cf578063f32a12ac146102ef57600080fd5b80638da5cb5b14610217578063b081b4eb14610242578063d9caed121461025757600080fd5b80636e9821c2116100bb5780636e9821c21461018d578063715018a6146101cd57806377a93894146101e257806379ba50971461020257600080fd5b80633fc8cef3146100ed57806352f5df801461014b57806354a0af171461016d57600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b506101217f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561015757600080fd5b5061016b610166366004610c3a565b61030f565b005b34801561017957600080fd5b5061016b610188366004610cac565b6104a1565b34801561019957600080fd5b506101bd6101a8366004610d03565b60026020526000908152604090205460ff1681565b6040519015158152602001610142565b3480156101d957600080fd5b5061016b610527565b3480156101ee57600080fd5b5061016b6101fd366004610d03565b61053b565b34801561020e57600080fd5b5061016b61058a565b34801561022357600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610121565b34801561024e57600080fd5b5061016b610644565b34801561026357600080fd5b5061016b610272366004610d25565b610708565b34801561028357600080fd5b506003546101219073ffffffffffffffffffffffffffffffffffffffff1681565b3480156102b057600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff16610121565b3480156102db57600080fd5b5061016b6102ea366004610d03565b610759565b3480156102fb57600080fd5b5061016b61030a366004610d6f565b610809565b3360009081526002602052604090205460ff16610358576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9182166004820152602481018690529086169063a9059cbb906044016020604051808303816000875af11580156103d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f59190610da6565b506003546040517f2646478b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690632646478b9061045690889088908890889030908990600401610def565b6020604051808303816000875af1158015610475573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104999190610e7f565b505050505050565b6104a9610910565b60008373ffffffffffffffffffffffffffffffffffffffff1683836040516104d19190610e98565b60006040518083038185875af1925050503d806000811461050e576040519150601f19603f3d011682016040523d82523d6000602084013e610513565b606091505b505090508061052157600080fd5b50505050565b61052f610910565b6105396000610991565b565b610543610910565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600154339073ffffffffffffffffffffffffffffffffffffffff168114610638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61064181610991565b50565b3360009081526002602052604090205460ff1661068d576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016904790600081818185875af1925050503d8060008114610703576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b505050565b610710610910565b73ffffffffffffffffffffffffffffffffffffffff831615610737576107038383836109c2565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516104d1565b610761610910565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff000000000000000000000000000000000000000090911681179091556107c460005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610811610910565b73ffffffffffffffffffffffffffffffffffffffff821660008181526002602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f878d105ed19c01e992a54459c2f04ba19432ac45600b42ce340d034272207436910160405180910390a25050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161062f565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556106418161089b565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905291516000928392871691610a899190610e98565b6000604051808303816000865af19150503d8060008114610ac6576040519150601f19603f3d011682016040523d82523d6000602084013e610acb565b606091505b5091509150811580610af95750805115801590610af9575080806020019051810190610af79190610da6565b155b15610b30576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b5b57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112610ba057600080fd5b813567ffffffffffffffff80821115610bbb57610bbb610b60565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715610c0157610c01610b60565b81604052838152866020858801011115610c1a57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a08688031215610c5257600080fd5b610c5b86610b37565b945060208601359350610c7060408701610b37565b925060608601359150608086013567ffffffffffffffff811115610c9357600080fd5b610c9f88828901610b8f565b9150509295509295909350565b600080600060608486031215610cc157600080fd5b610cca84610b37565b925060208401359150604084013567ffffffffffffffff811115610ced57600080fd5b610cf986828701610b8f565b9150509250925092565b600060208284031215610d1557600080fd5b610d1e82610b37565b9392505050565b600080600060608486031215610d3a57600080fd5b610d4384610b37565b9250610d5160208501610b37565b9150604084013590509250925092565b801515811461064157600080fd5b60008060408385031215610d8257600080fd5b610d8b83610b37565b91506020830135610d9b81610d61565b809150509250929050565b600060208284031215610db857600080fd5b8151610d1e81610d61565b60005b83811015610dde578181015183820152602001610dc6565b838111156105215750506000910152565b600073ffffffffffffffffffffffffffffffffffffffff8089168352876020840152808716604084015285606084015280851660808401525060c060a083015282518060c0840152610e488160e0850160208701610dc3565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160e001979650505050505050565b600060208284031215610e9157600080fd5b5051919050565b60008251610eaa818460208701610dc3565b919091019291505056fea26469706673582212202f689657b553d45856fa1ca59328fd131b0a6e2a4ba60b2cf6726f1ec309a4aa64736f6c634300080a00330000000000000000000000007812bcd0c0de8d15ff4c47391d2d9ae1b4de13f000000000000000000000000057bffa72db682f7eb6c132dae03ff36bbeb0c4590000000000000000000000004f9a0e7fd2bf6067db6994cf12e4495df938e6e9
Deployed Bytecode
0x6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063dae9ab7211610059578063dae9ab7214610277578063e30c3978146102a4578063f2fde38b146102cf578063f32a12ac146102ef57600080fd5b80638da5cb5b14610217578063b081b4eb14610242578063d9caed121461025757600080fd5b80636e9821c2116100bb5780636e9821c21461018d578063715018a6146101cd57806377a93894146101e257806379ba50971461020257600080fd5b80633fc8cef3146100ed57806352f5df801461014b57806354a0af171461016d57600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b506101217f0000000000000000000000004f9a0e7fd2bf6067db6994cf12e4495df938e6e981565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561015757600080fd5b5061016b610166366004610c3a565b61030f565b005b34801561017957600080fd5b5061016b610188366004610cac565b6104a1565b34801561019957600080fd5b506101bd6101a8366004610d03565b60026020526000908152604090205460ff1681565b6040519015158152602001610142565b3480156101d957600080fd5b5061016b610527565b3480156101ee57600080fd5b5061016b6101fd366004610d03565b61053b565b34801561020e57600080fd5b5061016b61058a565b34801561022357600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610121565b34801561024e57600080fd5b5061016b610644565b34801561026357600080fd5b5061016b610272366004610d25565b610708565b34801561028357600080fd5b506003546101219073ffffffffffffffffffffffffffffffffffffffff1681565b3480156102b057600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff16610121565b3480156102db57600080fd5b5061016b6102ea366004610d03565b610759565b3480156102fb57600080fd5b5061016b61030a366004610d6f565b610809565b3360009081526002602052604090205460ff16610358576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9182166004820152602481018690529086169063a9059cbb906044016020604051808303816000875af11580156103d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f59190610da6565b506003546040517f2646478b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690632646478b9061045690889088908890889030908990600401610def565b6020604051808303816000875af1158015610475573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104999190610e7f565b505050505050565b6104a9610910565b60008373ffffffffffffffffffffffffffffffffffffffff1683836040516104d19190610e98565b60006040518083038185875af1925050503d806000811461050e576040519150601f19603f3d011682016040523d82523d6000602084013e610513565b606091505b505090508061052157600080fd5b50505050565b61052f610910565b6105396000610991565b565b610543610910565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600154339073ffffffffffffffffffffffffffffffffffffffff168114610638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61064181610991565b50565b3360009081526002602052604090205460ff1661068d576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004f9a0e7fd2bf6067db6994cf12e4495df938e6e916904790600081818185875af1925050503d8060008114610703576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b505050565b610710610910565b73ffffffffffffffffffffffffffffffffffffffff831615610737576107038383836109c2565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516104d1565b610761610910565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff000000000000000000000000000000000000000090911681179091556107c460005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610811610910565b73ffffffffffffffffffffffffffffffffffffffff821660008181526002602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f878d105ed19c01e992a54459c2f04ba19432ac45600b42ce340d034272207436910160405180910390a25050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161062f565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556106418161089b565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905291516000928392871691610a899190610e98565b6000604051808303816000865af19150503d8060008114610ac6576040519150601f19603f3d011682016040523d82523d6000602084013e610acb565b606091505b5091509150811580610af95750805115801590610af9575080806020019051810190610af79190610da6565b155b15610b30576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b5b57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112610ba057600080fd5b813567ffffffffffffffff80821115610bbb57610bbb610b60565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715610c0157610c01610b60565b81604052838152866020858801011115610c1a57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a08688031215610c5257600080fd5b610c5b86610b37565b945060208601359350610c7060408701610b37565b925060608601359150608086013567ffffffffffffffff811115610c9357600080fd5b610c9f88828901610b8f565b9150509295509295909350565b600080600060608486031215610cc157600080fd5b610cca84610b37565b925060208401359150604084013567ffffffffffffffff811115610ced57600080fd5b610cf986828701610b8f565b9150509250925092565b600060208284031215610d1557600080fd5b610d1e82610b37565b9392505050565b600080600060608486031215610d3a57600080fd5b610d4384610b37565b9250610d5160208501610b37565b9150604084013590509250925092565b801515811461064157600080fd5b60008060408385031215610d8257600080fd5b610d8b83610b37565b91506020830135610d9b81610d61565b809150509250929050565b600060208284031215610db857600080fd5b8151610d1e81610d61565b60005b83811015610dde578181015183820152602001610dc6565b838111156105215750506000910152565b600073ffffffffffffffffffffffffffffffffffffffff8089168352876020840152808716604084015285606084015280851660808401525060c060a083015282518060c0840152610e488160e0850160208701610dc3565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160e001979650505050505050565b600060208284031215610e9157600080fd5b5051919050565b60008251610eaa818460208701610dc3565b919091019291505056fea26469706673582212202f689657b553d45856fa1ca59328fd131b0a6e2a4ba60b2cf6726f1ec309a4aa64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007812bcd0c0de8d15ff4c47391d2d9ae1b4de13f000000000000000000000000057bffa72db682f7eb6c132dae03ff36bbeb0c4590000000000000000000000004f9a0e7fd2bf6067db6994cf12e4495df938e6e9
-----Decoded View---------------
Arg [0] : _operator (address): 0x7812BCD0c0De8D15Ff4C47391d2d9AE1B4DE13f0
Arg [1] : _routeProcessor (address): 0x57bfFa72db682f7eb6C132DAE03FF36bBEB0c459
Arg [2] : _weth (address): 0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000007812bcd0c0de8d15ff4c47391d2d9ae1b4de13f0
Arg [1] : 00000000000000000000000057bffa72db682f7eb6c132dae03ff36bbeb0c459
Arg [2] : 0000000000000000000000004f9a0e7fd2bf6067db6994cf12e4495df938e6e9
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 98.94% | $0.004571 | 1,960,025,896,131.7688 | $8,959,544,010.06 | |
BSC | 0.84% | $0.004571 | 16,691,897,081.7699 | $76,300,923.78 | |
BSC | 0.16% | $0.004571 | 3,105,657,239.8112 | $14,196,380.15 | |
BSC | 0.03% | $0.009053 | 339,577,461.24 | $3,074,024.97 | |
BSC | <0.01% | $588.34 | 44.3313 | $26,081.69 | |
BSC | <0.01% | $1 | 8,231.75 | $8,233.79 | |
BSC | <0.01% | $589.65 | 9.4934 | $5,597.79 | |
BSC | <0.01% | $6.14 | 279.1012 | $1,714.43 | |
BSC | <0.01% | $1 | 687.1907 | $688.85 | |
BSC | <0.01% | $1.17 | 426.4839 | $498.99 | |
BSC | <0.01% | $0.000109 | 4,537,328.039 | $496.75 | |
BSC | <0.01% | $0.000324 | 973,191.2879 | $315.73 | |
BSC | <0.01% | $0.009073 | 31,297.2661 | $283.97 | |
BSC | <0.01% | $1.86 | 145.0612 | $270.4 | |
BSC | <0.01% | $1 | 150.2378 | $150.39 | |
BSC | <0.01% | $0.144765 | 965.7024 | $139.8 | |
BSC | <0.01% | $1 | 98.5983 | $98.6 | |
BSC | <0.01% | <$0.000001 | 2,744,530,190.448 | $79.27 | |
BSC | <0.01% | <$0.000001 | 474,104,540.2879 | $59.84 | |
BSC | <0.01% | $0.003595 | 15,310.2764 | $55.04 | |
BSC | <0.01% | $0.259533 | 199.2337 | $51.71 | |
BSC | <0.01% | $99,567 | 0.00042781 | $42.6 | |
BSC | <0.01% | $0.00239 | 16,161.3173 | $38.63 | |
BSC | <0.01% | $2.52 | 14.0165 | $35.28 | |
BSC | <0.01% | $0.618882 | 41.1785 | $25.48 | |
BSC | <0.01% | $1 | 23.0822 | $23.09 | |
BSC | <0.01% | $0.078657 | 262.2075 | $20.62 | |
BSC | <0.01% | $0.003843 | 5,076.198 | $19.51 | |
BSC | <0.01% | $1.47 | 9.2158 | $13.55 | |
BSC | <0.01% | $99,774.12 | 0.0001156 | $11.53 | |
BSC | <0.01% | $0.003992 | 2,541.8885 | $10.15 | |
BSC | <0.01% | $0.002696 | 3,512.4302 | $9.47 | |
BSC | <0.01% | <$0.000001 | 82,429,573.8501 | $7.41 | |
BSC | <0.01% | $0.000074 | 91,107.061 | $6.72 | |
BSC | <0.01% | $0.005621 | 1,164.0302 | $6.54 | |
BSC | <0.01% | $19.64 | 0.3128 | $6.14 | |
BSC | <0.01% | $33.45 | 0.1511 | $5.06 | |
BSC | <0.01% | $234.92 | 0.0204 | $4.8 | |
BSC | <0.01% | $2,789.7 | 0.00151492 | $4.23 | |
BSC | <0.01% | $0.043732 | 95.8581 | $4.19 | |
BSC | <0.01% | $0.157467 | 25.1395 | $3.96 | |
BSC | <0.01% | $0.000003 | 1,256,996.6541 | $3.58 | |
BSC | <0.01% | $0.002085 | 1,595.3185 | $3.33 | |
BSC | <0.01% | $0.009988 | 328.3178 | $3.28 | |
BSC | <0.01% | $0.000228 | 13,457.8969 | $3.06 | |
BSC | <0.01% | $0.000029 | 97,628.9582 | $2.81 | |
BSC | <0.01% | $0.012892 | 215.4812 | $2.78 | |
BSC | <0.01% | $257.69 | 0.0104 | $2.69 | |
BSC | <0.01% | $1.06 | 2.5021 | $2.66 | |
BSC | <0.01% | $0.100674 | 26.4077 | $2.66 | |
BSC | <0.01% | $0.143231 | 17.4072 | $2.49 | |
BSC | <0.01% | $0.710812 | 3.3164 | $2.36 | |
BSC | <0.01% | $0.003776 | 617.7 | $2.33 | |
BSC | <0.01% | $0.003256 | 614.8393 | $2 | |
BSC | <0.01% | $6.29 | 0.3086 | $1.94 | |
BSC | <0.01% | $0.744827 | 2.5202 | $1.88 | |
BSC | <0.01% | $0.029185 | 62.5776 | $1.83 | |
BSC | <0.01% | <$0.000001 | 204,789,560,129.6982 | $1.63 | |
BSC | <0.01% | <$0.000001 | 289,302,418.5151 | $1.59 | |
BSC | <0.01% | $0.004658 | 293.9248 | $1.37 | |
BSC | <0.01% | $0.014642 | 88.9425 | $1.3 | |
BSC | <0.01% | $0.291995 | 4.36 | $1.27 | |
BSC | <0.01% | $4.64 | 0.2595 | $1.2 | |
BSC | <0.01% | $0.999997 | 1.0562 | $1.06 | |
BSC | <0.01% | $1.3 | 0.8077 | $1.05 | |
BSC | <0.01% | $0.000669 | 1,554.1509 | $1.04 | |
BSC | <0.01% | $0.012172 | 83.9853 | $1.02 | |
BSC | <0.01% | $0.909717 | 1.1183 | $1.02 | |
BSC | <0.01% | $0.000994 | 999.2709 | $0.9932 | |
BSC | <0.01% | $0.136193 | 7.0181 | $0.9558 | |
BSC | <0.01% | $0.000242 | 3,905.0845 | $0.9456 | |
BSC | <0.01% | $0.437899 | 2.1572 | $0.9446 | |
BSC | <0.01% | $0.055825 | 16.8766 | $0.9421 | |
BSC | <0.01% | $0.17693 | 5.0741 | $0.8977 | |
BSC | <0.01% | $0.021195 | 42.1687 | $0.8937 | |
BSC | <0.01% | $0.004544 | 193.9142 | $0.8812 | |
BSC | <0.01% | <$0.000001 | 42,851,990.4326 | $0.8761 | |
BSC | <0.01% | $0.000315 | 2,777.1612 | $0.8741 | |
BSC | <0.01% | <$0.000001 | 339,107,954.4471 | $0.8739 | |
BSC | <0.01% | <$0.000001 | 6,168,680.7539 | $0.8636 | |
BSC | <0.01% | $0.006698 | 126.7785 | $0.8491 | |
BSC | <0.01% | $0.026362 | 32.1436 | $0.8473 | |
BSC | <0.01% | $0.002085 | 404.7643 | $0.8438 | |
BSC | <0.01% | $98,982 | 0.00000838 | $0.8294 | |
BSC | <0.01% | <$0.000001 | 53,631,531.7205 | $0.8106 | |
BSC | <0.01% | $0.097642 | 8.2984 | $0.8102 | |
BSC | <0.01% | $0.000001 | 1,510,477.9456 | $0.7909 | |
BSC | <0.01% | $0.000094 | 8,399.6003 | $0.7899 | |
BSC | <0.01% | $0.002709 | 291.0844 | $0.7886 | |
BSC | <0.01% | $0.029945 | 25.9929 | $0.7783 | |
BSC | <0.01% | $0.308324 | 2.52 | $0.7769 | |
BSC | <0.01% | <$0.000001 | 24,101,296.2999 | $0.7754 | |
BSC | <0.01% | $0.000004 | 206,378.3358 | $0.7718 | |
BSC | <0.01% | $0.000137 | 5,574.3768 | $0.7621 | |
BSC | <0.01% | $0.000001 | 527,312.7021 | $0.7598 | |
BSC | <0.01% | $0.374003 | 2.0103 | $0.7518 | |
BSC | <0.01% | $0.005228 | 142.2605 | $0.7437 | |
BSC | <0.01% | $40.88 | 0.0176 | $0.72 | |
BSC | <0.01% | $1 | 0.7065 | $0.7071 | |
BSC | <0.01% | $0.022951 | 30.6768 | $0.704 | |
BSC | <0.01% | $0.304037 | 2.3075 | $0.7015 | |
BSC | <0.01% | $0.014408 | 48.2963 | $0.6958 | |
BSC | <0.01% | $938.18 | 0.00073957 | $0.6938 | |
BSC | <0.01% | $20.76 | 0.0332 | $0.6893 | |
BSC | <0.01% | <$0.000001 | 39,380,148,115.4494 | $0.6882 | |
BSC | <0.01% | $0.000564 | 1,215.6278 | $0.6861 | |
BSC | <0.01% | $0.008062 | 84.1707 | $0.6785 | |
BSC | <0.01% | $0.019265 | 34.657 | $0.6676 | |
BSC | <0.01% | $2.37 | 0.2773 | $0.6573 | |
BSC | <0.01% | $0.100018 | 6.5452 | $0.6546 | |
BSC | <0.01% | $0.007097 | 90.0914 | $0.6393 | |
BSC | <0.01% | $0.22476 | 2.8178 | $0.6333 | |
BSC | <0.01% | $0.009647 | 65.1532 | $0.6285 | |
BSC | <0.01% | $1 | 0.6151 | $0.6151 | |
BSC | <0.01% | $0.020421 | 29.9917 | $0.6124 | |
BSC | <0.01% | $0.000337 | 1,805.0617 | $0.6078 | |
BSC | <0.01% | <$0.000001 | 5,349,104.2937 | $0.605 | |
BSC | <0.01% | $2.23 | 0.2695 | $0.6008 | |
BSC | <0.01% | $0.338263 | 1.7465 | $0.5907 | |
BSC | <0.01% | $0.111874 | 5.2715 | $0.5897 | |
BSC | <0.01% | $0.000614 | 953.7536 | $0.5855 | |
BSC | <0.01% | $0.009221 | 62.8308 | $0.5793 | |
BSC | <0.01% | $0.000075 | 7,616.2403 | $0.5745 | |
BSC | <0.01% | $97,193 | 0.00000587 | $0.5705 | |
BSC | <0.01% | $0.087255 | 6.3605 | $0.5549 | |
BSC | <0.01% | $0.002179 | 254.381 | $0.5542 | |
BSC | <0.01% | $6.85 | 0.0807 | $0.5525 | |
BSC | <0.01% | $1.9 | 0.2907 | $0.5524 | |
BSC | <0.01% | $0.003673 | 149.5839 | $0.5493 | |
BSC | <0.01% | $1.01 | 0.542 | $0.5454 | |
BSC | <0.01% | $0.022188 | 24.5125 | $0.5438 | |
BSC | <0.01% | $0.001636 | 328.6009 | $0.5376 | |
BSC | <0.01% | $2.48 | 0.2143 | $0.5308 | |
BSC | <0.01% | $0.073996 | 7.1343 | $0.5279 | |
BSC | <0.01% | <$0.000001 | 35,967,545,683.5037 | $0.5241 | |
BSC | <0.01% | $0.742098 | 0.7056 | $0.5236 | |
BSC | <0.01% | $0.015898 | 32.8805 | $0.5227 | |
BSC | <0.01% | $0.011008 | 47.3039 | $0.5207 | |
BSC | <0.01% | $0.000143 | 3,641.3508 | $0.5199 | |
BSC | <0.01% | $0.028982 | 17.721 | $0.5135 | |
BSC | <0.01% | $0.104442 | 4.8909 | $0.5108 | |
BSC | <0.01% | $0.000017 | 30,000 | $0.5019 | |
BSC | <0.01% | $0.00016 | 3,109.6561 | $0.4988 | |
BSC | <0.01% | $0.00021 | 2,366.1607 | $0.4977 | |
BSC | <0.01% | $0.026198 | 18.8452 | $0.4936 | |
BSC | <0.01% | <$0.000001 | 1,938,444,023.6124 | $0.4871 | |
BSC | <0.01% | $5.35 | 0.0907 | $0.4852 | |
BSC | <0.01% | $0.012316 | 39.2411 | $0.4833 | |
BSC | <0.01% | $0.018408 | 26.0372 | $0.4793 | |
BSC | <0.01% | $0.002105 | 227.2022 | $0.4783 | |
BSC | <0.01% | $0.00626 | 76.2692 | $0.4774 | |
BSC | <0.01% | $0.000009 | 55,219.8745 | $0.4766 | |
BSC | <0.01% | $0.001789 | 266.2841 | $0.4763 | |
BSC | <0.01% | $0.00005 | 9,425.2386 | $0.4757 | |
BSC | <0.01% | $0.925862 | 0.5099 | $0.472 | |
BSC | <0.01% | $0.000453 | 1,025.7694 | $0.4651 | |
BSC | <0.01% | $0.051387 | 8.8164 | $0.453 | |
BSC | <0.01% | $0.453154 | 0.9993 | $0.4528 | |
BSC | <0.01% | $0.039486 | 11.3787 | $0.4493 | |
BSC | <0.01% | $0.022568 | 19.4884 | $0.4398 | |
BSC | <0.01% | $0.000216 | 2,031.4454 | $0.439 | |
BSC | <0.01% | $0.016377 | 26.5337 | $0.4345 | |
BSC | <0.01% | $0.000003 | 134,976.7055 | $0.4332 | |
BSC | <0.01% | $0.000544 | 779.7353 | $0.4241 | |
BSC | <0.01% | $0.00008 | 5,229.8271 | $0.4201 | |
BSC | <0.01% | <$0.000001 | 529,755,644.551 | $0.4193 | |
BSC | <0.01% | $0.403002 | 1.0384 | $0.4184 | |
BSC | <0.01% | $0.612401 | 0.6807 | $0.4168 | |
BSC | <0.01% | $0.000157 | 2,654.0776 | $0.4161 | |
BSC | <0.01% | $0.000002 | 240,202.17 | $0.4155 | |
BSC | <0.01% | $0.001579 | 252.7452 | $0.399 | |
BSC | <0.01% | $0.115729 | 3.4334 | $0.3973 | |
BSC | <0.01% | <$0.000001 | 81,893,830,704.8381 | $0.3971 | |
BSC | <0.01% | $0.000001 | 449,718.4914 | $0.3948 | |
BSC | <0.01% | <$0.000001 | 4,064,605.3981 | $0.3903 | |
BSC | <0.01% | $0.44732 | 0.8727 | $0.3903 | |
BSC | <0.01% | $0.001244 | 312.1944 | $0.3883 | |
BSC | <0.01% | $0.000385 | 998.112 | $0.3846 | |
BSC | <0.01% | $2.61 | 0.147 | $0.3842 | |
BSC | <0.01% | $0.000017 | 22,889.4725 | $0.3824 | |
BSC | <0.01% | $1.25 | 0.3039 | $0.3798 | |
BSC | <0.01% | $0.000141 | 2,683.54 | $0.3787 | |
BSC | <0.01% | $0.527607 | 0.7162 | $0.3778 | |
BSC | <0.01% | $0.025186 | 14.8798 | $0.3747 | |
BSC | <0.01% | $0.088162 | 4.2467 | $0.3743 | |
BSC | <0.01% | $333.89 | 0.00111635 | $0.3727 | |
BSC | <0.01% | $0.001655 | 225.0104 | $0.3724 | |
BSC | <0.01% | $0.133304 | 2.7914 | $0.3721 | |
BSC | <0.01% | $0.188381 | 1.975 | $0.372 | |
BSC | <0.01% | <$0.000001 | 47,719,114,263,125.828 | $0.3694 | |
BSC | <0.01% | $0.318531 | 1.1567 | $0.3684 | |
BSC | <0.01% | $0.000472 | 772.1539 | $0.3645 | |
BSC | <0.01% | <$0.000001 | 6,327,825.1081 | $0.3629 | |
BSC | <0.01% | $0.006463 | 55.9488 | $0.3615 | |
BSC | <0.01% | $0.633099 | 0.5685 | $0.3599 | |
BSC | <0.01% | $0.026451 | 13.6049 | $0.3598 | |
BSC | <0.01% | $0.001718 | 207.9638 | $0.3573 | |
BSC | <0.01% | $2.68 | 0.1286 | $0.3449 | |
BSC | <0.01% | $0.000794 | 433.4279 | $0.3441 | |
BSC | <0.01% | $0.33201 | 1.0326 | $0.3428 | |
BSC | <0.01% | <$0.000001 | 32,059,106,746 | $0.3406 | |
BSC | <0.01% | $0.01177 | 28.8794 | $0.3398 | |
BSC | <0.01% | $0.000259 | 1,308.0866 | $0.3385 | |
BSC | <0.01% | $0.042004 | 8.0009 | $0.336 | |
BSC | <0.01% | $4.49 | 0.0735 | $0.3298 | |
BSC | <0.01% | $0.001315 | 249.7035 | $0.3282 | |
BSC | <0.01% | $0.000296 | 1,108.1313 | $0.3281 | |
BSC | <0.01% | $0.001734 | 184.9039 | $0.3205 | |
BSC | <0.01% | $0.000114 | 2,771.4727 | $0.3147 | |
BSC | <0.01% | <$0.000001 | 2,582,366.7593 | $0.3125 | |
BSC | <0.01% | $0.012984 | 24.0563 | $0.3123 | |
BSC | <0.01% | $0.000467 | 662.4722 | $0.3094 | |
BSC | <0.01% | $3.64 | 0.0845 | $0.3076 | |
BSC | <0.01% | $0.055179 | 5.4545 | $0.3009 | |
BSC | <0.01% | $3.85 | 0.078 | $0.3004 | |
BSC | <0.01% | $0.26413 | 1.1246 | $0.297 | |
BSC | <0.01% | $0.876015 | 0.3348 | $0.2933 | |
BSC | <0.01% | $0.02485 | 11.7447 | $0.2918 | |
BSC | <0.01% | $0.137923 | 2.1034 | $0.2901 | |
BSC | <0.01% | $0.069502 | 4.1597 | $0.2891 | |
BSC | <0.01% | $0.37803 | 0.7569 | $0.2861 | |
BSC | <0.01% | $1.17 | 0.2434 | $0.2847 | |
BSC | <0.01% | <$0.000001 | 4,996,043.4981 | $0.2843 | |
BSC | <0.01% | $0.001294 | 217.2358 | $0.2811 | |
BSC | <0.01% | $0.144356 | 1.939 | $0.2799 | |
BSC | <0.01% | $0.001076 | 258.6829 | $0.2782 | |
BSC | <0.01% | <$0.000001 | 1,606,119.4163 | $0.2776 | |
BSC | <0.01% | $0.003929 | 70.6177 | $0.2774 | |
BSC | <0.01% | $0.256152 | 1.0825 | $0.2772 | |
BSC | <0.01% | $0.103671 | 2.6733 | $0.2771 | |
BSC | <0.01% | $0.009963 | 26.9928 | $0.2689 | |
BSC | <0.01% | $0.000036 | 7,468.3459 | $0.2684 | |
BSC | <0.01% | $2.65 | 0.101 | $0.2676 | |
BSC | <0.01% | $0.021403 | 12.4335 | $0.2661 | |
BSC | <0.01% | $0.001281 | 206.9902 | $0.2651 | |
BSC | <0.01% | $0.100691 | 2.6217 | $0.2639 | |
BSC | <0.01% | $0.000002 | 137,969.2656 | $0.2562 | |
BSC | <0.01% | $0.00462 | 55.4567 | $0.2561 | |
BSC | <0.01% | $0.000056 | 4,540.5427 | $0.2553 | |
BSC | <0.01% | $0.000007 | 34,656.4013 | $0.2552 | |
BSC | <0.01% | $0.17545 | 1.4511 | $0.2546 | |
BSC | <0.01% | $0.055832 | 4.5192 | $0.2523 | |
BSC | <0.01% | $0.00008 | 3,112.4438 | $0.2502 | |
BSC | <0.01% | $0.037375 | 6.517 | $0.2435 | |
BSC | <0.01% | $5,910.73 | 0.00004087 | $0.2415 | |
BSC | <0.01% | $1.31 | 0.1839 | $0.2408 | |
BSC | <0.01% | $0.000005 | 48,228.1713 | $0.2401 | |
BSC | <0.01% | $0.019949 | 11.9278 | $0.2379 | |
BSC | <0.01% | $0.008822 | 26.5915 | $0.2345 | |
BSC | <0.01% | $0.000165 | 1,408.7852 | $0.2327 | |
BSC | <0.01% | $0.009117 | 25.5153 | $0.2326 | |
BSC | <0.01% | $0.000252 | 920.3752 | $0.232 | |
BSC | <0.01% | <$0.000001 | 1,272,536,138.9346 | $0.23 | |
BSC | <0.01% | $0.560568 | 0.4063 | $0.2277 | |
BSC | <0.01% | <$0.000001 | 2,139,771,083,271.8062 | $0.2235 | |
BSC | <0.01% | $0.001403 | 157.6595 | $0.2212 | |
BSC | <0.01% | $0.001411 | 156.7321 | $0.221 | |
BSC | <0.01% | $0.000066 | 3,331.1203 | $0.2201 | |
BSC | <0.01% | $0.001579 | 139.0626 | $0.2196 | |
BSC | <0.01% | $0.000569 | 384.8328 | $0.2188 | |
BSC | <0.01% | $0.000154 | 1,410.4218 | $0.2171 | |
BSC | <0.01% | $0.000282 | 766.2672 | $0.2161 | |
BSC | <0.01% | $0.240469 | 0.8976 | $0.2158 | |
BSC | <0.01% | $0.148816 | 1.4483 | $0.2155 | |
BSC | <0.01% | $0.00061 | 341.1416 | $0.2081 | |
BSC | <0.01% | $0.031896 | 6.4882 | $0.2069 | |
BSC | <0.01% | $0.000287 | 720.2358 | $0.2066 | |
BSC | <0.01% | $0.000358 | 576.7699 | $0.2062 | |
BSC | <0.01% | $0.006086 | 33.5583 | $0.2042 | |
BSC | <0.01% | $0.005788 | 35.0005 | $0.2025 | |
BSC | <0.01% | $0.000039 | 5,155.1597 | $0.2011 | |
BSC | <0.01% | $0.008449 | 23.7025 | $0.2002 | |
BSC | <0.01% | <$0.000001 | 3,542,542.9738 | $0.1985 | |
BSC | <0.01% | $0.404013 | 0.4906 | $0.1982 | |
BSC | <0.01% | $0.129463 | 1.529 | $0.1979 | |
BSC | <0.01% | $0.122715 | 1.6128 | $0.1979 | |
BSC | <0.01% | $0.301119 | 0.6463 | $0.1946 | |
BSC | <0.01% | $5.17 | 0.037 | $0.1915 | |
BSC | <0.01% | $0.153818 | 1.239 | $0.1905 | |
BSC | <0.01% | $0.106558 | 1.7798 | $0.1896 | |
BSC | <0.01% | $0.048097 | 3.8953 | $0.1873 | |
BSC | <0.01% | $2 | 0.0933 | $0.1866 | |
BSC | <0.01% | $0.1789 | 1.0405 | $0.1861 | |
BSC | <0.01% | $0.118298 | 1.5596 | $0.1844 | |
BSC | <0.01% | $0.000009 | 21,468.9699 | $0.1842 | |
BSC | <0.01% | $0.023757 | 7.744 | $0.1839 | |
BSC | <0.01% | $0.026891 | 6.7213 | $0.1807 | |
BSC | <0.01% | $0.052814 | 3.389 | $0.1789 | |
BSC | <0.01% | <$0.000001 | 1,088,236.8508 | $0.1789 | |
BSC | <0.01% | $0.073276 | 2.3643 | $0.1732 | |
BSC | <0.01% | $0.070379 | 2.4399 | $0.1717 | |
BSC | <0.01% | $14.6 | 0.0118 | $0.1717 | |
BSC | <0.01% | $0.068387 | 2.4666 | $0.1686 | |
BSC | <0.01% | $0.022821 | 7.3755 | $0.1683 | |
BSC | <0.01% | $0.000675 | 247.109 | $0.1668 | |
BSC | <0.01% | $0.513636 | 0.3195 | $0.1641 | |
BSC | <0.01% | <$0.000001 | 90,097,936,173.9373 | $0.16 | |
BSC | <0.01% | <$0.000001 | 210,815,372,545.247 | $0.1567 | |
BSC | <0.01% | $0.000012 | 13,481.705 | $0.1566 | |
BSC | <0.01% | $0.253181 | 0.6144 | $0.1555 | |
BSC | <0.01% | $0.004081 | 37.8035 | $0.1542 | |
BSC | <0.01% | $0.000662 | 230.6855 | $0.1527 | |
BSC | <0.01% | $0.000004 | 33,954.7408 | $0.151 | |
BSC | <0.01% | $4.23 | 0.0354 | $0.1498 | |
BSC | <0.01% | $0.002221 | 67.2922 | $0.1494 | |
BSC | <0.01% | $0.267208 | 0.557 | $0.1488 | |
BSC | <0.01% | $0.168776 | 0.8806 | $0.1486 | |
BSC | <0.01% | $0.000352 | 421.9304 | $0.1485 | |
BSC | <0.01% | $0.019573 | 7.5436 | $0.1476 | |
BSC | <0.01% | <$0.000001 | 5,754,971.8449 | $0.1455 | |
BSC | <0.01% | $0.000001 | 175,325.3868 | $0.1448 | |
BSC | <0.01% | $0.000009 | 16,106.3395 | $0.1427 | |
BSC | <0.01% | $0.206925 | 0.6873 | $0.1422 | |
BSC | <0.01% | $0.015758 | 8.9644 | $0.1412 | |
BSC | <0.01% | $0.024212 | 5.8034 | $0.1405 | |
BSC | <0.01% | $0.001917 | 73.1346 | $0.1401 | |
BSC | <0.01% | $0.011153 | 12.4791 | $0.1391 | |
BSC | <0.01% | $0.004687 | 29.3447 | $0.1375 | |
BSC | <0.01% | <$0.000001 | 146,831,485.2511 | $0.1337 | |
BSC | <0.01% | <$0.000001 | 574,844,657.6305 | $0.1328 | |
BSC | <0.01% | $0.00053 | 250.4982 | $0.1328 | |
BSC | <0.01% | $0.00073 | 180.6272 | $0.1317 | |
BSC | <0.01% | $0.002945 | 44.5662 | $0.1312 | |
BSC | <0.01% | $0.000465 | 281.1527 | $0.1306 | |
BSC | <0.01% | $0.00199 | 65.333 | $0.1299 | |
BSC | <0.01% | $0.213467 | 0.6049 | $0.1291 | |
BSC | <0.01% | $1 | 0.1289 | $0.1289 | |
BSC | <0.01% | $0.001063 | 121.2371 | $0.1288 | |
BSC | <0.01% | $0.128796 | 0.9915 | $0.1277 | |
BSC | <0.01% | $0.003397 | 37.2514 | $0.1265 | |
BSC | <0.01% | $0.000055 | 2,316.4013 | $0.1263 | |
BSC | <0.01% | <$0.000001 | 1,191,717,966.0164 | $0.1261 | |
BSC | <0.01% | $0.64349 | 0.193 | $0.1242 | |
BSC | <0.01% | $0.001119 | 110.1785 | $0.1233 | |
BSC | <0.01% | $23.82 | 0.00516818 | $0.1231 | |
BSC | <0.01% | $0.027684 | 4.4495 | $0.1231 | |
BSC | <0.01% | $0.001619 | 75.4324 | $0.1221 | |
BSC | <0.01% | $0.00001 | 11,866.0788 | $0.1219 | |
BSC | <0.01% | $0.001111 | 109.1611 | $0.1212 | |
BSC | <0.01% | $0.016013 | 7.5562 | $0.1209 | |
BSC | <0.01% | $0.063146 | 1.8952 | $0.1196 | |
BSC | <0.01% | $0.003727 | 31.9549 | $0.119 | |
BSC | <0.01% | <$0.000001 | 163,930,212.028 | $0.1184 | |
BSC | <0.01% | $0.178961 | 0.6587 | $0.1178 | |
BSC | <0.01% | $0.000003 | 34,784.9429 | $0.1172 | |
BSC | <0.01% | $0.187253 | 0.6213 | $0.1163 | |
BSC | <0.01% | $0.00062 | 184.2746 | $0.1141 | |
BSC | <0.01% | $0.000436 | 258.0492 | $0.1123 | |
BSC | <0.01% | $0.000001 | 94,295.3031 | $0.1112 | |
BSC | <0.01% | $0.304468 | 0.3648 | $0.111 | |
BSC | <0.01% | $0.003271 | 33.3344 | $0.109 | |
BSC | <0.01% | $0.001849 | 58.8625 | $0.1088 | |
BSC | <0.01% | $0.013353 | 8.1214 | $0.1084 | |
BSC | <0.01% | $0.002254 | 47.9272 | $0.108 | |
BSC | <0.01% | <$0.000001 | 82,550,116.4857 | $0.1074 | |
BSC | <0.01% | $0.000804 | 132.7199 | $0.1067 | |
BSC | <0.01% | $0.000088 | 1,196.3516 | $0.1047 | |
BSC | <0.01% | $0.000004 | 27,062.2056 | $0.1039 | |
BSC | <0.01% | $0.003979 | 26.0662 | $0.1037 | |
BSC | <0.01% | $0.000001 | 70,609.5751 | $0.1018 | |
BSC | <0.01% | $0.000346 | 290.874 | $0.1005 | |
BSC | <0.01% | $0.035538 | 2.8254 | $0.1004 | |
BSC | <0.01% | $202.02 | 0.00049609 | $0.1002 | |
BASE | <0.01% | $2,791.62 | 154.1993 | $430,465.83 | |
BASE | <0.01% | $0.999997 | 271,246.8498 | $271,246.04 | |
BASE | <0.01% | $2,792.38 | 78.6354 | $219,579.65 | |
BASE | <0.01% | $0.275743 | 12,070.0187 | $3,328.22 | |
BASE | <0.01% | $0.000835 | 2,936,100.1527 | $2,452.76 | |
BASE | <0.01% | $0.024487 | 70,874.3549 | $1,735.48 | |
BASE | <0.01% | $1.37 | 1,063.7129 | $1,457.29 | |
BASE | <0.01% | $0.004084 | 302,202.9555 | $1,234.33 | |
BASE | <0.01% | $0.049558 | 23,388.9339 | $1,159.11 | |
BASE | <0.01% | $0.000157 | 5,890,540.2865 | $925.11 | |
BASE | <0.01% | $99,736 | 0.00876168 | $873.85 | |
BASE | <0.01% | $0.119149 | 7,233.283 | $861.84 | |
BASE | <0.01% | <$0.000001 | 10,321,497,594.2143 | $833.98 | |
BASE | <0.01% | $7 | 103.0348 | $721.24 | |
BASE | <0.01% | $0.000125 | 5,253,149.0906 | $654.81 | |
BASE | <0.01% | $0.29281 | 1,938.3221 | $567.56 | |
BASE | <0.01% | $0.000024 | 16,352,634.7846 | $399.17 | |
BASE | <0.01% | <$0.000001 | 13,982,295,916.5057 | $398.5 | |
BASE | <0.01% | $0.039979 | 8,143.3939 | $325.56 | |
BASE | <0.01% | $2 | 159.5756 | $319.15 | |
BASE | <0.01% | $1 | 313.7301 | $314.04 | |
BASE | <0.01% | $0.041148 | 6,361.0988 | $261.74 | |
BASE | <0.01% | $0.00045 | 556,686.1195 | $250.31 | |
BASE | <0.01% | $0.003661 | 61,570.6451 | $225.4 | |
BASE | <0.01% | $0.004068 | 54,977.3681 | $223.64 | |
BASE | <0.01% | $0.071604 | 3,046.6782 | $218.15 | |
BASE | <0.01% | $0.012629 | 15,252.8555 | $192.64 | |
BASE | <0.01% | $0.037134 | 4,562.8707 | $169.44 | |
BASE | <0.01% | $1 | 160.6772 | $161 | |
BASE | <0.01% | $0.012426 | 12,185.314 | $151.42 | |
BASE | <0.01% | $0.003468 | 42,300.6897 | $146.68 | |
BASE | <0.01% | $0.927589 | 157.7618 | $146.34 | |
BASE | <0.01% | $0.000043 | 3,306,536.6872 | $143.64 | |
BASE | <0.01% | <$0.000001 | 797,856,146.9116 | $133.88 | |
BASE | <0.01% | $0.003681 | 34,378.4038 | $126.54 | |
BASE | <0.01% | $0.091652 | 1,376.1325 | $126.13 | |
BASE | <0.01% | $0.004413 | 26,830.5502 | $118.41 | |
BASE | <0.01% | $0.095034 | 1,244.5012 | $118.27 | |
BASE | <0.01% | $0.152916 | 750.0675 | $114.7 | |
BASE | <0.01% | $3,314.17 | 0.0328 | $108.54 | |
BASE | <0.01% | $0.069726 | 1,527.1806 | $106.48 | |
BASE | <0.01% | $0.018038 | 5,345.3483 | $96.42 | |
BASE | <0.01% | $0.685211 | 137.8541 | $94.46 | |
BASE | <0.01% | $0.003192 | 28,623.0094 | $91.36 | |
BASE | <0.01% | $1.04 | 81.2842 | $84.37 | |
BASE | <0.01% | $0.008613 | 9,552.0198 | $82.28 | |
BASE | <0.01% | $0.524055 | 121.0495 | $63.44 | |
BASE | <0.01% | $18.03 | 3.1628 | $57.02 | |
BASE | <0.01% | $0.005418 | 10,480.349 | $56.78 | |
BASE | <0.01% | $0.019072 | 2,720.7104 | $51.89 | |
BASE | <0.01% | $1 | 50.9109 | $50.92 | |
BASE | <0.01% | $0.019047 | 2,444.4699 | $46.56 | |
BASE | <0.01% | $0.007279 | 6,369.5596 | $46.36 | |
BASE | <0.01% | $6.33 | 7.0022 | $44.32 | |
BASE | <0.01% | $0.001208 | 33,518.7832 | $40.48 | |
BASE | <0.01% | $0.000129 | 314,432.6327 | $40.43 | |
BASE | <0.01% | $0.001674 | 23,741.299 | $39.75 | |
BASE | <0.01% | $0.030204 | 1,095.4799 | $33.09 | |
BASE | <0.01% | $0.004571 | 6,774.9941 | $30.97 | |
BASE | <0.01% | $0.000001 | 32,569,969.7216 | $29.09 | |
BASE | <0.01% | $3,029.35 | 0.00903795 | $27.38 | |
BASE | <0.01% | $0.080374 | 340.1912 | $27.34 | |
BASE | <0.01% | <$0.000001 | 112,319,682.2314 | $26.07 | |
BASE | <0.01% | $0.000151 | 164,908.4204 | $24.92 | |
BASE | <0.01% | $0.001926 | 12,558.9598 | $24.19 | |
BASE | <0.01% | $0.003979 | 5,721.6971 | $22.77 | |
BASE | <0.01% | $1 | 22.2335 | $22.26 | |
BASE | <0.01% | $3.47 | 6.1392 | $21.3 | |
BASE | <0.01% | $0.002089 | 9,826.8984 | $20.53 | |
BASE | <0.01% | $0.001135 | 16,948.5269 | $19.24 | |
BASE | <0.01% | $0.00205 | 9,381.3311 | $19.23 | |
BASE | <0.01% | $0.992319 | 18.9504 | $18.8 | |
BASE | <0.01% | $0.179378 | 90.2264 | $16.18 | |
BASE | <0.01% | $7.47 | 2.1075 | $15.74 | |
BASE | <0.01% | $0.180579 | 81.6053 | $14.74 | |
BASE | <0.01% | $0.012297 | 1,177.6083 | $14.48 | |
BASE | <0.01% | $0.002097 | 6,383.504 | $13.39 | |
BASE | <0.01% | $0.026797 | 479.2574 | $12.84 | |
BASE | <0.01% | $0.046037 | 267.9902 | $12.34 | |
BASE | <0.01% | $0.017571 | 683.9909 | $12.02 | |
BASE | <0.01% | $0.011396 | 1,046.677 | $11.93 | |
BASE | <0.01% | <$0.000001 | 117,979,348,132.8404 | $11.8 | |
BASE | <0.01% | $0.729999 | 15.9804 | $11.67 | |
BASE | <0.01% | $2.86 | 4.0258 | $11.51 | |
BASE | <0.01% | $0.631671 | 18.01 | $11.38 | |
BASE | <0.01% | $0.000027 | 405,356.0186 | $10.86 | |
BASE | <0.01% | $0.013703 | 787.8895 | $10.8 | |
BASE | <0.01% | $0.001047 | 10,252.6169 | $10.73 | |
BASE | <0.01% | $0.000163 | 64,153.7957 | $10.45 | |
BASE | <0.01% | $0.000032 | 319,805.6188 | $10.15 | |
BASE | <0.01% | $0.03505 | 287.5234 | $10.08 | |
BASE | <0.01% | $0.305317 | 32.8813 | $10.04 | |
BASE | <0.01% | $0.012418 | 760.8043 | $9.45 | |
BASE | <0.01% | $0.092214 | 94.8047 | $8.74 | |
BASE | <0.01% | $0.032641 | 262.8496 | $8.58 | |
BASE | <0.01% | $0.002171 | 3,915.9715 | $8.5 | |
BASE | <0.01% | $0.000212 | 37,669.4668 | $7.99 | |
BASE | <0.01% | $3.32 | 2.4041 | $7.98 | |
BASE | <0.01% | $0.045662 | 162.7943 | $7.43 | |
BASE | <0.01% | $0.019278 | 384.0512 | $7.4 | |
BASE | <0.01% | $3.96 | 1.8398 | $7.29 | |
BASE | <0.01% | <$0.000001 | 1,237,196,574.4304 | $7.18 | |
BASE | <0.01% | $0.000038 | 176,511.0351 | $6.64 | |
BASE | <0.01% | $0.008618 | 767.4041 | $6.61 | |
BASE | <0.01% | $0.169412 | 36.9069 | $6.25 | |
BASE | <0.01% | $0.001036 | 5,849.2359 | $6.06 | |
BASE | <0.01% | $0.001584 | 3,639.4807 | $5.77 | |
BASE | <0.01% | $0.023668 | 243.2443 | $5.76 | |
BASE | <0.01% | <$0.000001 | 6,291,660,233.1765 | $5.66 | |
BASE | <0.01% | $0.000003 | 1,814,426.9632 | $5.61 | |
BASE | <0.01% | $0.005348 | 1,033.9315 | $5.53 | |
BASE | <0.01% | $0.001619 | 3,411.2424 | $5.52 | |
BASE | <0.01% | $0.000028 | 195,058.2542 | $5.47 | |
BASE | <0.01% | $0.074938 | 65.5955 | $4.92 | |
BASE | <0.01% | $0.005615 | 775.0986 | $4.35 | |
BASE | <0.01% | $0.25579 | 16.5591 | $4.24 | |
BASE | <0.01% | $0.016649 | 241.7844 | $4.03 | |
BASE | <0.01% | $0.000622 | 6,448.7944 | $4.01 | |
BASE | <0.01% | $0.437525 | 9.1442 | $4 | |
BASE | <0.01% | $0.000194 | 20,488.6706 | $3.98 | |
BASE | <0.01% | $0.001984 | 1,903.532 | $3.78 | |
BASE | <0.01% | $0.042359 | 88.8073 | $3.76 | |
BASE | <0.01% | $0.000148 | 24,729.512 | $3.65 | |
BASE | <0.01% | $0.106723 | 34.0924 | $3.64 | |
BASE | <0.01% | $0.000574 | 6,113.8082 | $3.51 | |
BASE | <0.01% | $0.020726 | 168.1645 | $3.49 | |
BASE | <0.01% | $0.013868 | 243.2872 | $3.37 | |
BASE | <0.01% | $0.002463 | 1,338.1182 | $3.3 | |
BASE | <0.01% | $0.075717 | 43.455 | $3.29 | |
BASE | <0.01% | <$0.000001 | 32,534,297.031 | $3.29 | |
BASE | <0.01% | $1.19 | 2.6136 | $3.11 | |
BASE | <0.01% | $0.000821 | 3,768.3249 | $3.09 | |
BASE | <0.01% | $0.00049 | 6,058.5554 | $2.97 | |
BASE | <0.01% | $0.180172 | 16.3948 | $2.95 | |
BASE | <0.01% | $0.000139 | 20,306.0568 | $2.83 | |
BASE | <0.01% | $0.001818 | 1,550.8704 | $2.82 | |
BASE | <0.01% | $0.009127 | 302.5856 | $2.76 | |
BASE | <0.01% | $0.84132 | 3.1501 | $2.65 | |
BASE | <0.01% | <$0.000001 | 658,963,000.291 | $2.64 | |
BASE | <0.01% | $0.000963 | 2,588.2426 | $2.49 | |
BASE | <0.01% | $0.004571 | 532.6278 | $2.43 | |
BASE | <0.01% | $0.136664 | 17.7596 | $2.43 | |
BASE | <0.01% | $0.182654 | 12.7491 | $2.33 | |
BASE | <0.01% | $0.00042 | 5,453.0207 | $2.29 | |
BASE | <0.01% | $99,514 | 0.00002154 | $2.14 | |
BASE | <0.01% | $2,887.63 | 0.00074184 | $2.14 | |
BASE | <0.01% | $0.002332 | 904.2637 | $2.11 | |
BASE | <0.01% | $0.000007 | 302,171.4298 | $2.07 | |
BASE | <0.01% | $0.000126 | 16,391.4008 | $2.06 | |
BASE | <0.01% | $0.000028 | 72,597.1202 | $2.06 | |
BASE | <0.01% | $0.000226 | 9,078.469 | $2.05 | |
BASE | <0.01% | $0.002292 | 843.8424 | $1.93 | |
BASE | <0.01% | <$0.000001 | 13,937,656.0712 | $1.83 | |
BASE | <0.01% | <$0.000001 | 1,518,642,057.375 | $1.82 | |
BASE | <0.01% | $0.003296 | 540.1111 | $1.78 | |
BASE | <0.01% | $0.033996 | 51.1434 | $1.74 | |
BASE | <0.01% | $1.15 | 1.4964 | $1.72 | |
BASE | <0.01% | $0.049411 | 33.8585 | $1.67 | |
BASE | <0.01% | $99,295 | 0.0000164 | $1.63 | |
BASE | <0.01% | $0.000192 | 8,412.3313 | $1.62 | |
BASE | <0.01% | $0.00035 | 4,624.5799 | $1.62 | |
BASE | <0.01% | $0.002392 | 656.1213 | $1.57 | |
BASE | <0.01% | $0.021025 | 74.3446 | $1.56 | |
BASE | <0.01% | $0.002862 | 528.6514 | $1.51 | |
BASE | <0.01% | $0.000604 | 2,334.7173 | $1.41 | |
BASE | <0.01% | $0.054931 | 25.5528 | $1.4 | |
BASE | <0.01% | $0.00968 | 143.7576 | $1.39 | |
BASE | <0.01% | $0.000178 | 7,727 | $1.38 | |
BASE | <0.01% | $0.001146 | 1,180.4671 | $1.35 | |
BASE | <0.01% | $0.000016 | 85,179.4805 | $1.33 | |
BASE | <0.01% | $1 | 1.3065 | $1.31 | |
BASE | <0.01% | $0.000042 | 31,019.8332 | $1.3 | |
BASE | <0.01% | $15.49 | 0.0829 | $1.28 | |
BASE | <0.01% | $0.024091 | 51.3037 | $1.24 | |
BASE | <0.01% | $0.037017 | 32.5903 | $1.21 | |
BASE | <0.01% | $0.000481 | 2,481.0572 | $1.19 | |
BASE | <0.01% | $0.000379 | 3,101.0604 | $1.18 | |
BASE | <0.01% | $0.000187 | 6,058.5036 | $1.13 | |
BASE | <0.01% | $0.000116 | 9,676.3851 | $1.12 | |
BASE | <0.01% | $0.000077 | 14,496.3285 | $1.11 | |
BASE | <0.01% | $0.000428 | 2,548.5442 | $1.09 | |
BASE | <0.01% | $0.000105 | 10,368.8399 | $1.09 | |
BASE | <0.01% | $0.001608 | 663.6471 | $1.07 | |
BASE | <0.01% | $0.000006 | 168,775.7289 | $1.07 | |
BASE | <0.01% | $0.036139 | 29.421 | $1.06 | |
BASE | <0.01% | $0.000061 | 17,260.0761 | $1.05 | |
BASE | <0.01% | $0.00005 | 20,819.5701 | $1.03 | |
BASE | <0.01% | $0.002767 | 371.6647 | $1.03 | |
BASE | <0.01% | $0.315691 | 3.2523 | $1.03 | |
BASE | <0.01% | $1.76 | 0.5658 | $0.9961 | |
BASE | <0.01% | $0.007696 | 128.562 | $0.9894 | |
BASE | <0.01% | $1 | 0.9541 | $0.9579 | |
BASE | <0.01% | $0.000294 | 3,117.5144 | $0.916 | |
BASE | <0.01% | $0.000003 | 255,181.5638 | $0.8752 | |
BASE | <0.01% | $0.024513 | 35.35 | $0.8665 | |
BASE | <0.01% | $0.008883 | 94.5696 | $0.8401 | |
BASE | <0.01% | $0.000194 | 4,263.2434 | $0.8286 | |
BASE | <0.01% | $0.015259 | 54.212 | $0.8272 | |
BASE | <0.01% | <$0.000001 | 2,341,094.4656 | $0.7554 | |
BASE | <0.01% | $0.000027 | 27,791.5381 | $0.752 | |
BASE | <0.01% | $0.000342 | 2,098.2255 | $0.7166 | |
BASE | <0.01% | $0.001009 | 709.2956 | $0.7158 | |
BASE | <0.01% | <$0.000001 | 4,982,722.1116 | $0.7095 | |
BASE | <0.01% | $0.000006 | 125,218.4212 | $0.7064 | |
BASE | <0.01% | $0.262196 | 2.6798 | $0.7026 | |
BASE | <0.01% | $0.000186 | 3,543.39 | $0.6581 | |
BASE | <0.01% | $99,795 | 0.00000659 | $0.6576 | |
BASE | <0.01% | $0.000212 | 2,990.5059 | $0.6329 | |
BASE | <0.01% | $0.000143 | 4,348.8596 | $0.6228 | |
BASE | <0.01% | $0.000036 | 16,705.0353 | $0.6037 | |
BASE | <0.01% | <$0.000001 | 1,359,256.322 | $0.6022 | |
BASE | <0.01% | <$0.000001 | 38,916,260.535 | $0.5876 | |
BASE | <0.01% | $0.003734 | 155.535 | $0.5807 | |
BASE | <0.01% | $0.000001 | 392,012 | $0.5762 | |
BASE | <0.01% | $0.000019 | 30,668.8873 | $0.5748 | |
BASE | <0.01% | $0.000081 | 7,038.7792 | $0.5726 | |
BASE | <0.01% | $0.000032 | 17,858.2469 | $0.5687 | |
BASE | <0.01% | $0.07664 | 6.8341 | $0.5237 | |
BASE | <0.01% | <$0.000001 | 20,040,632.3962 | $0.521 | |
BASE | <0.01% | $0.261485 | 1.9801 | $0.5177 | |
BASE | <0.01% | $0.000374 | 1,354.1988 | $0.5069 | |
BASE | <0.01% | $1 | 0.4962 | $0.4972 | |
BASE | <0.01% | $0.000017 | 29,818.2559 | $0.4952 | |
BASE | <0.01% | $0.630013 | 0.7824 | $0.4929 | |
BASE | <0.01% | $0.000003 | 170,963.0293 | $0.4923 | |
BASE | <0.01% | $0.01299 | 37.6046 | $0.4884 | |
BASE | <0.01% | $0.422138 | 1.1504 | $0.4856 | |
BASE | <0.01% | $0.000368 | 1,301.8653 | $0.4795 | |
BASE | <0.01% | $0.000129 | 3,655.6848 | $0.4707 | |
BASE | <0.01% | $0.000265 | 1,755.6842 | $0.4658 | |
BASE | <0.01% | $0.003371 | 133.187 | $0.449 | |
BASE | <0.01% | $2,789.07 | 0.00016064 | $0.448 | |
BASE | <0.01% | $0.004923 | 90.1484 | $0.4437 | |
BASE | <0.01% | $0.340697 | 1.2876 | $0.4386 | |
BASE | <0.01% | $1 | 0.4304 | $0.4313 | |
BASE | <0.01% | $0.993174 | 0.4314 | $0.4284 | |
BASE | <0.01% | $0.000084 | 5,094.7191 | $0.4255 | |
BASE | <0.01% | $0.019664 | 21.44 | $0.4215 | |
BASE | <0.01% | $0.000028 | 14,728.928 | $0.415 | |
BASE | <0.01% | $0.514626 | 0.7999 | $0.4116 | |
BASE | <0.01% | $0.00004 | 10,146.423 | $0.401 | |
BASE | <0.01% | $0.006627 | 59.3275 | $0.3931 | |
BASE | <0.01% | $0.000058 | 6,730.5352 | $0.3878 | |
BASE | <0.01% | $0.000247 | 1,565.8629 | $0.3862 | |
BASE | <0.01% | <$0.000001 | 1,261,898.6507 | $0.3836 | |
BASE | <0.01% | $0.002863 | 132.1872 | $0.3784 | |
BASE | <0.01% | $0.000005 | 81,330.2035 | $0.3659 | |
BASE | <0.01% | $28.25 | 0.0129 | $0.3653 | |
BASE | <0.01% | $0.002512 | 141.6971 | $0.3559 | |
BASE | <0.01% | $0.000012 | 30,206.8376 | $0.3475 | |
BASE | <0.01% | $0.000037 | 9,180.7365 | $0.3357 | |
BASE | <0.01% | $0.000073 | 4,566.3747 | $0.3355 | |
BASE | <0.01% | $0.000032 | 10,301.0833 | $0.334 | |
BASE | <0.01% | $1 | 0.325 | $0.3256 | |
BASE | <0.01% | $0.000487 | 659.2106 | $0.321 | |
BASE | <0.01% | $0.000378 | 847.5113 | $0.32 | |
BASE | <0.01% | $3.65 | 0.0862 | $0.3145 | |
BASE | <0.01% | $0.0108 | 28.8964 | $0.312 | |
BASE | <0.01% | $0.019584 | 15.868 | $0.3107 | |
BASE | <0.01% | $0.005814 | 52.0146 | $0.3024 | |
BASE | <0.01% | $0.192567 | 1.5688 | $0.302 | |
BASE | <0.01% | $0.000004 | 78,777.2265 | $0.2969 | |
BASE | <0.01% | <$0.000001 | 3,376,845.0801 | $0.2937 | |
BASE | <0.01% | $0.000029 | 9,914.4381 | $0.2907 | |
BASE | <0.01% | $0.021542 | 13.305 | $0.2866 | |
BASE | <0.01% | $0.993582 | 0.2885 | $0.2866 | |
BASE | <0.01% | $0.00001 | 29,136.3356 | $0.2862 | |
BASE | <0.01% | $0.038989 | 7.1213 | $0.2776 | |
BASE | <0.01% | $0.000004 | 71,338.2169 | $0.2746 | |
BASE | <0.01% | $0.141659 | 1.9291 | $0.2732 | |
BASE | <0.01% | $0.284332 | 0.9493 | $0.2699 | |
BASE | <0.01% | $0.001523 | 175.3873 | $0.2671 | |
BASE | <0.01% | $0.007924 | 33.6787 | $0.2668 | |
BASE | <0.01% | $0.824555 | 0.3171 | $0.2614 | |
BASE | <0.01% | $0.165063 | 1.5738 | $0.2597 | |
BASE | <0.01% | $0.000056 | 4,601.6048 | $0.2567 | |
BASE | <0.01% | $0.326407 | 0.7649 | $0.2496 | |
BASE | <0.01% | $0.000015 | 16,748.6842 | $0.247 | |
BASE | <0.01% | $0.000361 | 676.6446 | $0.2441 | |
BASE | <0.01% | $0.0022 | 110.6605 | $0.2434 | |
BASE | <0.01% | $0.000458 | 519.4969 | $0.2381 | |
BASE | <0.01% | $0.003327 | 70.9382 | $0.2359 | |
BASE | <0.01% | $0.000033 | 7,138.4951 | $0.2352 | |
BASE | <0.01% | $0.000243 | 953.4439 | $0.2314 | |
BASE | <0.01% | $0.000058 | 3,995.2506 | $0.2308 | |
BASE | <0.01% | $0.000017 | 13,564.7701 | $0.2281 | |
BASE | <0.01% | $0.017713 | 12.4841 | $0.2211 | |
BASE | <0.01% | $0.00002 | 11,143.8364 | $0.2185 | |
BASE | <0.01% | $0.000002 | 88,528.5922 | $0.2142 | |
BASE | <0.01% | $0.054121 | 3.7469 | $0.2027 | |
BASE | <0.01% | $0.192212 | 1.0261 | $0.1972 | |
BASE | <0.01% | $0.000178 | 1,061.2044 | $0.1892 | |
BASE | <0.01% | $0.000018 | 10,620.3816 | $0.1885 | |
BASE | <0.01% | $0.000025 | 7,485.3552 | $0.1882 | |
BASE | <0.01% | $0.005482 | 34.2464 | $0.1877 | |
BASE | <0.01% | $0.006903 | 26.4114 | $0.1823 | |
BASE | <0.01% | <$0.000001 | 336,748.0138 | $0.1661 | |
BASE | <0.01% | $1.98 | 0.0823 | $0.1628 | |
BASE | <0.01% | $0.000194 | 838.6902 | $0.1627 | |
BASE | <0.01% | $0.000056 | 2,896.673 | $0.162 | |
BASE | <0.01% | <$0.000001 | 60,037,497.7319 | $0.156 | |
BASE | <0.01% | $0.302621 | 0.5003 | $0.1513 | |
BASE | <0.01% | $0.001537 | 96.751 | $0.1487 | |
BASE | <0.01% | $0.000014 | 10,272.7296 | $0.1483 | |
BASE | <0.01% | $0.017214 | 8.0861 | $0.1391 | |
BASE | <0.01% | $0.000001 | 208,575.5977 | $0.1328 | |
BASE | <0.01% | $0.000763 | 169.0362 | $0.1289 | |
BASE | <0.01% | $0.709584 | 0.1817 | $0.1289 | |
BASE | <0.01% | <$0.000001 | 858,568.1034 | $0.12 | |
BASE | <0.01% | $0.000029 | 4,127.5544 | $0.1196 | |
BASE | <0.01% | $0.051926 | 2.2591 | $0.1173 | |
BASE | <0.01% | $0.000249 | 467.1156 | $0.1165 | |
BASE | <0.01% | $0.016676 | 6.9473 | $0.1158 | |
BASE | <0.01% | $0.000163 | 709.2904 | $0.1154 | |
BASE | <0.01% | $0.541809 | 0.2082 | $0.1128 | |
BASE | <0.01% | $0.032278 | 3.4391 | $0.111 | |
BASE | <0.01% | $0.008368 | 12.9111 | $0.108 | |
BASE | <0.01% | $0.54193 | 0.1992 | $0.1079 | |
BASE | <0.01% | $0.000045 | 2,345.3835 | $0.1054 | |
BASE | <0.01% | $0.001491 | 68.7154 | $0.1024 | |
ETH | <0.01% | $2,792.68 | 106.8379 | $298,364.17 | |
ETH | <0.01% | $2,792.68 | 82.3504 | $229,978.56 | |
ETH | <0.01% | $0.999997 | 126,556.8036 | $126,556.42 | |
ETH | <0.01% | $1 | 75,065.9406 | $75,065.94 | |
ETH | <0.01% | $99,598 | 0.0369 | $3,675.93 | |
ETH | <0.01% | $0.331998 | 4,460.3754 | $1,480.84 | |
ETH | <0.01% | $0.339711 | 4,089.4835 | $1,389.24 | |
ETH | <0.01% | $1.48 | 891.1454 | $1,318.9 | |
ETH | <0.01% | $0.030204 | 38,883.029 | $1,174.41 | |
ETH | <0.01% | $3,314.17 | 0.3541 | $1,173.62 | |
ETH | <0.01% | $0.685211 | 1,601.4541 | $1,097.33 | |
ETH | <0.01% | $12.09 | 88.5203 | $1,070.21 | |
ETH | <0.01% | $0.00001 | 79,880,394.2059 | $778.83 | |
ETH | <0.01% | $0.890064 | 850.8197 | $757.28 | |
ETH | <0.01% | $0.000001 | 829,326,788.3568 | $736.35 | |
ETH | <0.01% | $0.494511 | 1,409.135 | $696.83 | |
ETH | <0.01% | $202.42 | 3.008 | $608.89 | |
ETH | <0.01% | $0.126534 | 4,704.8533 | $595.32 | |
ETH | <0.01% | $1.15 | 508.9634 | $585.31 | |
ETH | <0.01% | $0.999481 | 550.3214 | $550.04 | |
ETH | <0.01% | $0.522516 | 1,019.6678 | $532.79 | |
ETH | <0.01% | $0.044189 | 12,006.2998 | $530.54 | |
ETH | <0.01% | $0.352866 | 1,357.6814 | $479.08 | |
ETH | <0.01% | $2,789.22 | 0.1659 | $462.86 | |
ETH | <0.01% | $19.67 | 21.6693 | $426.24 | |
ETH | <0.01% | $0.145879 | 2,789.6148 | $406.95 | |
ETH | <0.01% | $0.597238 | 664.0597 | $396.6 | |
ETH | <0.01% | $0.542067 | 716.2182 | $388.24 | |
ETH | <0.01% | $3.18 | 119.6501 | $380.49 | |
ETH | <0.01% | $0.072075 | 5,011.2899 | $361.19 | |
ETH | <0.01% | $0.219327 | 1,595.6428 | $349.97 | |
ETH | <0.01% | $99,888 | 0.00322932 | $322.57 | |
ETH | <0.01% | $1.35 | 223.0032 | $300.81 | |
ETH | <0.01% | $45.83 | 6.5438 | $299.9 | |
ETH | <0.01% | $1.3 | 219.4905 | $285.34 | |
ETH | <0.01% | $0.054546 | 5,144.1393 | $280.59 | |
ETH | <0.01% | <$0.000001 | 30,641,851,683.026 | $280.59 | |
ETH | <0.01% | $0.499209 | 544.485 | $271.81 | |
ETH | <0.01% | $0.000741 | 352,551.4849 | $261.09 | |
ETH | <0.01% | $0.020526 | 10,956.7082 | $224.9 | |
ETH | <0.01% | <$0.000001 | 931,931,158.589 | $220.66 | |
ETH | <0.01% | $0.273391 | 794.5351 | $217.22 | |
ETH | <0.01% | $0.000131 | 1,646,778.5538 | $215.25 | |
ETH | <0.01% | $3,124.9 | 0.0676 | $211.23 | |
ETH | <0.01% | $0.727642 | 286.1555 | $208.22 | |
ETH | <0.01% | $7.47 | 26.8885 | $200.86 | |
ETH | <0.01% | $0.015891 | 12,560.1754 | $199.59 | |
ETH | <0.01% | $0.211047 | 928.3089 | $195.92 | |
ETH | <0.01% | $0.000066 | 2,923,910.1058 | $193.88 | |
ETH | <0.01% | $0.008338 | 22,862.2814 | $190.63 | |
ETH | <0.01% | $259.69 | 0.7311 | $189.85 | |
ETH | <0.01% | $0.002362 | 79,431.1375 | $187.61 | |
ETH | <0.01% | $0.045662 | 3,972.2123 | $181.38 | |
ETH | <0.01% | $0.264591 | 676.8016 | $179.08 | |
ETH | <0.01% | $0.000225 | 786,422.2225 | $176.7 | |
ETH | <0.01% | $5.85 | 30.1098 | $176.14 | |
ETH | <0.01% | $0.019156 | 9,163.5112 | $175.54 | |
ETH | <0.01% | $0.000015 | 11,304,062.2718 | $170.69 | |
ETH | <0.01% | $0.185788 | 886.0563 | $164.62 | |
ETH | <0.01% | $91.37 | 1.7776 | $162.42 | |
ETH | <0.01% | $2.52 | 62.8188 | $158.3 | |
ETH | <0.01% | $0.007097 | 22,020.59 | $156.27 | |
ETH | <0.01% | $0.51338 | 291.9168 | $149.86 | |
ETH | <0.01% | $0.051763 | 2,881.4495 | $149.15 | |
ETH | <0.01% | $0.000002 | 79,243,635.7764 | $148.27 | |
ETH | <0.01% | $1 | 147.4593 | $147.61 | |
ETH | <0.01% | $0.000002 | 91,612,754.0701 | $141.54 | |
ETH | <0.01% | $1.77 | 77.4921 | $137.16 | |
ETH | <0.01% | $0.000519 | 263,012.4809 | $136.45 | |
ETH | <0.01% | $3.38 | 40.2348 | $135.99 | |
ETH | <0.01% | $0.014127 | 9,497.3629 | $134.17 | |
ETH | <0.01% | $93.2 | 1.3978 | $130.28 | |
ETH | <0.01% | $0.275459 | 458.6861 | $126.35 | |
ETH | <0.01% | $99,736 | 0.00124605 | $124.28 | |
ETH | <0.01% | $0.116809 | 1,058.9603 | $123.7 | |
ETH | <0.01% | $2.58 | 47.9089 | $123.6 | |
ETH | <0.01% | $0.06795 | 1,803.8778 | $122.57 | |
ETH | <0.01% | $0.15756 | 765.7294 | $120.65 | |
ETH | <0.01% | $1.52 | 77.7404 | $118.17 | |
ETH | <0.01% | $0.177117 | 654.914 | $116 | |
ETH | <0.01% | $10,804.86 | 0.0106 | $114.16 | |
ETH | <0.01% | $0.447739 | 252.5019 | $113.05 | |
ETH | <0.01% | $0.009339 | 11,981.8405 | $111.89 | |
ETH | <0.01% | $131.97 | 0.8308 | $109.64 | |
ETH | <0.01% | $0.584537 | 186.7064 | $109.14 | |
ETH | <0.01% | $0.000331 | 328,587.063 | $108.68 | |
ETH | <0.01% | $2,876.36 | 0.0369 | $106.18 | |
ETH | <0.01% | $0.017453 | 6,038.1094 | $105.38 | |
ETH | <0.01% | $0.188214 | 548.0545 | $103.15 | |
ETH | <0.01% | $2 | 51.2689 | $102.54 | |
ETH | <0.01% | $0.055019 | 1,863.6336 | $102.54 | |
ETH | <0.01% | $0.071763 | 1,423.5082 | $102.16 | |
ETH | <0.01% | $0.092214 | 1,096.3254 | $101.1 | |
ETH | <0.01% | $587.67 | 0.1711 | $100.57 | |
ETH | <0.01% | $0.137294 | 720.3266 | $98.9 | |
ETH | <0.01% | $14.53 | 6.7932 | $98.69 | |
ETH | <0.01% | $0.02142 | 4,591.6995 | $98.35 | |
ETH | <0.01% | $0.276886 | 354.9236 | $98.27 | |
ETH | <0.01% | $38.64 | 2.529 | $97.72 | |
ETH | <0.01% | $0.000048 | 2,028,462.8662 | $97.45 | |
ETH | <0.01% | $0.000005 | 18,301,349.4604 | $96.63 | |
ETH | <0.01% | $349.74 | 0.2761 | $96.55 | |
ETH | <0.01% | $0.010993 | 8,657.9483 | $95.18 | |
ETH | <0.01% | $0.024104 | 3,885.7481 | $93.66 | |
ETH | <0.01% | $0.318742 | 291.7057 | $92.98 | |
ETH | <0.01% | $0.036571 | 2,525.4653 | $92.36 | |
ETH | <0.01% | $0.000622 | 146,165.3658 | $90.88 | |
ETH | <0.01% | $0.01055 | 8,579.2681 | $90.51 | |
ETH | <0.01% | $0.029638 | 3,015.6605 | $89.38 | |
ETH | <0.01% | $0.044684 | 1,979.8086 | $88.47 | |
ETH | <0.01% | $0.109928 | 801.0979 | $88.06 | |
ETH | <0.01% | $6,866.86 | 0.0127 | $87.26 | |
ETH | <0.01% | $2,905.75 | 0.0298 | $86.61 | |
ETH | <0.01% | $0.000045 | 1,915,942.106 | $85.63 | |
ETH | <0.01% | $12.75 | 6.7093 | $85.54 | |
ETH | <0.01% | $0.055016 | 1,532.2517 | $84.3 | |
ETH | <0.01% | $0.002338 | 35,993.7478 | $84.16 | |
ETH | <0.01% | $0.218044 | 381.4769 | $83.18 | |
ETH | <0.01% | $1.89 | 43.7141 | $82.62 | |
ETH | <0.01% | $0.400193 | 200.2781 | $80.15 | |
ETH | <0.01% | <$0.000001 | 627,773,654.8048 | $79 | |
ETH | <0.01% | $22.98 | 3.4311 | $78.85 | |
ETH | <0.01% | $0.000005 | 15,278,217.1596 | $78.64 | |
ETH | <0.01% | $0.833316 | 94.3614 | $78.63 | |
ETH | <0.01% | $0.001392 | 55,578.5013 | $77.35 | |
ETH | <0.01% | $0.456818 | 166.6309 | $76.12 | |
ETH | <0.01% | $2.11 | 36.063 | $76.09 | |
ETH | <0.01% | $0.000071 | 1,059,289.1763 | $75.55 | |
ETH | <0.01% | $21.8 | 3.4489 | $75.19 | |
ETH | <0.01% | $0.039668 | 1,892.9395 | $75.09 | |
ETH | <0.01% | $1 | 73.742 | $73.89 | |
ETH | <0.01% | $0.024384 | 3,029.0733 | $73.86 | |
ETH | <0.01% | $3.65 | 20.2003 | $73.73 | |
ETH | <0.01% | $0.003804 | 19,076.1022 | $72.57 | |
ETH | <0.01% | $0.000333 | 216,571.9979 | $72.15 | |
ETH | <0.01% | $0.835564 | 86.2973 | $72.11 | |
ETH | <0.01% | $25.2 | 2.8548 | $71.94 | |
ETH | <0.01% | $0.005986 | 11,978.2893 | $71.7 | |
ETH | <0.01% | $0.0005 | 142,403.1652 | $71.24 | |
ETH | <0.01% | $2.93 | 24.265 | $71.1 | |
ETH | <0.01% | $1.63 | 43.1014 | $70.26 | |
ETH | <0.01% | $6.32 | 11.1022 | $70.17 | |
ETH | <0.01% | $0.000624 | 111,801.625 | $69.8 | |
ETH | <0.01% | $3.18 | 21.623 | $68.7 | |
ETH | <0.01% | $0.000094 | 721,776.673 | $67.57 | |
ETH | <0.01% | $0.010474 | 6,435.6392 | $67.41 | |
ETH | <0.01% | $0.027556 | 2,419.449 | $66.67 | |
ETH | <0.01% | $0.629803 | 105.6665 | $66.55 | |
ETH | <0.01% | $0.025913 | 2,520.9272 | $65.32 | |
ETH | <0.01% | $0.007105 | 9,142.7286 | $64.96 | |
ETH | <0.01% | $0.337671 | 191.2462 | $64.58 | |
ETH | <0.01% | $0.631671 | 101.8779 | $64.35 | |
ETH | <0.01% | $1.03 | 62.0936 | $63.83 | |
ETH | <0.01% | $111.81 | 0.5629 | $62.94 | |
ETH | <0.01% | $0.07477 | 835.702 | $62.49 | |
ETH | <0.01% | $0.001435 | 43,364.3937 | $62.23 | |
ETH | <0.01% | $3.4 | 18.2866 | $62.19 | |
ETH | <0.01% | $0.008958 | 6,934.7584 | $62.12 | |
ETH | <0.01% | $0.000001 | 109,057,731.0796 | $61.49 | |
ETH | <0.01% | $0.717273 | 84.4631 | $60.58 | |
ETH | <0.01% | $0.005849 | 10,341.2191 | $60.49 | |
ETH | <0.01% | $0.465857 | 129.8387 | $60.49 | |
ETH | <0.01% | $0.300819 | 200.1852 | $60.22 | |
ETH | <0.01% | $0.457535 | 130.3601 | $59.64 | |
ETH | <0.01% | $0.023484 | 2,532.0374 | $59.46 | |
ETH | <0.01% | $0.000004 | 13,278,098.8398 | $58.95 | |
ETH | <0.01% | $0.150085 | 391.0794 | $58.7 | |
ETH | <0.01% | $17.6 | 3.3205 | $58.44 | |
ETH | <0.01% | $0.318704 | 183.3211 | $58.43 | |
ETH | <0.01% | <$0.000001 | 6,124,952,100.5514 | $58.29 | |
ETH | <0.01% | $1.74 | 33.3888 | $58.1 | |
ETH | <0.01% | $0.013858 | 4,144.1175 | $57.43 | |
ETH | <0.01% | $4.51 | 12.6762 | $57.17 | |
ETH | <0.01% | <$0.000001 | 3,514,213,287.5534 | $56.96 | |
ETH | <0.01% | $0.008398 | 6,741.4911 | $56.61 | |
ETH | <0.01% | $0.002331 | 24,270.4301 | $56.57 | |
ETH | <0.01% | $0.036756 | 1,531.4035 | $56.29 | |
ETH | <0.01% | $0.00573 | 9,784.1206 | $56.06 | |
ETH | <0.01% | $0.000352 | 158,379.0986 | $55.79 | |
ETH | <0.01% | $0.460949 | 121.0092 | $55.78 | |
ETH | <0.01% | $5,925.44 | 0.00936749 | $55.51 | |
ETH | <0.01% | $0.662693 | 83.1564 | $55.11 | |
ETH | <0.01% | $0.000009 | 5,999,810.3192 | $54.84 | |
ETH | <0.01% | $0.071763 | 761.6954 | $54.66 | |
ETH | <0.01% | $0.034275 | 1,585.8992 | $54.36 | |
ETH | <0.01% | $0.000898 | 60,492.5415 | $54.31 | |
ETH | <0.01% | <$0.000001 | 132,971,901.7805 | $54.14 | |
ETH | <0.01% | $0.10441 | 515.3639 | $53.81 | |
ETH | <0.01% | $1 | 53.355 | $53.46 | |
ETH | <0.01% | $0.375204 | 141.4724 | $53.08 | |
ETH | <0.01% | $0.004603 | 11,478.4426 | $52.84 | |
ETH | <0.01% | $0.046367 | 1,118.8612 | $51.88 | |
ETH | <0.01% | $0.001054 | 48,720.6837 | $51.38 | |
ETH | <0.01% | $0.318009 | 161.2369 | $51.27 | |
ETH | <0.01% | $0.295491 | 172.1951 | $50.88 | |
ETH | <0.01% | $0.023374 | 2,168.5186 | $50.69 | |
ETH | <0.01% | $0.00162 | 31,052.1943 | $50.31 | |
ETH | <0.01% | $0.022762 | 2,206.5295 | $50.23 | |
ETH | <0.01% | <$0.000001 | 1,530,572,378.3905 | $49.94 | |
ETH | <0.01% | <$0.000001 | 475,950,288,174.5762 | $49.81 | |
ETH | <0.01% | <$0.000001 | 32,367,613,866.1032 | $49.39 | |
ETH | <0.01% | $27.2 | 1.8114 | $49.27 | |
ETH | <0.01% | $0.016628 | 2,945.6586 | $48.98 | |
ETH | <0.01% | $0.000067 | 723,956.6825 | $48.79 | |
ETH | <0.01% | $0.022681 | 2,144.9386 | $48.65 | |
ETH | <0.01% | $0.075793 | 637.1066 | $48.29 | |
ETH | <0.01% | $0.034098 | 1,413.6004 | $48.2 | |
ETH | <0.01% | $1.01 | 47.5465 | $48.19 | |
ETH | <0.01% | $0.0165 | 2,912.0151 | $48.05 | |
ETH | <0.01% | $0.07374 | 648.508 | $47.82 | |
ETH | <0.01% | $0.162906 | 290.7389 | $47.36 | |
ETH | <0.01% | $0.262196 | 179.8997 | $47.17 | |
ETH |