ETH Price: $2,712.58 (+1.69%)

Contract

0x150fb0Cfa5bF3D4023bA198C725b6DCBc1577f21

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Token Holdings

Transaction Hash
Method
Block
From
To
Transfer Ownersh...102643512022-06-02 13:21:58992 days ago1654176118IN
0x150fb0Cf...Bc1577f21
0 ETH0.0002398411230.001
Add Factory61053752022-04-20 16:18:321035 days ago1650471512IN
0x150fb0Cf...Bc1577f21
0 ETH0.0011069059330.001

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
1075580282023-07-30 11:00:33569 days ago1690714833
0x150fb0Cf...Bc1577f21
0 ETH
1075580282023-07-30 11:00:33569 days ago1690714833
0x150fb0Cf...Bc1577f21
0 ETH
1075580112023-07-30 10:59:59569 days ago1690714799
0x150fb0Cf...Bc1577f21
0 ETH
1075580112023-07-30 10:59:59569 days ago1690714799
0x150fb0Cf...Bc1577f21
0 ETH
1075566202023-07-30 10:13:37569 days ago1690712017
0x150fb0Cf...Bc1577f21
0 ETH
1075566202023-07-30 10:13:37569 days ago1690712017
0x150fb0Cf...Bc1577f21
0 ETH
1075565062023-07-30 10:09:49569 days ago1690711789
0x150fb0Cf...Bc1577f21
0 ETH
1075565062023-07-30 10:09:49569 days ago1690711789
0x150fb0Cf...Bc1577f21
0 ETH
1075564952023-07-30 10:09:27569 days ago1690711767
0x150fb0Cf...Bc1577f21
0 ETH
1075564952023-07-30 10:09:27569 days ago1690711767
0x150fb0Cf...Bc1577f21
0 ETH
1075545322023-07-30 9:04:01569 days ago1690707841
0x150fb0Cf...Bc1577f21
0 ETH
1075545322023-07-30 9:04:01569 days ago1690707841
0x150fb0Cf...Bc1577f21
0 ETH
1075540422023-07-30 8:47:41569 days ago1690706861
0x150fb0Cf...Bc1577f21
0 ETH
1075540422023-07-30 8:47:41569 days ago1690706861
0x150fb0Cf...Bc1577f21
0 ETH
1075531342023-07-30 8:17:25569 days ago1690705045
0x150fb0Cf...Bc1577f21
0 ETH
1075531342023-07-30 8:17:25569 days ago1690705045
0x150fb0Cf...Bc1577f21
0 ETH
1075531342023-07-30 8:17:25569 days ago1690705045
0x150fb0Cf...Bc1577f21
0 ETH
1075531342023-07-30 8:17:25569 days ago1690705045
0x150fb0Cf...Bc1577f21
0 ETH
1075531342023-07-30 8:17:25569 days ago1690705045
0x150fb0Cf...Bc1577f21
0 ETH
1075531342023-07-30 8:17:25569 days ago1690705045
0x150fb0Cf...Bc1577f21
0 ETH
1075529732023-07-30 8:12:03570 days ago1690704723
0x150fb0Cf...Bc1577f21
0 ETH
1075529732023-07-30 8:12:03570 days ago1690704723
0x150fb0Cf...Bc1577f21
0 ETH
1075526032023-07-30 7:59:43570 days ago1690703983
0x150fb0Cf...Bc1577f21
0 ETH
1075526032023-07-30 7:59:43570 days ago1690703983
0x150fb0Cf...Bc1577f21
0 ETH
1075517302023-07-30 7:30:37570 days ago1690702237
0x150fb0Cf...Bc1577f21
0 ETH
View All Internal Transactions

Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
NestedReserve

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion
File 1 of 7 : NestedReserve.sol
// 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);
    }
}

File 2 of 7 : SafeERC20.sol
// 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");
        }
    }
}

File 3 of 7 : OwnableFactoryHandler.sol
// 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);
    }
}

File 4 of 7 : IERC20.sol
// 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);
}

File 5 of 7 : Address.sol
// 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);
            }
        }
    }
}

File 6 of 7 : Ownable.sol
// 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);
    }
}

File 7 of 7 : Context.sol
// 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 5000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"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"}]

608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610bc28061007e6000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063beabacc81161005b578063beabacc8146100ea578063de05051c146100fd578063f2fde38b14610130578063f3fef3a31461014357600080fd5b806329ce1ec51461008d5780634b37c73f146100a2578063715018a6146100b55780638da5cb5b146100bd575b600080fd5b6100a061009b366004610a43565b610156565b005b6100a06100b0366004610a43565b6102ac565b6100a0610404565b60005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6100a06100f8366004610a60565b610477565b61012061010b366004610a43565b60016020526000908152604090205460ff1681565b60405190151581526020016100e1565b6100a061013e366004610a43565b610549565b6100a0610151366004610aa1565b610645565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166102255760405162461bcd60e51b815260206004820152601460248201527f4f46483a20494e56414c49445f4144445245535300000000000000000000000060448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff811660008181526001602081815260409283902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690921790915590519182527f6fdc0147105e43e21da80a75b42d0fd464060d5e1a34b0cefbf0b4ccfc2e36a191015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff1633146103135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff811660009081526001602052604090205460ff166103885760405162461bcd60e51b815260206004820152601260248201527f4f46483a204e4f545f535550504f52544544000000000000000000000000000060448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff811660008181526001602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905590519182527fafa2737b2090fa39c66b7348625f0c03726240f724defbc6216d679506f9444191016102a1565b60005473ffffffffffffffffffffffffffffffffffffffff16331461046b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101b9565b61047560006106b3565b565b3360009081526001602052604090205460ff166104d65760405162461bcd60e51b815260206004820152600e60248201527f4f46483a20464f5242494444454e00000000000000000000000000000000000060448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff83166105395760405162461bcd60e51b815260206004820152601460248201527f4e52533a20494e56414c49445f4144445245535300000000000000000000000060448201526064016101b9565b610544828483610728565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff81166106395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016101b9565b610642816106b3565b50565b3360009081526001602052604090205460ff166106a45760405162461bcd60e51b815260206004820152600e60248201527f4f46483a20464f5242494444454e00000000000000000000000000000000000060448201526064016101b9565b6106af823383610728565b5050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff848116602483015260448083018590528351808403909101815260649092018352602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152610544928692916000916107f3918516908490610883565b80519091501561054457808060200190518101906108119190610acd565b6105445760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016101b9565b6060610892848460008561089c565b90505b9392505050565b6060824710156109145760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016101b9565b843b6109625760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101b9565b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161098b9190610b1f565b60006040518083038185875af1925050503d80600081146109c8576040519150601f19603f3d011682016040523d82523d6000602084013e6109cd565b606091505b50915091506109dd8282866109e8565b979650505050505050565b606083156109f7575081610895565b825115610a075782518084602001fd5b8160405162461bcd60e51b81526004016101b99190610b3b565b73ffffffffffffffffffffffffffffffffffffffff8116811461064257600080fd5b600060208284031215610a5557600080fd5b813561089581610a21565b600080600060608486031215610a7557600080fd5b8335610a8081610a21565b92506020840135610a9081610a21565b929592945050506040919091013590565b60008060408385031215610ab457600080fd5b8235610abf81610a21565b946020939093013593505050565b600060208284031215610adf57600080fd5b8151801515811461089557600080fd5b60005b83811015610b0a578181015183820152602001610af2565b83811115610b19576000848401525b50505050565b60008251610b31818460208701610aef565b9190910192915050565b6020815260008251806020840152610b5a816040850160208701610aef565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212209193426c9910f0b372c4ba8d0ddf0bf8441183d07587ffb43ad245ac8345777d64736f6c634300080b0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100885760003560e01c8063beabacc81161005b578063beabacc8146100ea578063de05051c146100fd578063f2fde38b14610130578063f3fef3a31461014357600080fd5b806329ce1ec51461008d5780634b37c73f146100a2578063715018a6146100b55780638da5cb5b146100bd575b600080fd5b6100a061009b366004610a43565b610156565b005b6100a06100b0366004610a43565b6102ac565b6100a0610404565b60005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6100a06100f8366004610a60565b610477565b61012061010b366004610a43565b60016020526000908152604090205460ff1681565b60405190151581526020016100e1565b6100a061013e366004610a43565b610549565b6100a0610151366004610aa1565b610645565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166102255760405162461bcd60e51b815260206004820152601460248201527f4f46483a20494e56414c49445f4144445245535300000000000000000000000060448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff811660008181526001602081815260409283902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690921790915590519182527f6fdc0147105e43e21da80a75b42d0fd464060d5e1a34b0cefbf0b4ccfc2e36a191015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff1633146103135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff811660009081526001602052604090205460ff166103885760405162461bcd60e51b815260206004820152601260248201527f4f46483a204e4f545f535550504f52544544000000000000000000000000000060448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff811660008181526001602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905590519182527fafa2737b2090fa39c66b7348625f0c03726240f724defbc6216d679506f9444191016102a1565b60005473ffffffffffffffffffffffffffffffffffffffff16331461046b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101b9565b61047560006106b3565b565b3360009081526001602052604090205460ff166104d65760405162461bcd60e51b815260206004820152600e60248201527f4f46483a20464f5242494444454e00000000000000000000000000000000000060448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff83166105395760405162461bcd60e51b815260206004820152601460248201527f4e52533a20494e56414c49445f4144445245535300000000000000000000000060448201526064016101b9565b610544828483610728565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101b9565b73ffffffffffffffffffffffffffffffffffffffff81166106395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016101b9565b610642816106b3565b50565b3360009081526001602052604090205460ff166106a45760405162461bcd60e51b815260206004820152600e60248201527f4f46483a20464f5242494444454e00000000000000000000000000000000000060448201526064016101b9565b6106af823383610728565b5050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff848116602483015260448083018590528351808403909101815260649092018352602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152610544928692916000916107f3918516908490610883565b80519091501561054457808060200190518101906108119190610acd565b6105445760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016101b9565b6060610892848460008561089c565b90505b9392505050565b6060824710156109145760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016101b9565b843b6109625760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101b9565b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161098b9190610b1f565b60006040518083038185875af1925050503d80600081146109c8576040519150601f19603f3d011682016040523d82523d6000602084013e6109cd565b606091505b50915091506109dd8282866109e8565b979650505050505050565b606083156109f7575081610895565b825115610a075782518084602001fd5b8160405162461bcd60e51b81526004016101b99190610b3b565b73ffffffffffffffffffffffffffffffffffffffff8116811461064257600080fd5b600060208284031215610a5557600080fd5b813561089581610a21565b600080600060608486031215610a7557600080fd5b8335610a8081610a21565b92506020840135610a9081610a21565b929592945050506040919091013590565b60008060408385031215610ab457600080fd5b8235610abf81610a21565b946020939093013593505050565b600060208284031215610adf57600080fd5b8151801515811461089557600080fd5b60005b83811015610b0a578181015183820152602001610af2565b83811115610b19576000848401525b50505050565b60008251610b31818460208701610aef565b9190910192915050565b6020815260008251806020840152610b5a816040850160208701610aef565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212209193426c9910f0b372c4ba8d0ddf0bf8441183d07587ffb43ad245ac8345777d64736f6c634300080b0033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
BSC16.46%$655.648.3305$31,685.51
BSC6.71%$168.8676.4481$12,909.03
BSC5.20%$0.9996410,009.2193$10,005.62
BSC4.77%$1.019,108.6116$9,188.75
BSC3.12%$14.22422.082$6,002.01
BSC1.88%$0.9998223,622.0152$3,621.37
BSC1.33%$18.09141.24$2,554.88
BSC0.95%$23.877.0282$1,833.36
BSC0.59%$1.031,099.9343$1,133.31
BSC0.34%$0.1453264,542.5705$660.15
BSC0.30%$95,712.740.00609192$583.07
BSC0.27%$254.92.0388$519.68
BSC0.26%$4.65108.7847$506.32
BSC0.26%$2,711.320.183$496.17
BSC0.23%$0.65257671.6165$438.28
BSC0.22%$0.999937416.7068$416.68
BSC0.17%$2.56128.4939$329.05
BSC0.15%$2.59109.0206$282.36
BSC0.11%$0.639647317.7875$203.27
BSC0.08%$0.765457210.7451$161.32
BSC0.08%$0.0212977,500.076$159.73
BSC0.08%$4.8132.2329$155.08
BSC0.08%$0.0226386,569.0126$148.71
BSC0.08%$9.715.1131$146.57
BSC0.07%$0.307589462.953$142.4
BSC0.06%$8.8612.8092$113.47
BSC0.05%$716.560.1242$89.02
BSC0.03%$0.267919241.1215$64.6
BSC0.03%$0.308387204.6653$63.12
BSC0.03%$3.1419.217$60.41
BSC0.03%$0.0099045,724.6466$56.7
BSC0.03%$0.000203257,521.2979$52.29
BSC0.02%$0.65345972.9871$47.69
BSC0.02%$244.670.17$41.59
BSC0.02%$40.881.0064$41.14
BSC0.02%$0.267546152.0716$40.69
BSC0.02%$0.0148842,619.1771$38.99
BSC0.02%$0.096558401.8751$38.8
BSC0.02%$0.120833318.9384$38.54
BSC0.02%$9.453.8023$35.93
BSC0.02%$0.00212415,281.4224$32.46
BSC0.02%$0.0219071,412.9439$30.95
BSC0.01%$0.70442140.0584$28.22
BSC0.01%$0.0116132,180.7601$25.33
BSC0.01%$134.770.1848$24.91
BSC0.01%$0.5099348.177$24.57
BSC0.01%$0.000119199,174.0159$23.63
BSC0.01%$0.21396108.8421$23.29
BSC0.01%$0.200838115.5983$23.22
BSC0.01%$3.296.8108$22.44
BSC0.01%$0.067986308.6291$20.98
BSC0.01%$0.00045445,002.2023$20.42
BSC0.01%$0.0073122,768.2879$20.24
BSC0.01%$0.25411479.1198$20.11
BSC0.01%$0.000095204,829.6285$19.47
BSC<0.01%$0.05552331.9295$18.43
BSC<0.01%$0.020074915.6911$18.38
BSC<0.01%$0.0120391,483.3514$17.86
BSC<0.01%$0.22029180.8232$17.8
BSC<0.01%$4.154.1038$17.03
BSC<0.01%$0.65858824.2693$15.98
BSC<0.01%$0.034148448.5035$15.32
BSC<0.01%$4.223.5925$15.16
BSC<0.01%$205.080.0704$14.45
BSC<0.01%$0.046409300.3877$13.94
BSC<0.01%$0.17501876.3439$13.36
BSC<0.01%$2,683.920.00483385$12.97
BSC<0.01%$0.094609136.5582$12.92
BSC<0.01%$300.4268$12.8
BSC<0.01%$0.12130694.1355$11.42
BSC<0.01%$0.05892191.3041$11.27
BSC<0.01%$0.24558443.8621$10.77
BSC<0.01%<$0.000001113,067,000,000$10.44
BSC<0.01%$0.0086961,192.7387$10.37
BSC<0.01%$319.360.0318$10.15
BSC<0.01%$1.37.7673$10.12
BSC<0.01%$0.020132462.5499$9.31
BSC<0.01%<$0.00000127,669,068,239,731.539$8.87
BSC<0.01%$0.00071511,489.035$8.21
BSC<0.01%$0.014326570.0264$8.17
BSC<0.01%$0.025114300.5953$7.55
BSC<0.01%$0.68140810.7185$7.3
BSC<0.01%$0.7822049.1504$7.16
BSC<0.01%$0.08097583.2316$6.74
BSC<0.01%$0.10114864.8395$6.56
BSC<0.01%<$0.00000131,772,581,859.6798$6.35
BSC<0.01%$0.9529686.5259$6.22
BSC<0.01%$0.0035791,670.3274$5.98
BSC<0.01%$53.820.1084$5.83
BSC<0.01%$0.0025762,134.6949$5.5
BSC<0.01%$0.036519148.8707$5.44
BSC<0.01%$0.00017927,412.7505$4.91
BSC<0.01%<$0.0000012,979,805,890.255$4.87
BSC<0.01%$4.361.1105$4.84
BSC<0.01%$5.950.7689$4.58
BSC<0.01%$0.0007126,299.1045$4.48
BSC<0.01%$0.0043751,018.482$4.46
BSC<0.01%$0.0000041,144,517.9068$4.27
BSC<0.01%$0.0015952,501.0733$3.99
BSC<0.01%$0.11556933.7119$3.9
BSC<0.01%<$0.000001251,354,101.9797$3.8
BSC<0.01%$0.06545456.5898$3.7
BSC<0.01%$0.0024481,504.2194$3.68
BSC<0.01%$0.018593196.7385$3.66
BSC<0.01%$21,382.80.00016969$3.63
BSC<0.01%<$0.00000130,022,298,772.2322$3.5
BSC<0.01%<$0.000001145,851,331.1293$3.44
BSC<0.01%$0.01872178.8588$3.35
BSC<0.01%$0.017896187.036$3.35
BSC<0.01%$0.0351493.4755$3.28
BSC<0.01%$0.0005156,235.8022$3.21
BSC<0.01%$0.00324928.5169$3.01
BSC<0.01%$2.21.3035$2.87
BSC<0.01%$0.6214624.5395$2.82
BSC<0.01%$0.12484422.1306$2.76
BSC<0.01%$0.24584911.0652$2.72
BSC<0.01%$0.0013261,931.304$2.56
BSC<0.01%$0.06287540.6064$2.55
BSC<0.01%$3.660.6832$2.5
BSC<0.01%$0.03997462.4467$2.5
BSC<0.01%$5.350.4557$2.44
BSC<0.01%$0.06540536.3523$2.38
BSC<0.01%$0.3771396.1716$2.33
BSC<0.01%$0.006567353.3859$2.32
BSC<0.01%$0.006729335.1277$2.26
BSC<0.01%$0.03002174.2943$2.23
BSC<0.01%$0.12722716.9706$2.16
BSC<0.01%$0.00014114,956.8071$2.11
BSC<0.01%$0.00005834,752.2994$2.03
BSC<0.01%$0.0006123,224.0875$1.97
BSC<0.01%$0.2860296.8686$1.96
BSC<0.01%$3.720.5191$1.93
BSC<0.01%$0.0002237,549.5271$1.68
BSC<0.01%$0.0003974,151.8015$1.65
BSC<0.01%$0.00012212,977.274$1.59
BSC<0.01%$0.00006225,219.8503$1.58
BSC<0.01%$0.03238547.1524$1.53
BSC<0.01%$565.660.00259381$1.47
BSC<0.01%$0.001943739.2136$1.44
BSC<0.01%$0.0013551,040.0974$1.41
BSC<0.01%$0.002144641.5989$1.38
BSC<0.01%$0.10825712.3878$1.34
BSC<0.01%$0.00371346.8813$1.29
BSC<0.01%$0.7781211.5573$1.21
BSC<0.01%$0.000003372,159.536$1.08
BSC<0.01%$0.00001669,308.0912$1.08
BSC<0.01%$0.0009021,167.266$1.05
BSC<0.01%$0.01741357.7631$1.01
BSC<0.01%$0.008702111.1567$0.9672
BSC<0.01%$1.990.4775$0.9502
BSC<0.01%$1.050.8996$0.9427
BSC<0.01%<$0.000001211,453,736.924$0.9403
BSC<0.01%$0.00127740.234$0.94
BSC<0.01%$0.01836848.6999$0.8945
BSC<0.01%$0.02171240.0748$0.8701
BSC<0.01%$1.680.4934$0.83
BSC<0.01%$0.0001236,684.2364$0.8216
BSC<0.01%$0.001539484.9014$0.7461
BSC<0.01%$0.00194368.5881$0.7149
BSC<0.01%$0.003264198.8517$0.649
BSC<0.01%$1,946.870.00033055$0.6435
BSC<0.01%$0.4164891.5402$0.6414
BSC<0.01%$0.004222148.9269$0.6288
BSC<0.01%$0.000003175,813.796$0.6135
BSC<0.01%$0.00334183.3449$0.6122
BSC<0.01%$0.00742679.8526$0.593
BSC<0.01%$0.01882230.625$0.5764
BSC<0.01%$0.3505221.6265$0.5701
BSC<0.01%$0.01758332.118$0.5647
BSC<0.01%$0.000001391,948.2235$0.5448
BSC<0.01%$0.3299481.6257$0.5364
BSC<0.01%$0.000001854,892.6642$0.5345
BSC<0.01%$0.0001154,543.5918$0.5239
BSC<0.01%$0.001829284.4272$0.5202
BSC<0.01%$1.790.2876$0.5147
BSC<0.01%$0.0795416.3379$0.5041
BSC<0.01%$0.0675437.3345$0.4953
BSC<0.01%$0.000536915.1713$0.4901
BSC<0.01%$0.01264637.178$0.4701
BSC<0.01%$0.000627707.5118$0.4436
BSC<0.01%$0.000445988.5892$0.4402
BSC<0.01%$0.000067,290.2002$0.4369
BSC<0.01%$0.0463239.3578$0.4334
BSC<0.01%<$0.0000014,915,945.979$0.4252
BSC<0.01%$0.2577121.6449$0.4239
BSC<0.01%$0.5767660.7195$0.4149
BSC<0.01%$0.00867447.04$0.408
BSC<0.01%$0.0654636.2329$0.408
BSC<0.01%$0.00001135,892.0331$0.4073
BSC<0.01%$0.00001525,863.134$0.3984
BSC<0.01%$0.074955.1501$0.3859
BSC<0.01%$0.0001532,508.2054$0.3847
BSC<0.01%$0.001539248.556$0.3825
BSC<0.01%$0.003126.8063$0.3803
BSC<0.01%$0.0000586,295.5324$0.3623
BSC<0.01%$0.0003281,089.2572$0.3574
BSC<0.01%$0.0001532,267.0741$0.3464
BSC<0.01%$0.0003291,043.4263$0.3433
BSC<0.01%$0.005759.1742$0.3372
BSC<0.01%$0.0038785.0322$0.329
BSC<0.01%$0.000669467.0656$0.3123
BSC<0.01%$0.000545566.1596$0.3085
BSC<0.01%$0.00035848.7051$0.2968
BSC<0.01%$0.01618817.549$0.284
BSC<0.01%$0.002366119.8547$0.2835
BSC<0.01%$0.000386711.5783$0.2745
BSC<0.01%$0.1581841.6964$0.2683
BSC<0.01%$0.002064110.1412$0.2273
BSC<0.01%$0.00000461,701.9311$0.2221
BSC<0.01%$0.00266881.7628$0.2181
BSC<0.01%$0.0262797.715$0.2027
BSC<0.01%$0.004940.8007$0.1999
BSC<0.01%$0.0194210.2463$0.1989
BSC<0.01%$0.000656275.0734$0.1804
BSC<0.01%$0.00319256.3374$0.1798
BSC<0.01%$0.00001116,595.2949$0.1759
BSC<0.01%$0.0431364.0411$0.1743
BSC<0.01%$0.4531540.3782$0.1713
BSC<0.01%$0.000171943.6312$0.1617
BSC<0.01%<$0.000001489,045,815,249.8181$0.1598
BSC<0.01%$0.3594080.4379$0.1573
BSC<0.01%$0.0000354,398.3939$0.1544
BSC<0.01%$0.00161491.058$0.147
BSC<0.01%$0.0000592,440.2357$0.1433
BSC<0.01%$0.0317334.303$0.1365
BSC<0.01%$0.00065198.8034$0.1292
BSC<0.01%$0.00888113.9942$0.1242
BSC<0.01%$0.000155772.53$0.1199
BSC<0.01%$0.001135104.4148$0.1185
BSC<0.01%$0.000711166.6288$0.1184
BSC<0.01%$0.00217353.069$0.1153
BSC<0.01%$0.00644217.0375$0.1097
BSC<0.01%$3.920.0275$0.1077
BSC<0.01%$0.00646116.6602$0.1076
BSC<0.01%$0.2029010.5254$0.1066
BSC<0.01%$0.000661159.1788$0.1051
BSC<0.01%$0.00108995.8368$0.1044
BSC<0.01%$0.00607817.0846$0.1038
POL5.50%$0.99981110,584.3134$10,582.31
POL5.34%$2,709.973.7926$10,277.82
POL4.59%$254.7234.661$8,828.85
POL2.59%$95,5220.0522$4,982.21
POL2.22%$0.999644,278.335$4,276.79
POL2.12%$169.4724.0542$4,076.47
POL1.89%$0.30702711,835.5095$3,633.82
POL1.36%$0.9997632,614.6835$2,614.06
POL1.03%$18.05109.8553$1,982.89
POL0.72%$4.21327.0977$1,377.08
POL0.63%$1.091,120.6039$1,216.84
POL0.50%$1.6597.9882$956.78
POL0.50%$9.6998.6837$956.24
POL0.37%$0.3614771,983.3418$716.93
POL0.21%$0.505234798.0548$403.2
POL0.18%$23.7514.2499$338.43
POL0.16%$1.78170.1619$302.89
POL0.11%$0.350288622.4069$218.02
POL0.10%$0.00989720,263.43$200.55
POL0.10%$0.54159344.5187$186.59
POL0.07%$102.671.388$142.5
POL0.07%$0.0226416,073.5959$137.51
POL0.06%$0.172403687.5985$118.54
POL0.06%$0.133263850.3829$113.32
POL0.05%$1.9454.1971$105.14
POL0.05%$198.1856$98.28
POL0.05%$0.894844109.1525$97.67
POL0.04%$0.0184024,486.0988$82.55
POL0.04%$0.0242093,230.0696$78.2
POL0.04%$0.112306695.3669$78.09
POL0.04%$0.655458118.7416$77.83
POL0.04%$0.267456262.8508$70.3
POL0.03%$0.319466203.233$64.93
POL0.03%$89,364.290.0007073$63.21
POL0.03%$0.361749149.9598$54.25
POL0.02%$0.416463114.2973$47.6
POL0.02%<$0.0000018,165,918,234.975$47.36
POL0.02%$2,709.710.016$43.24
POL0.02%$0.48965286.9545$42.58
POL0.02%$186.740.2254$42.08
POL0.02%$0.99976637.3025$37.29
POL0.02%$53.80.6696$36.02
POL0.02%$5.736.2799$35.98
POL0.02%$0.130372264.9617$34.54
POL0.02%$244.880.1342$32.87
POL0.02%$0.86545935.5103$30.73
POL0.02%$1.9515.132$29.51
POL0.02%<$0.000001153,316,545.253$29.34
POL0.01%$3.048.7132$26.49
POL0.01%$6,179.720.00419679$25.93
POL0.01%$8.742.9606$25.88
POL0.01%$0.0077183,086.1137$23.82
POL0.01%$0.26789179.187$21.21
POL<0.01%$0.97644219.5375$19.08
POL<0.01%$0.0172591,047.4918$18.08
POL<0.01%$5,818.650.00271334$15.79
POL<0.01%$0.0028755,268.6065$15.15
POL<0.01%$21.810.6829$14.89
POL<0.01%$0.34731142.5723$14.79
POL<0.01%$0.0077781,667.4834$12.97
POL<0.01%$95,8340.00012863$12.33
POL<0.01%$0.57226219.6549$11.25
POL<0.01%$1.795.5933$10.01
POL<0.01%$2,710.490.00369306$10.01
POL<0.01%<$0.00000126,830,625.3348$9.9
POL<0.01%$0.042949225.5963$9.69
POL<0.01%$0.025581329.0987$8.42
POL<0.01%$0.12087269.0769$8.35
POL<0.01%$1.94.3794$8.32
POL<0.01%$0.9960347.4624$7.43
POL<0.01%$1.066.3612$6.72
POL<0.01%$12.140.5195$6.31
POL<0.01%<$0.00000111,777,356.0905$5.82
POL<0.01%$0.6820287.7788$5.31
POL<0.01%$0.2452615.9895$3.92
POL<0.01%$0.000015220,174.7825$3.39
POL<0.01%$0.18387218.4441$3.39
POL<0.01%$0.09701533.5898$3.26
POL<0.01%$2.21.4094$3.1
POL<0.01%$12.9493$2.95
POL<0.01%$0.00011624,861.2081$2.9
POL<0.01%$12.8928$2.89
POL<0.01%$0.3510667.9942$2.81
POL<0.01%$0.10847624.5218$2.66
POL<0.01%$0.0004046,371.5734$2.57
POL<0.01%$0.017425129.6142$2.26
POL<0.01%$1.351.52$2.05
POL<0.01%$0.18003110.1019$1.82
POL<0.01%$0.07702723.019$1.77
POL<0.01%$0.3498194.6836$1.64
POL<0.01%$0.06632324.1633$1.6
POL<0.01%$0.0001948,117.4106$1.57
POL<0.01%$1,178.30.00128358$1.51
POL<0.01%$0.00003443,533.4188$1.48
POL<0.01%$11.4257$1.43
POL<0.01%$11.4171$1.42
POL<0.01%$0.003048429.7674$1.31
POL<0.01%$0.005443240.5091$1.31
POL<0.01%$0.003462329.7091$1.14
POL<0.01%$0.0001656,800$1.12
POL<0.01%$0.05008521.705$1.09
POL<0.01%$0.02508440.8989$1.03
POL<0.01%$0.959521$0.9595
POL<0.01%$0.5348321.5259$0.816
POL<0.01%$0.00001173,421.1788$0.79
POL<0.01%$0.0004261,738.3449$0.7404
POL<0.01%$0.001647397.0367$0.654
POL<0.01%$0.000742860.1053$0.6386
POL<0.01%$0.05134212.0491$0.6186
POL<0.01%$0.002245264.6067$0.594
POL<0.01%$0.03945114.8261$0.5849
POL<0.01%$0.0189830.7597$0.5838
POL<0.01%$0.003659147.3731$0.5391
POL<0.01%$0.1581653.3963$0.5371
POL<0.01%$0.03639414.7183$0.5356
POL<0.01%$0.003134162.1253$0.508
POL<0.01%$0.001079460.9877$0.4972
POL<0.01%$0.01870726.5666$0.4969
POL<0.01%<$0.00000146,876,662.1718$0.4781
POL<0.01%$0.0004261,114.8833$0.4746
POL<0.01%<$0.000001944,418,313.1031$0.4722
POL<0.01%$0.0683966.853$0.4687
POL<0.01%$0.0858955.1189$0.4396
POL<0.01%$0.01633726.6323$0.435
POL<0.01%$0.00833147.5398$0.396
POL<0.01%$0.001356267.7467$0.3631
POL<0.01%$0.199331.8162$0.362
POL<0.01%$0.000474741.9593$0.352
POL<0.01%$0.00648352.361$0.3394
POL<0.01%$0.997890.3388$0.338
POL<0.01%$0.00478867.0518$0.321
POL<0.01%$0.002666110.9223$0.2957
POL<0.01%$0.0002641,095.092$0.2893
POL<0.01%$0.02815910$0.2815
POL<0.01%$0.00743536.9858$0.2749
POL<0.01%$2.270.1097$0.2489
POL<0.01%$0.0001591,492.0357$0.2367
POL<0.01%$0.00620736.5288$0.2267
POL<0.01%$0.000519427.5016$0.2216
POL<0.01%$0.1544881.4126$0.2182
POL<0.01%$0.0642163.2447$0.2083
POL<0.01%$0.00329862.7225$0.2068
POL<0.01%$0.00216288.2288$0.1907
POL<0.01%$14.880.0123$0.1824
POL<0.01%$0.9998110.1737$0.1736
POL<0.01%$3,055.080.00005635$0.1721
POL<0.01%$1.020.16$0.1636
POL<0.01%$0.00092170.3495$0.1566
POL<0.01%$0.000664232.9685$0.1547
POL<0.01%$251.290.00059682$0.1499
POL<0.01%$0.0316884.6843$0.1484
POL<0.01%$0.00636323.182$0.1475
POL<0.01%$0.001355106.4158$0.1442
POL<0.01%$0.00250256.6345$0.1417
POL<0.01%$0.9998730.1396$0.1396
POL<0.01%$0.3794990.3656$0.1387
POL<0.01%$0.00437729.8491$0.1306
POL<0.01%$0.999610.1305$0.1304
POL<0.01%$0.9998140.116$0.116
POL<0.01%$0.000081,299.5242$0.1041
OP5.65%$2,711.054.0144$10,883.24
OP3.27%$0.9998056,299.86$6,298.63
OP2.32%$1.133,960.065$4,462.34
OP1.72%$95,5490.0346$3,304.58
OP0.82%$9.69163.2377$1,581.77
OP0.70%$0.999641,339.0474$1,338.57
OP0.46%$0.07099712,506.3214$887.91
OP0.42%$0.974597830.7612$809.66
OP0.34%$18.0736.6216$661.75
OP0.24%$0.03237114,215.0458$460.16
OP0.19%$0.999734362.51$362.41
OP0.18%$0.2677521,263.193$338.22
OP0.09%$0.999805174.6844$174.65
OP0.09%$0.470358359.5886$169.14
OP0.07%$0.0709971,990.9291$141.35
OP0.06%$3,233.030.0355$114.73
OP0.04%$2,650.030.0294$77.87
OP0.04%$254.460.2709$68.93
OP0.03%$0.97632655.3764$54.07
OP0.02%$0.15382217.9823$33.53
OP0.02%$0.0077054,311.0525$33.22
OP0.02%$0.0111332,755.5045$30.68
OP0.01%$0.37420169.6255$26.05
OP0.01%$0.108428190.0682$20.61
OP<0.01%$0.00081720,015.5262$16.36
OP<0.01%$3,054.80.00371551$11.35
OP<0.01%$1.784.0392$7.19
OP<0.01%$0.00043515,571.2296$6.77
OP<0.01%$13.420.4099$5.5
OP<0.01%$0.5072679.7111$4.93
OP<0.01%$1.952.0024$3.9
OP<0.01%$2,551.790.00144246$3.68
OP<0.01%$2.981.1641$3.47
OP<0.01%$102.90.0295$3.04
OP<0.01%$0.4409566.4827$2.86
OP<0.01%$0.9990132.2847$2.28
OP<0.01%$0.350216.3361$2.22
OP<0.01%$0.01728787.9106$1.52
OP<0.01%$0.001247763.2071$0.9518
OP<0.01%$0.07641812.101$0.9247
OP<0.01%$2,707.490.00027974$0.7573
OP<0.01%$0.9998070.7571$0.7569
OP<0.01%$10.4773$0.4787
OP<0.01%$0.9995610.4117$0.4114
OP<0.01%$0.9998730.3958$0.3957
OP<0.01%$1.010.3068$0.3094
OP<0.01%$0.2968860.9401$0.279
OP<0.01%$95,5680.00000193$0.1846
OP<0.01%$0.9958720.1762$0.1754
OP<0.01%$2,959.130.00003985$0.1179
OP<0.01%$0.3327410.3531$0.1174
AVAX1.82%$23.8147.0243$3,499.35
AVAX1.10%$254.488.332$2,120.34
AVAX0.63%$0.9996091,213.4214$1,212.95
AVAX0.43%$0.99981832.6184$832.46
AVAX0.42%$0.999609800.817$800.5
AVAX0.40%$0.99981776.7209$776.57
AVAX0.40%$0.2328033,334.7307$776.34
AVAX0.39%$3.29226.2169$744.46
AVAX0.22%$0.00297142,355.1486$422.81
AVAX0.22%$19.7421.3193$420.84
AVAX0.20%$18.0921.7467$393.37
AVAX0.14%$95,5620.00272379$260.29
AVAX0.13%$0.999937253.6371$253.62
AVAX0.10%$0.191306965.7391$184.75
AVAX0.06%$0.00939912,349.3084$116.07
AVAX0.05%$2,709.410.0336$91.17
AVAX0.04%$0.133562596.8123$79.71
AVAX0.04%$9.687.9482$76.94
AVAX0.04%$377.490.1884$71.11
AVAX0.04%$0.267371261.6189$69.95
AVAX0.03%$0.70768681.5413$57.71
AVAX0.03%$0.120686446.7046$53.91
AVAX0.03%$95,8130.00054794$52.5
AVAX0.02%$0.0009436,846.28$34.64
AVAX<0.01%$245.140.0701$17.18
AVAX<0.01%$0.98964817.2855$17.11
AVAX<0.01%<$0.000001956,965,671.6488$16.27
AVAX<0.01%$0.013124829.7747$10.89
AVAX<0.01%$0.018532487.809$9.04
AVAX<0.01%$0.35052223.8859$8.37
AVAX<0.01%$0.0025773,221.3167$8.3
AVAX<0.01%$0.017259393.1893$6.79
AVAX<0.01%$15.8186$5.83
AVAX<0.01%$0.9976614.9908$4.98
AVAX<0.01%$0.23280320.7874$4.84
AVAX<0.01%$0.8958814.5796$4.1
AVAX<0.01%$0.00020319,140.7765$3.88
AVAX<0.01%$0.00011624,861.2081$2.9
AVAX<0.01%$0.03784255.4868$2.1
AVAX<0.01%$0.00016312,549.0927$2.05
AVAX<0.01%$0.3315735.6452$1.87
AVAX<0.01%$0.2897275.3093$1.54
AVAX<0.01%$0.0002755,299.9459$1.46
AVAX<0.01%$0.0408135.1889$1.44
AVAX<0.01%$0.7617230.6993$0.5326
AVAX<0.01%$0.00343144.9317$0.497
AVAX<0.01%$0.002781174.2866$0.4847
AVAX<0.01%$0.0001293,238.6878$0.4186
AVAX<0.01%$0.000369739.5115$0.2731
AVAX<0.01%$5,816.260.00004396$0.2556
AVAX<0.01%$0.000605388.4854$0.2349
AVAX<0.01%$0.0000742,786.8615$0.2064
AVAX<0.01%$0.001844106.1826$0.1958
AVAX<0.01%$0.000414428.165$0.1772
AVAX<0.01%$0.9998730.1491$0.1491
AVAX<0.01%$0.00000914,230.0419$0.1266
AVAX<0.01%$0.00102122.2491$0.1246
AVAX<0.01%$28.320.00413081$0.1169
AVAX<0.01%$0.000042,666.0125$0.1066
BASE<0.01%<$0.000001887,323,941$18.19
BASE<0.01%$0.0013549,000$12.19
BASE<0.01%$0.0058921.98$0.1294
BASE<0.01%<$0.00000126,642,664$0.1198
ETH<0.01%<$0.00000113,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.