Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 38 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Owner Mint To N ... | 19178310 | 289 days ago | IN | 0 ETH | 0.00522262 | ||||
Owner Mint To N ... | 18777993 | 345 days ago | IN | 0 ETH | 0.00748077 | ||||
Owner Mint To N ... | 18399369 | 398 days ago | IN | 0 ETH | 0.00140849 | ||||
Owner Mint To N ... | 17688693 | 498 days ago | IN | 0 ETH | 0.05331964 | ||||
Owner Mint To N ... | 17502281 | 524 days ago | IN | 0 ETH | 0.00397989 | ||||
Owner Mint To N ... | 17331548 | 548 days ago | IN | 0 ETH | 0.00444809 | ||||
Owner Mint To N ... | 17331026 | 548 days ago | IN | 0 ETH | 0.01786159 | ||||
Owner Mint To N ... | 16725187 | 634 days ago | IN | 0 ETH | 0.03205163 | ||||
Owner Mint To N ... | 16533271 | 661 days ago | IN | 0 ETH | 0.01121058 | ||||
Owner Mint To N ... | 16489754 | 667 days ago | IN | 0 ETH | 0.00389507 | ||||
Owner Mint To N ... | 16423656 | 676 days ago | IN | 0 ETH | 0.0178389 | ||||
Owner Bulk Mint | 16330228 | 689 days ago | IN | 0 ETH | 0.00245318 | ||||
Owner Mint | 16328424 | 689 days ago | IN | 0 ETH | 0.00297476 | ||||
Owner Mint To N ... | 16323798 | 690 days ago | IN | 0 ETH | 0.00264334 | ||||
Owner Mint To N ... | 16323568 | 690 days ago | IN | 0 ETH | 0.00407961 | ||||
Owner Mint To N ... | 16200166 | 707 days ago | IN | 0 ETH | 0.00427175 | ||||
Owner Bulk Mint | 16199084 | 707 days ago | IN | 0 ETH | 0.00244185 | ||||
Owner Mint To N ... | 16199070 | 707 days ago | IN | 0 ETH | 0.00480394 | ||||
Owner Mint To N ... | 16193952 | 708 days ago | IN | 0 ETH | 0.00286644 | ||||
Owner Mint To N ... | 16178357 | 710 days ago | IN | 0 ETH | 0.00215643 | ||||
Owner Mint | 16162794 | 712 days ago | IN | 0 ETH | 0.00187603 | ||||
Owner Mint To N ... | 16129221 | 717 days ago | IN | 0 ETH | 0.00445034 | ||||
Owner Mint To N ... | 16086185 | 723 days ago | IN | 0 ETH | 0.01242185 | ||||
Owner Mint To N ... | 16076626 | 724 days ago | IN | 0 ETH | 0.00275028 | ||||
Owner Bulk Mint | 16070983 | 725 days ago | IN | 0 ETH | 0.00188405 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
OwnerMintModuleERC721
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-02 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.15; // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } interface ITokenRecoverable { // Events for token recovery (ERC20) and (ERC721) event TokenRecoveredERC20( address indexed recipient, address indexed erc20, uint256 amount ); event TokenRecoveredERC721( address indexed recipient, address indexed erc721, uint256 tokenId ); /** * Allows the owner of an ERC20Club or ERC721Collective to return * any ERC20 tokens erroneously sent to the contract. * * Emits a `TokenRecoveredERC20` event. * * Requirements: * - The caller must be the (Club or Collective) token contract owner. * @param recipient Address that erroneously sent the ERC20 token(s) * @param erc20 Erroneously-sent ERC20 token to recover * @param amount Amount to recover */ function recoverERC20( address recipient, address erc20, uint256 amount ) external; /** * Allows the owner of an ERC20Club or ERC721Collective to return * any ERC721 tokens erroneously sent to the contract. * * Emits a `TokenRecoveredERC721` event. * * Requirements: * - The caller must be the (Club or Collective) token contract owner. * @param recipient Address that erroneously sent the ERC721 token * @param erc721 Erroneously-sent ERC721 token to recover * @param tokenId The tokenId to recover */ function recoverERC721( address recipient, address erc721, uint256 tokenId ) external; } /** * Interface for a Guard that governs whether a token can be minted, burned, or * transferred by a particular operator, from a particular sender (`from` is * address 0 iff the token is being minted), to a particular recipient (`to` is * address 0 iff the token is being burned). */ interface IGuard { /** * @return True iff the transaction is allowed * @param operator Transaction msg.sender * @param from Token sender * @param to Token recipient * @param value Amount (ERC20) or token ID (ERC721) */ function isAllowed( address operator, address from, address to, uint256 value // amount (ERC20) or tokenId (ERC721) ) external view returns (bool); } interface ITokenEnforceable is ITokenRecoverable { event ControlDisabled(address indexed controller); event BatcherUpdated(address batcher); event GuardUpdated(GuardType indexed guard, address indexed implementation); event GuardLocked( bool mintGuardLocked, bool burnGuardLocked, bool transferGuardLocked ); /** * @return The address of the transaction batcher used to batch calls over * onlyOwner functions. */ function batcher() external view returns (address); /** * @return True iff the token contract owner is allowed to mint, burn, or * transfer on behalf of arbitrary addresses. */ function isControllable() external view returns (bool); /** * @return The address of the Guard used to determine whether a mint is * allowed. The contract at this address is assumed to implement the IGuard * interface. */ function mintGuard() external view returns (IGuard); /** * @return The address of the Guard used to determine whether a burn is * allowed. The contract at this address is assumed to implement the IGuard * interface. */ function burnGuard() external view returns (IGuard); /** * @return The address of the Guard used to determine whether a transfer is * allowed. The contract at this address is assumed to implement the IGuard * interface. */ function transferGuard() external view returns (IGuard); /** * @return True iff the mint Guard cannot be changed. */ function mintGuardLocked() external view returns (bool); /** * @return True iff the burn Guard cannot be changed. */ function burnGuardLocked() external view returns (bool); /** * @return True iff the transfer Guard cannot be changed. */ function transferGuardLocked() external view returns (bool); /** * Irreversibly disables the token contract owner from minting, burning, * and transferring on behalf of arbitrary addresses. * * Emits a `ControlDisabled` event. * * Requirements: * - The caller must be the token contract owner or the batcher. */ function disableControl() external; /** * Irreversibly prevents the token contract owner from changing the mint, * burn, and/or transfer Guards. * * If at least one guard was requested to be locked, emits a `GuardLocked` * event confirming whether each Guard is locked. * * Requirements: * - The caller must be the token contract owner or the batcher. * @param mintGuardLock If true, the mint Guard will be locked. If false, * does nothing to the mint Guard. * @param burnGuardLock If true, the mint Guard will be locked. If false, * does nothing to the burn Guard. * @param transferGuardLock If true, the mint Guard will be locked. If * false, does nothing to the transfer Guard. */ function lockGuards( bool mintGuardLock, bool burnGuardLock, bool transferGuardLock ) external; /** * Update the address of the batcher for batching calls over * onlyOwner functions. * * Emits a `BatcherUpdated` event. * * Requirements: * - The caller must be the token contract owner or the batcher. * @param implementation Address of new batcher */ function updateBatcher(address implementation) external; /** * Update the address of the Guard for minting. The contract at the * passed-in address is assumed to implement the IGuard interface. * * Emits a `GuardUpdated` event with `GuardType.Mint`. * * Requirements: * - The caller must be the token contract owner or the batcher. * - The mint Guard must not be locked. * @param implementation Address of new mint Guard */ function updateMintGuard(address implementation) external; /** * Update the address of the Guard for burning. The contract at the * passed-in address is assumed to implement the IGuard interface. * * Emits a `GuardUpdated` event with `GuardType.Burn`. * * Requirements: * - The caller must be the token contract owner or the batcher. * - The burn Guard must not be locked. * @param implementation Address of new burn Guard */ function updateBurnGuard(address implementation) external; /** * Update the address of the Guard for transferring. The contract at the * passed-in address is assumed to implement the IGuard interface. * * Emits a `GuardUpdated` event with `GuardType.Transfer`. * * Requirements: * - The caller must be the token contract owner or the batcher. * - The transfer Guard must not be locked. * @param implementation Address of transfer Guard */ function updateTransferGuard(address implementation) external; /** * @return True iff a token can be minted, burned, or transferred by a * particular operator, from a particular sender (`from` is address 0 iff * the token is being minted), to a particular recipient (`to` is address 0 * iff the token is being burned). * @param operator Transaction msg.sender * @param from Token sender * @param to Token recipient * @param value Amount (ERC20) or token ID (ERC721) */ function isAllowed( address operator, address from, address to, uint256 value // amount (ERC20) or tokenId (ERC721) ) external view returns (bool); /** * @return owner The address of the token contract owner */ function owner() external view returns (address); /** * Transfers ownership of the contract to a new account (`newOwner`) * * Emits an `OwnershipTransferred` event. * * Requirements: * - The caller must be the current owner. * @param newOwner Address that will become the owner */ function transferOwnership(address newOwner) external; /** * Leaves the contract without an owner. After calling this function, it * will no longer be possible to call `onlyOwner` functions. * * Requirements: * - The caller must be the current owner. */ function renounceOwnership() external; } enum GuardType { Mint, Burn, Transfer } /** * @title IERC1644 Controller Token Operation (part of the ERC1400 Security * Token Standards) * * See https://github.com/ethereum/EIPs/issues/1644. Data and operatorData * parameters were removed. */ interface IERC1644 { event ControllerRedemption( address account, address indexed from, uint256 value ); event ControllerTransfer( address controller, address indexed from, address indexed to, uint256 value ); /** * Burns `tokenId` without checking whether the caller owns or is approved * to spend the token. * * Emits a `Transfer` event with `address(0)` as `to` AND a * `ControllerRedemption` event. * * Requirements: * - The caller must be the token contract owner or the batcher. * - `isControllable` must be true. * @param account The account whose token will be burned. * @param value Amount (ERC20) or token ID (ERC721) */ function controllerRedeem( address account, uint256 value // amount (ERC20) or tokenId (ERC721)) ) external; /** * Transfers `tokenId` token from `from` to `to`, without checking whether * the caller owns or is approved to spend the token. * * Emits a `Transfer` event with `address(0)` as `to` AND a * `ControllerRedemption` event. * * Requirements: * - The caller must be the token contract owner or the batcher. * - `isControllable` must be true. * @param from The account sending the token. * @param to The account to receive the token. * @param value Amount (ERC20) or token ID (ERC721) */ function controllerTransfer( address from, address to, uint256 value // amount (ERC20) or tokenId (ERC721) ) external; } /** * Interface for functions defined in ERC721UpgradeableFork */ interface IERC721UpgradeableFork is IERC721MetadataUpgradeable { /** * @return ID of the first token that will be minted. */ function STARTING_TOKEN_ID() external view returns (uint256); /** * Max consecutive tokenIds of bulk-minted tokens whose owner can be stored * as address(0). This number is capped to reduce the cost of owner lookup. */ function OWNER_ID_STAGGER() external view returns (uint256); /** * @return ID of the next token that will be minted. Existing tokens are * limited to IDs between `STARTING_TOKEN_ID` and `_nextTokenId` (including * `STARTING_TOKEN_ID` and excluding `_nextTokenId`, though not all of these * IDs may be in use if tokens have been burned). */ function nextTokenId() external view returns (uint256); /** * @return receiver Address that should receive royalties from sales. * @return royaltyAmount How much royalty that should be sent to `receiver`, * denominated in the same unit of exchange as `salePrice`. * @param tokenId The token being sold. * @param salePrice The sale price of the token, denominated in any unit of * exchange. The royalty amount will be denominated and should be paid in * that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } /** * Interface for only functions defined in ERC721Collective (excludes inherited * and overridden functions) */ interface IERC721CollectiveUnchained is IERC1644 { event RendererUpdated(address indexed implementation); event RendererLocked(); /** * Initializes `ERC721Collective`. * * Emits an `Initialized` event. * * @param name_ Name of token * @param symbol_ Symbol of token * @param mintGuard_ Address of mint guard * @param burnGuard_ Address of burn guard * @param transferGuard_ Address of transfer guard * @param renderer_ Address of renderer */ function __ERC721Collective_init( string memory name_, string memory symbol_, address mintGuard_, address burnGuard_, address transferGuard_, address renderer_ ) external; /** * @return Number of currently-existing tokens (tokens that have been * minted and that have not been burned). */ function totalSupply() external view returns (uint256); // name(), symbol(), and tokenURI() overriding ERC721UpgradeableFork // declared in IERC721Fork /** * @return The address of the token Renderer. The contract at this address * is assumed to implement the IRenderer interface. */ function renderer() external view returns (address); /** * @return True iff the Renderer cannot be changed. */ function rendererLocked() external view returns (bool); /** * Update the address of the token Renderer. The contract at the passed-in * address is assumed to implement the IRenderer interface. * * Emits a `RendererUpdated` event. * * Requirements: * - The caller must be the token contract owner or the batcher. * - Renderer must not be locked. * @param implementation Address of new Renderer */ function updateRenderer(address implementation) external; /** * Irreversibly prevents the token contract owner from changing the token * Renderer. * * Emits a `RendererLocked` event. * * Requirements: * - The caller must be the token contract owner or the batcher. */ function lockRenderer() external; // supportsInterface(bytes4 interfaceId) overriding ERC1644 declared in // IERC1644 /** * @return True after successfully executing mint and transfer of * `nextTokenId` to `account`. * * Emits a `Transfer` event with `address(0)` as `from`. * * Requirements: * - `account` cannot be the zero address. * @param account The account to receive the minted token. */ function mintTo(address account) external returns (bool); /** * @return True after successfully bulk minting and transferring the * `nextTokenId` through `nextTokenId + amount` tokens to `account`. * * Emits a `Transfer` event (with `address(0)` as `from`) for each token * that is minted. * * Requirements: * - `account` cannot be the zero address. * @param account The account to receive the minted tokens. * @param amount The number of tokens to be minted. */ function bulkMintToOneAddress(address account, uint256 amount) external returns (bool); /** * @return True after successfully bulk minting and transferring one of the * `nextTokenId` through `nextTokenId + accounts.length` tokens to each of * the addresses in `accounts`. * * Emits a `Transfer` event (with `address(0)` as `from`) for each token * that is minted. * * Requirements: * - `accounts` cannot have length 0. * - None of the addresses in `accounts` can be the zero address. * @param accounts The accounts to receive the minted tokens. */ function bulkMintToNAddresses(address[] calldata accounts) external returns (bool); /** * @return True after successfully burning `tokenId`. * * Emits a `Transfer` event with `address(0)` as `to`. * * Requirements: * - The caller must either own or be approved to spend the `tokenId` token. * - `tokenId` must exist. * @param tokenId The tokenId to be burned. */ function redeem(uint256 tokenId) external returns (bool); // controllerRedeem() and controllerTransfer() declared in IERC1644 /** * Sets the default royalty fee percentage for the ERC721. * * A custom royalty fee will override the default if set for specific tokenIds. * * Requirements: * - The caller must be the token contract owner. * - `isControllable` must be true. * @param receiver The account to receive the royalty. * @param feeNumerator The fee amount in basis points. */ function setDefaultRoyalty(address receiver, uint96 feeNumerator) external; /** * Sets a custom royalty fee percentage for the specified `tokenId`. * * Requirements: * - The caller must be the token contract owner. * - `isControllable` must be true. * - `tokenId` must exist. * @param tokenId The tokenId to set a custom royalty for. * @param receiver The account to receive the royalty. * @param feeNumerator The fee amount in basis points. */ function setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) external; } /** * Interface for all functions in ERC721Collective, including inherited and * overridden functions */ interface IERC721Collective is ITokenEnforceable, IERC721UpgradeableFork, IERC721CollectiveUnchained { } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.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 functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } /** * @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)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } abstract contract TokenRecoverable is ITokenRecoverable { // Using safeTransfer since interacting with other ERC20s using SafeERC20 for IERC20; address public admin; constructor(address _admin) { admin = _admin; } modifier isAdmin() { require(msg.sender == admin, "TokenRecoverable: Caller not admin"); _; } /** * Only allows a syndicate address to access any ERC20 tokens erroneously sent to the contract. * * Emits a `TokenRecoveredERC20` event. * * Requirements: * - None * @param recipient Address that erroneously sent the ERC20 token(s) * @param erc20 Erroneously-sent ERC20 token to recover * @param amount Amount to recover */ function recoverERC20( address recipient, address erc20, uint256 amount ) external isAdmin { IERC20(erc20).safeTransfer(recipient, amount); emit TokenRecoveredERC20(recipient, erc20, amount); } /** * Only allows a syndicate address to access any ERC721 tokens erroneously sent to the contract. * * Emits a `TokenRecoveredERC721` event. * * Requirements: * - None * @param recipient Address that erroneously sent the ERC721 token * @param erc721 Erroneously-sent ERC721 token to recover * @param tokenId The tokenId to recover */ function recoverERC721( address recipient, address erc721, uint256 tokenId ) external isAdmin { IERC721(erc721).transferFrom(address(this), recipient, tokenId); emit TokenRecoveredERC721(recipient, erc721, tokenId); } } interface IOwner { function owner() external view returns (address); } /** * Utility for use by any module or guard that needs to check if an address is * the owner of the TokenEnforceable (ERC20Club or ERC721Collective) */ abstract contract TokenOwnerChecker { /** * Only proceed if msg.sender owns TokenEnforceable contract * @param token TokenEnforceable whose owner to check */ modifier onlyTokenOwner(address token) { _onlyTokenOwner(token); _; } function _onlyTokenOwner(address token) internal view { require( msg.sender == IOwner(token).owner(), "TokenOwnerChecker: Caller not token owner" ); } } /// Owner mint module allows the owner of a collective to mint collective tokens. contract OwnerMintModuleERC721 is TokenOwnerChecker, ReentrancyGuard, TokenRecoverable { event OwnerMinted( address indexed collective, address indexed owner, address indexed account ); event OwnerMintedBulk( address indexed collective, address indexed owner, address indexed account, uint256 amount ); event OwnerMintedToNAddresses( address indexed collective, address indexed owner, address[] indexed accounts ); constructor(address admin) TokenRecoverable(admin) {} /** * @return True after successfully minting token to `account`. * * Requirements: * - The caller must be the token contract owner. * - `account` cannot be the zero address. * @param collectiveAddress Address of ERC721Collective being minted. * @param account The account to receive the minted token. */ function ownerMint(address collectiveAddress, address account) external onlyTokenOwner(collectiveAddress) nonReentrant returns (bool) { emit OwnerMinted(collectiveAddress, msg.sender, account); return IERC721Collective(collectiveAddress).mintTo(account); } /** * @return True after successfully bulk minting `amount` tokens to * `account`. * * Requirements: * - The caller must be the token contract owner. * - `account` cannot be the zero address. * @param collectiveAddress Address of ERC721Collective being minted. * @param account The account to receive the minted tokens. * @param amount The number of tokens to be minted. */ function ownerBulkMint( address collectiveAddress, address account, uint256 amount ) external onlyTokenOwner(collectiveAddress) nonReentrant returns (bool) { emit OwnerMintedBulk(collectiveAddress, msg.sender, account, amount); return IERC721Collective(collectiveAddress).bulkMintToOneAddress( account, amount ); } /** * @return True after successfully minting one token to each of the * addresses in `accounts`. * * Requirements: * - The caller must be the token contract owner. * - `accounts` cannot have length 0. * - None of the addresses in `accounts` can be the zero address. * @param collectiveAddress Address of ERC721Collective being minted. * @param accounts The accounts to receive the minted tokens. */ function ownerMintToNAddresses( address collectiveAddress, address[] calldata accounts ) external onlyTokenOwner(collectiveAddress) nonReentrant returns (bool) { emit OwnerMintedToNAddresses(collectiveAddress, msg.sender, accounts); return IERC721Collective(collectiveAddress).bulkMintToNAddresses(accounts); } /// This function is called for all messages sent to this contract (there /// are no other functions). Sending Ether to this contract will cause an /// exception, because the fallback function does not have the `payable` /// modifier. /// Source: https://docs.soliditylang.org/en/v0.8.9/contracts.html?highlight=fallback#fallback-function fallback() external { revert("OwnerMintModuleERC721: non-existent function"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collective","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"OwnerMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collective","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"OwnerMintedBulk","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collective","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"OwnerMintedToNAddresses","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"address","name":"erc20","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenRecoveredERC20","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"address","name":"erc721","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenRecoveredERC721","type":"event"},{"stateMutability":"nonpayable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collectiveAddress","type":"address"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerBulkMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collectiveAddress","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"ownerMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collectiveAddress","type":"address"},{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"ownerMintToNAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"erc20","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"erc721","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"recoverERC721","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610c80380380610c8083398101604081905261002f91610059565b6001600081905580546001600160a01b0319166001600160a01b0392909216919091179055610089565b60006020828403121561006b57600080fd5b81516001600160a01b038116811461008257600080fd5b9392505050565b610be8806100986000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631171bda9146100c45780632cdf2c35146100d957806393b52130146100ec578063ae9f2b9d14610114578063f519b9ce14610127578063f851a4401461013a575b60405162461bcd60e51b815260206004820152602c60248201527f4f776e65724d696e744d6f64756c654552433732313a206e6f6e2d657869737460448201526b32b73a10333ab731ba34b7b760a11b60648201526084015b60405180910390fd5b6100d76100d2366004610919565b610165565b005b6100d76100e7366004610919565b6101f5565b6100ff6100fa36600461095a565b6102cc565b60405190151581526020015b60405180910390f35b6100ff610122366004610919565b610399565b6100ff610135366004610993565b61048c565b60015461014d906001600160a01b031681565b6040516001600160a01b03909116815260200161010b565b6001546001600160a01b0316331461018f5760405162461bcd60e51b81526004016100bb90610a1b565b6101a36001600160a01b038316848361051b565b816001600160a01b0316836001600160a01b03167f8473dac0dd12ed8ebce9f08282e5e9c0748da064d820d3ed4e513ebe71e306e0836040516101e891815260200190565b60405180910390a3505050565b6001546001600160a01b0316331461021f5760405162461bcd60e51b81526004016100bb90610a1b565b6040516323b872dd60e01b81523060048201526001600160a01b038481166024830152604482018390528316906323b872dd90606401600060405180830381600087803b15801561026f57600080fd5b505af1158015610283573d6000803e3d6000fd5b50505050816001600160a01b0316836001600160a01b03167f82f9a833433b7c1a528eb33f949fe31f35aafd7acb1969ea900f8958f6f8bf9e836040516101e891815260200190565b6000826102d881610572565b6102e0610649565b6040516001600160a01b038085169133918716907f6a055b6c4b64da3136816d473a5f8ed23b4435e90613583fbab1cb1e105bfe2c90600090a460405163755edd1760e01b81526001600160a01b03848116600483015285169063755edd17906024016020604051808303816000875af1158015610362573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103869190610a5d565b91506103926001600055565b5092915050565b6000836103a581610572565b6103ad610649565b836001600160a01b0316336001600160a01b0316866001600160a01b03167f384f18f2c2baf9b4dec0b74fb199aeeb8b607018728d96534a7480303cc03dc8866040516103fc91815260200190565b60405180910390a4604051636b978f7760e01b81526001600160a01b03858116600483015260248201859052861690636b978f77906044015b6020604051808303816000875af1158015610454573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104789190610a5d565b91506104846001600055565b509392505050565b60008361049881610572565b6104a0610649565b83836040516104b0929190610a86565b6040519081900381209033906001600160a01b038816907f5f7a5ca099a40e14dc6b5ffe1f2eddb20d0196149990480112ed90aefd2914bc90600090a460405163f481361f60e01b81526001600160a01b0386169063f481361f906104359087908790600401610ac8565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261056d9084906106a2565b505050565b806001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d49190610b16565b6001600160a01b0316336001600160a01b0316146106465760405162461bcd60e51b815260206004820152602960248201527f546f6b656e4f776e6572436865636b65723a2043616c6c6572206e6f7420746f60448201526835b2b71037bbb732b960b91b60648201526084016100bb565b50565b60026000540361069b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016100bb565b6002600055565b60006106f7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166107749092919063ffffffff16565b80519091501561056d57808060200190518101906107159190610a5d565b61056d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016100bb565b6060610783848460008561078b565b949350505050565b6060824710156107ec5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016100bb565b600080866001600160a01b031685876040516108089190610b63565b60006040518083038185875af1925050503d8060008114610845576040519150601f19603f3d011682016040523d82523d6000602084013e61084a565b606091505b509150915061085b87838387610866565b979650505050505050565b606083156108d55782516000036108ce576001600160a01b0385163b6108ce5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016100bb565b5081610783565b61078383838151156108ea5781518083602001fd5b8060405162461bcd60e51b81526004016100bb9190610b7f565b6001600160a01b038116811461064657600080fd5b60008060006060848603121561092e57600080fd5b833561093981610904565b9250602084013561094981610904565b929592945050506040919091013590565b6000806040838503121561096d57600080fd5b823561097881610904565b9150602083013561098881610904565b809150509250929050565b6000806000604084860312156109a857600080fd5b83356109b381610904565b9250602084013567ffffffffffffffff808211156109d057600080fd5b818601915086601f8301126109e457600080fd5b8135818111156109f357600080fd5b8760208260051b8501011115610a0857600080fd5b6020830194508093505050509250925092565b60208082526022908201527f546f6b656e5265636f76657261626c653a2043616c6c6572206e6f742061646d60408201526134b760f11b606082015260800190565b600060208284031215610a6f57600080fd5b81518015158114610a7f57600080fd5b9392505050565b60008184825b85811015610abd578135610a9f81610904565b6001600160a01b031683526020928301929190910190600101610a8c565b509095945050505050565b60208082528181018390526000908460408401835b86811015610b0b578235610af081610904565b6001600160a01b031682529183019190830190600101610add565b509695505050505050565b600060208284031215610b2857600080fd5b8151610a7f81610904565b60005b83811015610b4e578181015183820152602001610b36565b83811115610b5d576000848401525b50505050565b60008251610b75818460208701610b33565b9190910192915050565b6020815260008251806020840152610b9e816040850160208701610b33565b601f01601f1916919091016040019291505056fea2646970667358221220cacea7c56528b197b4fd50435fd08c0b59b1853ee7e4100b429102c09745a2c264736f6c634300080f003300000000000000000000000040db79f7f18c468c6552538b488c58b5e72bf4d9
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631171bda9146100c45780632cdf2c35146100d957806393b52130146100ec578063ae9f2b9d14610114578063f519b9ce14610127578063f851a4401461013a575b60405162461bcd60e51b815260206004820152602c60248201527f4f776e65724d696e744d6f64756c654552433732313a206e6f6e2d657869737460448201526b32b73a10333ab731ba34b7b760a11b60648201526084015b60405180910390fd5b6100d76100d2366004610919565b610165565b005b6100d76100e7366004610919565b6101f5565b6100ff6100fa36600461095a565b6102cc565b60405190151581526020015b60405180910390f35b6100ff610122366004610919565b610399565b6100ff610135366004610993565b61048c565b60015461014d906001600160a01b031681565b6040516001600160a01b03909116815260200161010b565b6001546001600160a01b0316331461018f5760405162461bcd60e51b81526004016100bb90610a1b565b6101a36001600160a01b038316848361051b565b816001600160a01b0316836001600160a01b03167f8473dac0dd12ed8ebce9f08282e5e9c0748da064d820d3ed4e513ebe71e306e0836040516101e891815260200190565b60405180910390a3505050565b6001546001600160a01b0316331461021f5760405162461bcd60e51b81526004016100bb90610a1b565b6040516323b872dd60e01b81523060048201526001600160a01b038481166024830152604482018390528316906323b872dd90606401600060405180830381600087803b15801561026f57600080fd5b505af1158015610283573d6000803e3d6000fd5b50505050816001600160a01b0316836001600160a01b03167f82f9a833433b7c1a528eb33f949fe31f35aafd7acb1969ea900f8958f6f8bf9e836040516101e891815260200190565b6000826102d881610572565b6102e0610649565b6040516001600160a01b038085169133918716907f6a055b6c4b64da3136816d473a5f8ed23b4435e90613583fbab1cb1e105bfe2c90600090a460405163755edd1760e01b81526001600160a01b03848116600483015285169063755edd17906024016020604051808303816000875af1158015610362573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103869190610a5d565b91506103926001600055565b5092915050565b6000836103a581610572565b6103ad610649565b836001600160a01b0316336001600160a01b0316866001600160a01b03167f384f18f2c2baf9b4dec0b74fb199aeeb8b607018728d96534a7480303cc03dc8866040516103fc91815260200190565b60405180910390a4604051636b978f7760e01b81526001600160a01b03858116600483015260248201859052861690636b978f77906044015b6020604051808303816000875af1158015610454573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104789190610a5d565b91506104846001600055565b509392505050565b60008361049881610572565b6104a0610649565b83836040516104b0929190610a86565b6040519081900381209033906001600160a01b038816907f5f7a5ca099a40e14dc6b5ffe1f2eddb20d0196149990480112ed90aefd2914bc90600090a460405163f481361f60e01b81526001600160a01b0386169063f481361f906104359087908790600401610ac8565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261056d9084906106a2565b505050565b806001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d49190610b16565b6001600160a01b0316336001600160a01b0316146106465760405162461bcd60e51b815260206004820152602960248201527f546f6b656e4f776e6572436865636b65723a2043616c6c6572206e6f7420746f60448201526835b2b71037bbb732b960b91b60648201526084016100bb565b50565b60026000540361069b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016100bb565b6002600055565b60006106f7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166107749092919063ffffffff16565b80519091501561056d57808060200190518101906107159190610a5d565b61056d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016100bb565b6060610783848460008561078b565b949350505050565b6060824710156107ec5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016100bb565b600080866001600160a01b031685876040516108089190610b63565b60006040518083038185875af1925050503d8060008114610845576040519150601f19603f3d011682016040523d82523d6000602084013e61084a565b606091505b509150915061085b87838387610866565b979650505050505050565b606083156108d55782516000036108ce576001600160a01b0385163b6108ce5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016100bb565b5081610783565b61078383838151156108ea5781518083602001fd5b8060405162461bcd60e51b81526004016100bb9190610b7f565b6001600160a01b038116811461064657600080fd5b60008060006060848603121561092e57600080fd5b833561093981610904565b9250602084013561094981610904565b929592945050506040919091013590565b6000806040838503121561096d57600080fd5b823561097881610904565b9150602083013561098881610904565b809150509250929050565b6000806000604084860312156109a857600080fd5b83356109b381610904565b9250602084013567ffffffffffffffff808211156109d057600080fd5b818601915086601f8301126109e457600080fd5b8135818111156109f357600080fd5b8760208260051b8501011115610a0857600080fd5b6020830194508093505050509250925092565b60208082526022908201527f546f6b656e5265636f76657261626c653a2043616c6c6572206e6f742061646d60408201526134b760f11b606082015260800190565b600060208284031215610a6f57600080fd5b81518015158114610a7f57600080fd5b9392505050565b60008184825b85811015610abd578135610a9f81610904565b6001600160a01b031683526020928301929190910190600101610a8c565b509095945050505050565b60208082528181018390526000908460408401835b86811015610b0b578235610af081610904565b6001600160a01b031682529183019190830190600101610add565b509695505050505050565b600060208284031215610b2857600080fd5b8151610a7f81610904565b60005b83811015610b4e578181015183820152602001610b36565b83811115610b5d576000848401525b50505050565b60008251610b75818460208701610b33565b9190910192915050565b6020815260008251806020840152610b9e816040850160208701610b33565b601f01601f1916919091016040019291505056fea2646970667358221220cacea7c56528b197b4fd50435fd08c0b59b1853ee7e4100b429102c09745a2c264736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000040db79f7f18c468c6552538b488c58b5e72bf4d9
-----Decoded View---------------
Arg [0] : admin (address): 0x40dB79f7f18C468c6552538b488c58B5E72bf4D9
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000040db79f7f18c468c6552538b488c58b5e72bf4d9
Deployed Bytecode Sourcemap
55113:3483:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58531:54;;-1:-1:-1;;;58531:54:0;;216:2:1;58531:54:0;;;198:21:1;255:2;235:18;;;228:30;294:34;274:18;;;267:62;-1:-1:-1;;;345:18:1;;;338:42;397:19;;58531:54:0;;;;;;;;53361:248;;;;;;:::i;:::-;;:::i;:::-;;54017:272;;;;;;:::i;:::-;;:::i;56090:320::-;;;;;;:::i;:::-;;:::i;:::-;;;1582:14:1;;1575:22;1557:41;;1545:2;1530:18;56090:320:0;;;;;;;;56857:429;;;;;;:::i;:::-;;:::i;57759:369::-;;;;;;:::i;:::-;;:::i;52747:20::-;;;;;-1:-1:-1;;;;;52747:20:0;;;;;;-1:-1:-1;;;;;2528:32:1;;;2510:51;;2498:2;2483:18;52747:20:0;2364:203:1;53361:248:0;52897:5;;-1:-1:-1;;;;;52897:5:0;52883:10;:19;52875:66;;;;-1:-1:-1;;;52875:66:0;;;;;;;:::i;:::-;53495:45:::1;-1:-1:-1::0;;;;;53495:26:0;::::1;53522:9:::0;53533:6;53495:26:::1;:45::i;:::-;53587:5;-1:-1:-1::0;;;;;53556:45:0::1;53576:9;-1:-1:-1::0;;;;;53556:45:0::1;;53594:6;53556:45;;;;3121:25:1::0;;3109:2;3094:18;;2975:177;53556:45:0::1;;;;;;;;53361:248:::0;;;:::o;54017:272::-;52897:5;;-1:-1:-1;;;;;52897:5:0;52883:10;:19;52875:66;;;;-1:-1:-1;;;52875:66:0;;;;;;;:::i;:::-;54154:63:::1;::::0;-1:-1:-1;;;54154:63:0;;54191:4:::1;54154:63;::::0;::::1;3397:34:1::0;-1:-1:-1;;;;;3467:15:1;;;3447:18;;;3440:43;3499:18;;;3492:34;;;54154:28:0;::::1;::::0;::::1;::::0;3332:18:1;;54154:63:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54265:6;-1:-1:-1::0;;;;;54233:48:0::1;54254:9;-1:-1:-1::0;;;;;54233:48:0::1;;54273:7;54233:48;;;;3121:25:1::0;;3109:2;3094:18;;2975:177;56090:320:0;56254:4;56195:17;54774:22;54790:5;54774:15;:22::i;:::-;2298:21:::1;:19;:21::i;:::-;56281:51:::2;::::0;-1:-1:-1;;;;;56281:51:0;;::::2;::::0;56312:10:::2;::::0;56281:51;::::2;::::0;::::2;::::0;;;::::2;56350:52;::::0;-1:-1:-1;;;56350:52:0;;-1:-1:-1;;;;;2528:32:1;;;56350:52:0::2;::::0;::::2;2510:51:1::0;56350:43:0;::::2;::::0;::::2;::::0;2483:18:1;;56350:52:0::2;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56343:59;;2342:20:::1;1736:1:::0;2862:7;:22;2679:213;2342:20:::1;56090:320:::0;;;;;:::o;56857:429::-;57039:4;56998:17;54774:22;54790:5;54774:15;:22::i;:::-;2298:21:::1;:19;:21::i;:::-;57108:7:::2;-1:-1:-1::0;;;;;57061:63:0::2;57096:10;-1:-1:-1::0;;;;;57061:63:0::2;57077:17;-1:-1:-1::0;;;;;57061:63:0::2;;57117:6;57061:63;;;;3121:25:1::0;;3109:2;3094:18;;2975:177;57061:63:0::2;;;;;;;;57155:123;::::0;-1:-1:-1;;;57155:123:0;;-1:-1:-1;;;;;4011:32:1;;;57155:123:0::2;::::0;::::2;3993:51:1::0;4060:18;;;4053:34;;;57155:57:0;::::2;::::0;::::2;::::0;3966:18:1;;57155:123:0::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57135:143;;2342:20:::1;1736:1:::0;2862:7;:22;2679:213;2342:20:::1;56857:429:::0;;;;;;:::o;57759:369::-;57936:4;57895:17;54774:22;54790:5;54774:15;:22::i;:::-;2298:21:::1;:19;:21::i;:::-;58013:8:::2;;57958:64;;;;;;;:::i;:::-;;::::0;;;;::::2;::::0;;;58001:10:::2;::::0;-1:-1:-1;;;;;57958:64:0;::::2;::::0;::::2;::::0;;;::::2;58053:67;::::0;-1:-1:-1;;;58053:67:0;;-1:-1:-1;;;;;58053:57:0;::::2;::::0;::::2;::::0;:67:::2;::::0;58111:8;;;;58053:67:::2;;;:::i;48796:211::-:0;48940:58;;;-1:-1:-1;;;;;4011:32:1;;48940:58:0;;;3993:51:1;4060:18;;;;4053:34;;;48940:58:0;;;;;;;;;;3966:18:1;;;;48940:58:0;;;;;;;;-1:-1:-1;;;;;48940:58:0;-1:-1:-1;;;48940:58:0;;;48913:86;;48933:5;;48913:19;:86::i;:::-;48796:211;;;:::o;54824:199::-;54932:5;-1:-1:-1;;;;;54925:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;54911:35:0;:10;-1:-1:-1;;;;;54911:35:0;;54889:126;;;;-1:-1:-1;;;54889:126:0;;5891:2:1;54889:126:0;;;5873:21:1;5930:2;5910:18;;;5903:30;5969:34;5949:18;;;5942:62;-1:-1:-1;;;6020:18:1;;;6013:39;6069:19;;54889:126:0;5689:405:1;54889:126:0;54824:199;:::o;2378:293::-;1780:1;2512:7;;:19;2504:63;;;;-1:-1:-1;;;2504:63:0;;6301:2:1;2504:63:0;;;6283:21:1;6340:2;6320:18;;;6313:30;6379:33;6359:18;;;6352:61;6430:18;;2504:63:0;6099:355:1;2504:63:0;1780:1;2645:7;:18;2378:293::o;51863:716::-;52287:23;52313:69;52341:4;52313:69;;;;;;;;;;;;;;;;;52321:5;-1:-1:-1;;;;;52313:27:0;;;:69;;;;;:::i;:::-;52397:17;;52287:95;;-1:-1:-1;52397:21:0;52393:179;;52494:10;52483:30;;;;;;;;;;;;:::i;:::-;52475:85;;;;-1:-1:-1;;;52475:85:0;;6661:2:1;52475:85:0;;;6643:21:1;6700:2;6680:18;;;6673:30;6739:34;6719:18;;;6712:62;-1:-1:-1;;;6790:18:1;;;6783:40;6840:19;;52475:85:0;6459:406:1;42832:229:0;42969:12;43001:52;43023:6;43031:4;43037:1;43040:12;43001:21;:52::i;:::-;42994:59;42832:229;-1:-1:-1;;;;42832:229:0:o;43952:455::-;44122:12;44180:5;44155:21;:30;;44147:81;;;;-1:-1:-1;;;44147:81:0;;7072:2:1;44147:81:0;;;7054:21:1;7111:2;7091:18;;;7084:30;7150:34;7130:18;;;7123:62;-1:-1:-1;;;7201:18:1;;;7194:36;7247:19;;44147:81:0;6870:402:1;44147:81:0;44240:12;44254:23;44281:6;-1:-1:-1;;;;;44281:11:0;44300:5;44307:4;44281:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44239:73;;;;44330:69;44357:6;44365:7;44374:10;44386:12;44330:26;:69::i;:::-;44323:76;43952:455;-1:-1:-1;;;;;;;43952:455:0:o;46525:644::-;46710:12;46739:7;46735:427;;;46767:10;:17;46788:1;46767:22;46763:290;;-1:-1:-1;;;;;40371:19:0;;;46977:60;;;;-1:-1:-1;;;46977:60:0;;8021:2:1;46977:60:0;;;8003:21:1;8060:2;8040:18;;;8033:30;8099:31;8079:18;;;8072:59;8148:18;;46977:60:0;7819:353:1;46977:60:0;-1:-1:-1;47074:10:0;47067:17;;46735:427;47117:33;47125:10;47137:12;47872:17;;:21;47868:388;;48104:10;48098:17;48161:15;48148:10;48144:2;48140:19;48133:44;47868:388;48231:12;48224:20;;-1:-1:-1;;;48224:20:0;;;;;;;;:::i;427:131:1:-;-1:-1:-1;;;;;502:31:1;;492:42;;482:70;;548:1;545;538:12;563:456;640:6;648;656;709:2;697:9;688:7;684:23;680:32;677:52;;;725:1;722;715:12;677:52;764:9;751:23;783:31;808:5;783:31;:::i;:::-;833:5;-1:-1:-1;890:2:1;875:18;;862:32;903:33;862:32;903:33;:::i;:::-;563:456;;955:7;;-1:-1:-1;;;1009:2:1;994:18;;;;981:32;;563:456::o;1024:388::-;1092:6;1100;1153:2;1141:9;1132:7;1128:23;1124:32;1121:52;;;1169:1;1166;1159:12;1121:52;1208:9;1195:23;1227:31;1252:5;1227:31;:::i;:::-;1277:5;-1:-1:-1;1334:2:1;1319:18;;1306:32;1347:33;1306:32;1347:33;:::i;:::-;1399:7;1389:17;;;1024:388;;;;;:::o;1609:750::-;1704:6;1712;1720;1773:2;1761:9;1752:7;1748:23;1744:32;1741:52;;;1789:1;1786;1779:12;1741:52;1828:9;1815:23;1847:31;1872:5;1847:31;:::i;:::-;1897:5;-1:-1:-1;1953:2:1;1938:18;;1925:32;1976:18;2006:14;;;2003:34;;;2033:1;2030;2023:12;2003:34;2071:6;2060:9;2056:22;2046:32;;2116:7;2109:4;2105:2;2101:13;2097:27;2087:55;;2138:1;2135;2128:12;2087:55;2178:2;2165:16;2204:2;2196:6;2193:14;2190:34;;;2220:1;2217;2210:12;2190:34;2273:7;2268:2;2258:6;2255:1;2251:14;2247:2;2243:23;2239:32;2236:45;2233:65;;;2294:1;2291;2284:12;2233:65;2325:2;2321;2317:11;2307:21;;2347:6;2337:16;;;;;1609:750;;;;;:::o;2572:398::-;2774:2;2756:21;;;2813:2;2793:18;;;2786:30;2852:34;2847:2;2832:18;;2825:62;-1:-1:-1;;;2918:2:1;2903:18;;2896:32;2960:3;2945:19;;2572:398::o;3537:277::-;3604:6;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3705:9;3699:16;3758:5;3751:13;3744:21;3737:5;3734:32;3724:60;;3780:1;3777;3770:12;3724:60;3803:5;3537:277;-1:-1:-1;;;3537:277:1:o;4098:620::-;4269:3;4300;4347:6;4269:3;4381:310;4395:6;4392:1;4389:13;4381:310;;;4470:6;4457:20;4490:31;4515:5;4490:31;:::i;:::-;-1:-1:-1;;;;;4548:31:1;4534:46;;4603:4;4629:14;;;;4666:15;;;;;4576:1;4410:9;4381:310;;;-1:-1:-1;4707:5:1;;4098:620;-1:-1:-1;;;;;4098:620:1:o;4723:705::-;4904:2;4956:21;;;4929:18;;;5012:22;;;4875:4;;5091:6;5065:2;5050:18;;4875:4;5125:277;5139:6;5136:1;5133:13;5125:277;;;5214:6;5201:20;5234:31;5259:5;5234:31;:::i;:::-;-1:-1:-1;;;;;5290:31:1;5278:44;;5377:15;;;;5342:12;;;;5318:1;5154:9;5125:277;;;-1:-1:-1;5419:3:1;4723:705;-1:-1:-1;;;;;;4723:705:1:o;5433:251::-;5503:6;5556:2;5544:9;5535:7;5531:23;5527:32;5524:52;;;5572:1;5569;5562:12;5524:52;5604:9;5598:16;5623:31;5648:5;5623:31;:::i;7277:258::-;7349:1;7359:113;7373:6;7370:1;7367:13;7359:113;;;7449:11;;;7443:18;7430:11;;;7423:39;7395:2;7388:10;7359:113;;;7490:6;7487:1;7484:13;7481:48;;;7525:1;7516:6;7511:3;7507:16;7500:27;7481:48;;7277:258;;;:::o;7540:274::-;7669:3;7707:6;7701:13;7723:53;7769:6;7764:3;7757:4;7749:6;7745:17;7723:53;:::i;:::-;7792:16;;;;;7540:274;-1:-1:-1;;7540:274:1:o;8177:383::-;8326:2;8315:9;8308:21;8289:4;8358:6;8352:13;8401:6;8396:2;8385:9;8381:18;8374:34;8417:66;8476:6;8471:2;8460:9;8456:18;8451:2;8443:6;8439:15;8417:66;:::i;:::-;8544:2;8523:15;-1:-1:-1;;8519:29:1;8504:45;;;;8551:2;8500:54;;8177:383;-1:-1:-1;;8177:383:1:o
Swarm Source
ipfs://cacea7c56528b197b4fd50435fd08c0b59b1853ee7e4100b429102c09745a2c2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.