Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Latest 25 from a total of 139 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Wrap Eth | 22648095 | 2 hrs ago | IN | 0 ETH | 0.00006088 | ||||
Snwap | 22644542 | 14 hrs ago | IN | 0 ETH | 0.0004286 | ||||
Wrap Eth | 22644540 | 14 hrs ago | IN | 0 ETH | 0.00009924 | ||||
Snwap Multiple | 22641042 | 26 hrs ago | IN | 0 ETH | 0.00207952 | ||||
Snwap | 22641038 | 26 hrs ago | IN | 0 ETH | 0.00236165 | ||||
Wrap Eth | 22641037 | 26 hrs ago | IN | 0 ETH | 0.00054542 | ||||
Snwap | 22637394 | 38 hrs ago | IN | 0 ETH | 0.00024416 | ||||
Wrap Eth | 22637392 | 38 hrs ago | IN | 0 ETH | 0.00005153 | ||||
Snwap Multiple | 22633826 | 2 days ago | IN | 0 ETH | 0.00196795 | ||||
Snwap Multiple | 22633824 | 2 days ago | IN | 0 ETH | 0.0013202 | ||||
Snwap Multiple | 22633820 | 2 days ago | IN | 0 ETH | 0.00144954 | ||||
Wrap Eth | 22633819 | 2 days ago | IN | 0 ETH | 0.00034099 | ||||
Wrap Eth | 22630255 | 2 days ago | IN | 0 ETH | 0.00006283 | ||||
Snwap | 22626700 | 3 days ago | IN | 0 ETH | 0.00066632 | ||||
Wrap Eth | 22626699 | 3 days ago | IN | 0 ETH | 0.00012613 | ||||
Snwap | 22623118 | 3 days ago | IN | 0 ETH | 0.00030131 | ||||
Wrap Eth | 22619549 | 4 days ago | IN | 0 ETH | 0.00011482 | ||||
Snwap Multiple | 22615982 | 4 days ago | IN | 0 ETH | 0.00036057 | ||||
Wrap Eth | 22615981 | 4 days ago | IN | 0 ETH | 0.00007834 | ||||
Snwap | 22608846 | 5 days ago | IN | 0 ETH | 0.00020452 | ||||
Snwap | 22608841 | 5 days ago | IN | 0 ETH | 0.00022436 | ||||
Wrap Eth | 22608840 | 5 days ago | IN | 0 ETH | 0.00004279 | ||||
Wrap Eth | 22605257 | 6 days ago | IN | 0 ETH | 0.00003852 | ||||
Snwap | 22601687 | 6 days ago | IN | 0 ETH | 0.00012763 | ||||
Snwap Multiple | 22598123 | 7 days ago | IN | 0 ETH | 0.00068543 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 22648763 | 28 mins ago | 6 wei | ||||
Transfer | 22648751 | 31 mins ago | 0.00046682 ETH | ||||
Transfer | 22648750 | 31 mins ago | 0.00001014 ETH | ||||
Transfer | 22648732 | 34 mins ago | 2 wei | ||||
Transfer | 22648709 | 39 mins ago | 0.00265539 ETH | ||||
Transfer | 22648679 | 45 mins ago | 3 wei | ||||
Transfer | 22648669 | 47 mins ago | 0.00000598 ETH | ||||
Transfer | 22648636 | 54 mins ago | 0.0000001 ETH | ||||
Transfer | 22648626 | 56 mins ago | 0.00065493 ETH | ||||
Transfer | 22648589 | 1 hr ago | 0.00066409 ETH | ||||
Transfer | 22648589 | 1 hr ago | 7 wei | ||||
Transfer | 22648579 | 1 hr ago | 0.00064734 ETH | ||||
Transfer | 22648570 | 1 hr ago | 92 wei | ||||
Transfer | 22648524 | 1 hr ago | 34 wei | ||||
Transfer | 22648498 | 1 hr ago | 0.00000048 ETH | ||||
Transfer | 22648488 | 1 hr ago | 0.00460546 ETH | ||||
Transfer | 22648473 | 1 hr ago | 0.01660608 ETH | ||||
Transfer | 22648353 | 1 hr ago | 0 ETH | ||||
Transfer | 22648268 | 2 hrs ago | 13 wei | ||||
Transfer | 22648259 | 2 hrs ago | 0 ETH | ||||
Transfer | 22648148 | 2 hrs ago | 0 ETH | ||||
Transfer | 22648127 | 2 hrs ago | 0.00000825 ETH | ||||
Transfer | 22648095 | 2 hrs ago | 0.06851316 ETH | ||||
Transfer | 22648078 | 2 hrs ago | 0.00004338 ETH | ||||
Transfer | 22648054 | 2 hrs ago | 15 wei |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xde725989...D581d5667 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
TokenChwomper
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.8.0; import "interfaces/IRedSnwapper.sol"; import "interfaces/IERC20.sol"; import "./Auth.sol"; /// @title TokenChwomper 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 TokenChwomper is Auth { address public immutable weth; IRedSnwapper public redSnwapper; bytes4 private constant TRANSFER_SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)'))); error TransferFailed(); constructor( address _operator, address _redSnwapper, address _weth ) Auth(_operator) { // initial owner is msg.sender redSnwapper = IRedSnwapper(_redSnwapper); weth = _weth; } /// @notice Updates the RedSnwapper to be used for swapping tokens /// @dev make sure new RedSnwapper is backwards compatiable (should be) /// @param _redSnwapper The address of the new route processor function updateRedSnwapper(address _redSnwapper) external onlyOwner { redSnwapper = IRedSnwapper(_redSnwapper); } /// @notice Swaps tokens via the configured RedSnwapper /// @dev Must be called by a trusted operator /// @param tokenIn Address of the input token /// @param amountIn Amount of the input token to swap /// @param recipient Address to receive the output tokens /// @param tokenOut Address of the output token /// @param amountOutMin Minimum acceptable amount of output tokens (slippage protection) /// @param executor Address of the executor contract to perform the swap logic /// @param executorData Encoded data for the executor call /// @return amountOut The actual amount of output tokens received function snwap( address tokenIn, uint256 amountIn, address recipient, address tokenOut, uint256 amountOutMin, address executor, bytes calldata executorData ) external onlyTrusted returns (uint256 amountOut) { // Pre-fund RedSnwapper with input tokens _safeTransfer(tokenIn, address(redSnwapper), amountIn); // Execute snwap with zero amountIn amountOut = redSnwapper.snwap( tokenIn, 0, recipient, tokenOut, amountOutMin, executor, executorData ); } /// @notice Performs multiple swaps via the configured RedSnwapper /// @dev Must be called by a trusted operator /// @param inputTokens Array of input token parameters /// @param outputTokens Array of output token requirements /// @param executors Array of executor calls to perform /// @return amountOut Array of actual amounts of output tokens received function snwapMultiple( IRedSnwapper.InputToken[] calldata inputTokens, IRedSnwapper.OutputToken[] calldata outputTokens, IRedSnwapper.Executor[] calldata executors ) external onlyTrusted returns (uint256[] memory amountOut) { uint256 length = inputTokens.length; IRedSnwapper.InputToken[] memory _inputTokens = new IRedSnwapper.InputToken[](length); for (uint256 i = 0; i < length; ++i) { // Pre-fund RedSnwapper with input tokens _safeTransfer( inputTokens[i].token, address(redSnwapper), inputTokens[i].amountIn ); // Build _inputTokens with zero amountIn _inputTokens[i] = IRedSnwapper.InputToken({ token: inputTokens[i].token, amountIn: 0, transferTo: inputTokens[i].transferTo }); } // Execute snwapMultiple amountOut = redSnwapper.snwapMultiple( _inputTokens, outputTokens, executors ); } /// @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: 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: UNLICENSED pragma solidity >= 0.8.0; interface IRedSnwapper { struct InputToken { address token; uint256 amountIn; address transferTo; } struct OutputToken { address token; address recipient; uint256 amountOutMin; } struct Executor { address executor; uint256 value; bytes data; } function snwap( address tokenIn, uint256 amountIn, address recipient, address tokenOut, uint256 amountOutMin, address executor, bytes calldata executorData ) external returns (uint256 amountOut); function snwapMultiple( InputToken[] calldata inputTokens, OutputToken[] calldata outputTokens, Executor[] calldata executors ) external returns (uint256[] memory amountOut); }
// 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 (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 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; } }
// 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); } }
{ "optimizer": { "enabled": true, "runs": 1000000 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"address","name":"_redSnwapper","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":[],"name":"redSnwapper","outputs":[{"internalType":"contract IRedSnwapper","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address","name":"executor","type":"address"},{"internalType":"bytes","name":"executorData","type":"bytes"}],"name":"snwap","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"transferTo","type":"address"}],"internalType":"struct IRedSnwapper.InputToken[]","name":"inputTokens","type":"tuple[]"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"}],"internalType":"struct IRedSnwapper.OutputToken[]","name":"outputTokens","type":"tuple[]"},{"components":[{"internalType":"address","name":"executor","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct IRedSnwapper.Executor[]","name":"executors","type":"tuple[]"}],"name":"snwapMultiple","outputs":[{"internalType":"uint256[]","name":"amountOut","type":"uint256[]"}],"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":"_redSnwapper","type":"address"}],"name":"updateRedSnwapper","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
0x60a06040523480156200001157600080fd5b50604051620018693803806200186983398101604081905262000034916200014d565b826200004033620000c2565b6001600160a01b038116600081815260026020908152604091829020805460ff1916600190811790915591519182527f878d105ed19c01e992a54459c2f04ba19432ac45600b42ce340d034272207436910160405180910390a250600380546001600160a01b0319166001600160a01b03938416179055166080525062000197565b600180546001600160a01b0319169055620000dd81620000e0565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200014857600080fd5b919050565b6000806000606084860312156200016357600080fd5b6200016e8462000130565b92506200017e6020850162000130565b91506200018e6040850162000130565b90509250925092565b6080516116af620001ba6000396000818161010a015261067e01526116af6000f3fe6080604052600436106100ec5760003560e01c8063abde7d2e1161008a578063e30c397811610059578063e30c3978146102bd578063f1281c3f146102e8578063f2fde38b14610315578063f32a12ac1461033557600080fd5b8063abde7d2e1461023b578063b081b4eb1461025b578063d33721a514610270578063d9caed121461029d57600080fd5b80636e9821c2116100c65780636e9821c2146101a6578063715018a6146101e657806379ba5097146101fb5780638da5cb5b1461021057600080fd5b80633fc8cef3146100f857806354a0af17146101565780635f3bd1c81461017857600080fd5b366100f357005b600080fd5b34801561010457600080fd5b5061012c7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561016257600080fd5b50610176610171366004610e7e565b610355565b005b34801561018457600080fd5b50610198610193366004610f4b565b6103db565b60405190815260200161014d565b3480156101b257600080fd5b506101d66101c1366004611013565b60026020526000908152604090205460ff1681565b604051901515815260200161014d565b3480156101f257600080fd5b506101766104fe565b34801561020757600080fd5b50610176610512565b34801561021c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661012c565b34801561024757600080fd5b50610176610256366004611013565b6105cc565b34801561026757600080fd5b5061017661061b565b34801561027c57600080fd5b5061029061028b366004611081565b6106df565b60405161014d919061114a565b3480156102a957600080fd5b506101766102b836600461118e565b6109ad565b3480156102c957600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff1661012c565b3480156102f457600080fd5b5060035461012c9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561032157600080fd5b50610176610330366004611013565b6109fe565b34801561034157600080fd5b506101766103503660046111d8565b610aae565b61035d610b40565b60008373ffffffffffffffffffffffffffffffffffffffff168383604051610385919061120f565b60006040518083038185875af1925050503d80600081146103c2576040519150601f19603f3d011682016040523d82523d6000602084013e6103c7565b606091505b50509050806103d557600080fd5b50505050565b3360009081526002602052604081205460ff16610424576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600354610449908a9073ffffffffffffffffffffffffffffffffffffffff168a610bc1565b6003546040517f5f3bd1c800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690635f3bd1c8906104ae908c906000908c908c908c908c908c908c90600401611287565b6020604051808303816000875af11580156104cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f191906112eb565b9998505050505050505050565b610506610b40565b6105106000610d36565b565b600154339073ffffffffffffffffffffffffffffffffffffffff1681146105c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105c981610d36565b50565b6105d4610b40565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3360009081526002602052604090205460ff16610664576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016904790600081818185875af1925050503d80600081146106da576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b505050565b3360009081526002602052604090205460609060ff1661072b576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8560008167ffffffffffffffff81111561074757610747610e00565b6040519080825280602002602001820160405280156107b057816020015b60408051606081018252600080825260208083018290529282015282527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9092019101816107655790505b50905060005b828110156108e9576108238a8a838181106107d3576107d3611304565b6107e99260206060909202019081019150611013565b60035473ffffffffffffffffffffffffffffffffffffffff168c8c8581811061081457610814611304565b90506060020160200135610bc1565b60405180606001604052808b8b8481811061084057610840611304565b6108569260206060909202019081019150611013565b73ffffffffffffffffffffffffffffffffffffffff168152602001600081526020018b8b8481811061088a5761088a611304565b90506060020160400160208101906108a29190611013565b73ffffffffffffffffffffffffffffffffffffffff168152508282815181106108cd576108cd611304565b6020026020010181905250806108e290611333565b90506107b6565b506003546040517fd33721a500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063d33721a5906109489084908b908b908b908b90600401611523565b6000604051808303816000875af1158015610967573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526104f191908101906115c2565b6109b5610b40565b73ffffffffffffffffffffffffffffffffffffffff8316156109dc576106da838383610bc1565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610385565b610a06610b40565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155610a6960005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610ab6610b40565b73ffffffffffffffffffffffffffffffffffffffff821660008181526002602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f878d105ed19c01e992a54459c2f04ba19432ac45600b42ce340d034272207436910160405180910390a25050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b7565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905291516000928392871691610c88919061120f565b6000604051808303816000865af19150503d8060008114610cc5576040519150601f19603f3d011682016040523d82523d6000602084013e610cca565b606091505b5091509150811580610cf85750805115801590610cf8575080806020019051810190610cf6919061165c565b155b15610d2f576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556105c9816000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610dfb57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715610e7657610e76610e00565b604052919050565b600080600060608486031215610e9357600080fd5b610e9c84610dd7565b92506020808501359250604085013567ffffffffffffffff80821115610ec157600080fd5b818701915087601f830112610ed557600080fd5b813581811115610ee757610ee7610e00565b610f17847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601610e2f565b91508082528884828501011115610f2d57600080fd5b80848401858401376000848284010152508093505050509250925092565b60008060008060008060008060e0898b031215610f6757600080fd5b610f7089610dd7565b975060208901359650610f8560408a01610dd7565b9550610f9360608a01610dd7565b945060808901359350610fa860a08a01610dd7565b925060c089013567ffffffffffffffff80821115610fc557600080fd5b818b0191508b601f830112610fd957600080fd5b813581811115610fe857600080fd5b8c6020828501011115610ffa57600080fd5b6020830194508093505050509295985092959890939650565b60006020828403121561102557600080fd5b61102e82610dd7565b9392505050565b60008083601f84011261104757600080fd5b50813567ffffffffffffffff81111561105f57600080fd5b60208301915083602060608302850101111561107a57600080fd5b9250929050565b6000806000806000806060878903121561109a57600080fd5b863567ffffffffffffffff808211156110b257600080fd5b6110be8a838b01611035565b909850965060208901359150808211156110d757600080fd5b6110e38a838b01611035565b909650945060408901359150808211156110fc57600080fd5b818901915089601f83011261111057600080fd5b81358181111561111f57600080fd5b8a60208260051b850101111561113457600080fd5b6020830194508093505050509295509295509295565b6020808252825182820181905260009190848201906040850190845b8181101561118257835183529284019291840191600101611166565b50909695505050505050565b6000806000606084860312156111a357600080fd5b6111ac84610dd7565b92506111ba60208501610dd7565b9150604084013590509250925092565b80151581146105c957600080fd5b600080604083850312156111eb57600080fd5b6111f483610dd7565b91506020830135611204816111ca565b809150509250929050565b6000825160005b818110156112305760208186018101518583015201611216565b506000920191825250919050565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b600073ffffffffffffffffffffffffffffffffffffffff808b1683528960208401528089166040840152808816606084015286608084015280861660a08401525060e060c08301526112dd60e08301848661123e565b9a9950505050505050505050565b6000602082840312156112fd57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361138b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b5060010190565b8183526000602080850194508260005b858110156113fa5773ffffffffffffffffffffffffffffffffffffffff806113c984610dd7565b168852806113d8858501610dd7565b16888501525060408281013590880152606096870196909101906001016113a2565b509495945050505050565b81835260006020808501808196508560051b810191508460005b8781101561151657828403895281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa188360301811261145e57600080fd5b8701606073ffffffffffffffffffffffffffffffffffffffff61148083610dd7565b16865286820135878701526040808301357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18436030181126114c157600080fd5b90920187810192903567ffffffffffffffff8111156114df57600080fd5b8036038413156114ee57600080fd5b8282890152611500838901828661123e565b9c89019c9750505092860192505060010161141f565b5091979650505050505050565b60608082528651828201819052600091906020906080850190828b01855b8281101561158a578151805173ffffffffffffffffffffffffffffffffffffffff9081168652868201518787015260409182015116908501529285019290840190600101611541565b5050508481038286015261159f81898b611392565b9250505082810360408401526115b6818587611405565b98975050505050505050565b600060208083850312156115d557600080fd5b825167ffffffffffffffff808211156115ed57600080fd5b818501915085601f83011261160157600080fd5b81518181111561161357611613610e00565b8060051b9150611624848301610e2f565b818152918301840191848101908884111561163e57600080fd5b938501935b838510156115b657845182529385019390850190611643565b60006020828403121561166e57600080fd5b815161102e816111ca56fea2646970667358221220a143fdce62eb0d88e97109af33cbec8d715feb8dc75088e06e23f799ddb8877764736f6c634300081400330000000000000000000000004bb4c1b0745ef7b4642feeccd0740dec417ca0a0000000000000000000000000ac4c6e212a361c968f1725b4d055b47e63f80b75000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x6080604052600436106100ec5760003560e01c8063abde7d2e1161008a578063e30c397811610059578063e30c3978146102bd578063f1281c3f146102e8578063f2fde38b14610315578063f32a12ac1461033557600080fd5b8063abde7d2e1461023b578063b081b4eb1461025b578063d33721a514610270578063d9caed121461029d57600080fd5b80636e9821c2116100c65780636e9821c2146101a6578063715018a6146101e657806379ba5097146101fb5780638da5cb5b1461021057600080fd5b80633fc8cef3146100f857806354a0af17146101565780635f3bd1c81461017857600080fd5b366100f357005b600080fd5b34801561010457600080fd5b5061012c7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561016257600080fd5b50610176610171366004610e7e565b610355565b005b34801561018457600080fd5b50610198610193366004610f4b565b6103db565b60405190815260200161014d565b3480156101b257600080fd5b506101d66101c1366004611013565b60026020526000908152604090205460ff1681565b604051901515815260200161014d565b3480156101f257600080fd5b506101766104fe565b34801561020757600080fd5b50610176610512565b34801561021c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661012c565b34801561024757600080fd5b50610176610256366004611013565b6105cc565b34801561026757600080fd5b5061017661061b565b34801561027c57600080fd5b5061029061028b366004611081565b6106df565b60405161014d919061114a565b3480156102a957600080fd5b506101766102b836600461118e565b6109ad565b3480156102c957600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff1661012c565b3480156102f457600080fd5b5060035461012c9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561032157600080fd5b50610176610330366004611013565b6109fe565b34801561034157600080fd5b506101766103503660046111d8565b610aae565b61035d610b40565b60008373ffffffffffffffffffffffffffffffffffffffff168383604051610385919061120f565b60006040518083038185875af1925050503d80600081146103c2576040519150601f19603f3d011682016040523d82523d6000602084013e6103c7565b606091505b50509050806103d557600080fd5b50505050565b3360009081526002602052604081205460ff16610424576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600354610449908a9073ffffffffffffffffffffffffffffffffffffffff168a610bc1565b6003546040517f5f3bd1c800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690635f3bd1c8906104ae908c906000908c908c908c908c908c908c90600401611287565b6020604051808303816000875af11580156104cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f191906112eb565b9998505050505050505050565b610506610b40565b6105106000610d36565b565b600154339073ffffffffffffffffffffffffffffffffffffffff1681146105c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105c981610d36565b50565b6105d4610b40565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3360009081526002602052604090205460ff16610664576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216904790600081818185875af1925050503d80600081146106da576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b505050565b3360009081526002602052604090205460609060ff1661072b576040517fcf1119ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8560008167ffffffffffffffff81111561074757610747610e00565b6040519080825280602002602001820160405280156107b057816020015b60408051606081018252600080825260208083018290529282015282527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9092019101816107655790505b50905060005b828110156108e9576108238a8a838181106107d3576107d3611304565b6107e99260206060909202019081019150611013565b60035473ffffffffffffffffffffffffffffffffffffffff168c8c8581811061081457610814611304565b90506060020160200135610bc1565b60405180606001604052808b8b8481811061084057610840611304565b6108569260206060909202019081019150611013565b73ffffffffffffffffffffffffffffffffffffffff168152602001600081526020018b8b8481811061088a5761088a611304565b90506060020160400160208101906108a29190611013565b73ffffffffffffffffffffffffffffffffffffffff168152508282815181106108cd576108cd611304565b6020026020010181905250806108e290611333565b90506107b6565b506003546040517fd33721a500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063d33721a5906109489084908b908b908b908b90600401611523565b6000604051808303816000875af1158015610967573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526104f191908101906115c2565b6109b5610b40565b73ffffffffffffffffffffffffffffffffffffffff8316156109dc576106da838383610bc1565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610385565b610a06610b40565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155610a6960005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610ab6610b40565b73ffffffffffffffffffffffffffffffffffffffff821660008181526002602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f878d105ed19c01e992a54459c2f04ba19432ac45600b42ce340d034272207436910160405180910390a25050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b7565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905291516000928392871691610c88919061120f565b6000604051808303816000865af19150503d8060008114610cc5576040519150601f19603f3d011682016040523d82523d6000602084013e610cca565b606091505b5091509150811580610cf85750805115801590610cf8575080806020019051810190610cf6919061165c565b155b15610d2f576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556105c9816000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610dfb57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715610e7657610e76610e00565b604052919050565b600080600060608486031215610e9357600080fd5b610e9c84610dd7565b92506020808501359250604085013567ffffffffffffffff80821115610ec157600080fd5b818701915087601f830112610ed557600080fd5b813581811115610ee757610ee7610e00565b610f17847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601610e2f565b91508082528884828501011115610f2d57600080fd5b80848401858401376000848284010152508093505050509250925092565b60008060008060008060008060e0898b031215610f6757600080fd5b610f7089610dd7565b975060208901359650610f8560408a01610dd7565b9550610f9360608a01610dd7565b945060808901359350610fa860a08a01610dd7565b925060c089013567ffffffffffffffff80821115610fc557600080fd5b818b0191508b601f830112610fd957600080fd5b813581811115610fe857600080fd5b8c6020828501011115610ffa57600080fd5b6020830194508093505050509295985092959890939650565b60006020828403121561102557600080fd5b61102e82610dd7565b9392505050565b60008083601f84011261104757600080fd5b50813567ffffffffffffffff81111561105f57600080fd5b60208301915083602060608302850101111561107a57600080fd5b9250929050565b6000806000806000806060878903121561109a57600080fd5b863567ffffffffffffffff808211156110b257600080fd5b6110be8a838b01611035565b909850965060208901359150808211156110d757600080fd5b6110e38a838b01611035565b909650945060408901359150808211156110fc57600080fd5b818901915089601f83011261111057600080fd5b81358181111561111f57600080fd5b8a60208260051b850101111561113457600080fd5b6020830194508093505050509295509295509295565b6020808252825182820181905260009190848201906040850190845b8181101561118257835183529284019291840191600101611166565b50909695505050505050565b6000806000606084860312156111a357600080fd5b6111ac84610dd7565b92506111ba60208501610dd7565b9150604084013590509250925092565b80151581146105c957600080fd5b600080604083850312156111eb57600080fd5b6111f483610dd7565b91506020830135611204816111ca565b809150509250929050565b6000825160005b818110156112305760208186018101518583015201611216565b506000920191825250919050565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b600073ffffffffffffffffffffffffffffffffffffffff808b1683528960208401528089166040840152808816606084015286608084015280861660a08401525060e060c08301526112dd60e08301848661123e565b9a9950505050505050505050565b6000602082840312156112fd57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361138b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b5060010190565b8183526000602080850194508260005b858110156113fa5773ffffffffffffffffffffffffffffffffffffffff806113c984610dd7565b168852806113d8858501610dd7565b16888501525060408281013590880152606096870196909101906001016113a2565b509495945050505050565b81835260006020808501808196508560051b810191508460005b8781101561151657828403895281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa188360301811261145e57600080fd5b8701606073ffffffffffffffffffffffffffffffffffffffff61148083610dd7565b16865286820135878701526040808301357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18436030181126114c157600080fd5b90920187810192903567ffffffffffffffff8111156114df57600080fd5b8036038413156114ee57600080fd5b8282890152611500838901828661123e565b9c89019c9750505092860192505060010161141f565b5091979650505050505050565b60608082528651828201819052600091906020906080850190828b01855b8281101561158a578151805173ffffffffffffffffffffffffffffffffffffffff9081168652868201518787015260409182015116908501529285019290840190600101611541565b5050508481038286015261159f81898b611392565b9250505082810360408401526115b6818587611405565b98975050505050505050565b600060208083850312156115d557600080fd5b825167ffffffffffffffff808211156115ed57600080fd5b818501915085601f83011261160157600080fd5b81518181111561161357611613610e00565b8060051b9150611624848301610e2f565b818152918301840191848101908884111561163e57600080fd5b938501935b838510156115b657845182529385019390850190611643565b60006020828403121561166e57600080fd5b815161102e816111ca56fea2646970667358221220a143fdce62eb0d88e97109af33cbec8d715feb8dc75088e06e23f799ddb8877764736f6c63430008140033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 99.68% | $0.004571 | 811,671,042,933.14 | $3,710,258,341.59 | |
BSC | <0.01% | $1 | 6,974.3612 | $6,974.39 | |
BSC | <0.01% | $1 | 1,023.2626 | $1,024.29 | |
BSC | <0.01% | $0.000324 | 92,390.3508 | $29.97 | |
BSC | <0.01% | $0.077887 | 377.7714 | $29.42 | |
BSC | <0.01% | $643.54 | 0.0197 | $12.69 | |
BSC | <0.01% | $0.003601 | 3,235.5203 | $11.65 | |
BSC | <0.01% | $104,362.62 | 0.00009506 | $9.92 | |
BSC | <0.01% | $0.049382 | 154.3935 | $7.62 | |
BSC | <0.01% | $642.77 | 0.00827021 | $5.32 | |
BSC | <0.01% | <$0.000001 | 2,422,031,809.0873 | $3.2 | |
BSC | <0.01% | $2.31 | 1.3211 | $3.05 | |
BSC | <0.01% | $0.070005 | 42.5683 | $2.98 | |
BSC | <0.01% | $0.193343 | 13.9053 | $2.69 | |
BSC | <0.01% | $0.05355 | 49.5553 | $2.65 | |
BSC | <0.01% | $2,476.74 | 0.00106493 | $2.64 | |
BSC | <0.01% | $1 | 2.5341 | $2.54 | |
BSC | <0.01% | $0.046359 | 52.8468 | $2.45 | |
BSC | <0.01% | $0.004558 | 433.2593 | $1.97 | |
BSC | <0.01% | <$0.000001 | 17,406,773.7648 | $1.97 | |
BSC | <0.01% | $0.048411 | 40.06 | $1.94 | |
BSC | <0.01% | $1 | 1.3856 | $1.39 | |
BSC | <0.01% | $4.01 | 0.245 | $0.9822 | |
BSC | <0.01% | $250.48 | 0.0038348 | $0.9605 | |
BSC | <0.01% | $148.27 | 0.00627452 | $0.9303 | |
BSC | <0.01% | $0.002094 | 440.2329 | $0.9218 | |
BSC | <0.01% | $0.482691 | 1.7892 | $0.8636 | |
BSC | <0.01% | $0.999856 | 0.8612 | $0.8611 | |
BSC | <0.01% | $0.000089 | 8,652.0747 | $0.7684 | |
BSC | <0.01% | $0.000662 | 921.5473 | $0.6103 | |
BSC | <0.01% | $63.62 | 0.00943056 | $0.5999 | |
BSC | <0.01% | $0.000011 | 51,888.4458 | $0.5754 | |
BSC | <0.01% | $0.179116 | 2.646 | $0.4739 | |
BSC | <0.01% | $87.17 | 0.00515622 | $0.4494 | |
BSC | <0.01% | $1 | 0.4311 | $0.431 | |
BSC | <0.01% | $0.020436 | 21.0771 | $0.4307 | |
BSC | <0.01% | $0.00909 | 46.3244 | $0.4211 | |
BSC | <0.01% | $19.67 | 0.0203 | $0.3991 | |
BSC | <0.01% | $2.32 | 0.1716 | $0.3976 | |
BSC | <0.01% | $11.93 | 0.029 | $0.3454 | |
BSC | <0.01% | $3.89 | 0.083 | $0.3226 | |
BSC | <0.01% | $5.99 | 0.0539 | $0.3223 | |
BSC | <0.01% | $0.65431 | 0.4875 | $0.3189 | |
BSC | <0.01% | $0.999524 | 0.3039 | $0.3037 | |
BSC | <0.01% | $0.002718 | 85.9206 | $0.2335 | |
BSC | <0.01% | $0.000003 | 64,681.3647 | $0.2179 | |
BSC | <0.01% | $0.669503 | 0.2521 | $0.1687 | |
BSC | <0.01% | $0.32165 | 0.4614 | $0.1484 | |
BSC | <0.01% | $0.048884 | 2.7905 | $0.1364 | |
BSC | <0.01% | $25.21 | 0.0050129 | $0.1263 | |
BSC | <0.01% | $0.068251 | 1.7859 | $0.1218 | |
BSC | <0.01% | $0.000007 | 17,917.3728 | $0.1164 | |
BSC | <0.01% | $0.024041 | 4.6739 | $0.1123 | |
BASE | 0.31% | $0.151818 | 76,853,770.3379 | $11,667,785.71 | |
BASE | <0.01% | $0.999805 | 22,881.2371 | $22,876.78 | |
BASE | <0.01% | $0.02752 | 17,794.2745 | $489.7 | |
BASE | <0.01% | $0.001069 | 146,979.1053 | $157.08 | |
BASE | <0.01% | $0.000201 | 659,484.993 | $132.6 | |
BASE | <0.01% | $0.001058 | 94,315.6911 | $99.82 | |
BASE | <0.01% | $0.100271 | 421.095 | $42.22 | |
BASE | <0.01% | $0.013977 | 2,653.5215 | $37.09 | |
BASE | <0.01% | $0.047082 | 404.8948 | $19.06 | |
BASE | <0.01% | $2,682.73 | 0.00675634 | $18.13 | |
BASE | <0.01% | $0.000498 | 34,379.9252 | $17.11 | |
BASE | <0.01% | $0.078735 | 210.2603 | $16.55 | |
BASE | <0.01% | $1 | 16.1768 | $16.21 | |
BASE | <0.01% | $1.08 | 14.371 | $15.56 | |
BASE | <0.01% | $1.65 | 8.5702 | $14.14 | |
BASE | <0.01% | $104,551 | 0.00013498 | $14.11 | |
BASE | <0.01% | $1.14 | 11.2991 | $12.88 | |
BASE | <0.01% | $0.205941 | 58.3438 | $12.02 | |
BASE | <0.01% | $2.73 | 4.2546 | $11.62 | |
BASE | <0.01% | $2,730.89 | 0.00346136 | $9.45 | |
BASE | <0.01% | $1.84 | 5.0974 | $9.38 | |
BASE | <0.01% | $0.000019 | 502,729.8732 | $9.33 | |
BASE | <0.01% | $0.12234 | 74.2852 | $9.09 | |
BASE | <0.01% | $0.001501 | 5,948.7258 | $8.93 | |
BASE | <0.01% | $0.054879 | 159.736 | $8.77 | |
BASE | <0.01% | $0.000208 | 37,119.7486 | $7.72 | |
BASE | <0.01% | $0.004009 | 1,677.315 | $6.72 | |
BASE | <0.01% | $0.001021 | 6,418.0935 | $6.55 | |
BASE | <0.01% | $0.503591 | 12.5456 | $6.32 | |
BASE | <0.01% | $0.001551 | 4,045.4114 | $6.27 | |
BASE | <0.01% | $0.020242 | 304.2669 | $6.16 | |
BASE | <0.01% | $0.028656 | 204.3715 | $5.86 | |
BASE | <0.01% | $0.000004 | 1,392,846.5277 | $5.72 | |
BASE | <0.01% | $0.999796 | 5.0898 | $5.09 | |
BASE | <0.01% | $104,345 | 0.00004544 | $4.74 | |
BASE | <0.01% | $0.00064 | 7,248.3303 | $4.64 | |
BASE | <0.01% | <$0.000001 | 315,021,799.0769 | $4.32 | |
BASE | <0.01% | $0.01945 | 221.166 | $4.3 | |
BASE | <0.01% | $0.000012 | 345,718.5599 | $4.05 | |
BASE | <0.01% | $0.0002 | 19,980.435 | $4 | |
BASE | <0.01% | $0.999893 | 3.9528 | $3.95 | |
BASE | <0.01% | $0.175815 | 22.1816 | $3.9 | |
BASE | <0.01% | <$0.000001 | 1,848,674,046.3648 | $3.88 | |
BASE | <0.01% | $0.000067 | 55,465.085 | $3.73 | |
BASE | <0.01% | $0.905972 | 3.4655 | $3.14 | |
BASE | <0.01% | $0.003552 | 847.2 | $3.01 | |
BASE | <0.01% | $0.06058 | 43.3558 | $2.63 | |
BASE | <0.01% | $0.003403 | 765.9841 | $2.61 | |
BASE | <0.01% | $0.000006 | 412,955.8441 | $2.51 | |
BASE | <0.01% | $0.071009 | 33.1398 | $2.35 | |
BASE | <0.01% | <$0.000001 | 56,251,079.7611 | $2.33 | |
BASE | <0.01% | $0.007513 | 287.5058 | $2.16 | |
BASE | <0.01% | $0.019147 | 110.5256 | $2.12 | |
BASE | <0.01% | $0.000001 | 2,569,856.1621 | $2.1 | |
BASE | <0.01% | $0.00446 | 451.7702 | $2.01 | |
BASE | <0.01% | $0.004027 | 487.6742 | $1.96 | |
BASE | <0.01% | $0.001925 | 971.8441 | $1.87 | |
BASE | <0.01% | $0.17935 | 10.2399 | $1.84 | |
BASE | <0.01% | $104,353 | 0.00001528 | $1.59 | |
BASE | <0.01% | $0.012413 | 126.4235 | $1.57 | |
BASE | <0.01% | $2,984.98 | 0.00052378 | $1.56 | |
BASE | <0.01% | $0.030622 | 48.2454 | $1.48 | |
BASE | <0.01% | $0.000396 | 3,667.2231 | $1.45 | |
BASE | <0.01% | $2,481.9 | 0.00058401 | $1.45 | |
BASE | <0.01% | $0.004211 | 338.76 | $1.43 | |
BASE | <0.01% | $0.000573 | 2,433.8554 | $1.39 | |
BASE | <0.01% | $0.000002 | 646,092.5967 | $1.39 | |
BASE | <0.01% | $3.2 | 0.4275 | $1.37 | |
BASE | <0.01% | <$0.000001 | 18,170,396.4069 | $1.35 | |
BASE | <0.01% | $0.050561 | 25.9665 | $1.31 | |
BASE | <0.01% | $0.000012 | 86,841.636 | $1.06 | |
BASE | <0.01% | $0.16081 | 6.4957 | $1.04 | |
BASE | <0.01% | $0.000496 | 2,103.0746 | $1.04 | |
BASE | <0.01% | $0.004625 | 215.7345 | $0.9977 | |
BASE | <0.01% | $251.01 | 0.00388669 | $0.9755 | |
BASE | <0.01% | $2,842.68 | 0.00031055 | $0.8828 | |
BASE | <0.01% | $0.000157 | 5,548.6538 | $0.8728 | |
BASE | <0.01% | $0.000018 | 43,649.1593 | $0.7843 | |
BASE | <0.01% | $0.000431 | 1,804.8794 | $0.7777 | |
BASE | <0.01% | $0.000479 | 1,398.1044 | $0.6699 | |
BASE | <0.01% | $0.999865 | 0.6697 | $0.6696 | |
BASE | <0.01% | $0.10061 | 6.6203 | $0.666 | |
BASE | <0.01% | $2.1 | 0.3162 | $0.664 | |
BASE | <0.01% | $25.53 | 0.0251 | $0.6401 | |
BASE | <0.01% | $0.000831 | 769.3828 | $0.6395 | |
BASE | <0.01% | $0.000792 | 761.9286 | $0.6035 | |
BASE | <0.01% | $0.0001 | 5,952.1383 | $0.5953 | |
BASE | <0.01% | $0.020774 | 27.8159 | $0.5778 | |
BASE | <0.01% | $0.015992 | 35.6912 | $0.5707 | |
BASE | <0.01% | $0.001196 | 418.3417 | $0.5001 | |
BASE | <0.01% | $0.054184 | 9.1225 | $0.4942 | |
BASE | <0.01% | $0.001337 | 339.6014 | $0.4541 | |
BASE | <0.01% | $2.69 | 0.1327 | $0.357 | |
BASE | <0.01% | $0.000124 | 2,775.758 | $0.3428 | |
BASE | <0.01% | $0.1774 | 1.8926 | $0.3357 | |
BASE | <0.01% | $0.163215 | 1.9558 | $0.3192 | |
BASE | <0.01% | $0.032189 | 9.7005 | $0.3122 | |
BASE | <0.01% | <$0.000001 | 3,059,302.5146 | $0.2857 | |
BASE | <0.01% | $0.004872 | 49.9962 | $0.2435 | |
BASE | <0.01% | $0.003645 | 63.7421 | $0.2323 | |
BASE | <0.01% | $0.005715 | 38.5534 | $0.2203 | |
BASE | <0.01% | $0.005635 | 37.0209 | $0.2086 | |
BASE | <0.01% | $0.014775 | 12.1622 | $0.1796 | |
BASE | <0.01% | $0.017659 | 8.708 | $0.1537 | |
BASE | <0.01% | $0.066304 | 2.2373 | $0.1483 | |
BASE | <0.01% | $2,651.36 | 0.00005184 | $0.1374 | |
BASE | <0.01% | $0.00302 | 44.9433 | $0.1357 | |
BASE | <0.01% | $1 | 0.1345 | $0.1346 | |
BASE | <0.01% | $0.001626 | 79.6795 | $0.1295 | |
BASE | <0.01% | $0.00101 | 124.2422 | $0.1255 | |
BASE | <0.01% | $0.016614 | 7.3707 | $0.1224 | |
BASE | <0.01% | $1.05 | 0.1101 | $0.115 | |
BASE | <0.01% | $0.001012 | 101.9311 | $0.1031 | |
ETH | <0.01% | $0.99979 | 40,326.1994 | $40,317.73 | |
ETH | <0.01% | $1 | 1,082.466 | $1,083.55 | |
ETH | <0.01% | $1 | 761.7118 | $761.71 | |
ETH | <0.01% | $0.000112 | 4,911,948.7338 | $551.61 | |
ETH | <0.01% | <$0.000001 | 29,882,631,255.7855 | $477.54 | |
ETH | <0.01% | $2,481.37 | 0.0706 | $175.2 | |
ETH | <0.01% | $0.001738 | 83,500.1395 | $145.11 | |
ETH | <0.01% | <$0.000001 | 244,353,997.5043 | $93.26 | |
ETH | <0.01% | <$0.000001 | 4,397,163,529.9446 | $80.78 | |
ETH | <0.01% | $0.000051 | 1,391,336.9492 | $70.99 | |
ETH | <0.01% | $1 | 67.586 | $67.65 | |
ETH | <0.01% | $0.000193 | 340,361.9052 | $65.58 | |
ETH | <0.01% | $2,481.37 | 0.0263 | $65.32 | |
ETH | <0.01% | $250.76 | 0.2217 | $55.59 | |
ETH | <0.01% | $104,143 | 0.00052583 | $54.76 | |
ETH | <0.01% | <$0.000001 | 517,188,669.8649 | $50.73 | |
ETH | <0.01% | $1.91 | 24.9821 | $47.72 | |
ETH | <0.01% | $0.000014 | 3,217,711.97 | $44.6 | |
ETH | <0.01% | $0.426646 | 91.0232 | $38.83 | |
ETH | <0.01% | $0.00444 | 7,714.3129 | $34.25 | |
ETH | <0.01% | $0.001368 | 24,828.8425 | $33.97 | |
ETH | <0.01% | $0.000003 | 12,441,073.149 | $32.72 | |
ETH | <0.01% | $0.956044 | 30.2945 | $28.96 | |
ETH | <0.01% | <$0.000001 | 11,520,100,949.8847 | $28.85 | |
ETH | <0.01% | <$0.000001 | 17,636,074,368.733 | $27.76 | |
ETH | <0.01% | $0.000001 | 34,665,512.8076 | $27.07 | |
ETH | <0.01% | $0.433618 | 60.9245 | $26.42 | |
ETH | <0.01% | $1.04 | 21.9793 | $22.86 | |
ETH | <0.01% | $0.076307 | 290.44 | $22.16 | |
ETH | <0.01% | $0.022916 | 960.4988 | $22.01 | |
ETH | <0.01% | $0.036148 | 603.1977 | $21.8 | |
ETH | <0.01% | $0.147867 | 146.0213 | $21.59 | |
ETH | <0.01% | $0.404457 | 47.7717 | $19.32 | |
ETH | <0.01% | $13.56 | 1.3607 | $18.45 | |
ETH | <0.01% | $0.616441 | 29.7958 | $18.37 | |
ETH | <0.01% | $0.02992 | 603.0272 | $18.04 | |
ETH | <0.01% | $0.000038 | 423,906.978 | $16.27 | |
ETH | <0.01% | $0.153588 | 95.998 | $14.74 | |
ETH | <0.01% | $1.06 | 13.4382 | $14.28 | |
ETH | <0.01% | $0.891311 | 15.4335 | $13.76 | |
ETH | <0.01% | $0.127642 | 107.6442 | $13.74 | |
ETH | <0.01% | $0.055538 | 226.6792 | $12.59 | |
ETH | <0.01% | $5.59 | 2.1168 | $11.83 | |
ETH | <0.01% | $0.631091 | 18.3591 | $11.59 | |
ETH | <0.01% | $0.000004 | 2,661,984.947 | $11.02 | |
ETH | <0.01% | $0.000199 | 51,272.6757 | $10.2 | |
ETH | <0.01% | $0.01677 | 602.1449 | $10.1 | |
ETH | <0.01% | $0.000045 | 225,522.0659 | $10.07 | |
ETH | <0.01% | $0.577753 | 17.3727 | $10.04 | |
ETH | <0.01% | $8.98 | 1.0966 | $9.85 | |
ETH | <0.01% | $0.111294 | 84.8565 | $9.44 | |
ETH | <0.01% | $0.015549 | 591.3343 | $9.19 | |
ETH | <0.01% | $0.051133 | 174.8402 | $8.94 | |
ETH | <0.01% | $0.000011 | 789,766.2705 | $8.76 | |
ETH | <0.01% | $0.68286 | 12.144 | $8.29 | |
ETH | <0.01% | $19.27 | 0.4263 | $8.21 | |
ETH | <0.01% | $0.065105 | 122.7366 | $7.99 | |
ETH | <0.01% | $0.397474 | 18.6392 | $7.41 | |
ETH | <0.01% | $0.125583 | 58.1482 | $7.3 | |
ETH | <0.01% | $0.001746 | 4,010.5035 | $7 | |
ETH | <0.01% | $367.88 | 0.019 | $6.98 | |
ETH | <0.01% | $3,338.24 | 0.00208926 | $6.97 | |
ETH | <0.01% | $0.083718 | 80.5634 | $6.74 | |
ETH | <0.01% | $0.805924 | 8.1567 | $6.57 | |
ETH | <0.01% | $0.000641 | 9,333.1509 | $5.98 | |
ETH | <0.01% | $0.376551 | 14.8523 | $5.59 | |
ETH | <0.01% | $4.01 | 1.3781 | $5.53 | |
ETH | <0.01% | <$0.000001 | 1,199,258,218.1654 | $5.34 | |
ETH | <0.01% | $0.000001 | 6,506,956.1101 | $5.33 | |
ETH | <0.01% | $0.133525 | 37.9119 | $5.06 | |
ETH | <0.01% | $0.000179 | 27,390.2068 | $4.89 | |
ETH | <0.01% | $0.001233 | 3,826.3033 | $4.72 | |
ETH | <0.01% | $0.001067 | 4,300.7214 | $4.59 | |
ETH | <0.01% | $0.131923 | 34.137 | $4.5 | |
ETH | <0.01% | $0.001412 | 3,098.7754 | $4.38 | |
ETH | <0.01% | $0.298335 | 14.6459 | $4.37 | |
ETH | <0.01% | $0.048909 | 88.3144 | $4.32 | |
ETH | <0.01% | $0.332809 | 12.8892 | $4.29 | |
ETH | <0.01% | $0.009089 | 432.7031 | $3.93 | |
ETH | <0.01% | $0.772276 | 5.0253 | $3.88 | |
ETH | <0.01% | $0.004207 | 904.72 | $3.81 | |
ETH | <0.01% | <$0.000001 | 47,143,265.5052 | $3.73 | |
ETH | <0.01% | <$0.000001 | 456,780,648.4196 | $3.47 | |
ETH | <0.01% | <$0.000001 | 584,032,386.3417 | $3.45 | |
ETH | <0.01% | $148.86 | 0.0222 | $3.31 | |
ETH | <0.01% | $3,320.76 | 0.000986 | $3.27 | |
ETH | <0.01% | $107,937 | 0.00002918 | $3.15 | |
ETH | <0.01% | $0.3747 | 8.3711 | $3.14 | |
ETH | <0.01% | $0.349318 | 8.6545 | $3.02 | |
ETH | <0.01% | <$0.000001 | 439,696,035.0925 | $2.87 | |
ETH | <0.01% | $65.74 | 0.037 | $2.43 | |
ETH | <0.01% | $0.087289 | 27.4073 | $2.39 | |
ETH | <0.01% | <$0.000001 | 51,714,808.8728 | $2.33 | |
ETH | <0.01% | $0.626943 | 3.6763 | $2.3 | |
ETH | <0.01% | $0.008729 | 263.9632 | $2.3 | |
ETH | <0.01% | <$0.000001 | 21,095,685,438.2016 | $2.11 | |
ETH | <0.01% | $1.13 | 1.7199 | $1.94 | |
ETH | <0.01% | $0.000012 | 154,650.672 | $1.92 | |
ETH | <0.01% | $0.610074 | 3.0582 | $1.87 | |
ETH | <0.01% | $0.018025 | 91.136 | $1.64 | |
ETH | <0.01% | $0.344381 | 4.5327 | $1.56 | |
ETH | <0.01% | $0.000023 | 66,794.8002 | $1.53 | |
ETH | <0.01% | $0.000348 | 4,353.5336 | $1.52 | |
ETH | <0.01% | $0.098998 | 15.2654 | $1.51 | |
ETH | <0.01% | $0.032266 | 42.421 | $1.37 | |
ETH | <0.01% | $0.097173 | 13.6584 | $1.33 | |
ETH | <0.01% | $0.273248 | 4.5359 | $1.24 | |
ETH | <0.01% | $0.000615 | 1,808.6551 | $1.11 | |
ETH | <0.01% | $0.000029 | 37,311.4807 | $1.07 | |
ETH | <0.01% | $2.75 | 0.3882 | $1.07 | |
ETH | <0.01% | $0.070971 | 14.6454 | $1.04 | |
ETH | <0.01% | $643.44 | 0.00157086 | $1.01 | |
ETH | <0.01% | $2.69 | 0.3622 | $0.9742 | |
ETH | <0.01% | $0.0623 | 14.813 | $0.9228 | |
ETH | <0.01% | $2.31 | 0.3924 | $0.9065 | |
ETH | <0.01% | $0.006072 | 148.0687 | $0.899 | |
ETH | <0.01% | $0.000507 | 1,760.9665 | $0.8922 | |
ETH | <0.01% | $1.08 | 0.7991 | $0.8654 | |
ETH | <0.01% | $0.000008 | 97,444.4706 | $0.8203 | |
ETH | <0.01% | $1 | 0.8161 | $0.8161 | |
ETH | <0.01% | $104,092 | 0.00000727 | $0.7567 | |
ETH | <0.01% | $0.012142 | 59.2943 | $0.7199 | |
ETH | <0.01% | <$0.000001 | 15,355,454.0411 | $0.7185 | |
ETH | <0.01% | $0.252772 | 2.669 | $0.6746 | |
ETH | <0.01% | $0.00001 | 67,678.6948 | $0.6639 | |
ETH | <0.01% | $48.06 | 0.0135 | $0.6489 | |
ETH | <0.01% | <$0.000001 | 1,824,722.2342 | $0.6399 | |
ETH | <0.01% | $3.76 | 0.1604 | $0.6031 | |
ETH | <0.01% | $0.030555 | 18.4569 | $0.5639 | |
ETH | <0.01% | $0.000001 | 617,060.2208 | $0.5465 | |
ETH | <0.01% | $0.013836 | 38.972 | $0.5392 | |
ETH | <0.01% | $0.000071 | 7,573.3898 | $0.5386 | |
ETH | <0.01% | $0.999865 | 0.5131 | $0.513 | |
ETH | <0.01% | $0.214938 | 2.2603 | $0.4858 | |
ETH | <0.01% | $0.021528 | 21.5485 | $0.4638 | |
ETH | <0.01% | $0.014723 | 30.1732 | $0.4442 | |
ETH | <0.01% | $0.270111 | 1.6034 | $0.433 | |
ETH | <0.01% | <$0.000001 | 4,506,809.0413 | $0.4169 | |
ETH | <0.01% | $2.78 | 0.1437 | $0.3994 | |
ETH | <0.01% | $0.321599 | 1.2348 | $0.3971 | |
ETH | <0.01% | $0.066296 | 5.4715 | $0.3627 | |
ETH | <0.01% | $0.775796 | 0.4397 | $0.341 | |
ETH | <0.01% | $1.11 | 0.3012 | $0.3342 | |
ETH | <0.01% | $1,698.99 | 0.00017986 | $0.3055 | |
ETH | <0.01% | $0.014243 | 20.3653 | $0.29 | |
ETH | <0.01% | $0.00007 | 3,937.4322 | $0.2767 | |
ETH | <0.01% | <$0.000001 | 595,878.1396 | $0.2606 | |
ETH | <0.01% | $0.018288 | 13.712 | $0.2507 | |
ETH | <0.01% | $0.998518 | 0.2445 | $0.2441 | |
ETH | <0.01% | $127.86 | 0.00187638 | $0.2399 | |
ETH | <0.01% | $0.000575 | 383.915 | $0.2209 | |
ETH | <0.01% | $1.39 | 0.1528 | $0.2123 | |
ETH | <0.01% | $0.008742 | 23.9256 | $0.2091 | |
ETH | <0.01% | $1.84 | 0.1062 | $0.1958 | |
ETH | <0.01% | <$0.000001 | 5,201,379.1376 | $0.1833 | |
ETH | <0.01% | <$0.000001 | 70,484,026.6341 | $0.179 | |
ETH | <0.01% | $0.972902 | 0.1805 | $0.1755 | |
ETH | <0.01% | $0.02367 | 6.8551 | $0.1622 | |
ETH | <0.01% | $1.18 | 0.1346 | $0.1588 | |
ETH | <0.01% | $0.010311 | 15.2596 | $0.1573 | |
ETH | <0.01% | $2.1 | 0.074 | $0.1553 | |
ETH | <0.01% | $0.077406 | 1.9933 | $0.1542 | |
ETH | <0.01% | $0.082916 | 1.8606 | $0.1542 | |
ETH | <0.01% | $0.816093 | 0.1838 | $0.1499 | |
ETH | <0.01% | $0.000304 | 471.5756 | $0.1433 | |
ETH | <0.01% | $0.000549 | 259.1471 | $0.1423 | |
ETH | <0.01% | $0.000529 | 261.6352 | $0.1384 | |
ETH | <0.01% | <$0.000001 | 527,338.0234 | $0.1372 | |
ETH | <0.01% | <$0.000001 | 785,992.8752 | $0.1365 | |
ETH | <0.01% | $0.118084 | 1.1501 | $0.1358 | |
ETH | <0.01% | $0.213932 | 0.6233 | $0.1333 | |
ETH | <0.01% | $0.324221 | 0.4089 | $0.1325 | |
ETH | <0.01% | $0.000394 | 330.7555 | $0.1303 | |
ETH | <0.01% | $0.046223 | 2.6523 | $0.1225 | |
ETH | <0.01% | $0.053793 | 2.2534 | $0.1212 | |
ETH | <0.01% | $0.999093 | 0.1179 | $0.1177 | |
ETH | <0.01% | $37.56 | 0.00311233 | $0.1168 | |
ETH | <0.01% | $0.718816 | 0.1601 | $0.1151 | |
ETH | <0.01% | $1 | 0.1134 | $0.1134 | |
ETH | <0.01% | $0.000134 | 781.2222 | $0.1045 | |
ARB | <0.01% | $0.999793 | 807.1364 | $806.97 | |
ARB | <0.01% | $1 | 280.4563 | $280.74 | |
ARB | <0.01% | $1 | 155.3462 | $155.35 | |
ARB | <0.01% | $104,230 | 0.00011745 | $12.24 | |
ARB | <0.01% | $0.332997 | 32.6048 | $10.86 | |
ARB | <0.01% | $2,481.82 | 0.0041804 | $10.38 | |
ARB | <0.01% | $15.04 | 0.3721 | $5.6 | |
ARB | <0.01% | $250.79 | 0.0204 | $5.12 | |
ARB | <0.01% | $0.631121 | 5.3782 | $3.39 | |
ARB | <0.01% | $13.57 | 0.2142 | $2.91 | |
ARB | <0.01% | $4.01 | 0.5035 | $2.02 | |
ARB | <0.01% | $0.999793 | 1.4915 | $1.49 | |
ARB | <0.01% | $2,986.22 | 0.00049542 | $1.48 | |
ARB | <0.01% | $104,424 | 0.00001217 | $1.27 | |
ARB | <0.01% | $0.029077 | 32.5858 | $0.9474 | |
ARB | <0.01% | $0.048977 | 18.6437 | $0.9131 | |
ARB | <0.01% | $0.999854 | 0.8258 | $0.8256 | |
ARB | <0.01% | $3.63 | 0.1998 | $0.7251 | |
ARB | <0.01% | $1 | 0.6798 | $0.6804 | |
ARB | <0.01% | $0.101798 | 4.5465 | $0.4628 | |
ARB | <0.01% | $5.99 | 0.065 | $0.3894 | |
ARB | <0.01% | $2.1 | 0.1522 | $0.3195 | |
ARB | <0.01% | $0.123974 | 1.5113 | $0.1873 | |
ARB | <0.01% | $0.006764 | 22.3911 | $0.1514 | |
ARB | <0.01% | $0.013932 | 10.277 | $0.1431 | |
ARB | <0.01% | $0.007589 | 14.4447 | $0.1096 | |
AVAX | <0.01% | $0.999883 | 1,236.2457 | $1,236.1 | |
AVAX | <0.01% | $5.99 | 2.3734 | $14.22 | |
AVAX | <0.01% | $1 | 7.7911 | $7.8 | |
AVAX | <0.01% | $0.011155 | 529.4495 | $5.91 | |
AVAX | <0.01% | $2.1 | 2.632 | $5.53 | |
AVAX | <0.01% | $104,340 | 0.00001111 | $1.16 | |
AVAX | <0.01% | $0.631278 | 1.7868 | $1.13 | |
AVAX | <0.01% | $2,480.41 | 0.0003485 | $0.8644 | |
AVAX | <0.01% | $250.76 | 0.00241521 | $0.6056 | |
AVAX | <0.01% | $0.999883 | 0.4032 | $0.4031 | |
AVAX | <0.01% | $19.71 | 0.0169 | $0.333453 | |
AVAX | <0.01% | $1.3 | 0.2415 | $0.3139 | |
AVAX | <0.01% | $0.196626 | 0.9901 | $0.1946 | |
AVAX | <0.01% | $13.6 | 0.0090914 | $0.1236 | |
AVAX | <0.01% | $0.002259 | 45.5724 | $0.1029 | |
POL | <0.01% | $0.999794 | 212.6324 | $212.59 | |
POL | <0.01% | $1 | 77.4872 | $77.56 | |
POL | <0.01% | $0.213986 | 95.3322 | $20.4 | |
POL | <0.01% | $13.54 | 1.3779 | $18.66 | |
POL | <0.01% | $0.214109 | 69.706 | $14.92 | |
POL | <0.01% | $0.02031 | 678.9033 | $13.79 | |
POL | <0.01% | $104,204 | 0.00011561 | $12.05 | |
POL | <0.01% | $2,476.74 | 0.00463492 | $11.48 | |
POL | <0.01% | $250.6 | 0.0416 | $10.42 | |
POL | <0.01% | $0.001415 | 6,235.3767 | $8.82 | |
POL | <0.01% | $1 | 6.6046 | $6.6 | |
POL | <0.01% | $3.75 | 0.571 | $2.14 | |
POL | <0.01% | $17.61 | 0.1079 | $1.9 | |
POL | <0.01% | $0.007041 | 194.5992 | $1.37 | |
POL | <0.01% | $0.62487 | 1.698 | $1.06 | |
POL | <0.01% | $0.086478 | 10.2322 | $0.8848 | |
POL | <0.01% | $0.048897 | 15.0276 | $0.7348 | |
POL | <0.01% | $0.270006 | 2.5253 | $0.6818 | |
POL | <0.01% | $0.000511 | 1,162.5308 | $0.5945 | |
POL | <0.01% | $2,988.61 | 0.00019036 | $0.5689 | |
POL | <0.01% | $0.002678 | 166.4212 | $0.4456 | |
POL | <0.01% | $0.771107 | 0.385 | $0.2968 | |
POL | <0.01% | $0.630479 | 0.4562 | $0.2876 | |
POL | <0.01% | $0.999794 | 0.2691 | $0.269 | |
POL | <0.01% | $148.19 | 0.00120683 | $0.1788 | |
POL | <0.01% | $5.99 | 0.0276 | $0.1653 | |
POL | <0.01% | $0.301674 | 0.4947 | $0.1492 | |
POL | <0.01% | $0.000001 | 107,678.3458 | $0.1335 | |
POL | <0.01% | $0.777002 | 0.1646 | $0.1278 | |
POL | <0.01% | $1.14 | 0.09 | $0.1025 | |
OP | <0.01% | $0.999989 | 167.377 | $167.38 | |
OP | <0.01% | $0.999805 | 121.5742 | $121.55 | |
OP | <0.01% | $1 | 28.4112 | $28.44 | |
OP | <0.01% | $2,483.5 | 0.0067854 | $16.85 | |
OP | <0.01% | $2,481.88 | 0.00476646 | $11.83 | |
OP | <0.01% | $0.590356 | 7.5817 | $4.48 | |
OP | <0.01% | $104,345 | 0.00001321 | $1.38 | |
OP | <0.01% | $0.968271 | 1.1332 | $1.1 | |
OP | <0.01% | $0.999805 | 0.4728 | $0.4726 | |
OP | <0.01% | $251.01 | 0.00173727 | $0.436 | |
OP | <0.01% | $0.048162 | 4.7572 | $0.2291 | |
OP | <0.01% | $2.1 | 0.0551 | $0.1156 | |
OP | <0.01% | $2,602.53 | 0.00004125 | $0.1073 | |
SONIC | <0.01% | $0.999794 | 76.5493 | $76.53 | |
SONIC | <0.01% | $2,478.96 | 0.00694921 | $17.23 | |
SONIC | <0.01% | $0.374 | 36.5581 | $13.67 | |
SONIC | <0.01% | $4.04 | 1.0876 | $4.39 | |
SONIC | <0.01% | $0.373025 | 10.1787 | $3.8 | |
SONIC | <0.01% | $104,204 | 0.00002932 | $3.06 | |
SONIC | <0.01% | $0.147639 | 4.6089 | $0.6804 | |
SONIC | <0.01% | $0.998502 | 0.3282 | $0.3277 | |
GNO | <0.01% | $2,480.41 | 0.0136 | $33.66 | |
GNO | <0.01% | $0.99979 | 5.1354 | $5.13 | |
GNO | <0.01% | $0.99992 | 0.03 | $0.029989 | |
CRONOS | <0.01% | $0.09677 | 65.1876 | $6.31 | |
CRONOS | <0.01% | $0.99979 | 4.2895 | $4.29 | |
CRONOS | <0.01% | $1 | 3.2402 | $3.24 | |
CRONOS | <0.01% | $4.22 | 0.4759 | $2.01 | |
CRONOS | <0.01% | $0.998231 | 0.8496 | $0.8481 | |
CRONOS | <0.01% | $0.000002 | 108,683.6627 | $0.2532 | |
CRONOS | <0.01% | $0.096712 | 1.4822 | $0.1433 | |
CRONOS | <0.01% | $0.031293 | 3.8439 | $0.1202 | |
CELO | <0.01% | $0.301306 | 11.5477 | $3.48 | |
CELO | <0.01% | $1 | 2.2852 | $2.29 | |
CELO | <0.01% | $1 | 0.5825 | $0.583 | |
LINEA | <0.01% | $2,481.37 | 0.00138328 | $3.43 | |
LINEA | <0.01% | $0.99979 | 1.9325 | $1.93 | |
LINEA | <0.01% | $1 | 0.3292 | $0.3294 | |
LINEA | <0.01% | $0.001953 | 104.3886 | $0.2038 | |
LINEA | <0.01% | $104,143 | 0.00000143 | $0.1489 | |
TAIKO | <0.01% | $2,481.37 | 0.0011293 | $2.8 | |
TAIKO | <0.01% | $1 | 0.5177 | $0.5177 | |
BLAST | <0.01% | $0.002664 | 558.943 | $1.49 | |
BLAST | <0.01% | $0.994166 | 0.1668 | $0.1657 | |
BLAST | <0.01% | $2,481.9 | 0.00005971 | $0.148185 | |
SCROLL | <0.01% | $2,481.37 | 0.00051467 | $1.28 | |
MANTLE | <0.01% | $0.63688 | 0.0974 | $0.062004 | |
ZKEVM | <0.01% | $2,481.37 | 0.00000107 | $0.002665 | |
MOVR | <0.01% | $5.77 | 0.000000000000000061 | <$0.000001 |
Loading...
Loading
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.