More Info
Private Name Tags
ContractCreator
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
107558028 | 569 days ago | 0 ETH | ||||
107558028 | 569 days ago | 0 ETH | ||||
107558011 | 569 days ago | 0 ETH | ||||
107558011 | 569 days ago | 0 ETH | ||||
107556620 | 569 days ago | 0 ETH | ||||
107556620 | 569 days ago | 0 ETH | ||||
107556506 | 569 days ago | 0 ETH | ||||
107556506 | 569 days ago | 0 ETH | ||||
107556495 | 569 days ago | 0 ETH | ||||
107556495 | 569 days ago | 0 ETH | ||||
107554532 | 569 days ago | 0 ETH | ||||
107554532 | 569 days ago | 0 ETH | ||||
107554042 | 569 days ago | 0 ETH | ||||
107554042 | 569 days ago | 0 ETH | ||||
107553134 | 569 days ago | 0 ETH | ||||
107553134 | 569 days ago | 0 ETH | ||||
107553134 | 569 days ago | 0 ETH | ||||
107553134 | 569 days ago | 0 ETH | ||||
107553134 | 569 days ago | 0 ETH | ||||
107553134 | 569 days ago | 0 ETH | ||||
107552973 | 570 days ago | 0 ETH | ||||
107552973 | 570 days ago | 0 ETH | ||||
107552603 | 570 days ago | 0 ETH | ||||
107552603 | 570 days ago | 0 ETH | ||||
107551730 | 570 days ago | 0 ETH |
Loading...
Loading
Contract Name:
NestedReserve
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 5000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.11; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "./abstracts/OwnableFactoryHandler.sol"; /// @title Stores underlying assets of NestedNFTs. /// @notice The factory itself can only trigger a transfer after verification that the user /// holds funds present in this contract. Only the factory can withdraw/transfer assets. contract NestedReserve is OwnableFactoryHandler { /// @notice Release funds to a recipient /// @param _recipient The receiver /// @param _token The token to transfer /// @param _amount The amount to transfer function transfer( address _recipient, IERC20 _token, uint256 _amount ) external onlyFactory { require(_recipient != address(0), "NRS: INVALID_ADDRESS"); SafeERC20.safeTransfer(_token, _recipient, _amount); } /// @notice Release funds to the factory /// @param _token The ERC20 to transfer /// @param _amount The amount to transfer function withdraw(IERC20 _token, uint256 _amount) external onlyFactory { SafeERC20.safeTransfer(_token, msg.sender, _amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.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; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } 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)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } 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"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @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"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.11; import "@openzeppelin/contracts/access/Ownable.sol"; /// @title Asbtract "Ownable" contract managing a whitelist of factories abstract contract OwnableFactoryHandler is Ownable { /// @dev Emitted when a new factory is added /// @param newFactory Address of the new factory event FactoryAdded(address newFactory); /// @dev Emitted when a factory is removed /// @param oldFactory Address of the removed factory event FactoryRemoved(address oldFactory); /// @dev Supported factories to interact with mapping(address => bool) public supportedFactories; /// @dev Reverts the transaction if the caller is a supported factory modifier onlyFactory() { require(supportedFactories[msg.sender], "OFH: FORBIDDEN"); _; } /// @notice Add a supported factory /// @param _factory The address of the new factory function addFactory(address _factory) external onlyOwner { require(_factory != address(0), "OFH: INVALID_ADDRESS"); supportedFactories[_factory] = true; emit FactoryAdded(_factory); } /// @notice Remove a supported factory /// @param _factory The address of the factory to remove function removeFactory(address _factory) external onlyOwner { require(supportedFactories[_factory], "OFH: NOT_SUPPORTED"); supportedFactories[_factory] = false; emit FactoryRemoved(_factory); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT 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; } }
{ "optimizer": { "enabled": true, "runs": 5000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newFactory","type":"address"}],"name":"FactoryAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldFactory","type":"address"}],"name":"FactoryRemoved","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"},{"inputs":[{"internalType":"address","name":"_factory","type":"address"}],"name":"addFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_factory","type":"address"}],"name":"removeFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"supportedFactories","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610bc28061007e6000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063beabacc81161005b578063beabacc8146100ea578063de05051c146100fd578063f2fde38b14610130578063f3fef3a31461014357600080fd5b806329ce1ec51461008d5780634b37c73f146100a2578063715018a6146100b55780638da5cb5b146100bd575b600080fd5b6100a061009b366004610a43565b610156565b005b6100a06100b0366004610a43565b6102ac565b6100a0610404565b60005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6100a06100f8366004610a60565b610477565b61012061010b366004610a43565b60016020526000908152604090205460ff1681565b60405190151581526020016100e1565b6100a061013e366004610a43565b610549565b6100a0610151366004610aa1565b610645565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166102255760405162461bcd60e51b815260206004820152601460248201527f4f46483a20494e56414c49445f4144445245535300000000000000000000000060448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff811660008181526001602081815260409283902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690921790915590519182527f6fdc0147105e43e21da80a75b42d0fd464060d5e1a34b0cefbf0b4ccfc2e36a191015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff1633146103135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff811660009081526001602052604090205460ff166103885760405162461bcd60e51b815260206004820152601260248201527f4f46483a204e4f545f535550504f52544544000000000000000000000000000060448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff811660008181526001602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905590519182527fafa2737b2090fa39c66b7348625f0c03726240f724defbc6216d679506f9444191016102a1565b60005473ffffffffffffffffffffffffffffffffffffffff16331461046b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101b9565b61047560006106b3565b565b3360009081526001602052604090205460ff166104d65760405162461bcd60e51b815260206004820152600e60248201527f4f46483a20464f5242494444454e00000000000000000000000000000000000060448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff83166105395760405162461bcd60e51b815260206004820152601460248201527f4e52533a20494e56414c49445f4144445245535300000000000000000000000060448201526064016101b9565b610544828483610728565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff81166106395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016101b9565b610642816106b3565b50565b3360009081526001602052604090205460ff166106a45760405162461bcd60e51b815260206004820152600e60248201527f4f46483a20464f5242494444454e00000000000000000000000000000000000060448201526064016101b9565b6106af823383610728565b5050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff848116602483015260448083018590528351808403909101815260649092018352602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152610544928692916000916107f3918516908490610883565b80519091501561054457808060200190518101906108119190610acd565b6105445760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016101b9565b6060610892848460008561089c565b90505b9392505050565b6060824710156109145760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016101b9565b843b6109625760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101b9565b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161098b9190610b1f565b60006040518083038185875af1925050503d80600081146109c8576040519150601f19603f3d011682016040523d82523d6000602084013e6109cd565b606091505b50915091506109dd8282866109e8565b979650505050505050565b606083156109f7575081610895565b825115610a075782518084602001fd5b8160405162461bcd60e51b81526004016101b99190610b3b565b73ffffffffffffffffffffffffffffffffffffffff8116811461064257600080fd5b600060208284031215610a5557600080fd5b813561089581610a21565b600080600060608486031215610a7557600080fd5b8335610a8081610a21565b92506020840135610a9081610a21565b929592945050506040919091013590565b60008060408385031215610ab457600080fd5b8235610abf81610a21565b946020939093013593505050565b600060208284031215610adf57600080fd5b8151801515811461089557600080fd5b60005b83811015610b0a578181015183820152602001610af2565b83811115610b19576000848401525b50505050565b60008251610b31818460208701610aef565b9190910192915050565b6020815260008251806020840152610b5a816040850160208701610aef565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212209193426c9910f0b372c4ba8d0ddf0bf8441183d07587ffb43ad245ac8345777d64736f6c634300080b0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100885760003560e01c8063beabacc81161005b578063beabacc8146100ea578063de05051c146100fd578063f2fde38b14610130578063f3fef3a31461014357600080fd5b806329ce1ec51461008d5780634b37c73f146100a2578063715018a6146100b55780638da5cb5b146100bd575b600080fd5b6100a061009b366004610a43565b610156565b005b6100a06100b0366004610a43565b6102ac565b6100a0610404565b60005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6100a06100f8366004610a60565b610477565b61012061010b366004610a43565b60016020526000908152604090205460ff1681565b60405190151581526020016100e1565b6100a061013e366004610a43565b610549565b6100a0610151366004610aa1565b610645565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166102255760405162461bcd60e51b815260206004820152601460248201527f4f46483a20494e56414c49445f4144445245535300000000000000000000000060448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff811660008181526001602081815260409283902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690921790915590519182527f6fdc0147105e43e21da80a75b42d0fd464060d5e1a34b0cefbf0b4ccfc2e36a191015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff1633146103135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff811660009081526001602052604090205460ff166103885760405162461bcd60e51b815260206004820152601260248201527f4f46483a204e4f545f535550504f52544544000000000000000000000000000060448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff811660008181526001602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905590519182527fafa2737b2090fa39c66b7348625f0c03726240f724defbc6216d679506f9444191016102a1565b60005473ffffffffffffffffffffffffffffffffffffffff16331461046b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101b9565b61047560006106b3565b565b3360009081526001602052604090205460ff166104d65760405162461bcd60e51b815260206004820152600e60248201527f4f46483a20464f5242494444454e00000000000000000000000000000000000060448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff83166105395760405162461bcd60e51b815260206004820152601460248201527f4e52533a20494e56414c49445f4144445245535300000000000000000000000060448201526064016101b9565b610544828483610728565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff81166106395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016101b9565b610642816106b3565b50565b3360009081526001602052604090205460ff166106a45760405162461bcd60e51b815260206004820152600e60248201527f4f46483a20464f5242494444454e00000000000000000000000000000000000060448201526064016101b9565b6106af823383610728565b5050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff848116602483015260448083018590528351808403909101815260649092018352602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152610544928692916000916107f3918516908490610883565b80519091501561054457808060200190518101906108119190610acd565b6105445760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016101b9565b6060610892848460008561089c565b90505b9392505050565b6060824710156109145760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016101b9565b843b6109625760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101b9565b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161098b9190610b1f565b60006040518083038185875af1925050503d80600081146109c8576040519150601f19603f3d011682016040523d82523d6000602084013e6109cd565b606091505b50915091506109dd8282866109e8565b979650505050505050565b606083156109f7575081610895565b825115610a075782518084602001fd5b8160405162461bcd60e51b81526004016101b99190610b3b565b73ffffffffffffffffffffffffffffffffffffffff8116811461064257600080fd5b600060208284031215610a5557600080fd5b813561089581610a21565b600080600060608486031215610a7557600080fd5b8335610a8081610a21565b92506020840135610a9081610a21565b929592945050506040919091013590565b60008060408385031215610ab457600080fd5b8235610abf81610a21565b946020939093013593505050565b600060208284031215610adf57600080fd5b8151801515811461089557600080fd5b60005b83811015610b0a578181015183820152602001610af2565b83811115610b19576000848401525b50505050565b60008251610b31818460208701610aef565b9190910192915050565b6020815260008251806020840152610b5a816040850160208701610aef565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212209193426c9910f0b372c4ba8d0ddf0bf8441183d07587ffb43ad245ac8345777d64736f6c634300080b0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 16.46% | $655.6 | 48.3305 | $31,685.51 | |
BSC | 6.71% | $168.86 | 76.4481 | $12,909.03 | |
BSC | 5.20% | $0.99964 | 10,009.2193 | $10,005.62 | |
BSC | 4.77% | $1.01 | 9,108.6116 | $9,188.75 | |
BSC | 3.12% | $14.22 | 422.082 | $6,002.01 | |
BSC | 1.88% | $0.999822 | 3,622.0152 | $3,621.37 | |
BSC | 1.33% | $18.09 | 141.24 | $2,554.88 | |
BSC | 0.95% | $23.8 | 77.0282 | $1,833.36 | |
BSC | 0.59% | $1.03 | 1,099.9343 | $1,133.31 | |
BSC | 0.34% | $0.145326 | 4,542.5705 | $660.15 | |
BSC | 0.30% | $95,712.74 | 0.00609192 | $583.07 | |
BSC | 0.27% | $254.9 | 2.0388 | $519.68 | |
BSC | 0.26% | $4.65 | 108.7847 | $506.32 | |
BSC | 0.26% | $2,711.32 | 0.183 | $496.17 | |
BSC | 0.23% | $0.65257 | 671.6165 | $438.28 | |
BSC | 0.22% | $0.999937 | 416.7068 | $416.68 | |
BSC | 0.17% | $2.56 | 128.4939 | $329.05 | |
BSC | 0.15% | $2.59 | 109.0206 | $282.36 | |
BSC | 0.11% | $0.639647 | 317.7875 | $203.27 | |
BSC | 0.08% | $0.765457 | 210.7451 | $161.32 | |
BSC | 0.08% | $0.021297 | 7,500.076 | $159.73 | |
BSC | 0.08% | $4.81 | 32.2329 | $155.08 | |
BSC | 0.08% | $0.022638 | 6,569.0126 | $148.71 | |
BSC | 0.08% | $9.7 | 15.1131 | $146.57 | |
BSC | 0.07% | $0.307589 | 462.953 | $142.4 | |
BSC | 0.06% | $8.86 | 12.8092 | $113.47 | |
BSC | 0.05% | $716.56 | 0.1242 | $89.02 | |
BSC | 0.03% | $0.267919 | 241.1215 | $64.6 | |
BSC | 0.03% | $0.308387 | 204.6653 | $63.12 | |
BSC | 0.03% | $3.14 | 19.217 | $60.41 | |
BSC | 0.03% | $0.009904 | 5,724.6466 | $56.7 | |
BSC | 0.03% | $0.000203 | 257,521.2979 | $52.29 | |
BSC | 0.02% | $0.653459 | 72.9871 | $47.69 | |
BSC | 0.02% | $244.67 | 0.17 | $41.59 | |
BSC | 0.02% | $40.88 | 1.0064 | $41.14 | |
BSC | 0.02% | $0.267546 | 152.0716 | $40.69 | |
BSC | 0.02% | $0.014884 | 2,619.1771 | $38.99 | |
BSC | 0.02% | $0.096558 | 401.8751 | $38.8 | |
BSC | 0.02% | $0.120833 | 318.9384 | $38.54 | |
BSC | 0.02% | $9.45 | 3.8023 | $35.93 | |
BSC | 0.02% | $0.002124 | 15,281.4224 | $32.46 | |
BSC | 0.02% | $0.021907 | 1,412.9439 | $30.95 | |
BSC | 0.01% | $0.704421 | 40.0584 | $28.22 | |
BSC | 0.01% | $0.011613 | 2,180.7601 | $25.33 | |
BSC | 0.01% | $134.77 | 0.1848 | $24.91 | |
BSC | 0.01% | $0.50993 | 48.177 | $24.57 | |
BSC | 0.01% | $0.000119 | 199,174.0159 | $23.63 | |
BSC | 0.01% | $0.21396 | 108.8421 | $23.29 | |
BSC | 0.01% | $0.200838 | 115.5983 | $23.22 | |
BSC | 0.01% | $3.29 | 6.8108 | $22.44 | |
BSC | 0.01% | $0.067986 | 308.6291 | $20.98 | |
BSC | 0.01% | $0.000454 | 45,002.2023 | $20.42 | |
BSC | 0.01% | $0.007312 | 2,768.2879 | $20.24 | |
BSC | 0.01% | $0.254114 | 79.1198 | $20.11 | |
BSC | 0.01% | $0.000095 | 204,829.6285 | $19.47 | |
BSC | <0.01% | $0.05552 | 331.9295 | $18.43 | |
BSC | <0.01% | $0.020074 | 915.6911 | $18.38 | |
BSC | <0.01% | $0.012039 | 1,483.3514 | $17.86 | |
BSC | <0.01% | $0.220291 | 80.8232 | $17.8 | |
BSC | <0.01% | $4.15 | 4.1038 | $17.03 | |
BSC | <0.01% | $0.658588 | 24.2693 | $15.98 | |
BSC | <0.01% | $0.034148 | 448.5035 | $15.32 | |
BSC | <0.01% | $4.22 | 3.5925 | $15.16 | |
BSC | <0.01% | $205.08 | 0.0704 | $14.45 | |
BSC | <0.01% | $0.046409 | 300.3877 | $13.94 | |
BSC | <0.01% | $0.175018 | 76.3439 | $13.36 | |
BSC | <0.01% | $2,683.92 | 0.00483385 | $12.97 | |
BSC | <0.01% | $0.094609 | 136.5582 | $12.92 | |
BSC | <0.01% | $30 | 0.4268 | $12.8 | |
BSC | <0.01% | $0.121306 | 94.1355 | $11.42 | |
BSC | <0.01% | $0.05892 | 191.3041 | $11.27 | |
BSC | <0.01% | $0.245584 | 43.8621 | $10.77 | |
BSC | <0.01% | <$0.000001 | 113,067,000,000 | $10.44 | |
BSC | <0.01% | $0.008696 | 1,192.7387 | $10.37 | |
BSC | <0.01% | $319.36 | 0.0318 | $10.15 | |
BSC | <0.01% | $1.3 | 7.7673 | $10.12 | |
BSC | <0.01% | $0.020132 | 462.5499 | $9.31 | |
BSC | <0.01% | <$0.000001 | 27,669,068,239,731.539 | $8.87 | |
BSC | <0.01% | $0.000715 | 11,489.035 | $8.21 | |
BSC | <0.01% | $0.014326 | 570.0264 | $8.17 | |
BSC | <0.01% | $0.025114 | 300.5953 | $7.55 | |
BSC | <0.01% | $0.681408 | 10.7185 | $7.3 | |
BSC | <0.01% | $0.782204 | 9.1504 | $7.16 | |
BSC | <0.01% | $0.080975 | 83.2316 | $6.74 | |
BSC | <0.01% | $0.101148 | 64.8395 | $6.56 | |
BSC | <0.01% | <$0.000001 | 31,772,581,859.6798 | $6.35 | |
BSC | <0.01% | $0.952968 | 6.5259 | $6.22 | |
BSC | <0.01% | $0.003579 | 1,670.3274 | $5.98 | |
BSC | <0.01% | $53.82 | 0.1084 | $5.83 | |
BSC | <0.01% | $0.002576 | 2,134.6949 | $5.5 | |
BSC | <0.01% | $0.036519 | 148.8707 | $5.44 | |
BSC | <0.01% | $0.000179 | 27,412.7505 | $4.91 | |
BSC | <0.01% | <$0.000001 | 2,979,805,890.255 | $4.87 | |
BSC | <0.01% | $4.36 | 1.1105 | $4.84 | |
BSC | <0.01% | $5.95 | 0.7689 | $4.58 | |
BSC | <0.01% | $0.000712 | 6,299.1045 | $4.48 | |
BSC | <0.01% | $0.004375 | 1,018.482 | $4.46 | |
BSC | <0.01% | $0.000004 | 1,144,517.9068 | $4.27 | |
BSC | <0.01% | $0.001595 | 2,501.0733 | $3.99 | |
BSC | <0.01% | $0.115569 | 33.7119 | $3.9 | |
BSC | <0.01% | <$0.000001 | 251,354,101.9797 | $3.8 | |
BSC | <0.01% | $0.065454 | 56.5898 | $3.7 | |
BSC | <0.01% | $0.002448 | 1,504.2194 | $3.68 | |
BSC | <0.01% | $0.018593 | 196.7385 | $3.66 | |
BSC | <0.01% | $21,382.8 | 0.00016969 | $3.63 | |
BSC | <0.01% | <$0.000001 | 30,022,298,772.2322 | $3.5 | |
BSC | <0.01% | <$0.000001 | 145,851,331.1293 | $3.44 | |
BSC | <0.01% | $0.01872 | 178.8588 | $3.35 | |
BSC | <0.01% | $0.017896 | 187.036 | $3.35 | |
BSC | <0.01% | $0.03514 | 93.4755 | $3.28 | |
BSC | <0.01% | $0.000515 | 6,235.8022 | $3.21 | |
BSC | <0.01% | $0.00324 | 928.5169 | $3.01 | |
BSC | <0.01% | $2.2 | 1.3035 | $2.87 | |
BSC | <0.01% | $0.621462 | 4.5395 | $2.82 | |
BSC | <0.01% | $0.124844 | 22.1306 | $2.76 | |
BSC | <0.01% | $0.245849 | 11.0652 | $2.72 | |
BSC | <0.01% | $0.001326 | 1,931.304 | $2.56 | |
BSC | <0.01% | $0.062875 | 40.6064 | $2.55 | |
BSC | <0.01% | $3.66 | 0.6832 | $2.5 | |
BSC | <0.01% | $0.039974 | 62.4467 | $2.5 | |
BSC | <0.01% | $5.35 | 0.4557 | $2.44 | |
BSC | <0.01% | $0.065405 | 36.3523 | $2.38 | |
BSC | <0.01% | $0.377139 | 6.1716 | $2.33 | |
BSC | <0.01% | $0.006567 | 353.3859 | $2.32 | |
BSC | <0.01% | $0.006729 | 335.1277 | $2.26 | |
BSC | <0.01% | $0.030021 | 74.2943 | $2.23 | |
BSC | <0.01% | $0.127227 | 16.9706 | $2.16 | |
BSC | <0.01% | $0.000141 | 14,956.8071 | $2.11 | |
BSC | <0.01% | $0.000058 | 34,752.2994 | $2.03 | |
BSC | <0.01% | $0.000612 | 3,224.0875 | $1.97 | |
BSC | <0.01% | $0.286029 | 6.8686 | $1.96 | |
BSC | <0.01% | $3.72 | 0.5191 | $1.93 | |
BSC | <0.01% | $0.000223 | 7,549.5271 | $1.68 | |
BSC | <0.01% | $0.000397 | 4,151.8015 | $1.65 | |
BSC | <0.01% | $0.000122 | 12,977.274 | $1.59 | |
BSC | <0.01% | $0.000062 | 25,219.8503 | $1.58 | |
BSC | <0.01% | $0.032385 | 47.1524 | $1.53 | |
BSC | <0.01% | $565.66 | 0.00259381 | $1.47 | |
BSC | <0.01% | $0.001943 | 739.2136 | $1.44 | |
BSC | <0.01% | $0.001355 | 1,040.0974 | $1.41 | |
BSC | <0.01% | $0.002144 | 641.5989 | $1.38 | |
BSC | <0.01% | $0.108257 | 12.3878 | $1.34 | |
BSC | <0.01% | $0.00371 | 346.8813 | $1.29 | |
BSC | <0.01% | $0.778121 | 1.5573 | $1.21 | |
BSC | <0.01% | $0.000003 | 372,159.536 | $1.08 | |
BSC | <0.01% | $0.000016 | 69,308.0912 | $1.08 | |
BSC | <0.01% | $0.000902 | 1,167.266 | $1.05 | |
BSC | <0.01% | $0.017413 | 57.7631 | $1.01 | |
BSC | <0.01% | $0.008702 | 111.1567 | $0.9672 | |
BSC | <0.01% | $1.99 | 0.4775 | $0.9502 | |
BSC | <0.01% | $1.05 | 0.8996 | $0.9427 | |
BSC | <0.01% | <$0.000001 | 211,453,736.924 | $0.9403 | |
BSC | <0.01% | $0.00127 | 740.234 | $0.94 | |
BSC | <0.01% | $0.018368 | 48.6999 | $0.8945 | |
BSC | <0.01% | $0.021712 | 40.0748 | $0.8701 | |
BSC | <0.01% | $1.68 | 0.4934 | $0.83 | |
BSC | <0.01% | $0.000123 | 6,684.2364 | $0.8216 | |
BSC | <0.01% | $0.001539 | 484.9014 | $0.7461 | |
BSC | <0.01% | $0.00194 | 368.5881 | $0.7149 | |
BSC | <0.01% | $0.003264 | 198.8517 | $0.649 | |
BSC | <0.01% | $1,946.87 | 0.00033055 | $0.6435 | |
BSC | <0.01% | $0.416489 | 1.5402 | $0.6414 | |
BSC | <0.01% | $0.004222 | 148.9269 | $0.6288 | |
BSC | <0.01% | $0.000003 | 175,813.796 | $0.6135 | |
BSC | <0.01% | $0.00334 | 183.3449 | $0.6122 | |
BSC | <0.01% | $0.007426 | 79.8526 | $0.593 | |
BSC | <0.01% | $0.018822 | 30.625 | $0.5764 | |
BSC | <0.01% | $0.350522 | 1.6265 | $0.5701 | |
BSC | <0.01% | $0.017583 | 32.118 | $0.5647 | |
BSC | <0.01% | $0.000001 | 391,948.2235 | $0.5448 | |
BSC | <0.01% | $0.329948 | 1.6257 | $0.5364 | |
BSC | <0.01% | $0.000001 | 854,892.6642 | $0.5345 | |
BSC | <0.01% | $0.000115 | 4,543.5918 | $0.5239 | |
BSC | <0.01% | $0.001829 | 284.4272 | $0.5202 | |
BSC | <0.01% | $1.79 | 0.2876 | $0.5147 | |
BSC | <0.01% | $0.079541 | 6.3379 | $0.5041 | |
BSC | <0.01% | $0.067543 | 7.3345 | $0.4953 | |
BSC | <0.01% | $0.000536 | 915.1713 | $0.4901 | |
BSC | <0.01% | $0.012646 | 37.178 | $0.4701 | |
BSC | <0.01% | $0.000627 | 707.5118 | $0.4436 | |
BSC | <0.01% | $0.000445 | 988.5892 | $0.4402 | |
BSC | <0.01% | $0.00006 | 7,290.2002 | $0.4369 | |
BSC | <0.01% | $0.046323 | 9.3578 | $0.4334 | |
BSC | <0.01% | <$0.000001 | 4,915,945.979 | $0.4252 | |
BSC | <0.01% | $0.257712 | 1.6449 | $0.4239 | |
BSC | <0.01% | $0.576766 | 0.7195 | $0.4149 | |
BSC | <0.01% | $0.008674 | 47.04 | $0.408 | |
BSC | <0.01% | $0.065463 | 6.2329 | $0.408 | |
BSC | <0.01% | $0.000011 | 35,892.0331 | $0.4073 | |
BSC | <0.01% | $0.000015 | 25,863.134 | $0.3984 | |
BSC | <0.01% | $0.07495 | 5.1501 | $0.3859 | |
BSC | <0.01% | $0.000153 | 2,508.2054 | $0.3847 | |
BSC | <0.01% | $0.001539 | 248.556 | $0.3825 | |
BSC | <0.01% | $0.003 | 126.8063 | $0.3803 | |
BSC | <0.01% | $0.000058 | 6,295.5324 | $0.3623 | |
BSC | <0.01% | $0.000328 | 1,089.2572 | $0.3574 | |
BSC | <0.01% | $0.000153 | 2,267.0741 | $0.3464 | |
BSC | <0.01% | $0.000329 | 1,043.4263 | $0.3433 | |
BSC | <0.01% | $0.0057 | 59.1742 | $0.3372 | |
BSC | <0.01% | $0.00387 | 85.0322 | $0.329 | |
BSC | <0.01% | $0.000669 | 467.0656 | $0.3123 | |
BSC | <0.01% | $0.000545 | 566.1596 | $0.3085 | |
BSC | <0.01% | $0.00035 | 848.7051 | $0.2968 | |
BSC | <0.01% | $0.016188 | 17.549 | $0.284 | |
BSC | <0.01% | $0.002366 | 119.8547 | $0.2835 | |
BSC | <0.01% | $0.000386 | 711.5783 | $0.2745 | |
BSC | <0.01% | $0.158184 | 1.6964 | $0.2683 | |
BSC | <0.01% | $0.002064 | 110.1412 | $0.2273 | |
BSC | <0.01% | $0.000004 | 61,701.9311 | $0.2221 | |
BSC | <0.01% | $0.002668 | 81.7628 | $0.2181 | |
BSC | <0.01% | $0.026279 | 7.715 | $0.2027 | |
BSC | <0.01% | $0.0049 | 40.8007 | $0.1999 | |
BSC | <0.01% | $0.01942 | 10.2463 | $0.1989 | |
BSC | <0.01% | $0.000656 | 275.0734 | $0.1804 | |
BSC | <0.01% | $0.003192 | 56.3374 | $0.1798 | |
BSC | <0.01% | $0.000011 | 16,595.2949 | $0.1759 | |
BSC | <0.01% | $0.043136 | 4.0411 | $0.1743 | |
BSC | <0.01% | $0.453154 | 0.3782 | $0.1713 | |
BSC | <0.01% | $0.000171 | 943.6312 | $0.1617 | |
BSC | <0.01% | <$0.000001 | 489,045,815,249.8181 | $0.1598 | |
BSC | <0.01% | $0.359408 | 0.4379 | $0.1573 | |
BSC | <0.01% | $0.000035 | 4,398.3939 | $0.1544 | |
BSC | <0.01% | $0.001614 | 91.058 | $0.147 | |
BSC | <0.01% | $0.000059 | 2,440.2357 | $0.1433 | |
BSC | <0.01% | $0.031733 | 4.303 | $0.1365 | |
BSC | <0.01% | $0.00065 | 198.8034 | $0.1292 | |
BSC | <0.01% | $0.008881 | 13.9942 | $0.1242 | |
BSC | <0.01% | $0.000155 | 772.53 | $0.1199 | |
BSC | <0.01% | $0.001135 | 104.4148 | $0.1185 | |
BSC | <0.01% | $0.000711 | 166.6288 | $0.1184 | |
BSC | <0.01% | $0.002173 | 53.069 | $0.1153 | |
BSC | <0.01% | $0.006442 | 17.0375 | $0.1097 | |
BSC | <0.01% | $3.92 | 0.0275 | $0.1077 | |
BSC | <0.01% | $0.006461 | 16.6602 | $0.1076 | |
BSC | <0.01% | $0.202901 | 0.5254 | $0.1066 | |
BSC | <0.01% | $0.000661 | 159.1788 | $0.1051 | |
BSC | <0.01% | $0.001089 | 95.8368 | $0.1044 | |
BSC | <0.01% | $0.006078 | 17.0846 | $0.1038 | |
POL | 5.50% | $0.999811 | 10,584.3134 | $10,582.31 | |
POL | 5.34% | $2,709.97 | 3.7926 | $10,277.82 | |
POL | 4.59% | $254.72 | 34.661 | $8,828.85 | |
POL | 2.59% | $95,522 | 0.0522 | $4,982.21 | |
POL | 2.22% | $0.99964 | 4,278.335 | $4,276.79 | |
POL | 2.12% | $169.47 | 24.0542 | $4,076.47 | |
POL | 1.89% | $0.307027 | 11,835.5095 | $3,633.82 | |
POL | 1.36% | $0.999763 | 2,614.6835 | $2,614.06 | |
POL | 1.03% | $18.05 | 109.8553 | $1,982.89 | |
POL | 0.72% | $4.21 | 327.0977 | $1,377.08 | |
POL | 0.63% | $1.09 | 1,120.6039 | $1,216.84 | |
POL | 0.50% | $1.6 | 597.9882 | $956.78 | |
POL | 0.50% | $9.69 | 98.6837 | $956.24 | |
POL | 0.37% | $0.361477 | 1,983.3418 | $716.93 | |
POL | 0.21% | $0.505234 | 798.0548 | $403.2 | |
POL | 0.18% | $23.75 | 14.2499 | $338.43 | |
POL | 0.16% | $1.78 | 170.1619 | $302.89 | |
POL | 0.11% | $0.350288 | 622.4069 | $218.02 | |
POL | 0.10% | $0.009897 | 20,263.43 | $200.55 | |
POL | 0.10% | $0.54159 | 344.5187 | $186.59 | |
POL | 0.07% | $102.67 | 1.388 | $142.5 | |
POL | 0.07% | $0.022641 | 6,073.5959 | $137.51 | |
POL | 0.06% | $0.172403 | 687.5985 | $118.54 | |
POL | 0.06% | $0.133263 | 850.3829 | $113.32 | |
POL | 0.05% | $1.94 | 54.1971 | $105.14 | |
POL | 0.05% | $1 | 98.1856 | $98.28 | |
POL | 0.05% | $0.894844 | 109.1525 | $97.67 | |
POL | 0.04% | $0.018402 | 4,486.0988 | $82.55 | |
POL | 0.04% | $0.024209 | 3,230.0696 | $78.2 | |
POL | 0.04% | $0.112306 | 695.3669 | $78.09 | |
POL | 0.04% | $0.655458 | 118.7416 | $77.83 | |
POL | 0.04% | $0.267456 | 262.8508 | $70.3 | |
POL | 0.03% | $0.319466 | 203.233 | $64.93 | |
POL | 0.03% | $89,364.29 | 0.0007073 | $63.21 | |
POL | 0.03% | $0.361749 | 149.9598 | $54.25 | |
POL | 0.02% | $0.416463 | 114.2973 | $47.6 | |
POL | 0.02% | <$0.000001 | 8,165,918,234.975 | $47.36 | |
POL | 0.02% | $2,709.71 | 0.016 | $43.24 | |
POL | 0.02% | $0.489652 | 86.9545 | $42.58 | |
POL | 0.02% | $186.74 | 0.2254 | $42.08 | |
POL | 0.02% | $0.999766 | 37.3025 | $37.29 | |
POL | 0.02% | $53.8 | 0.6696 | $36.02 | |
POL | 0.02% | $5.73 | 6.2799 | $35.98 | |
POL | 0.02% | $0.130372 | 264.9617 | $34.54 | |
POL | 0.02% | $244.88 | 0.1342 | $32.87 | |
POL | 0.02% | $0.865459 | 35.5103 | $30.73 | |
POL | 0.02% | $1.95 | 15.132 | $29.51 | |
POL | 0.02% | <$0.000001 | 153,316,545.253 | $29.34 | |
POL | 0.01% | $3.04 | 8.7132 | $26.49 | |
POL | 0.01% | $6,179.72 | 0.00419679 | $25.93 | |
POL | 0.01% | $8.74 | 2.9606 | $25.88 | |
POL | 0.01% | $0.007718 | 3,086.1137 | $23.82 | |
POL | 0.01% | $0.267891 | 79.187 | $21.21 | |
POL | <0.01% | $0.976442 | 19.5375 | $19.08 | |
POL | <0.01% | $0.017259 | 1,047.4918 | $18.08 | |
POL | <0.01% | $5,818.65 | 0.00271334 | $15.79 | |
POL | <0.01% | $0.002875 | 5,268.6065 | $15.15 | |
POL | <0.01% | $21.81 | 0.6829 | $14.89 | |
POL | <0.01% | $0.347311 | 42.5723 | $14.79 | |
POL | <0.01% | $0.007778 | 1,667.4834 | $12.97 | |
POL | <0.01% | $95,834 | 0.00012863 | $12.33 | |
POL | <0.01% | $0.572262 | 19.6549 | $11.25 | |
POL | <0.01% | $1.79 | 5.5933 | $10.01 | |
POL | <0.01% | $2,710.49 | 0.00369306 | $10.01 | |
POL | <0.01% | <$0.000001 | 26,830,625.3348 | $9.9 | |
POL | <0.01% | $0.042949 | 225.5963 | $9.69 | |
POL | <0.01% | $0.025581 | 329.0987 | $8.42 | |
POL | <0.01% | $0.120872 | 69.0769 | $8.35 | |
POL | <0.01% | $1.9 | 4.3794 | $8.32 | |
POL | <0.01% | $0.996034 | 7.4624 | $7.43 | |
POL | <0.01% | $1.06 | 6.3612 | $6.72 | |
POL | <0.01% | $12.14 | 0.5195 | $6.31 | |
POL | <0.01% | <$0.000001 | 11,777,356.0905 | $5.82 | |
POL | <0.01% | $0.682028 | 7.7788 | $5.31 | |
POL | <0.01% | $0.24526 | 15.9895 | $3.92 | |
POL | <0.01% | $0.000015 | 220,174.7825 | $3.39 | |
POL | <0.01% | $0.183872 | 18.4441 | $3.39 | |
POL | <0.01% | $0.097015 | 33.5898 | $3.26 | |
POL | <0.01% | $2.2 | 1.4094 | $3.1 | |
POL | <0.01% | $1 | 2.9493 | $2.95 | |
POL | <0.01% | $0.000116 | 24,861.2081 | $2.9 | |
POL | <0.01% | $1 | 2.8928 | $2.89 | |
POL | <0.01% | $0.351066 | 7.9942 | $2.81 | |
POL | <0.01% | $0.108476 | 24.5218 | $2.66 | |
POL | <0.01% | $0.000404 | 6,371.5734 | $2.57 | |
POL | <0.01% | $0.017425 | 129.6142 | $2.26 | |
POL | <0.01% | $1.35 | 1.52 | $2.05 | |
POL | <0.01% | $0.180031 | 10.1019 | $1.82 | |
POL | <0.01% | $0.077027 | 23.019 | $1.77 | |
POL | <0.01% | $0.349819 | 4.6836 | $1.64 | |
POL | <0.01% | $0.066323 | 24.1633 | $1.6 | |
POL | <0.01% | $0.000194 | 8,117.4106 | $1.57 | |
POL | <0.01% | $1,178.3 | 0.00128358 | $1.51 | |
POL | <0.01% | $0.000034 | 43,533.4188 | $1.48 | |
POL | <0.01% | $1 | 1.4257 | $1.43 | |
POL | <0.01% | $1 | 1.4171 | $1.42 | |
POL | <0.01% | $0.003048 | 429.7674 | $1.31 | |
POL | <0.01% | $0.005443 | 240.5091 | $1.31 | |
POL | <0.01% | $0.003462 | 329.7091 | $1.14 | |
POL | <0.01% | $0.000165 | 6,800 | $1.12 | |
POL | <0.01% | $0.050085 | 21.705 | $1.09 | |
POL | <0.01% | $0.025084 | 40.8989 | $1.03 | |
POL | <0.01% | $0.95952 | 1 | $0.9595 | |
POL | <0.01% | $0.534832 | 1.5259 | $0.816 | |
POL | <0.01% | $0.000011 | 73,421.1788 | $0.79 | |
POL | <0.01% | $0.000426 | 1,738.3449 | $0.7404 | |
POL | <0.01% | $0.001647 | 397.0367 | $0.654 | |
POL | <0.01% | $0.000742 | 860.1053 | $0.6386 | |
POL | <0.01% | $0.051342 | 12.0491 | $0.6186 | |
POL | <0.01% | $0.002245 | 264.6067 | $0.594 | |
POL | <0.01% | $0.039451 | 14.8261 | $0.5849 | |
POL | <0.01% | $0.01898 | 30.7597 | $0.5838 | |
POL | <0.01% | $0.003659 | 147.3731 | $0.5391 | |
POL | <0.01% | $0.158165 | 3.3963 | $0.5371 | |
POL | <0.01% | $0.036394 | 14.7183 | $0.5356 | |
POL | <0.01% | $0.003134 | 162.1253 | $0.508 | |
POL | <0.01% | $0.001079 | 460.9877 | $0.4972 | |
POL | <0.01% | $0.018707 | 26.5666 | $0.4969 | |
POL | <0.01% | <$0.000001 | 46,876,662.1718 | $0.4781 | |
POL | <0.01% | $0.000426 | 1,114.8833 | $0.4746 | |
POL | <0.01% | <$0.000001 | 944,418,313.1031 | $0.4722 | |
POL | <0.01% | $0.068396 | 6.853 | $0.4687 | |
POL | <0.01% | $0.085895 | 5.1189 | $0.4396 | |
POL | <0.01% | $0.016337 | 26.6323 | $0.435 | |
POL | <0.01% | $0.008331 | 47.5398 | $0.396 | |
POL | <0.01% | $0.001356 | 267.7467 | $0.3631 | |
POL | <0.01% | $0.19933 | 1.8162 | $0.362 | |
POL | <0.01% | $0.000474 | 741.9593 | $0.352 | |
POL | <0.01% | $0.006483 | 52.361 | $0.3394 | |
POL | <0.01% | $0.99789 | 0.3388 | $0.338 | |
POL | <0.01% | $0.004788 | 67.0518 | $0.321 | |
POL | <0.01% | $0.002666 | 110.9223 | $0.2957 | |
POL | <0.01% | $0.000264 | 1,095.092 | $0.2893 | |
POL | <0.01% | $0.028159 | 10 | $0.2815 | |
POL | <0.01% | $0.007435 | 36.9858 | $0.2749 | |
POL | <0.01% | $2.27 | 0.1097 | $0.2489 | |
POL | <0.01% | $0.000159 | 1,492.0357 | $0.2367 | |
POL | <0.01% | $0.006207 | 36.5288 | $0.2267 | |
POL | <0.01% | $0.000519 | 427.5016 | $0.2216 | |
POL | <0.01% | $0.154488 | 1.4126 | $0.2182 | |
POL | <0.01% | $0.064216 | 3.2447 | $0.2083 | |
POL | <0.01% | $0.003298 | 62.7225 | $0.2068 | |
POL | <0.01% | $0.002162 | 88.2288 | $0.1907 | |
POL | <0.01% | $14.88 | 0.0123 | $0.1824 | |
POL | <0.01% | $0.999811 | 0.1737 | $0.1736 | |
POL | <0.01% | $3,055.08 | 0.00005635 | $0.1721 | |
POL | <0.01% | $1.02 | 0.16 | $0.1636 | |
POL | <0.01% | $0.00092 | 170.3495 | $0.1566 | |
POL | <0.01% | $0.000664 | 232.9685 | $0.1547 | |
POL | <0.01% | $251.29 | 0.00059682 | $0.1499 | |
POL | <0.01% | $0.031688 | 4.6843 | $0.1484 | |
POL | <0.01% | $0.006363 | 23.182 | $0.1475 | |
POL | <0.01% | $0.001355 | 106.4158 | $0.1442 | |
POL | <0.01% | $0.002502 | 56.6345 | $0.1417 | |
POL | <0.01% | $0.999873 | 0.1396 | $0.1396 | |
POL | <0.01% | $0.379499 | 0.3656 | $0.1387 | |
POL | <0.01% | $0.004377 | 29.8491 | $0.1306 | |
POL | <0.01% | $0.99961 | 0.1305 | $0.1304 | |
POL | <0.01% | $0.999814 | 0.116 | $0.116 | |
POL | <0.01% | $0.00008 | 1,299.5242 | $0.1041 | |
OP | 5.65% | $2,711.05 | 4.0144 | $10,883.24 | |
OP | 3.27% | $0.999805 | 6,299.86 | $6,298.63 | |
OP | 2.32% | $1.13 | 3,960.065 | $4,462.34 | |
OP | 1.72% | $95,549 | 0.0346 | $3,304.58 | |
OP | 0.82% | $9.69 | 163.2377 | $1,581.77 | |
OP | 0.70% | $0.99964 | 1,339.0474 | $1,338.57 | |
OP | 0.46% | $0.070997 | 12,506.3214 | $887.91 | |
OP | 0.42% | $0.974597 | 830.7612 | $809.66 | |
OP | 0.34% | $18.07 | 36.6216 | $661.75 | |
OP | 0.24% | $0.032371 | 14,215.0458 | $460.16 | |
OP | 0.19% | $0.999734 | 362.51 | $362.41 | |
OP | 0.18% | $0.267752 | 1,263.193 | $338.22 | |
OP | 0.09% | $0.999805 | 174.6844 | $174.65 | |
OP | 0.09% | $0.470358 | 359.5886 | $169.14 | |
OP | 0.07% | $0.070997 | 1,990.9291 | $141.35 | |
OP | 0.06% | $3,233.03 | 0.0355 | $114.73 | |
OP | 0.04% | $2,650.03 | 0.0294 | $77.87 | |
OP | 0.04% | $254.46 | 0.2709 | $68.93 | |
OP | 0.03% | $0.976326 | 55.3764 | $54.07 | |
OP | 0.02% | $0.15382 | 217.9823 | $33.53 | |
OP | 0.02% | $0.007705 | 4,311.0525 | $33.22 | |
OP | 0.02% | $0.011133 | 2,755.5045 | $30.68 | |
OP | 0.01% | $0.374201 | 69.6255 | $26.05 | |
OP | 0.01% | $0.108428 | 190.0682 | $20.61 | |
OP | <0.01% | $0.000817 | 20,015.5262 | $16.36 | |
OP | <0.01% | $3,054.8 | 0.00371551 | $11.35 | |
OP | <0.01% | $1.78 | 4.0392 | $7.19 | |
OP | <0.01% | $0.000435 | 15,571.2296 | $6.77 | |
OP | <0.01% | $13.42 | 0.4099 | $5.5 | |
OP | <0.01% | $0.507267 | 9.7111 | $4.93 | |
OP | <0.01% | $1.95 | 2.0024 | $3.9 | |
OP | <0.01% | $2,551.79 | 0.00144246 | $3.68 | |
OP | <0.01% | $2.98 | 1.1641 | $3.47 | |
OP | <0.01% | $102.9 | 0.0295 | $3.04 | |
OP | <0.01% | $0.440956 | 6.4827 | $2.86 | |
OP | <0.01% | $0.999013 | 2.2847 | $2.28 | |
OP | <0.01% | $0.35021 | 6.3361 | $2.22 | |
OP | <0.01% | $0.017287 | 87.9106 | $1.52 | |
OP | <0.01% | $0.001247 | 763.2071 | $0.9518 | |
OP | <0.01% | $0.076418 | 12.101 | $0.9247 | |
OP | <0.01% | $2,707.49 | 0.00027974 | $0.7573 | |
OP | <0.01% | $0.999807 | 0.7571 | $0.7569 | |
OP | <0.01% | $1 | 0.4773 | $0.4787 | |
OP | <0.01% | $0.999561 | 0.4117 | $0.4114 | |
OP | <0.01% | $0.999873 | 0.3958 | $0.3957 | |
OP | <0.01% | $1.01 | 0.3068 | $0.3094 | |
OP | <0.01% | $0.296886 | 0.9401 | $0.279 | |
OP | <0.01% | $95,568 | 0.00000193 | $0.1846 | |
OP | <0.01% | $0.995872 | 0.1762 | $0.1754 | |
OP | <0.01% | $2,959.13 | 0.00003985 | $0.1179 | |
OP | <0.01% | $0.332741 | 0.3531 | $0.1174 | |
AVAX | 1.82% | $23.8 | 147.0243 | $3,499.35 | |
AVAX | 1.10% | $254.48 | 8.332 | $2,120.34 | |
AVAX | 0.63% | $0.999609 | 1,213.4214 | $1,212.95 | |
AVAX | 0.43% | $0.99981 | 832.6184 | $832.46 | |
AVAX | 0.42% | $0.999609 | 800.817 | $800.5 | |
AVAX | 0.40% | $0.99981 | 776.7209 | $776.57 | |
AVAX | 0.40% | $0.232803 | 3,334.7307 | $776.34 | |
AVAX | 0.39% | $3.29 | 226.2169 | $744.46 | |
AVAX | 0.22% | $0.00297 | 142,355.1486 | $422.81 | |
AVAX | 0.22% | $19.74 | 21.3193 | $420.84 | |
AVAX | 0.20% | $18.09 | 21.7467 | $393.37 | |
AVAX | 0.14% | $95,562 | 0.00272379 | $260.29 | |
AVAX | 0.13% | $0.999937 | 253.6371 | $253.62 | |
AVAX | 0.10% | $0.191306 | 965.7391 | $184.75 | |
AVAX | 0.06% | $0.009399 | 12,349.3084 | $116.07 | |
AVAX | 0.05% | $2,709.41 | 0.0336 | $91.17 | |
AVAX | 0.04% | $0.133562 | 596.8123 | $79.71 | |
AVAX | 0.04% | $9.68 | 7.9482 | $76.94 | |
AVAX | 0.04% | $377.49 | 0.1884 | $71.11 | |
AVAX | 0.04% | $0.267371 | 261.6189 | $69.95 | |
AVAX | 0.03% | $0.707686 | 81.5413 | $57.71 | |
AVAX | 0.03% | $0.120686 | 446.7046 | $53.91 | |
AVAX | 0.03% | $95,813 | 0.00054794 | $52.5 | |
AVAX | 0.02% | $0.00094 | 36,846.28 | $34.64 | |
AVAX | <0.01% | $245.14 | 0.0701 | $17.18 | |
AVAX | <0.01% | $0.989648 | 17.2855 | $17.11 | |
AVAX | <0.01% | <$0.000001 | 956,965,671.6488 | $16.27 | |
AVAX | <0.01% | $0.013124 | 829.7747 | $10.89 | |
AVAX | <0.01% | $0.018532 | 487.809 | $9.04 | |
AVAX | <0.01% | $0.350522 | 23.8859 | $8.37 | |
AVAX | <0.01% | $0.002577 | 3,221.3167 | $8.3 | |
AVAX | <0.01% | $0.017259 | 393.1893 | $6.79 | |
AVAX | <0.01% | $1 | 5.8186 | $5.83 | |
AVAX | <0.01% | $0.997661 | 4.9908 | $4.98 | |
AVAX | <0.01% | $0.232803 | 20.7874 | $4.84 | |
AVAX | <0.01% | $0.895881 | 4.5796 | $4.1 | |
AVAX | <0.01% | $0.000203 | 19,140.7765 | $3.88 | |
AVAX | <0.01% | $0.000116 | 24,861.2081 | $2.9 | |
AVAX | <0.01% | $0.037842 | 55.4868 | $2.1 | |
AVAX | <0.01% | $0.000163 | 12,549.0927 | $2.05 | |
AVAX | <0.01% | $0.331573 | 5.6452 | $1.87 | |
AVAX | <0.01% | $0.289727 | 5.3093 | $1.54 | |
AVAX | <0.01% | $0.000275 | 5,299.9459 | $1.46 | |
AVAX | <0.01% | $0.04081 | 35.1889 | $1.44 | |
AVAX | <0.01% | $0.761723 | 0.6993 | $0.5326 | |
AVAX | <0.01% | $0.00343 | 144.9317 | $0.497 | |
AVAX | <0.01% | $0.002781 | 174.2866 | $0.4847 | |
AVAX | <0.01% | $0.000129 | 3,238.6878 | $0.4186 | |
AVAX | <0.01% | $0.000369 | 739.5115 | $0.2731 | |
AVAX | <0.01% | $5,816.26 | 0.00004396 | $0.2556 | |
AVAX | <0.01% | $0.000605 | 388.4854 | $0.2349 | |
AVAX | <0.01% | $0.000074 | 2,786.8615 | $0.2064 | |
AVAX | <0.01% | $0.001844 | 106.1826 | $0.1958 | |
AVAX | <0.01% | $0.000414 | 428.165 | $0.1772 | |
AVAX | <0.01% | $0.999873 | 0.1491 | $0.1491 | |
AVAX | <0.01% | $0.000009 | 14,230.0419 | $0.1266 | |
AVAX | <0.01% | $0.00102 | 122.2491 | $0.1246 | |
AVAX | <0.01% | $28.32 | 0.00413081 | $0.1169 | |
AVAX | <0.01% | $0.00004 | 2,666.0125 | $0.1066 | |
BASE | <0.01% | <$0.000001 | 887,323,941 | $18.19 | |
BASE | <0.01% | $0.001354 | 9,000 | $12.19 | |
BASE | <0.01% | $0.00589 | 21.98 | $0.1294 | |
BASE | <0.01% | <$0.000001 | 26,642,664 | $0.1198 | |
ETH | <0.01% | <$0.000001 | 13,167,259 | $1.19 |
[ 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.