More Info
Private Name Tags
ContractCreator
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
329379612 | 15 mins ago | 0.00001514 ETH | ||||
329378288 | 21 mins ago | 0.00002095 ETH | ||||
329374552 | 36 mins ago | 0.0000101 ETH | ||||
329373220 | 42 mins ago | 0.0000233 ETH | ||||
329373187 | 42 mins ago | 0.00000068 ETH | ||||
329370938 | 51 mins ago | 0.00003623 ETH | ||||
329370451 | 53 mins ago | 0.0000032 ETH | ||||
329367536 | 1 hr ago | 0.00000124 ETH | ||||
329365300 | 1 hr ago | 0.00000366 ETH | ||||
329362467 | 1 hr ago | 0.00000314 ETH | ||||
329362383 | 1 hr ago | 0.00000075 ETH | ||||
329362360 | 1 hr ago | 0.00000199 ETH | ||||
329361988 | 1 hr ago | 0.00002454 ETH | ||||
329361589 | 1 hr ago | 0.00032712 ETH | ||||
329361243 | 1 hr ago | 0.00002454 ETH | ||||
329361094 | 1 hr ago | 0.0000299 ETH | ||||
329360620 | 1 hr ago | 0.00002866 ETH | ||||
329354838 | 1 hr ago | 0.00000109 ETH | ||||
329354205 | 2 hrs ago | 0.00000215 ETH | ||||
329351696 | 2 hrs ago | 0.00000292 ETH | ||||
329351057 | 2 hrs ago | 0.00000313 ETH | ||||
329348405 | 2 hrs ago | 0.00000014 ETH | ||||
329345803 | 2 hrs ago | 0.00002257 ETH | ||||
329338289 | 3 hrs ago | 0.00000292 ETH | ||||
329336209 | 3 hrs ago | 0.00000014 ETH |
Loading...
Loading
Contract Name:
FeeManager
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./interfaces/IFeeManager.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; contract FeeManager is IFeeManager { using SafeERC20 for IERC20; address public operator; address public nextOperator; uint8 public baseBps; address public treasury; constructor(address _operator, uint8 _baseBps) { operator = _operator; baseBps = _baseBps; } function calcProtocolBps( uint64 amountIn, address tokenIn, bytes32 tokenOut, uint16 destChain, uint8 referrerBps ) external view override returns (uint8) { if (referrerBps > baseBps) { return referrerBps; } else { return baseBps; } } function feeCollector() external view override returns (address) { if (treasury != address(0)) { return treasury; } else { return address(this); } } function changeOperator(address _nextOperator) external { require(msg.sender == operator, 'only operator'); nextOperator = _nextOperator; } function claimOperator() external { require(msg.sender == nextOperator, 'only next operator'); operator = nextOperator; } function sweepToken(address token, uint256 amount, address to) public { require(msg.sender == operator, 'only operator'); IERC20(token).safeTransfer(to, amount); } function sweepEth(uint256 amount, address payable to) public { require(msg.sender == operator, 'only operator'); require(to != address(0), 'transfer to the zero address'); to.transfer(amount); } function setBaseBps(uint8 _baseBps) external { require(msg.sender == operator, 'only operator'); baseBps = _baseBps; } function setTreasury(address _treasury) external { require(msg.sender == operator, 'only operator'); treasury = _treasury; } receive() external payable {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IFeeManager { function calcProtocolBps( uint64 amountIn, address tokenIn, bytes32 tokenOut, uint16 destChain, uint8 referrerBps ) external view returns (uint8); function feeCollector() external view returns (address); }
// 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: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"uint8","name":"_baseBps","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"baseBps","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"amountIn","type":"uint64"},{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"bytes32","name":"tokenOut","type":"bytes32"},{"internalType":"uint16","name":"destChain","type":"uint16"},{"internalType":"uint8","name":"referrerBps","type":"uint8"}],"name":"calcProtocolBps","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_nextOperator","type":"address"}],"name":"changeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOperator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_baseBps","type":"uint8"}],"name":"setBaseBps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"sweepEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"sweepToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610ac2380380610ac283398101604081905261002f91610074565b600080546001600160a01b039093166001600160a01b0319909316929092179091556001805460ff909216600160a01b0260ff60a01b199092169190911790556100bd565b60008060408385031215610086578182fd5b82516001600160a01b038116811461009c578283fd5b602084015190925060ff811681146100b2578182fd5b809150509250929050565b6109f6806100cc6000396000f3fe6080604052600436106100ab5760003560e01c8063a86b06e511610064578063a86b06e5146101a9578063bd1e6382146101c9578063c415b95c146101e9578063d54e65fb146101fe578063df2ab5bb14610213578063f0f442601461023357600080fd5b806302fb1eec146100b757806306394c9b146100ee5780634018e9f614610110578063570ca73514610131578063580094b71461016957806361d027b31461018957600080fd5b366100b257005b600080fd5b3480156100c357600080fd5b506100d76100d2366004610873565b610253565b60405160ff90911681526020015b60405180910390f35b3480156100fa57600080fd5b5061010e6101093660046107c0565b61028d565b005b34801561011c57600080fd5b506001546100d790600160a01b900460ff1681565b34801561013d57600080fd5b50600054610151906001600160a01b031681565b6040516001600160a01b0390911681526020016100e5565b34801561017557600080fd5b5061010e610184366004610844565b6102e2565b34801561019557600080fd5b50600254610151906001600160a01b031681565b3480156101b557600080fd5b50600154610151906001600160a01b031681565b3480156101d557600080fd5b5061010e6101e43660046108e8565b61039d565b3480156101f557600080fd5b506101516103e7565b34801561020a57600080fd5b5061010e610410565b34801561021f57600080fd5b5061010e61022e3660046107e3565b610483565b34801561023f57600080fd5b5061010e61024e3660046107c0565b6104c1565b60015460009060ff600160a01b90910481169083161115610275575080610284565b50600154600160a01b900460ff165b95945050505050565b6000546001600160a01b031633146102c05760405162461bcd60e51b81526004016102b790610951565b60405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461030c5760405162461bcd60e51b81526004016102b790610951565b6001600160a01b0381166103625760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f20616464726573730000000060448201526064016102b7565b6040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610398573d6000803e3d6000fd5b505050565b6000546001600160a01b031633146103c75760405162461bcd60e51b81526004016102b790610951565b6001805460ff909216600160a01b0260ff60a01b19909216919091179055565b6002546000906001600160a01b03161561040b57506002546001600160a01b031690565b503090565b6001546001600160a01b0316331461045f5760405162461bcd60e51b815260206004820152601260248201527137b7363c903732bc3a1037b832b930ba37b960711b60448201526064016102b7565b600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000546001600160a01b031633146104ad5760405162461bcd60e51b81526004016102b790610951565b6103986001600160a01b038416828461050d565b6000546001600160a01b031633146104eb5760405162461bcd60e51b81526004016102b790610951565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564908401526103989286929160009161059d91851690849061061d565b90508051600014806105be5750808060200190518101906105be9190610824565b6103985760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102b7565b606061062c8484600085610634565b949350505050565b6060824710156106955760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102b7565b600080866001600160a01b031685876040516106b19190610902565b60006040518083038185875af1925050503d80600081146106ee576040519150601f19603f3d011682016040523d82523d6000602084013e6106f3565b606091505b50915091506107048783838761070f565b979650505050505050565b6060831561077b578251610774576001600160a01b0385163b6107745760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102b7565b508161062c565b61062c83838151156107905781518083602001fd5b8060405162461bcd60e51b81526004016102b7919061091e565b803560ff811681146107bb57600080fd5b919050565b6000602082840312156107d1578081fd5b81356107dc816109a8565b9392505050565b6000806000606084860312156107f7578182fd5b8335610802816109a8565b9250602084013591506040840135610819816109a8565b809150509250925092565b600060208284031215610835578081fd5b815180151581146107dc578182fd5b60008060408385031215610856578182fd5b823591506020830135610868816109a8565b809150509250929050565b600080600080600060a0868803121561088a578081fd5b853567ffffffffffffffff811681146108a1578182fd5b945060208601356108b1816109a8565b935060408601359250606086013561ffff811681146108ce578182fd5b91506108dc608087016107aa565b90509295509295909350565b6000602082840312156108f9578081fd5b6107dc826107aa565b60008251610914818460208701610978565b9190910192915050565b602081526000825180602084015261093d816040850160208701610978565b601f01601f19169190910160400192915050565b6020808252600d908201526c37b7363c9037b832b930ba37b960991b604082015260600190565b60005b8381101561099357818101518382015260200161097b565b838111156109a2576000848401525b50505050565b6001600160a01b03811681146109bd57600080fd5b5056fea2646970667358221220c6c664842d558874f1e2850375c6643a0a5c8a06d717d4b34c7f31046e8ac4d164736f6c63430008040033000000000000000000000000933e3922e04d47a466e60a20e486b372b64f1ea80000000000000000000000000000000000000000000000000000000000000003
Deployed Bytecode
0x6080604052600436106100ab5760003560e01c8063a86b06e511610064578063a86b06e5146101a9578063bd1e6382146101c9578063c415b95c146101e9578063d54e65fb146101fe578063df2ab5bb14610213578063f0f442601461023357600080fd5b806302fb1eec146100b757806306394c9b146100ee5780634018e9f614610110578063570ca73514610131578063580094b71461016957806361d027b31461018957600080fd5b366100b257005b600080fd5b3480156100c357600080fd5b506100d76100d2366004610873565b610253565b60405160ff90911681526020015b60405180910390f35b3480156100fa57600080fd5b5061010e6101093660046107c0565b61028d565b005b34801561011c57600080fd5b506001546100d790600160a01b900460ff1681565b34801561013d57600080fd5b50600054610151906001600160a01b031681565b6040516001600160a01b0390911681526020016100e5565b34801561017557600080fd5b5061010e610184366004610844565b6102e2565b34801561019557600080fd5b50600254610151906001600160a01b031681565b3480156101b557600080fd5b50600154610151906001600160a01b031681565b3480156101d557600080fd5b5061010e6101e43660046108e8565b61039d565b3480156101f557600080fd5b506101516103e7565b34801561020a57600080fd5b5061010e610410565b34801561021f57600080fd5b5061010e61022e3660046107e3565b610483565b34801561023f57600080fd5b5061010e61024e3660046107c0565b6104c1565b60015460009060ff600160a01b90910481169083161115610275575080610284565b50600154600160a01b900460ff165b95945050505050565b6000546001600160a01b031633146102c05760405162461bcd60e51b81526004016102b790610951565b60405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461030c5760405162461bcd60e51b81526004016102b790610951565b6001600160a01b0381166103625760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f20616464726573730000000060448201526064016102b7565b6040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610398573d6000803e3d6000fd5b505050565b6000546001600160a01b031633146103c75760405162461bcd60e51b81526004016102b790610951565b6001805460ff909216600160a01b0260ff60a01b19909216919091179055565b6002546000906001600160a01b03161561040b57506002546001600160a01b031690565b503090565b6001546001600160a01b0316331461045f5760405162461bcd60e51b815260206004820152601260248201527137b7363c903732bc3a1037b832b930ba37b960711b60448201526064016102b7565b600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000546001600160a01b031633146104ad5760405162461bcd60e51b81526004016102b790610951565b6103986001600160a01b038416828461050d565b6000546001600160a01b031633146104eb5760405162461bcd60e51b81526004016102b790610951565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564908401526103989286929160009161059d91851690849061061d565b90508051600014806105be5750808060200190518101906105be9190610824565b6103985760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102b7565b606061062c8484600085610634565b949350505050565b6060824710156106955760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102b7565b600080866001600160a01b031685876040516106b19190610902565b60006040518083038185875af1925050503d80600081146106ee576040519150601f19603f3d011682016040523d82523d6000602084013e6106f3565b606091505b50915091506107048783838761070f565b979650505050505050565b6060831561077b578251610774576001600160a01b0385163b6107745760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102b7565b508161062c565b61062c83838151156107905781518083602001fd5b8060405162461bcd60e51b81526004016102b7919061091e565b803560ff811681146107bb57600080fd5b919050565b6000602082840312156107d1578081fd5b81356107dc816109a8565b9392505050565b6000806000606084860312156107f7578182fd5b8335610802816109a8565b9250602084013591506040840135610819816109a8565b809150509250925092565b600060208284031215610835578081fd5b815180151581146107dc578182fd5b60008060408385031215610856578182fd5b823591506020830135610868816109a8565b809150509250929050565b600080600080600060a0868803121561088a578081fd5b853567ffffffffffffffff811681146108a1578182fd5b945060208601356108b1816109a8565b935060408601359250606086013561ffff811681146108ce578182fd5b91506108dc608087016107aa565b90509295509295909350565b6000602082840312156108f9578081fd5b6107dc826107aa565b60008251610914818460208701610978565b9190910192915050565b602081526000825180602084015261093d816040850160208701610978565b601f01601f19169190910160400192915050565b6020808252600d908201526c37b7363c9037b832b930ba37b960991b604082015260600190565b60005b8381101561099357818101518382015260200161097b565b838111156109a2576000848401525b50505050565b6001600160a01b03811681146109bd57600080fd5b5056fea2646970667358221220c6c664842d558874f1e2850375c6643a0a5c8a06d717d4b34c7f31046e8ac4d164736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000933e3922e04d47a466e60a20e486b372b64f1ea80000000000000000000000000000000000000000000000000000000000000003
-----Decoded View---------------
Arg [0] : _operator (address): 0x933E3922E04d47a466e60A20e486b372B64F1Ea8
Arg [1] : _baseBps (uint8): 3
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000933e3922e04d47a466e60a20e486b372b64f1ea8
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000003
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 30.77% | $0.009053 | 6,147,019.6261 | $55,645.9 | |
BSC | 4.96% | $611.55 | 14.6683 | $8,970.46 | |
BSC | 3.18% | $1 | 5,756.2255 | $5,756.23 | |
BSC | 2.00% | $6.74 | 537.0912 | $3,619.99 | |
BSC | 1.47% | $0.999987 | 2,657.0886 | $2,657.05 | |
BSC | 0.34% | $115.47 | 5.2771 | $609.35 | |
BSC | 0.18% | $2.28 | 142.4443 | $325.43 | |
BSC | 0.09% | $93,789.91 | 0.00181325 | $170.06 | |
BSC | 0.07% | $0.830937 | 156.709 | $130.22 | |
BSC | 0.06% | $0.009073 | 12,641.0567 | $114.7 | |
BSC | 0.06% | $0.184399 | 617.5667 | $113.88 | |
BSC | 0.06% | $611.16 | 0.1714 | $104.72 | |
BSC | 0.04% | $1 | 73.4541 | $73.48 | |
BSC | 0.03% | $0.708441 | 75.7681 | $53.68 | |
BSC | 0.03% | $1,811.01 | 0.0264 | $47.79 | |
BSC | 0.03% | $152.2 | 0.3013 | $45.85 | |
BSC | 0.02% | $0.031854 | 1,339.683 | $42.67 | |
BSC | 0.02% | $0.056041 | 748.6071 | $41.95 | |
BSC | 0.02% | $2.03 | 19.5228 | $39.63 | |
BSC | 0.02% | $1.3 | 27.9399 | $36.4 | |
BSC | 0.02% | $0.07333 | 490.2968 | $35.95 | |
BSC | 0.01% | $0.030906 | 868.009 | $26.83 | |
BSC | 0.01% | $15.18 | 1.2801 | $19.43 | |
BSC | 0.01% | $0.034387 | 540.8406 | $18.6 | |
BSC | <0.01% | $0.125707 | 138.9543 | $17.47 | |
BSC | <0.01% | $0.998589 | 16.5265 | $16.5 | |
BSC | <0.01% | $0.000007 | 1,786,641.5017 | $13.17 | |
BSC | <0.01% | $0.072297 | 175.7989 | $12.71 | |
BSC | <0.01% | $0.494159 | 24.3154 | $12.02 | |
BSC | <0.01% | $0.418002 | 28.2911 | $11.83 | |
BSC | <0.01% | $0.94275 | 11.913 | $11.23 | |
BSC | <0.01% | $4.11 | 2.6605 | $10.94 | |
BSC | <0.01% | $0.000091 | 119,451.4231 | $10.93 | |
BSC | <0.01% | $2.5 | 4.2934 | $10.73 | |
BSC | <0.01% | $2.76 | 3.6739 | $10.13 | |
BSC | <0.01% | $0.013747 | 692.5615 | $9.52 | |
BSC | <0.01% | $0.999998 | 9.312 | $9.31 | |
BSC | <0.01% | $0.676386 | 13.3686 | $9.04 | |
BSC | <0.01% | $3.51 | 2.5295 | $8.88 | |
BSC | <0.01% | $0.026433 | 290.6373 | $7.68 | |
BSC | <0.01% | $84.5 | 0.0884 | $7.47 | |
BSC | <0.01% | $0.031707 | 227.3853 | $7.21 | |
BSC | <0.01% | $0.522218 | 13.2136 | $6.9 | |
BSC | <0.01% | $167.31 | 0.0405 | $6.77 | |
BSC | <0.01% | $0.091544 | 73.1323 | $6.69 | |
BSC | <0.01% | <$0.000001 | 474,758,621.9489 | $6.51 | |
BSC | <0.01% | $0.000002 | 4,035,339.4669 | $6.34 | |
BSC | <0.01% | $0.246293 | 24.8089 | $6.11 | |
BSC | <0.01% | $0.000009 | 659,876.5463 | $6.04 | |
BSC | <0.01% | $0.001603 | 3,034.7052 | $4.86 | |
BSC | <0.01% | $0.000324 | 14,421.9443 | $4.68 | |
BSC | <0.01% | $0.004649 | 924.8702 | $4.3 | |
BSC | <0.01% | $0.011114 | 386.7551 | $4.3 | |
BSC | <0.01% | <$0.000001 | 777,233,907.6086 | $4.25 | |
BSC | <0.01% | $0.000059 | 71,558.24 | $4.21 | |
BSC | <0.01% | $0.56474 | 7.4239 | $4.19 | |
BSC | <0.01% | $0.046617 | 87.8858 | $4.1 | |
BSC | <0.01% | $93,641 | 0.00004316 | $4.04 | |
BSC | <0.01% | $0.002087 | 1,915.0265 | $4 | |
BSC | <0.01% | $0.000014 | 285,632.4694 | $3.91 | |
BSC | <0.01% | $0.000002 | 1,866,788.2951 | $3.66 | |
BSC | <0.01% | $0.074842 | 48.1386 | $3.6 | |
BSC | <0.01% | $0.195782 | 18.1693 | $3.56 | |
BSC | <0.01% | $0.028818 | 117.3592 | $3.38 | |
BSC | <0.01% | $0.000003 | 984,716.4216 | $3.32 | |
BSC | <0.01% | $22.78 | 0.1368 | $3.12 | |
BSC | <0.01% | $2.74 | 1.0691 | $2.93 | |
BSC | <0.01% | $0.291995 | 9.6037 | $2.8 | |
BSC | <0.01% | $0.01338 | 193.7536 | $2.59 | |
BSC | <0.01% | $0.27936 | 8.9491 | $2.5 | |
BSC | <0.01% | $0.003838 | 648.8722 | $2.49 | |
BSC | <0.01% | $0.000001 | 1,870,150.2728 | $2.39 | |
BSC | <0.01% | $0.026276 | 86.373 | $2.27 | |
BSC | <0.01% | $0.01176 | 178.3168 | $2.1 | |
BSC | <0.01% | $93,267 | 0.00002161 | $2.02 | |
BSC | <0.01% | $0.001915 | 1,046.5925 | $2 | |
BSC | <0.01% | $0.0062 | 318.3378 | $1.97 | |
BSC | <0.01% | $9.54 | 0.1905 | $1.82 | |
BSC | <0.01% | $1 | 1.8086 | $1.81 | |
BSC | <0.01% | $0.031947 | 55.306 | $1.77 | |
BSC | <0.01% | $0.99868 | 1.761 | $1.76 | |
BSC | <0.01% | $0.208468 | 8.2836 | $1.73 | |
BSC | <0.01% | $0.031881 | 53.1403 | $1.69 | |
BSC | <0.01% | $4.4 | 0.3707 | $1.63 | |
BSC | <0.01% | $0.344254 | 4.6701 | $1.61 | |
BSC | <0.01% | $0.057787 | 27.2084 | $1.57 | |
BSC | <0.01% | $0.016049 | 97.5611 | $1.57 | |
BSC | <0.01% | <$0.000001 | 30,375,646.2419 | $1.53 | |
BSC | <0.01% | $3.13 | 0.466 | $1.46 | |
BSC | <0.01% | <$0.000001 | 21,132,065.2958 | $1.44 | |
BSC | <0.01% | $0.074505 | 19.2764 | $1.44 | |
BSC | <0.01% | $0.223024 | 6.3025 | $1.41 | |
BSC | <0.01% | $0.020747 | 66.2365 | $1.37 | |
BSC | <0.01% | $0.02909 | 46.1487 | $1.34 | |
BSC | <0.01% | $0.169865 | 7.6322 | $1.3 | |
BSC | <0.01% | $0.08748 | 14.1071 | $1.23 | |
BSC | <0.01% | $0.001263 | 911.4923 | $1.15 | |
BSC | <0.01% | $92,965 | 0.00001204 | $1.12 | |
BSC | <0.01% | $0.005248 | 204.4385 | $1.07 | |
BSC | <0.01% | $0.251536 | 4.1128 | $1.03 | |
BSC | <0.01% | $0.030859 | 33.3019 | $1.03 | |
BSC | <0.01% | $0.92567 | 1.106 | $1.02 | |
BSC | <0.01% | $6.04 | 0.1641 | $0.9904 | |
BSC | <0.01% | $0.001033 | 954.815 | $0.9867 | |
BSC | <0.01% | $2.43 | 0.3998 | $0.9723 | |
BSC | <0.01% | $0.184921 | 5.2113 | $0.9636 | |
BSC | <0.01% | $0.007737 | 123.2708 | $0.9536 | |
BSC | <0.01% | $0.000181 | 5,177.7555 | $0.9353 | |
BSC | <0.01% | $0.003956 | 231.6354 | $0.9162 | |
BSC | <0.01% | $0.012798 | 68.8272 | $0.8808 | |
BSC | <0.01% | $0.017454 | 50.4602 | $0.8807 | |
BSC | <0.01% | $0.571299 | 1.5044 | $0.8594 | |
BSC | <0.01% | $0.299518 | 2.7726 | $0.8304 | |
BSC | <0.01% | $0.276113 | 2.9068 | $0.8026 | |
BSC | <0.01% | $0.093975 | 8.3898 | $0.7884 | |
BSC | <0.01% | $15.84 | 0.0486 | $0.7697 | |
BSC | <0.01% | $0.002696 | 280.819 | $0.7571 | |
BSC | <0.01% | $0.211564 | 3.5077 | $0.7421 | |
BSC | <0.01% | $0.011354 | 64.9257 | $0.7371 | |
BSC | <0.01% | $0.095272 | 7.7264 | $0.7361 | |
BSC | <0.01% | $0.000016 | 44,337.3141 | $0.7027 | |
BSC | <0.01% | $0.028316 | 24.5235 | $0.6944 | |
BSC | <0.01% | $0.13551 | 5.0843 | $0.6889 | |
BSC | <0.01% | $0.04508 | 14.8747 | $0.6705 | |
BSC | <0.01% | $92,773 | 0.00000717 | $0.6656 | |
BSC | <0.01% | $0.235472 | 2.7736 | $0.6531 | |
BSC | <0.01% | $0.002058 | 313.3769 | $0.645 | |
BSC | <0.01% | $0.018074 | 34.711 | $0.6273 | |
BSC | <0.01% | $40.88 | 0.0151 | $0.6184 | |
BSC | <0.01% | $0.121445 | 5.0013 | $0.6073 | |
BSC | <0.01% | $0.003777 | 159.6735 | $0.6031 | |
BSC | <0.01% | $0.042312 | 14.254 | $0.6031 | |
BSC | <0.01% | $0.008825 | 67.836 | $0.5986 | |
BSC | <0.01% | $2.86 | 0.2017 | $0.5768 | |
BSC | <0.01% | $0.000892 | 646.9369 | $0.5768 | |
BSC | <0.01% | <$0.000001 | 41,794,423.6058 | $0.5669 | |
BSC | <0.01% | $0.997571 | 0.5589 | $0.5575 | |
BSC | <0.01% | $0.019695 | 28.1177 | $0.5537 | |
BSC | <0.01% | $0.213592 | 2.5401 | $0.5425 | |
BSC | <0.01% | $0.002509 | 208.8707 | $0.5241 | |
BSC | <0.01% | $0.008904 | 58.1057 | $0.5173 | |
BSC | <0.01% | $0.007064 | 71.3037 | $0.5037 | |
BSC | <0.01% | $0.409145 | 1.191 | $0.4872 | |
BSC | <0.01% | $0.005784 | 82.456 | $0.4768 | |
BSC | <0.01% | $0.14028 | 3.331 | $0.4672 | |
BSC | <0.01% | $0.077075 | 6.0331 | $0.4649 | |
BSC | <0.01% | $0.004171 | 105.4338 | $0.4398 | |
BSC | <0.01% | $0.057301 | 7.6149 | $0.4363 | |
BSC | <0.01% | $0.00007 | 6,186.5132 | $0.4326 | |
BSC | <0.01% | $0.047355 | 8.9473 | $0.4237 | |
BSC | <0.01% | $0.001166 | 358.9055 | $0.4184 | |
BSC | <0.01% | $0.083184 | 4.9706 | $0.4134 | |
BSC | <0.01% | $93,624 | 0.00000439 | $0.411 | |
BSC | <0.01% | $0.016603 | 24.6666 | $0.4095 | |
BSC | <0.01% | <$0.000001 | 393,490,092.5589 | $0.4075 | |
BSC | <0.01% | $0.010004 | 39.2939 | $0.393 | |
BSC | <0.01% | $0.061516 | 5.6843 | $0.3496 | |
BSC | <0.01% | $359.55 | 0.00094763 | $0.3407 | |
BSC | <0.01% | $0.667209 | 0.4825 | $0.3219 | |
BSC | <0.01% | $0.043657 | 7.3119 | $0.3192 | |
BSC | <0.01% | $0.00005 | 6,315.7127 | $0.3127 | |
BSC | <0.01% | $0.016715 | 18.6181 | $0.3111 | |
BSC | <0.01% | $0.015008 | 20.0944 | $0.3015 | |
BSC | <0.01% | $0.001834 | 163.8013 | $0.3003 | |
BSC | <0.01% | <$0.000001 | 2,109,237.3533 | $0.2978 | |
BSC | <0.01% | $0.314579 | 0.9082 | $0.2857 | |
BSC | <0.01% | $0.051421 | 5.5161 | $0.2836 | |
BSC | <0.01% | $0.0003 | 927.9794 | $0.2787 | |
BSC | <0.01% | $1,400.62 | 0.00019874 | $0.2783 | |
BSC | <0.01% | $0.000343 | 803.6689 | $0.2753 | |
BSC | <0.01% | $1,511.73 | 0.00017579 | $0.2657 | |
BSC | <0.01% | $2.93 | 0.0902 | $0.2643 | |
BSC | <0.01% | $36.12 | 0.00684148 | $0.2471 | |
BSC | <0.01% | $0.023159 | 10.4573 | $0.2421 | |
BSC | <0.01% | $0.000543 | 444.9406 | $0.2417 | |
BSC | <0.01% | $0.00422 | 56.3956 | $0.2379 | |
BSC | <0.01% | $0.000134 | 1,747.9479 | $0.2334 | |
BSC | <0.01% | $0.496448 | 0.4701 | $0.2333 | |
BSC | <0.01% | $0.000014 | 17,000.8054 | $0.2317 | |
BSC | <0.01% | $0.154358 | 1.4792 | $0.2283 | |
BSC | <0.01% | $0.255974 | 0.8686 | $0.2223 | |
BSC | <0.01% | $0.004412 | 49.3212 | $0.2176 | |
BSC | <0.01% | $0.001471 | 142.6546 | $0.2098 | |
BSC | <0.01% | $0.516665 | 0.4031 | $0.2082 | |
BSC | <0.01% | $0.076138 | 2.6901 | $0.2048 | |
BSC | <0.01% | $1,897.01 | 0.00010599 | $0.201 | |
BSC | <0.01% | $0.008668 | 23.1259 | $0.2004 | |
BSC | <0.01% | $0.00278 | 71.8406 | $0.1997 | |
BSC | <0.01% | $0.001361 | 145.2026 | $0.1976 | |
BSC | <0.01% | $0.019721 | 9.9565 | $0.1963 | |
BSC | <0.01% | $0.000981 | 196.8572 | $0.1932 | |
BSC | <0.01% | $0.000003 | 59,145.2233 | $0.1886 | |
BSC | <0.01% | $16.95 | 0.011 | $0.1869 | |
BSC | <0.01% | $0.000485 | 378.4634 | $0.1834 | |
BSC | <0.01% | $0.008696 | 20.9411 | $0.1821 | |
BSC | <0.01% | $0.000673 | 268.5225 | $0.1807 | |
BSC | <0.01% | $0.026168 | 6.8469 | $0.1791 | |
BSC | <0.01% | $0.018473 | 9.3616 | $0.1729 | |
BSC | <0.01% | $0.000323 | 512.713 | $0.1657 | |
BSC | <0.01% | $0.081006 | 2.0183 | $0.1634 | |
BSC | <0.01% | $0.032594 | 4.9645 | $0.1618 | |
BSC | <0.01% | $0.001072 | 144.5681 | $0.155 | |
BSC | <0.01% | <$0.000001 | 31,640,509.0774 | $0.1506 | |
BSC | <0.01% | $7.86 | 0.0189 | $0.1487 | |
BSC | <0.01% | $0.189265 | 0.7809 | $0.1477 | |
BSC | <0.01% | $0.007731 | 19.1173 | $0.1477 | |
BSC | <0.01% | $0.113778 | 1.2936 | $0.1471 | |
BSC | <0.01% | $0.021946 | 6.6841 | $0.1466 | |
BSC | <0.01% | $33.67 | 0.00431773 | $0.1453 | |
BSC | <0.01% | $0.001805 | 80.1283 | $0.1446 | |
BSC | <0.01% | $43.58 | 0.00314472 | $0.137 | |
BSC | <0.01% | $49.65 | 0.00273214 | $0.1356 | |
BSC | <0.01% | $0.036509 | 3.6681 | $0.1339 | |
BSC | <0.01% | $0.203066 | 0.6455 | $0.131 | |
BSC | <0.01% | $0.806593 | 0.1615 | $0.1303 | |
BSC | <0.01% | $0.00014 | 914.8608 | $0.1282 | |
BSC | <0.01% | <$0.000001 | 1,269,514.7613 | $0.1238 | |
BSC | <0.01% | $0.062013 | 1.957 | $0.1213 | |
BSC | <0.01% | $0.009893 | 12.1584 | $0.1202 | |
BSC | <0.01% | $0.020059 | 5.8956 | $0.1182 | |
BSC | <0.01% | $0.088085 | 1.3333 | $0.1174 | |
BSC | <0.01% | $0.03277 | 3.5231 | $0.1154 | |
BSC | <0.01% | $2.55 | 0.0434 | $0.1107 | |
BSC | <0.01% | $0.314916 | 0.3495 | $0.11 | |
BSC | <0.01% | <$0.000001 | 72,948,989.242 | $0.1067 | |
BSC | <0.01% | $0.52531 | 0.1998 | $0.1049 | |
BSC | <0.01% | $0.000114 | 914.6692 | $0.104 | |
BSC | <0.01% | $0.002412 | 42.7245 | $0.103 | |
BSC | <0.01% | $0.14129 | 0.7296 | $0.103 | |
BSC | <0.01% | $0.003511 | 29.0542 | $0.102 | |
BSC | <0.01% | $0.211868 | 0.4758 | $0.1008 | |
ETH | 9.27% | $0.999963 | 16,755.8072 | $16,755.19 | |
ETH | 5.23% | $1 | 9,454.0203 | $9,454.02 | |
ETH | 3.67% | $1,816.26 | 3.6493 | $6,628 | |
ETH | 0.76% | $1 | 1,372.4668 | $1,372.47 | |
ETH | 0.49% | $93,641 | 0.00955531 | $894.77 | |
ETH | 0.15% | $1,816.26 | 0.1502 | $272.85 | |
ETH | 0.14% | $2,027.17 | 0.126 | $255.41 | |
ETH | 0.12% | $93,754 | 0.00235785 | $221.06 | |
ETH | 0.09% | $0.796694 | 211.8277 | $168.76 | |
ETH | 0.09% | $0.999495 | 154.0064 | $153.93 | |
ETH | 0.08% | $0.93779 | 156.0955 | $146.38 | |
ETH | 0.06% | $15.16 | 7.3928 | $112.07 | |
ETH | 0.04% | $167.34 | 0.4527 | $75.75 | |
ETH | 0.04% | $1.16 | 63.5197 | $73.68 | |
ETH | 0.04% | $0.019695 | 3,729.9695 | $73.46 | |
ETH | 0.04% | $0.000009 | 7,776,272.8797 | $71.23 | |
ETH | 0.04% | $3,335.48 | 0.0211 | $70.54 | |
ETH | 0.03% | $1.15 | 50.592 | $58.18 | |
ETH | 0.03% | $0.999384 | 57.4678 | $57.43 | |
ETH | 0.03% | $0.349681 | 154.442 | $54.01 | |
ETH | 0.03% | $0.000708 | 75,795.4223 | $53.63 | |
ETH | 0.02% | $3,332.67 | 0.0131 | $43.55 | |
ETH | 0.02% | $0.999664 | 38.4858 | $38.47 | |
ETH | 0.02% | $93,624 | 0.00039676 | $37.15 | |
ETH | 0.02% | $2,176.62 | 0.017 | $36.91 | |
ETH | 0.02% | $0.006201 | 5,744.07 | $35.62 | |
ETH | 0.02% | $1.14 | 28.7362 | $32.76 | |
ETH | 0.02% | $0.178391 | 179.5091 | $32.02 | |
ETH | 0.01% | $0.790896 | 33.4827 | $26.48 | |
ETH | 0.01% | $152.55 | 0.1586 | $24.2 | |
ETH | 0.01% | $0.000014 | 1,768,757.5408 | $24.2 | |
ETH | 0.01% | $0.027333 | 847.6868 | $23.17 | |
ETH | 0.01% | $0.999569 | 22.6853 | $22.68 | |
ETH | 0.01% | $1,811.09 | 0.0124 | $22.39 | |
ETH | 0.01% | $4.65 | 4.802 | $22.33 | |
ETH | 0.01% | $335.59 | 0.0651 | $21.83 | |
ETH | 0.01% | $0.000178 | 121,582.3147 | $21.65 | |
ETH | 0.01% | <$0.000001 | 454,949,905.359 | $19.85 | |
ETH | 0.01% | $8.85 | 2.2309 | $19.73 | |
ETH | 0.01% | $0.008639 | 2,281.7952 | $19.71 | |
ETH | 0.01% | $0.016916 | 1,111.3839 | $18.8 | |
ETH | <0.01% | $0.092373 | 189.549 | $17.51 | |
ETH | <0.01% | $0.56474 | 27.9523 | $15.79 | |
ETH | <0.01% | $0.003953 | 3,956.3256 | $15.64 | |
ETH | <0.01% | $1,724.36 | 0.00872779 | $15.05 | |
ETH | <0.01% | $0.065209 | 215.9055 | $14.08 | |
ETH | <0.01% | $10.35 | 1.3358 | $13.83 | |
ETH | <0.01% | $0.667209 | 20.0825 | $13.4 | |
ETH | <0.01% | $0.179497 | 73.4012 | $13.18 | |
ETH | <0.01% | $0.683011 | 19.1098 | $13.05 | |
ETH | <0.01% | $1 | 11.4682 | $11.51 | |
ETH | <0.01% | $0.09145 | 117.9764 | $10.79 | |
ETH | <0.01% | $0.693421 | 15.4131 | $10.69 | |
ETH | <0.01% | $0.016381 | 637.7948 | $10.45 | |
ETH | <0.01% | $0.214862 | 47.8234 | $10.28 | |
ETH | <0.01% | $93,646 | 0.00010908 | $10.21 | |
ETH | <0.01% | $0.184525 | 54.447 | $10.05 | |
ETH | <0.01% | $2,041.96 | 0.00478337 | $9.77 | |
ETH | <0.01% | $0.630251 | 14.941 | $9.42 | |
ETH | <0.01% | $0.122161 | 76.389 | $9.33 | |
ETH | <0.01% | $0.999623 | 9.1598 | $9.16 | |
ETH | <0.01% | $23.06 | 0.3835 | $8.84 | |
ETH | <0.01% | $9.53 | 0.9276 | $8.84 | |
ETH | <0.01% | $6.03 | 1.4517 | $8.75 | |
ETH | <0.01% | $0.52783 | 16.1826 | $8.54 | |
ETH | <0.01% | $0.222479 | 38.0794 | $8.47 | |
ETH | <0.01% | $0.000239 | 35,479.7035 | $8.46 | |
ETH | <0.01% | $0.153092 | 53.2826 | $8.16 | |
ETH | <0.01% | $1,930.33 | 0.00402915 | $7.78 | |
ETH | <0.01% | $1 | 7.4814 | $7.5 | |
ETH | <0.01% | $0.820698 | 8.7814 | $7.21 | |
ETH | <0.01% | $0.028316 | 247.3677 | $7 | |
ETH | <0.01% | $0.272441 | 23.2196 | $6.33 | |
ETH | <0.01% | $0.999989 | 6.0097 | $6.01 | |
ETH | <0.01% | $0.000887 | 6,738.4494 | $5.97 | |
ETH | <0.01% | $0.002413 | 2,445.4044 | $5.9 | |
ETH | <0.01% | $0.002302 | 2,523.5501 | $5.81 | |
ETH | <0.01% | $0.066465 | 85.2658 | $5.67 | |
ETH | <0.01% | $0.314916 | 17.8455 | $5.62 | |
ETH | <0.01% | $0.99765 | 5.6142 | $5.6 | |
ETH | <0.01% | $0.000001 | 9,024,798.2084 | $5.52 | |
ETH | <0.01% | $0.645868 | 8.4548 | $5.46 | |
ETH | <0.01% | $3.51 | 1.5306 | $5.37 | |
ETH | <0.01% | $71.76 | 0.0747 | $5.36 | |
ETH | <0.01% | $0.000504 | 10,631.7486 | $5.36 | |
ETH | <0.01% | $0.094184 | 55.1059 | $5.19 | |
ETH | <0.01% | $1.03 | 4.9664 | $5.13 | |
ETH | <0.01% | $0.015748 | 319.2184 | $5.03 | |
ETH | <0.01% | $0.029753 | 168.0634 | $5 | |
ETH | <0.01% | $0.320324 | 15.3153 | $4.91 | |
ETH | <0.01% | $0.017222 | 278.2537 | $4.79 | |
ETH | <0.01% | $0.044603 | 102.6826 | $4.58 | |
ETH | <0.01% | $0.249703 | 17.7796 | $4.44 | |
ETH | <0.01% | $0.00003 | 141,394.7663 | $4.19 | |
ETH | <0.01% | $0.300568 | 13.7418 | $4.13 | |
ETH | <0.01% | $1 | 4.02 | $4.02 | |
ETH | <0.01% | $0.762969 | 5.0857 | $3.88 | |
ETH | <0.01% | $0.211564 | 18.2571 | $3.86 | |
ETH | <0.01% | <$0.000001 | 104,560,786.8436 | $3.76 | |
ETH | <0.01% | $2.03 | 1.8396 | $3.73 | |
ETH | <0.01% | $0.002285 | 1,627.3057 | $3.72 | |
ETH | <0.01% | $0.013747 | 268.7371 | $3.69 | |
ETH | <0.01% | $0.000024 | 150,216.8438 | $3.62 | |
ETH | <0.01% | $0.008338 | 434.3087 | $3.62 | |
ETH | <0.01% | $0.004719 | 753.8089 | $3.56 | |
ETH | <0.01% | $0.001529 | 2,270.3667 | $3.47 | |
ETH | <0.01% | $0.000041 | 82,235.5635 | $3.38 | |
ETH | <0.01% | $0.74196 | 4.5542 | $3.38 | |
ETH | <0.01% | $0.001076 | 3,040.1686 | $3.27 | |
ETH | <0.01% | $0.01092 | 297.4382 | $3.25 | |
ETH | <0.01% | $3.13 | 1.008 | $3.15 | |
ETH | <0.01% | $0.217859 | 14.2794 | $3.11 | |
ETH | <0.01% | $0.084111 | 36.9553 | $3.11 | |
ETH | <0.01% | $0.037593 | 82.3466 | $3.1 | |
ETH | <0.01% | $0.298384 | 9.8642 | $2.94 | |
ETH | <0.01% | $0.009278 | 314.3018 | $2.92 | |
ETH | <0.01% | $0.113778 | 25.2554 | $2.87 | |
ETH | <0.01% | <$0.000001 | 70,789,546.943 | $2.87 | |
ETH | <0.01% | $3.14 | 0.9129 | $2.87 | |
ETH | <0.01% | <$0.000001 | 20,260,716.3046 | $2.86 | |
ETH | <0.01% | $0.031511 | 89.1029 | $2.81 | |
ETH | <0.01% | $0.571931 | 4.8458 | $2.77 | |
ETH | <0.01% | $0.235796 | 11.6436 | $2.75 | |
ETH | <0.01% | $0.00001 | 272,053.087 | $2.71 | |
ETH | <0.01% | $0.3323 | 8.0574 | $2.68 | |
ETH | <0.01% | $0.007321 | 363.2032 | $2.66 | |
ETH | <0.01% | $0.006261 | 424.14 | $2.66 | |
ETH | <0.01% | $0.025355 | 103.8667 | $2.63 | |
ETH | <0.01% | $0.000021 | 125,668.2378 | $2.6 | |
ETH | <0.01% | $0.004412 | 581.099 | $2.56 | |
ETH | <0.01% | $0.561188 | 4.5662 | $2.56 | |
ETH | <0.01% | $0.867978 | 2.9199 | $2.53 | |
ETH | <0.01% | $0.148412 | 16.9744 | $2.52 | |
ETH | <0.01% | $4.45 | 0.5651 | $2.51 | |
ETH | <0.01% | $0.023483 | 104.1468 | $2.45 | |
ETH | <0.01% | $2.27 | 1.0649 | $2.42 | |
ETH | <0.01% | $0.140058 | 17.2151 | $2.41 | |
ETH | <0.01% | $0.008346 | 284.0123 | $2.37 | |
ETH | <0.01% | $0.091541 | 25.8748 | $2.37 | |
ETH | <0.01% | $0.174571 | 13.4426 | $2.35 | |
ETH | <0.01% | $1.21 | 1.8966 | $2.29 | |
ETH | <0.01% | $0.403842 | 5.6526 | $2.28 | |
ETH | <0.01% | $0.24635 | 9.2513 | $2.28 | |
ETH | <0.01% | $0.334404 | 6.7905 | $2.27 | |
ETH | <0.01% | $1.15 | 1.9724 | $2.27 | |
ETH | <0.01% | $0.314579 | 7.0959 | $2.23 | |
ETH | <0.01% | $0.031774 | 69.5214 | $2.21 | |
ETH | <0.01% | $0.004649 | 464.9462 | $2.16 | |
ETH | <0.01% | $0.008786 | 244.4563 | $2.15 | |
ETH | <0.01% | $0.036339 | 58.9018 | $2.14 | |
ETH | <0.01% | <$0.000001 | 6,411,536.6357 | $2.12 | |
ETH | <0.01% | $0.028529 | 73.7903 | $2.11 | |
ETH | <0.01% | $0.676485 | 3.0565 | $2.07 | |
ETH | <0.01% | $93,879 | 0.00002198 | $2.06 | |
ETH | <0.01% | $0.115338 | 17.6866 | $2.04 | |
ETH | <0.01% | $0.065412 | 31.1235 | $2.04 | |
ETH | <0.01% | $2.86 | 0.7076 | $2.02 | |
ETH | <0.01% | $0.073581 | 27.269 | $2.01 | |
ETH | <0.01% | $0.000016 | 125,071.0422 | $1.98 | |
ETH | <0.01% | $0.000025 | 80,247.1236 | $1.98 | |
ETH | <0.01% | $0.61185 | 3.2298 | $1.98 | |
ETH | <0.01% | <$0.000001 | 37,956,022.7114 | $1.97 | |
ETH | <0.01% | $0.00001 | 199,180.4633 | $1.94 | |
ETH | <0.01% | $114.55 | 0.0167 | $1.92 | |
ETH | <0.01% | $0.344254 | 5.5339 | $1.91 | |
ETH | <0.01% | $7.83 | 0.2359 | $1.85 | |
ETH | <0.01% | <$0.000001 | 157,261,068.9191 | $1.84 | |
ETH | <0.01% | <$0.000001 | 50,015,357.3752 | $1.77 | |
ETH | <0.01% | $0.063653 | 27.3037 | $1.74 | |
ETH | <0.01% | $0.99882 | 1.6897 | $1.69 | |
ETH | <0.01% | $0.394989 | 4.1229 | $1.63 | |
ETH | <0.01% | $0.361215 | 4.2481 | $1.53 | |
ETH | <0.01% | $17.28 | 0.0887 | $1.53 | |
ETH | <0.01% | $0.000505 | 3,029.2271 | $1.53 | |
ETH | <0.01% | $0.008958 | 168.2722 | $1.51 | |
ETH | <0.01% | $0.999343 | 1.4958 | $1.49 | |
ETH | <0.01% | $0.096183 | 15.4996 | $1.49 | |
ETH | <0.01% | $1.21 | 1.2203 | $1.47 | |
ETH | <0.01% | $0.872281 | 1.6327 | $1.42 | |
ETH | <0.01% | $0.975883 | 1.4524 | $1.42 | |
ETH | <0.01% | $0.003336 | 418.2959 | $1.4 | |
ETH | <0.01% | $0.015928 | 86.7042 | $1.38 | |
ETH | <0.01% | $0.082508 | 16.7362 | $1.38 | |
ETH | <0.01% | $0.000231 | 5,906.851 | $1.37 | |
ETH | <0.01% | $0.646937 | 2.093 | $1.35 | |
ETH | <0.01% | $0.101558 | 13.0424 | $1.32 | |
ETH | <0.01% | $0.314007 | 4.2023 | $1.32 | |
ETH | <0.01% | $0.014076 | 93.522 | $1.32 | |
ETH | <0.01% | $2.5 | 0.5232 | $1.31 | |
ETH | <0.01% | $1,814.89 | 0.00070129 | $1.27 | |
ETH | <0.01% | $0.862675 | 1.4634 | $1.26 | |
ETH | <0.01% | $1,897.01 | 0.00066036 | $1.25 | |
ETH | <0.01% | $0.000013 | 93,255.6285 | $1.23 | |
ETH | <0.01% | $0.418002 | 2.9142 | $1.22 | |
ETH | <0.01% | $0.208468 | 5.8261 | $1.21 | |
ETH | <0.01% | $0.004566 | 263.9663 | $1.21 | |
ETH | <0.01% | <$0.000001 | 17,617,535.8194 | $1.2 | |
ETH | <0.01% | $0.207242 | 5.7128 | $1.18 | |
ETH | <0.01% | $0.168293 | 6.9153 | $1.16 | |
ETH | <0.01% | $0.143436 | 8.0883 | $1.16 | |
ETH | <0.01% | $5,174.87 | 0.00022292 | $1.15 | |
ETH | <0.01% | $0.096364 | 11.8763 | $1.14 | |
ETH | <0.01% | $2.43 | 0.4583 | $1.11 | |
ETH | <0.01% | $0.059577 | 18.5636 | $1.11 | |
ETH | <0.01% | $2.1 | 0.5214 | $1.1 | |
ETH | <0.01% | $609.96 | 0.00179504 | $1.09 | |
ETH | <0.01% | <$0.000001 | 8,474,649.8148 | $1.08 | |
ETH | <0.01% | $0.024379 | 44.1339 | $1.08 | |
ETH | <0.01% | $94,233 | 0.00001137 | $1.07 | |
ETH | <0.01% | $0.272104 | 3.9145 | $1.07 | |
ETH | <0.01% | $0.013309 | 78.156 | $1.04 | |
ETH | <0.01% | $19.2 | 0.0534 | $1.02 | |
ETH | <0.01% | $0.000048 | 21,052.3522 | $1.02 | |
ETH | <0.01% | $1.05 | 0.9522 | $0.9988 | |
ETH | <0.01% | $0.354502 | 2.8142 | $0.9976 | |
ETH | <0.01% | $0.142843 | 6.9775 | $0.9966 | |
ETH | <0.01% | $0.014843 | 66.4283 | $0.9859 | |
ETH | <0.01% | $15.57 | 0.0627 | $0.9766 | |
ETH | <0.01% | $0.000848 | 1,140.0394 | $0.9669 | |
ETH | <0.01% | $0.996428 | 0.9568 | $0.9533 | |
ETH | <0.01% | $4.61 | 0.2059 | $0.949 | |
ETH | <0.01% | $0.261224 | 3.6198 | $0.9455 | |
ETH | <0.01% | $0.000322 | 2,910.238 | $0.9379 | |
ETH | <0.01% | $0.033057 | 27.9099 | $0.9226 | |
ETH | <0.01% | $0.027258 | 33.8477 | $0.9226 | |
ETH | <0.01% | <$0.000001 | 2,425,168.8579 | $0.9195 | |
ETH | <0.01% | $0.054877 | 16.638 | $0.913 | |
ETH | <0.01% | $0.794029 | 1.1384 | $0.9039 | |
ETH | <0.01% | $0.228727 | 3.8415 | $0.8786 | |
ETH | <0.01% | $0.007701 | 113.7769 | $0.8762 | |
ETH | <0.01% | $160.72 | 0.00541368 | $0.87 | |
ETH | <0.01% | $0.092615 | 9.367 | $0.8675 | |
ETH | <0.01% | $0.143212 | 6.0244 | $0.8627 | |
ETH | <0.01% | $0.019755 | 43.5684 | $0.8607 | |
ETH | <0.01% | $1 | 0.8534 | $0.8534 | |
ETH | <0.01% | $0.020658 | 41.2931 | $0.853 | |
ETH | <0.01% | $0.000004 | 213,911.2189 | $0.8522 | |
ETH | <0.01% | $0.067746 | 12.5625 | $0.851 | |
ETH | <0.01% | <$0.000001 | 56,652,743.9102 | $0.8435 | |
ETH | <0.01% | $0.003892 | 212.0685 | $0.8253 | |
ETH | <0.01% | $0.015458 | 51.4821 | $0.7958 | |
ETH | <0.01% | $2.9 | 0.2713 | $0.7868 | |
ETH | <0.01% | $0.073402 | 10.679 | $0.7838 | |
ETH | <0.01% | $1.58 | 0.4866 | $0.7687 | |
ETH | <0.01% | $0.149 | 5.0843 | $0.7575 | |
ETH | <0.01% | $0.058967 | 12.8007 | $0.7548 | |
ETH | <0.01% | $0.041615 | 18.0973 | $0.7531 | |
ETH | <0.01% | $0.001149 | 650.1768 | $0.747 | |
ETH | <0.01% | <$0.000001 | 151,236,638.0277 | $0.7436 | |
ETH | <0.01% | $8.2 | 0.0903 | $0.7404 | |
ETH | <0.01% | $0.000012 | 63,476.2739 | $0.7349 | |
ETH | <0.01% | $0.513842 | 1.4266 | $0.733 | |
ETH | <0.01% | $0.302453 | 2.4106 | $0.729 | |
ETH | <0.01% | $60.58 | 0.0119 | $0.722 | |
ETH | <0.01% | $0.111226 | 6.3948 | $0.7112 | |
ETH | <0.01% | $2.2 | 0.3207 | $0.7055 | |
ETH | <0.01% | $0.818792 | 0.8608 | $0.7047 | |
ETH | <0.01% | $0.001842 | 382.017 | $0.7037 | |
ETH | <0.01% | $0.009985 | 69.6084 | $0.695 | |
ETH | <0.01% | $0.000066 | 10,471.3935 | $0.691 | |
ETH | <0.01% | $0.040251 | 16.8249 | $0.6772 | |
ETH | <0.01% | $0.019819 | 33.8439 | $0.6707 | |
ETH | <0.01% | $0.002515 | 266.2764 | $0.6696 | |
ETH | <0.01% | $0.006091 | 109.4676 | $0.6667 | |
ETH | <0.01% | $0.104258 | 6.3419 | $0.6611 | |
ETH | <0.01% | $0.000018 | 34,641.6163 | $0.636 | |
ETH | <0.01% | $0.078127 | 8.1158 | $0.634 | |
ETH | <0.01% | $0.001224 | 506.678 | $0.6199 | |
ETH | <0.01% | $0.025403 | 24.282 | $0.6168 | |
ETH | <0.01% | $0.473766 | 1.2948 | $0.6134 | |
ETH | <0.01% | $0.005298 | 113.5156 | $0.6013 | |
ETH | <0.01% | $0.070744 | 8.4921 | $0.6007 | |
ETH | <0.01% | $0.121584 | 4.9223 | $0.5984 | |
ETH | <0.01% | $0.077075 | 7.7121 | $0.5944 | |
ETH | <0.01% | $0.11184 | 5.2879 | $0.5913 | |
ETH | <0.01% | $0.014684 | 39.9141 | $0.586 | |
ETH | <0.01% | $0.00703 | 83.0967 | $0.5841 | |
ETH | <0.01% | $2.74 | 0.2081 | $0.5703 | |
ETH | <0.01% | $0.062833 | 8.9756 | $0.5639 | |
ETH | <0.01% | $0.071333 | 7.7583 | $0.5534 | |
ETH | <0.01% | $0.000001 | 737,161.551 | $0.5493 | |
ETH | <0.01% | $0.000003 | 172,122.8143 | $0.5445 | |
ETH | <0.01% | $0.000808 | 673.6492 | $0.5442 | |
ETH | <0.01% | $0.098538 | 5.4664 | $0.5386 | |
ETH | <0.01% | $0.571013 | 0.9335 | $0.533 | |
ETH | <0.01% | $0.445042 | 1.1879 | $0.5286 | |
ETH | <0.01% | $0.728954 | 0.7212 | $0.5257 | |
ETH | <0.01% | $0.207566 | 2.4711 | $0.5129 | |
ETH | <0.01% | $1,892.28 | 0.00026889 | $0.5088 | |
ETH | <0.01% | $0.795426 | 0.6355 | $0.5054 | |
ETH | <0.01% | $0.027404 | 18.1969 | $0.4986 | |
ETH | <0.01% | $165.22 | 0.00298176 | $0.4926 | |
ETH | <0.01% | $0.201544 | 2.4295 | $0.4896 | |
ETH | <0.01% | $0.032962 | 14.7837 | $0.4872 | |
ETH | <0.01% | $0.558312 | 0.8622 | $0.4813 | |
ETH | <0.01% | $0.010619 | 44.1069 | $0.4683 | |
ETH | <0.01% | $0.000588 | 796.3127 | $0.4683 | |
ETH | <0.01% | $0.016579 | 27.9633 | $0.4636 | |
ETH | <0.01% | $0.000007 | 70,583.7704 | $0.463 | |
ETH | <0.01% | $0.16354 | 2.7681 | $0.4526 | |
ETH | <0.01% | $0.720831 | 0.6268 | $0.4517 | |
ETH | <0.01% | $0.001389 | 321.8068 | $0.447 | |
ETH | <0.01% | $2.86 | 0.1538 | $0.4399 | |
ETH | <0.01% | $0.007731 | 55.6115 | $0.4299 | |
ETH | <0.01% | $0.172445 | 2.4926 | $0.4298 | |
ETH | <0.01% | $0.001438 | 298.419 | $0.4291 | |
ETH | <0.01% | $0.99868 | 0.4283 | $0.4277 | |
ETH | <0.01% | $0.50589 | 0.8385 | $0.4241 | |
ETH | <0.01% | $0.074631 | 5.5435 | $0.4137 | |
ETH | <0.01% | $0.00422 | 96.9071 | $0.4089 | |
ETH | <0.01% | $43.55 | 0.00925004 | $0.4028 | |
ETH | <0.01% | $0.010866 | 36.0773 | $0.392 | |
ETH | <0.01% | $0.025397 | 15.3388 | $0.3895 | |
ETH | <0.01% | $0.997695 | 0.3837 | $0.3827 | |
ETH | <0.01% | $0.315249 | 1.1957 | $0.3769 | |
ETH | <0.01% | $2.55 | 0.1473 | $0.3756 | |
ETH | <0.01% | $0.063858 | 5.8139 | $0.3712 | |
ETH | <0.01% | $0.344519 | 1.0616 | $0.3657 | |
ETH | <0.01% | $0.317684 | 1.1465 | $0.3642 | |
ETH | <0.01% | $0.051773 | 7.0019 | $0.3625 | |
ETH | <0.01% | $0.000002 | 154,539.8107 | $0.3617 | |
ETH | <0.01% | $0.627813 | 0.5685 | $0.3569 | |
ETH | <0.01% | $0.064839 | 5.505 | $0.3569 | |
ETH | <0.01% | $0.98696 | 0.3515 | $0.3469 | |
ETH | <0.01% | $0.712359 | 0.485 | $0.3454 | |
ETH | <0.01% | $178.63 | 0.00188253 | $0.3362 | |
ETH | <0.01% | $7.91 | 0.0421 | $0.3329 | |
ETH | <0.01% | $0.002566 | 128.0125 | $0.3285 | |
ETH | <0.01% | $0.000002 | 148,610.6679 | $0.3284 | |
ETH | <0.01% | $0.197979 | 1.6526 | $0.3271 | |
ETH | <0.01% | $0.059936 | 5.4348 | $0.3257 | |
ETH | <0.01% | $0.01435 | 22.6484 | $0.325 | |
ETH | <0.01% | $0.07449 | 4.3496 | $0.3239 | |
ETH | <0.01% | $0.107621 | 3.005 | $0.3234 | |
ETH | <0.01% | $0.024725 | 12.9531 | $0.3202 | |
ETH | <0.01% | $0.03288 | 9.5662 | $0.3145 | |
ETH | <0.01% | $0.001393 | 225.6883 | $0.3144 | |
ETH | <0.01% | $0.023391 | 13.3694 | $0.3127 | |
ETH | <0.01% | <$0.000001 | 6,431,063.7324 | $0.3097 | |
ETH | <0.01% | $16.1 | 0.0187 | $0.3008 | |
ETH | <0.01% | $0.023944 | 12.5298 | $0.30 | |
ETH | <0.01% | $0.002115 | 141.4947 | $0.2992 | |
ETH | <0.01% | $0.209185 | 1.4257 | $0.2982 | |
ETH | <0.01% | $0.228893 | 1.2933 | $0.296 | |
ETH | <0.01% | $0.098085 | 3.0162 | $0.2958 | |
ETH | <0.01% | $0.172381 | 1.7067 | $0.2941 | |
ETH | <0.01% | $0.084352 | 3.4807 | $0.2936 | |
ETH | <0.01% | $0.11732 | 2.4242 | $0.2844 | |
ETH | <0.01% | $0.318098 | 0.8925 | $0.2839 | |
ETH | <0.01% | $0.002175 | 130.2484 | $0.2832 | |
ETH | <0.01% | $0.935307 | 0.2991 | $0.2797 | |
ETH | <0.01% | $0.001854 | 149.72 | $0.2775 | |
ETH | <0.01% | $1.52 | 0.1785 | $0.2713 | |
ETH | <0.01% | $0.925544 | 0.293 | $0.2712 | |
ETH | <0.01% | $0.060909 | 4.3979 | $0.2678 | |
ETH | <0.01% | $0.810222 | 0.3193 | $0.2587 | |
ETH | <0.01% | $93,267 | 0.00000276 | $0.2576 | |
ETH | <0.01% | <$0.000001 | 894,556.135 | $0.2558 | |
ETH | <0.01% | $0.004285 | 58.837 | $0.2521 | |
ETH | <0.01% | $0.000004 | 68,846.0238 | $0.2499 | |
ETH | <0.01% | $0.007452 | 32.4522 | $0.2418 | |
ETH | <0.01% | $0.007867 | 30.704 | $0.2415 | |
ETH | <0.01% | $0.147799 | 1.6146 | $0.2386 | |
ETH | <0.01% | $0.133737 | 1.7834 | $0.2385 | |
ETH | <0.01% | $0.000276 | 841.2532 | $0.2321 | |
ETH | <0.01% | $1.22 | 0.188 | $0.2293 | |
ETH | <0.01% | <$0.000001 | 2,549,930.9647 | $0.2286 | |
ETH | <0.01% | $0.000127 | 1,781.5202 | $0.2261 | |
ETH | <0.01% | $0.211868 | 1.0665 | $0.2259 | |
ETH | <0.01% | $0.550503 | 0.4011 | $0.2208 | |
ETH | <0.01% | $0.004161 | 51.4397 | $0.214 | |
ETH | <0.01% | $0.006917 | 30.4183 | $0.2104 | |
ETH | <0.01% | $3.29 | 0.0632 | $0.2078 | |
ETH | <0.01% | <$0.000001 | 7,139,646.8074 | $0.206 | |
ETH | <0.01% | $0.000005 | 40,854.1017 | $0.2021 | |
ETH | <0.01% | $0.02025 | 9.9327 | $0.2011 | |
ETH | <0.01% | $0.020725 | 9.6167 | $0.1993 | |
ETH | <0.01% | $0.003777 | 52.2036 | $0.1971 | |
ETH | <0.01% | $0.308948 | 0.6378 | $0.197 | |
ETH | <0.01% | $0.129129 | 1.4872 | $0.192 | |
ETH | <0.01% | $0.001178 | 162.2218 | $0.191 | |
ETH | <0.01% | $0.220644 | 0.856 | $0.1888 | |
ETH | <0.01% | $0.137677 | 1.3584 | $0.187 | |
ETH | <0.01% | $31.05 | 0.00588363 | $0.1826 | |
ETH | <0.01% | $0.00997 | 18.3118 | $0.1825 | |
ETH | <0.01% | $0.004045 | 44.5723 | $0.1803 | |
ETH | <0.01% | $0.016177 | 11.1143 | $0.1798 | |
ETH | <0.01% | $0.203066 | 0.8591 | $0.1744 | |
ETH | <0.01% | $0.49458 | 0.3475 | $0.1718 | |
ETH | <0.01% | $0.013894 | 12.3659 | $0.1718 | |
ETH | <0.01% | $0.002901 | 58.7694 | $0.1704 | |
ETH | <0.01% | $1,810.61 | 0.00009378 | $0.1698 | |
ETH | <0.01% | $0.002843 | 59.6963 | $0.1697 | |
ETH | <0.01% | $0.028325 | 5.9935 | $0.1697 | |
ETH | <0.01% | $0.399608 | 0.4237 | $0.1693 | |
ETH | <0.01% | <$0.000001 | 2,601,370.3045 | $0.1681 | |
ETH | <0.01% | $20.11 | 0.00825894 | $0.166 | |
ETH | <0.01% | $0.000065 | 2,545.7877 | $0.1646 | |
ETH | <0.01% | $0.189265 | 0.8656 | $0.1638 | |
ETH | <0.01% | $0.007499 | 21.7859 | $0.1633 | |
ETH | <0.01% | $4.54 | 0.0356 | $0.1616 | |
ETH | <0.01% | $0.018332 | 8.8197 | $0.1616 | |
ETH | <0.01% | $1,921.01 | 0.00008348 | $0.1603 | |
ETH | <0.01% | $2.48 | 0.0645 | $0.16 | |
ETH | <0.01% | $1.42 | 0.1125 | $0.1597 | |
ETH | <0.01% | $0.002369 | 67.3814 | $0.1596 | |
ETH | <0.01% | $1,881.91 | 0.00008477 | $0.1595 | |
ETH | <0.01% | $0.113218 | 1.4079 | $0.1593 | |
ETH | <0.01% | $0.197256 | 0.8075 | $0.1592 | |
ETH | <0.01% | $0.543253 | 0.2898 | $0.1574 | |
ETH | <0.01% | $0.027682 | 5.6472 | $0.1563 | |
ETH | <0.01% | $0.001166 | 132.4818 | $0.1545 | |
ETH | <0.01% | $0.003823 | 40.2482 | $0.1538 | |
ETH | <0.01% | $82,196.21 | 0.00000187 | $0.1537 | |
ETH | <0.01% | $0.006055 | 25.3468 | $0.1534 | |
ETH | <0.01% | $8.92 | 0.0169 | $0.151 | |
ETH | <0.01% | $1.14 | 0.1314 | $0.1497 | |
ETH | <0.01% | $0.000843 | 177.5127 | $0.1495 | |
ETH | <0.01% | $0.000511 | 288.2049 | $0.1471 | |
ETH | <0.01% | <$0.000001 | 43,713,788.2833 | $0.1469 | |
ETH | <0.01% | $5,862.92 | 0.00002483 | $0.1455 | |
ETH | <0.01% | $0.000101 | 1,435.7183 | $0.1449 | |
ETH | <0.01% | $0.006501 | 22.1881 | $0.1442 | |
ETH | <0.01% | $0.000919 | 155.6069 | $0.1429 | |
ETH | <0.01% | $0.000957 | 146.898 | $0.1406 | |
ETH | <0.01% | $1.18 | 0.1183 | $0.1395 | |
ETH | <0.01% | <$0.000001 | 93,844,441.4308 | $0.1385 | |
ETH | <0.01% | $92,302 | 0.0000015 | $0.1384 | |
ETH | <0.01% | $0.215072 | 0.6378 | $0.1371 | |
ETH | <0.01% | $373.82 | 0.00036446 | $0.1362 | |
ETH | <0.01% | $0.006798 | 20.0004 | $0.1359 | |
ETH | <0.01% | $0.000108 | 1,225.0115 | $0.1318 | |
ETH | <0.01% | <$0.000001 | 771,154.0926 | $0.1306 | |
ETH | <0.01% | $0.100591 | 1.2966 | $0.1304 | |
ETH | <0.01% | $0.252349 | 0.5159 | $0.1301 | |
ETH | <0.01% | $7.22 | 0.0179 | $0.1291 | |
ETH | <0.01% | $0.039994 | 3.2167 | $0.1286 | |
ETH | <0.01% | $399.58 | 0.0003167 | $0.1265 | |
ETH | <0.01% | $0.045382 | 2.7795 | $0.1261 | |
ETH | <0.01% | $0.022242 | 5.6402 | $0.1254 | |
ETH | <0.01% | $5.57 | 0.0225 | $0.1254 | |
ETH | <0.01% | $0.032423 | 3.8631 | $0.1252 | |
ETH | <0.01% | $1,807.74 | 0.00006856 | $0.1239 | |
ETH | <0.01% | $0.221012 | 0.5605 | $0.1238 | |
ETH | <0.01% | $5.62 | 0.0218 | $0.1224 | |
ETH | <0.01% | $0.001052 | 115.5586 | $0.1215 | |
ETH | <0.01% | $0.000423 | 284.1209 | $0.1202 | |
ETH | <0.01% | $9.04 | 0.0131 | $0.1186 | |
ETH | <0.01% | $0.000003 | 37,951.8624 | $0.1184 | |
ETH | <0.01% | $0.247525 | 0.4767 | $0.118 | |
ETH | <0.01% | $0.092005 | 1.2761 | $0.1174 | |
ETH | <0.01% | $0.007529 | 15.5293 | $0.1169 | |
ETH | <0.01% | $0.009877 | 11.8014 | $0.1165 | |
ETH | <0.01% | $0.175844 | 0.6544 | $0.115 | |
ETH | <0.01% | $0.422371 | 0.2707 | $0.1143 | |
ETH | <0.01% | $52.27 | 0.00216726 | $0.1132 | |
ETH | <0.01% | $0.000024 | 4,750.0377 | $0.1131 | |
ETH | <0.01% | $0.114158 | 0.9851 | $0.1124 | |
ETH | <0.01% | $7.59 | 0.0145 | $0.1103 | |
ETH | <0.01% | $0.40184 | 0.274 | $0.11 | |
ETH | <0.01% | $0.185749 | 0.5918 | $0.1099 | |
ETH | <0.01% | $0.001503 | 72.6412 | $0.1091 | |
ETH | <0.01% | $0.004362 | 24.9046 | $0.1086 | |
ETH | <0.01% | $0.003431 | 31.4964 | $0.108 | |
ETH | <0.01% | $0.012645 | 8.4004 | $0.1062 | |
ETH | <0.01% | $0.139057 | 0.7622 | $0.1059 | |
ETH | <0.01% | $0.694269 | 0.1494 | $0.1037 | |
ETH | <0.01% | $0.27936 | 0.3699 | $0.1033 | |
ETH | <0.01% | $5,670.18 | 0.000018 | $0.102 | |
ETH | <0.01% | $0.01468 | 6.8999 | $0.1012 | |
ETH | <0.01% | $0.000762 | 132.4962 | $0.101 | |
ETH | <0.01% | $0.00159 | 63.3821 | $0.1007 | |
ETH | <0.01% | $1.07 | 0.0938 | $0.1006 | |
BASE | 9.91% | $0.999994 | 17,924.691 | $17,924.58 | |
BASE | 6.42% | $1,816.39 | 6.3962 | $11,618.02 | |
BASE | 0.73% | $93,840 | 0.0141 | $1,326.19 | |
BASE | 0.36% | $1,812.33 | 0.3587 | $650.14 | |
BASE | 0.14% | $0.998796 | 255.4456 | $255.14 | |
BASE | 0.09% | $0.050277 | 3,264.8499 | $164.15 | |
BASE | 0.07% | $0.000388 | 329,755.6016 | $127.99 | |
BASE | 0.04% | $0.512205 | 149.3679 | $76.51 | |
BASE | 0.03% | $1 | 59.8861 | $59.95 | |
BASE | 0.03% | $0.797112 | 73.8811 | $58.89 | |
BASE | 0.03% | $0.169486 | 344.7233 | $58.43 | |
BASE | 0.03% | $1.14 | 47.6284 | $54.3 | |
BASE | 0.03% | $93,794 | 0.00048886 | $45.85 | |
BASE | 0.02% | $0.019729 | 2,155.9054 | $42.53 | |
BASE | 0.02% | $0.063582 | 602.1076 | $38.28 | |
BASE | 0.02% | $0.000708 | 44,372.7677 | $31.41 | |
BASE | 0.01% | $0.0323 | 830.475 | $26.82 | |
BASE | 0.01% | $0.000481 | 52,837.9584 | $25.42 | |
BASE | 0.01% | $0.118444 | 196.1413 | $23.23 | |
BASE | 0.01% | $0.125618 | 176.0115 | $22.11 | |
BASE | 0.01% | $0.003351 | 6,019.0695 | $20.17 | |
BASE | 0.01% | $2.78 | 6.9492 | $19.32 | |
BASE | <0.01% | $0.016722 | 1,074.7568 | $17.97 | |
BASE | <0.01% | $0.023017 | 727.0442 | $16.73 | |
BASE | <0.01% | $0.003388 | 4,929.1345 | $16.7 | |
BASE | <0.01% | $0.999953 | 14.9043 | $14.9 | |
BASE | <0.01% | $0.906066 | 16.2471 | $14.72 | |
BASE | <0.01% | $0.009895 | 1,263.8608 | $12.51 | |
BASE | <0.01% | $1.05 | 10.5467 | $11.06 | |
BASE | <0.01% | $0.052675 | 209.0892 | $11.01 | |
BASE | <0.01% | $0.065184 | 153.9265 | $10.03 | |
BASE | <0.01% | $2.92 | 3.2692 | $9.55 | |
BASE | <0.01% | $52.11 | 0.179 | $9.33 | |
BASE | <0.01% | $0.000013 | 694,324.3603 | $9.03 | |
BASE | <0.01% | $1,897.07 | 0.00404033 | $7.66 | |
BASE | <0.01% | $0.011386 | 645.669 | $7.35 | |
BASE | <0.01% | $2.74 | 2.6084 | $7.15 | |
BASE | <0.01% | $1.01 | 7.0225 | $7.07 | |
BASE | <0.01% | $0.003923 | 1,565.8388 | $6.14 | |
BASE | <0.01% | $0.000004 | 1,460,734.8111 | $5.45 | |
BASE | <0.01% | $0.000002 | 2,247,048.1251 | $5.36 | |
BASE | <0.01% | <$0.000001 | 132,654,268.469 | $5.33 | |
BASE | <0.01% | $0.082674 | 63.8405 | $5.28 | |
BASE | <0.01% | $2,176.44 | 0.00217045 | $4.72 | |
BASE | <0.01% | $0.023792 | 198.1815 | $4.72 | |
BASE | <0.01% | $0.078259 | 59.0779 | $4.62 | |
BASE | <0.01% | $167.58 | 0.0275 | $4.61 | |
BASE | <0.01% | $0.018463 | 238.0748 | $4.4 | |
BASE | <0.01% | $0.027148 | 159.8062 | $4.34 | |
BASE | <0.01% | $1.03 | 3.9009 | $4.02 | |
BASE | <0.01% | $0.000001 | 6,418,932.3325 | $3.97 | |
BASE | <0.01% | $93,796 | 0.00004211 | $3.95 | |
BASE | <0.01% | $0.000051 | 75,068.0082 | $3.8 | |
BASE | <0.01% | $0.002156 | 1,678.1137 | $3.62 | |
BASE | <0.01% | $2.9 | 1.2297 | $3.57 | |
BASE | <0.01% | $0.056456 | 61.5757 | $3.48 | |
BASE | <0.01% | $0.026513 | 128.2026 | $3.4 | |
BASE | <0.01% | $0.74199 | 4.1039 | $3.05 | |
BASE | <0.01% | $0.006281 | 481.0144 | $3.02 | |
BASE | <0.01% | $0.316179 | 8.9835 | $2.84 | |
BASE | <0.01% | $0.999184 | 2.7124 | $2.71 | |
BASE | <0.01% | $3.51 | 0.7702 | $2.7 | |
BASE | <0.01% | $1,953.81 | 0.00126818 | $2.48 | |
BASE | <0.01% | $0.058183 | 41.279 | $2.4 | |
BASE | <0.01% | $0.016432 | 133.6434 | $2.2 | |
BASE | <0.01% | $0.012188 | 171.1882 | $2.09 | |
BASE | <0.01% | $0.469408 | 4.31 | $2.02 | |
BASE | <0.01% | $1 | 1.9754 | $1.98 | |
BASE | <0.01% | $0.556225 | 3.47 | $1.93 | |
BASE | <0.01% | $0.000083 | 22,525.1212 | $1.88 | |
BASE | <0.01% | $0.000002 | 1,058,604.7697 | $1.87 | |
BASE | <0.01% | $0.121585 | 15.3998 | $1.87 | |
BASE | <0.01% | $0.269053 | 6.9118 | $1.86 | |
BASE | <0.01% | $0.999639 | 1.8376 | $1.84 | |
BASE | <0.01% | $0.010388 | 175.3071 | $1.82 | |
BASE | <0.01% | $1.01 | 1.7405 | $1.76 | |
BASE | <0.01% | $0.019121 | 81.4842 | $1.56 | |
BASE | <0.01% | $0.246569 | 6.0059 | $1.48 | |
BASE | <0.01% | $0.978505 | 1.5098 | $1.48 | |
BASE | <0.01% | $0.100241 | 14.7255 | $1.48 | |
BASE | <0.01% | $0.230102 | 6.2781 | $1.44 | |
BASE | <0.01% | $0.001721 | 791.4477 | $1.36 | |
BASE | <0.01% | $1,984.07 | 0.0006656 | $1.32 | |
BASE | <0.01% | $0.717865 | 1.7667 | $1.27 | |
BASE | <0.01% | $0.322662 | 3.9269 | $1.27 | |
BASE | <0.01% | $191.76 | 0.00655677 | $1.26 | |
BASE | <0.01% | $0.006164 | 192.5401 | $1.19 | |
BASE | <0.01% | $0.000928 | 1,273.3759 | $1.18 | |
BASE | <0.01% | $0.56537 | 1.9834 | $1.12 | |
BASE | <0.01% | $0.402457 | 2.4606 | $0.9902 | |
BASE | <0.01% | $0.006543 | 145.7387 | $0.9535 | |
BASE | <0.01% | $0.000006 | 157,723.0207 | $0.9526 | |
BASE | <0.01% | $0.572904 | 1.5052 | $0.8623 | |
BASE | <0.01% | $0.003697 | 212.0757 | $0.7839 | |
BASE | <0.01% | $1.33 | 0.5689 | $0.7566 | |
BASE | <0.01% | $0.003975 | 185.1955 | $0.7362 | |
BASE | <0.01% | $1,986.38 | 0.00036103 | $0.7171 | |
BASE | <0.01% | $1,930.49 | 0.00032638 | $0.63 | |
BASE | <0.01% | $0.000006 | 112,340.0714 | $0.6268 | |
BASE | <0.01% | $0.018897 | 32.2172 | $0.6088 | |
BASE | <0.01% | $1.57 | 0.387 | $0.6076 | |
BASE | <0.01% | $1.16 | 0.4995 | $0.5794 | |
BASE | <0.01% | $0.00153 | 360.9773 | $0.5523 | |
BASE | <0.01% | $0.000794 | 666.684 | $0.5292 | |
BASE | <0.01% | $0.172184 | 2.8405 | $0.489 | |
BASE | <0.01% | $0.000992 | 492.6131 | $0.4888 | |
BASE | <0.01% | $0.030726 | 15.5708 | $0.4784 | |
BASE | <0.01% | $0.001454 | 325.4537 | $0.4731 | |
BASE | <0.01% | $0.24817 | 1.8536 | $0.46 | |
BASE | <0.01% | $0.001153 | 395.7228 | $0.4564 | |
BASE | <0.01% | $0.031095 | 14.6364 | $0.4551 | |
BASE | <0.01% | $93,666 | 0.00000467 | $0.4374 | |
BASE | <0.01% | $0.012044 | 33.2319 | $0.4002 | |
BASE | <0.01% | $0.00716 | 55.8502 | $0.3998 | |
BASE | <0.01% | $0.06541 | 5.8681 | $0.3838 | |
BASE | <0.01% | $0.000043 | 8,317.2126 | $0.3566 | |
BASE | <0.01% | $0.003416 | 102.9421 | $0.3516 | |
BASE | <0.01% | $0.00132 | 264.5337 | $0.3491 | |
BASE | <0.01% | $0.20855 | 1.6001 | $0.3337 | |
BASE | <0.01% | $0.06323 | 5.0812 | $0.3212 | |
BASE | <0.01% | $0.185086 | 1.6963 | $0.3139 | |
BASE | <0.01% | $0.324908 | 0.9337 | $0.3033 | |
BASE | <0.01% | $0.000297 | 976.6926 | $0.2899 | |
BASE | <0.01% | $0.001151 | 246.9686 | $0.2841 | |
BASE | <0.01% | $0.095284 | 2.7497 | $0.2619 | |
BASE | <0.01% | $9.38 | 0.0272 | $0.255 | |
BASE | <0.01% | $0.029243 | 8.5273 | $0.2493 | |
BASE | <0.01% | $0.504622 | 0.4923 | $0.2484 | |
BASE | <0.01% | $0.091552 | 2.7027 | $0.2474 | |
BASE | <0.01% | $0.275012 | 0.8953 | $0.2462 | |
BASE | <0.01% | $0.018635 | 12.979 | $0.2418 | |
BASE | <0.01% | $0.0036 | 65.9768 | $0.2375 | |
BASE | <0.01% | $0.49489 | 0.4569 | $0.2261 | |
BASE | <0.01% | $0.063369 | 3.5613 | $0.2256 | |
BASE | <0.01% | $0.000304 | 721.8202 | $0.2194 | |
BASE | <0.01% | $0.48254 | 0.4451 | $0.2147 | |
BASE | <0.01% | $0.000013 | 16,855.3737 | $0.2127 | |
BASE | <0.01% | $0.544427 | 0.3832 | $0.2086 | |
BASE | <0.01% | <$0.000001 | 229,446,096.4707 | $0.2065 | |
BASE | <0.01% | $0.007412 | 27.1706 | $0.2013 | |
BASE | <0.01% | $0.000307 | 641.6077 | $0.1969 | |
BASE | <0.01% | $0.000569 | 321.7787 | $0.1832 | |
BASE | <0.01% | $0.015876 | 10.3564 | $0.1644 | |
BASE | <0.01% | $2,028.26 | 0.00007217 | $0.1463 | |
BASE | <0.01% | $0.012699 | 11.1968 | $0.1421 | |
BASE | <0.01% | $0.098189 | 1.4441 | $0.1418 | |
BASE | <0.01% | $0.000235 | 594.8641 | $0.14 | |
BASE | <0.01% | <$0.000001 | 6,990,446.9624 | $0.1328 | |
BASE | <0.01% | $0.113454 | 1.1288 | $0.128 | |
BASE | <0.01% | $0.003762 | 32.897 | $0.1237 | |
BASE | <0.01% | $0.038047 | 3.2463 | $0.1235 | |
BASE | <0.01% | $1 | 0.1225 | $0.1225 | |
BASE | <0.01% | $0.000732 | 166.2995 | $0.1217 | |
BASE | <0.01% | $0.000316 | 355.9765 | $0.1126 | |
BASE | <0.01% | $0.008266 | 13.2075 | $0.1091 | |
BASE | <0.01% | <$0.000001 | 834,912.7265 | $0.1065 | |
BASE | <0.01% | $0.00741 | 14.1372 | $0.1047 | |
BASE | <0.01% | $0.001689 | 61.5124 | $0.1039 | |
BASE | <0.01% | $0.133358 | 0.7629 | $0.1017 | |
ARB | 3.23% | $0.001663 | 3,510,169.7345 | $5,838.5 | |
ARB | 1.58% | $1,815.1 | 1.5732 | $2,855.5 | |
ARB | 1.57% | $1 | 2,838.8888 | $2,838.89 | |
ARB | 1.15% | $1 | 2,070.8176 | $2,070.82 | |
ARB | 0.26% | $1 | 462.9804 | $462.98 | |
ARB | 0.23% | $93,687 | 0.00436076 | $408.55 | |
ARB | 0.14% | $1,812.34 | 0.1408 | $255.1 | |
ARB | 0.09% | $0.332403 | 468.8203 | $155.84 | |
ARB | 0.06% | $0.999709 | 114.9767 | $114.94 | |
ARB | 0.02% | $167.44 | 0.1833 | $30.69 | |
ARB | 0.02% | $15.16 | 1.9533 | $29.61 | |
ARB | 0.01% | $15.12 | 1.2355 | $18.68 | |
ARB | <0.01% | $3.51 | 3.746 | $13.15 | |
ARB | <0.01% | $93,663 | 0.00010545 | $9.88 | |
ARB | <0.01% | $2,176.69 | 0.00345274 | $7.52 | |
ARB | <0.01% | $1,809.65 | 0.00400491 | $7.25 | |
ARB | <0.01% | $2.74 | 2.5651 | $7.03 | |
ARB | <0.01% | $1 | 5.3106 | $5.31 | |
ARB | <0.01% | $1,897.03 | 0.00262933 | $4.99 | |
ARB | <0.01% | $0.215216 | 20.3793 | $4.39 | |
ARB | <0.01% | $93,271 | 0.00004669 | $4.35 | |
ARB | <0.01% | $0.278713 | 13.6759 | $3.81 | |
ARB | <0.01% | $1.01 | 3.5176 | $3.54 | |
ARB | <0.01% | $178.64 | 0.0191 | $3.41 | |
ARB | <0.01% | $0.004874 | 617.2977 | $3.01 | |
ARB | <0.01% | $0.082529 | 33.1153 | $2.73 | |
ARB | <0.01% | $6.03 | 0.4097 | $2.47 | |
ARB | <0.01% | $0.68323 | 3.1698 | $2.17 | |
ARB | <0.01% | $0.092385 | 22.7098 | $2.1 | |
ARB | <0.01% | $0.99937 | 2.0397 | $2.04 | |
ARB | <0.01% | $93,549 | 0.00002158 | $2.02 | |
ARB | <0.01% | $0.34983 | 5.3492 | $1.87 | |
ARB | <0.01% | $0.01507 | 120.2196 | $1.81 | |
ARB | <0.01% | $0.000024 | 75,208.3862 | $1.78 | |
ARB | <0.01% | $0.060935 | 29.0092 | $1.77 | |
ARB | <0.01% | $1.56 | 1.0749 | $1.68 | |
ARB | <0.01% | $93,781 | 0.00001757 | $1.65 | |
ARB | <0.01% | $0.020577 | 78.7149 | $1.62 | |
ARB | <0.01% | $0.572212 | 2.6844 | $1.54 | |
ARB | <0.01% | $0.023162 | 59.7208 | $1.38 | |
ARB | <0.01% | $1 | 1.3818 | $1.38 | |
ARB | <0.01% | $1.18 | 1.0823 | $1.28 | |
ARB | <0.01% | $0.179979 | 5.3779 | $0.9679 | |
ARB | <0.01% | $0.000009 | 103,677.2535 | $0.9507 | |
ARB | <0.01% | $5.62 | 0.158 | $0.8879 | |
ARB | <0.01% | $0.029765 | 28.2771 | $0.8416 | |
ARB | <0.01% | $0.45461 | 1.5129 | $0.6877 | |
ARB | <0.01% | $0.820871 | 0.7152 | $0.587 | |
ARB | <0.01% | $0.002099 | 273.4406 | $0.5738 | |
ARB | <0.01% | $15.03 | 0.0354 | $0.5327 | |
ARB | <0.01% | $382.63 | 0.00138109 | $0.5284 | |
ARB | <0.01% | $1,814.61 | 0.00027418 | $0.4975 | |
ARB | <0.01% | $0.999879 | 0.4941 | $0.494 | |
ARB | <0.01% | $0.999626 | 0.4558 | $0.4556 | |
ARB | <0.01% | $2.1 | 0.2129 | $0.447 | |
ARB | <0.01% | $93,706 | 0.00000457 | $0.4282 | |
ARB | <0.01% | $91,848 | 0.00000444 | $0.4078 | |
ARB | <0.01% | $0.032512 | 12.0191 | $0.3907 | |
ARB | <0.01% | $0.037255 | 10.4472 | $0.3892 | |
ARB | <0.01% | $2,041.99 | 0.0001904 | $0.3887 | |
ARB | <0.01% | $1.58 | 0.2086 | $0.3295 | |
ARB | <0.01% | $2.03 | 0.159 | $0.3227 | |
ARB | <0.01% | $1.95 | 0.1565 | $0.3051 | |
ARB | <0.01% | $0.203057 | 1.4577 | $0.2959 | |
ARB | <0.01% | $0.999937 | 0.2805 | $0.2804 | |
ARB | <0.01% | $0.007256 | 37.494 | $0.272 | |
ARB | <0.01% | $0.032845 | 8.1855 | $0.2688 | |
ARB | <0.01% | $43.55 | 0.00563574 | $0.2454 | |
ARB | <0.01% | $3.41 | 0.0704 | $0.2398 | |
ARB | <0.01% | $0.004571 | 51.4042 | $0.2349 | |
ARB | <0.01% | $0.000107 | 2,169.0862 | $0.2328 | |
ARB | <0.01% | $0.676681 | 0.3266 | $0.221 | |
ARB | <0.01% | $0.002088 | 102.0577 | $0.2131 | |
ARB | <0.01% | $0.014919 | 13.8994 | $0.2073 | |
ARB | <0.01% | $0.000016 | 11,906.6885 | $0.1888 | |
ARB | <0.01% | $0.031883 | 5.5063 | $0.1755 | |
ARB | <0.01% | $1 | 0.1604 | $0.1604 | |
ARB | <0.01% | $0.999937 | 0.1594 | $0.1594 | |
ARB | <0.01% | $0.368883 | 0.3825 | $0.141 | |
ARB | <0.01% | $0.044848 | 3.0944 | $0.1387 | |
ARB | <0.01% | $0.007187 | 15.3581 | $0.1103 | |
POL | 1.40% | $1 | 2,536.6607 | $2,536.66 | |
POL | 0.87% | $1 | 1,580.2315 | $1,580.23 | |
POL | 0.72% | $0.222119 | 5,832.7775 | $1,295.57 | |
POL | 0.45% | $1 | 816.0025 | $816 | |
POL | 0.11% | $93,622 | 0.00214402 | $200.73 | |
POL | 0.02% | $1,811.55 | 0.019 | $34.35 | |
POL | 0.02% | $0.006193 | 4,588.27 | $28.41 | |
POL | 0.01% | $1 | 25.738 | $25.74 | |
POL | 0.01% | $167.03 | 0.1275 | $21.29 | |
POL | 0.01% | $15.12 | 1.2767 | $19.3 | |
POL | <0.01% | $152.15 | 0.0794 | $12.08 | |
POL | <0.01% | $1.14 | 8.3453 | $9.51 | |
POL | <0.01% | $1.14 | 8.3453 | $9.51 | |
POL | <0.01% | $0.174864 | 29.9863 | $5.24 | |
POL | <0.01% | $0.004571 | 1,059.5758 | $4.84 | |
POL | <0.01% | $0.057753 | 78.0432 | $4.51 | |
POL | <0.01% | $4.64 | 0.9667 | $4.49 | |
POL | <0.01% | $93,549 | 0.00004597 | $4.3 | |
POL | <0.01% | $0.22248 | 19.2541 | $4.28 | |
POL | <0.01% | $0.337971 | 8.522 | $2.88 | |
POL | <0.01% | $0.004868 | 587.3118 | $2.86 | |
POL | <0.01% | $0.007047 | 396.138 | $2.79 | |
POL | <0.01% | $0.000015 | 186,488.6311 | $2.71 | |
POL | <0.01% | $0.012257 | 207.6311 | $2.54 | |
POL | <0.01% | $0.285748 | 8.2242 | $2.35 | |
POL | <0.01% | $4.92 | 0.4491 | $2.21 | |
POL | <0.01% | $0.228396 | 9.3523 | $2.14 | |
POL | <0.01% | <$0.000001 | 284,689,434.7625 | $1.71 | |
POL | <0.01% | $14.85 | 0.1143 | $1.7 | |
POL | <0.01% | $0.000327 | 4,866.4474 | $1.59 | |
POL | <0.01% | $0.760546 | 2.0385 | $1.55 | |
POL | <0.01% | $0.072581 | 18.2975 | $1.33 | |
POL | <0.01% | $0.070152 | 14.8106 | $1.04 | |
POL | <0.01% | $0.001218 | 813.1144 | $0.9904 | |
POL | <0.01% | $0.00192 | 477.4042 | $0.9166 | |
POL | <0.01% | $2,176.16 | 0.00041553 | $0.9042 | |
POL | <0.01% | $0.681493 | 1.2756 | $0.8693 | |
POL | <0.01% | $0.741803 | 1.1426 | $0.8476 | |
POL | <0.01% | $0.025354 | 31.0647 | $0.7876 | |
POL | <0.01% | $0.564786 | 1.3942 | $0.7874 | |
POL | <0.01% | $3,338.75 | 0.00022446 | $0.7494 | |
POL | <0.01% | $0.000866 | 861.667 | $0.7463 | |
POL | <0.01% | $0.300525 | 2.23 | $0.6701 | |
POL | <0.01% | $6.03 | 0.0962 | $0.58 | |
POL | <0.01% | $0.000004 | 135,901.0687 | $0.5585 | |
POL | <0.01% | $167.23 | 0.00313511 | $0.5242 | |
POL | <0.01% | $93,655 | 0.00000495 | $0.4635 | |
POL | <0.01% | $0.009628 | 46.515 | $0.4478 | |
POL | <0.01% | $0.000064 | 6,532.4869 | $0.4176 | |
POL | <0.01% | $178.64 | 0.00209745 | $0.3746 | |
POL | <0.01% | $0.028464 | 13.1404 | $0.374 | |
POL | <0.01% | $1.14 | 0.3275 | $0.3733 | |
POL | <0.01% | $0.001737 | 201.6692 | $0.3502 | |
POL | <0.01% | $0.000484 | 719.7553 | $0.3485 | |
POL | <0.01% | $0.819028 | 0.4032 | $0.3302 | |
POL | <0.01% | $0.273987 | 1.1966 | $0.3278 | |
POL | <0.01% | $1 | 0.3256 | $0.3256 | |
POL | <0.01% | $1,510.86 | 0.00021503 | $0.3248 | |
POL | <0.01% | $0.092367 | 3.2425 | $0.2994 | |
POL | <0.01% | $0.012241 | 23.517 | $0.2878 | |
POL | <0.01% | $0.000247 | 1,141.2746 | $0.2824 | |
POL | <0.01% | $1,814.61 | 0.0001465 | $0.2658 | |
POL | <0.01% | $0.000197 | 1,242.9213 | $0.2454 | |
POL | <0.01% | $4.46 | 0.0549 | $0.245 | |
POL | <0.01% | $0.034587 | 6.9952 | $0.2419 | |
POL | <0.01% | $0.035968 | 6.5684 | $0.2362 | |
POL | <0.01% | $12.72 | 0.0183 | $0.2331 | |
POL | <0.01% | $0.045114 | 4.9712 | $0.2242 | |
POL | <0.01% | $1.22 | 0.1785 | $0.2178 | |
POL | <0.01% | $0.202825 | 1.0483 | $0.2126 | |
POL | <0.01% | $22.76 | 0.00796155 | $0.1812 | |
POL | <0.01% | $15.03 | 0.012 | $0.1809 | |
POL | <0.01% | $0.001376 | 131.3136 | $0.1806 | |
POL | <0.01% | $0.25547 | 0.663 | $0.1693 | |
POL | <0.01% | $0.000002 | 68,250 | $0.1627 | |
POL | <0.01% | $43.54 | 0.00367138 | $0.1598 | |
POL | <0.01% | $0.126641 | 1.1112 | $0.1407 | |
POL | <0.01% | $0.256813 | 0.546 | $0.1402 | |
POL | <0.01% | $0.00606 | 22.2406 | $0.1347 | |
POL | <0.01% | $2.74 | 0.0491 | $0.1345 | |
POL | <0.01% | $0.018056 | 7.3006 | $0.1318 | |
POL | <0.01% | <$0.000001 | 22,785,117.9437 | $0.1253 | |
POL | <0.01% | $0.110908 | 1.1235 | $0.1246 | |
POL | <0.01% | $0.007233 | 16.9871 | $0.1228 | |
POL | <0.01% | $0.000122 | 939.9547 | $0.1144 | |
POL | <0.01% | $0.998255 | 0.1119 | $0.1117 | |
POL | <0.01% | $0.000016 | 6,873.9472 | $0.1083 | |
POL | <0.01% | $0.002277 | 44.6266 | $0.1016 | |
POL | <0.01% | $0.003451 | 29.3617 | $0.1013 | |
OP | 1.25% | $0.999968 | 2,268.0841 | $2,268.01 | |
OP | 0.60% | $1 | 1,092.3715 | $1,092.37 | |
OP | 0.60% | $1,816.42 | 0.5957 | $1,081.98 | |
OP | 0.21% | $0.999968 | 387.6499 | $387.64 | |
OP | 0.11% | $0.806439 | 246.9079 | $199.12 | |
OP | 0.06% | $0.761699 | 150.0792 | $114.32 | |
OP | 0.05% | $93,646 | 0.00091527 | $85.71 | |
OP | 0.05% | $1,812.34 | 0.0465 | $84.26 | |
OP | <0.01% | $2,176.63 | 0.00716216 | $15.59 | |
OP | <0.01% | $0.868253 | 12.7728 | $11.09 | |
OP | <0.01% | $1 | 10.4918 | $10.49 | |
OP | <0.01% | $15.15 | 0.5911 | $8.95 | |
OP | <0.01% | $167.2 | 0.0403 | $6.73 | |
OP | <0.01% | $0.742239 | 8.2222 | $6.1 | |
OP | <0.01% | $0.050329 | 79.8589 | $4.02 | |
OP | <0.01% | $2.74 | 1.4524 | $3.98 | |
OP | <0.01% | $1,897.26 | 0.00123783 | $2.35 | |
OP | <0.01% | $0.719269 | 3.1103 | $2.24 | |
OP | <0.01% | $93,711 | 0.00002159 | $2.02 | |
OP | <0.01% | $1 | 0.911 | $0.9119 | |
OP | <0.01% | $0.203068 | 2.5138 | $0.5104 | |
OP | <0.01% | $0.025127 | 20.0983 | $0.505 | |
OP | <0.01% | $2,042.56 | 0.0002442 | $0.4987 | |
OP | <0.01% | $1,725.19 | 0.00027607 | $0.4762 | |
OP | <0.01% | $0.999362 | 0.4274 | $0.4271 | |
OP | <0.01% | $0.082563 | 4.9983 | $0.4126 | |
OP | <0.01% | $0.050329 | 7.8073 | $0.3929 | |
OP | <0.01% | $1.18 | 0.2637 | $0.3111 | |
OP | <0.01% | $2,029.06 | 0.0001151 | $0.2335 | |
OP | <0.01% | $15.03 | 0.0153 | $0.2306 | |
OP | <0.01% | $1.06 | 0.1479 | $0.1573 | |
OP | <0.01% | $1 | 0.1346 | $0.1349 | |
OP | <0.01% | $1.02 | 0.127 | $0.1299 | |
OP | <0.01% | $1,449.39 | 0.00008227 | $0.1192 | |
OP | <0.01% | $0.322962 | 0.3254 | $0.105 | |
AVAX | 0.82% | $0.999986 | 1,477.5458 | $1,477.53 | |
AVAX | 0.56% | $22.78 | 44.4948 | $1,013.74 | |
AVAX | 0.12% | $1 | 214.5349 | $214.56 | |
AVAX | 0.04% | $1 | 64.536 | $64.54 | |
AVAX | 0.03% | $0.201986 | 259.3317 | $52.38 | |
AVAX | 0.03% | $0.000004 | 11,140,034.9721 | $46.23 | |
AVAX | 0.02% | $1,812.33 | 0.0235 | $42.55 | |
AVAX | 0.02% | $93,823 | 0.00042475 | $39.85 | |
AVAX | <0.01% | $22.74 | 0.5457 | $12.41 | |
AVAX | <0.01% | $0.000001 | 8,797,901.7071 | $6.33 | |
AVAX | <0.01% | $93,666 | 0.00005064 | $4.74 | |
AVAX | <0.01% | $15.1 | 0.2675 | $4.04 | |
AVAX | <0.01% | $167.63 | 0.0134 | $2.25 | |
AVAX | <0.01% | $0.000588 | 3,475.1875 | $2.04 | |
AVAX | <0.01% | $0.060598 | 32.5165 | $1.97 | |
AVAX | <0.01% | $15.18 | 0.1066 | $1.62 | |
AVAX | <0.01% | $0.999986 | 1.5465 | $1.55 | |
AVAX | <0.01% | $178.44 | 0.00640031 | $1.14 | |
AVAX | <0.01% | $3.49 | 0.3094 | $1.08 | |
AVAX | <0.01% | $1 | 0.8528 | $0.8528 | |
AVAX | <0.01% | $0.147771 | 5.7483 | $0.8494 | |
AVAX | <0.01% | $0.999937 | 0.5592 | $0.5591 | |
AVAX | <0.01% | $0.008042 | 61.5114 | $0.4946 | |
AVAX | <0.01% | $0.009056 | 52.1588 | $0.4723 | |
AVAX | <0.01% | $0.004982 | 72.8567 | $0.3629 | |
AVAX | <0.01% | $0.999638 | 0.3237 | $0.3236 | |
AVAX | <0.01% | <$0.000001 | 33,989,918.4134 | $0.2821 | |
AVAX | <0.01% | $0.00034 | 758.1653 | $0.2577 | |
AVAX | <0.01% | $2.74 | 0.0832 | $0.2278 | |
AVAX | <0.01% | <$0.000001 | 2,714,238.8286 | $0.1813 | |
AVAX | <0.01% | $15.12 | 0.00943768 | $0.1426 | |
AVAX | <0.01% | $93,666 | 0.0000014 | $0.1311 | |
AVAX | <0.01% | $0.008091 | 14.8716 | $0.1203 | |
UNI | 0.02% | $1,815.67 | 0.0208 | $37.81 | |
UNI | <0.01% | $0.999994 | 16.2077 | $16.21 |
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.