Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 78,336 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 20453320 | 111 days ago | IN | 0 ETH | 0.00013828 | ||||
Mint | 20452967 | 111 days ago | IN | 0 ETH | 0.0000866 | ||||
Mint | 20452794 | 111 days ago | IN | 0 ETH | 0.00013828 | ||||
Mint | 20395663 | 119 days ago | IN | 0 ETH | 0.0000866 | ||||
Mint | 20144880 | 154 days ago | IN | 0 ETH | 0.0001732 | ||||
Mint | 19908330 | 187 days ago | IN | 0 ETH | 0.00288526 | ||||
Mint | 19012376 | 313 days ago | IN | 0 ETH | 0.00144489 | ||||
Mint | 19012376 | 313 days ago | IN | 0 ETH | 0.00179774 | ||||
Mint | 18214732 | 424 days ago | IN | 0 ETH | 0.00148339 | ||||
Mint | 18210586 | 425 days ago | IN | 0 ETH | 0.00408122 | ||||
Mint | 18210584 | 425 days ago | IN | 0 ETH | 0.00072911 | ||||
Mint | 18201430 | 426 days ago | IN | 0 ETH | 0.00090604 | ||||
Mint | 18153603 | 433 days ago | IN | 0 ETH | 0.0006062 | ||||
Mint | 17999199 | 455 days ago | IN | 0 ETH | 0.00188348 | ||||
Mint | 17967759 | 459 days ago | IN | 0 ETH | 0.00254884 | ||||
Mint | 17809853 | 481 days ago | IN | 0.001 ETH | 0.00253225 | ||||
Mint | 17574856 | 514 days ago | IN | 0 ETH | 0.00134395 | ||||
Mint | 17535380 | 520 days ago | IN | 0.001 ETH | 0.00335633 | ||||
Mint | 17521882 | 521 days ago | IN | 0 ETH | 0.00323747 | ||||
Mint | 17496571 | 525 days ago | IN | 0.002 ETH | 0.00245699 | ||||
Mint | 17490685 | 526 days ago | IN | 0.002 ETH | 0.00216853 | ||||
Mint | 17486213 | 526 days ago | IN | 0.002 ETH | 0.00285738 | ||||
Update Eth Price | 17477125 | 528 days ago | IN | 0 ETH | 0.00082912 | ||||
Mint | 17451835 | 531 days ago | IN | 0 ETH | 0.00122635 | ||||
Mint | 17451352 | 531 days ago | IN | 0.001 ETH | 0.00299128 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17809853 | 481 days ago | 0.001 ETH | ||||
17535380 | 520 days ago | 0.001 ETH | ||||
17496571 | 525 days ago | 0.002 ETH | ||||
17490685 | 526 days ago | 0.002 ETH | ||||
17486213 | 526 days ago | 0.002 ETH | ||||
17451352 | 531 days ago | 0.001 ETH | ||||
17413609 | 537 days ago | 0.01 ETH | ||||
17399098 | 539 days ago | 0.062 ETH | ||||
17393052 | 540 days ago | 0.01 ETH | ||||
17374645 | 542 days ago | 0.062 ETH | ||||
17373646 | 542 days ago | 0.062 ETH | ||||
17373565 | 542 days ago | 0.062 ETH | ||||
17371757 | 543 days ago | 0.062 ETH | ||||
17361217 | 544 days ago | 0.01 ETH | ||||
17355158 | 545 days ago | 0.002 ETH | ||||
17354595 | 545 days ago | 0.002 ETH | ||||
17345367 | 546 days ago | 0.062 ETH | ||||
17345359 | 546 days ago | 0.062 ETH | ||||
17343636 | 547 days ago | 0.062 ETH | ||||
17332863 | 548 days ago | 0.002 ETH | ||||
17332863 | 548 days ago | 0.002 ETH | ||||
17328448 | 549 days ago | 0.001 ETH | ||||
17309955 | 551 days ago | 0.013 ETH | ||||
17308906 | 551 days ago | 0.002 ETH | ||||
17308106 | 552 days ago | 0.002 ETH |
Loading...
Loading
Contract Name:
EthPriceMintModule
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 (last updated v4.7.0) (access/Ownable.sol) // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // 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 v4.4.1 (utils/introspection/ERC165Checker.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 Library used to query support of an interface declared via {IERC165}. * * Note that these functions return the actual result of the query: they do not * `revert` if an interface is not supported. It is up to the caller to decide * what to do in these cases. */ library ERC165Checker { // As per the EIP-165 spec, no interface should ever match 0xffffffff bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff; /** * @dev Returns true if `account` supports the {IERC165} interface. */ function supportsERC165(address account) internal view returns (bool) { // Any contract that implements ERC165 must explicitly indicate support of // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid return supportsERC165InterfaceUnchecked( account, type(IERC165).interfaceId ) && !supportsERC165InterfaceUnchecked(account, _INTERFACE_ID_INVALID); } /** * @dev Returns true if `account` supports the interface defined by * `interfaceId`. Support for {IERC165} itself is queried automatically. * * See {IERC165-supportsInterface}. */ function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) { // query support of both ERC165 as per the spec and support of _interfaceId return supportsERC165(account) && supportsERC165InterfaceUnchecked(account, interfaceId); } /** * @dev Returns a boolean array where each value corresponds to the * interfaces passed in and whether they're supported or not. This allows * you to batch check interfaces for a contract where your expectation * is that some interfaces may not be supported. * * See {IERC165-supportsInterface}. * * _Available since v3.4._ */ function getSupportedInterfaces( address account, bytes4[] memory interfaceIds ) internal view returns (bool[] memory) { // an array of booleans corresponding to interfaceIds and whether they're supported or not bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length); // query support of ERC165 itself if (supportsERC165(account)) { // query support of each interface in interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { interfaceIdsSupported[i] = supportsERC165InterfaceUnchecked( account, interfaceIds[i] ); } } return interfaceIdsSupported; } /** * @dev Returns true if `account` supports all the interfaces defined in * `interfaceIds`. Support for {IERC165} itself is queried automatically. * * Batch-querying can lead to gas savings by skipping repeated checks for * {IERC165} support. * * See {IERC165-supportsInterface}. */ function supportsAllInterfaces( address account, bytes4[] memory interfaceIds ) internal view returns (bool) { // query support of ERC165 itself if (!supportsERC165(account)) { return false; } // query support of each interface in interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { if (!supportsERC165InterfaceUnchecked(account, interfaceIds[i])) { return false; } } // all interfaces supported return true; } /** * @notice Query if a contract implements an interface, does not check ERC165 support * @param account The address of the contract to query for support of an interface * @param interfaceId The interface identifier, as specified in ERC-165 * @return true if the contract at account indicates support of the interface with * identifier interfaceId, false otherwise * @dev Assumes that account contains a contract that supports ERC165, otherwise * the behavior of this method is undefined. This precondition can be checked * with {supportsERC165}. * Interface identification is specified in ERC-165. */ function supportsERC165InterfaceUnchecked( address account, bytes4 interfaceId ) internal view returns (bool) { // prepare call bytes memory encodedParams = abi.encodeWithSelector( IERC165.supportsInterface.selector, interfaceId ); // perform static call bool success; uint256 returnSize; uint256 returnValue; assembly { success := staticcall( 30000, account, add(encodedParams, 0x20), mload(encodedParams), 0x00, 0x20 ) returnSize := returndatasize() returnValue := mload(0x00) } return success && returnSize >= 0x20 && returnValue > 0; } } /// Mixin can be used by any module using an address that should be an /// ERC721Collective and needs to check if it indeed is one. abstract contract ERC165CheckerERC721Collective { /// Only proceed if collective implements IERC721Collective interface /// @param collective collective to check modifier onlyCollectiveInterface(address collective) { _checkCollectiveInterface(collective); _; } function _checkCollectiveInterface(address collective) internal view { require( ERC165Checker.supportsInterface( collective, type(IERC721Collective).interfaceId ), "ERC165CheckerERC721Collective: collective address does not implement proper interface" ); } } 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" ); } } // 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) /** * @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); } } // Public mint module that allows anyone willing to pay the ETH price to mint. contract EthPriceMintModule is ReentrancyGuard, ERC165CheckerERC721Collective, TokenOwnerChecker, TokenRecoverable { // Collective => price to mint 1 token in wei mapping(address => uint256) public ethPrice; event EthPriceUpdated(address indexed collective, uint256 ethPrice_); event Minted( address indexed collective, address indexed account, uint256 amount ); constructor(address admin) TokenRecoverable(admin) {} /// Update eth price for minting /// @param collective Collective to update /// @param ethPrice_ The price per ERC721 function updateEthPrice(address collective, uint256 ethPrice_) public onlyTokenOwner(collective) { ethPrice[collective] = ethPrice_; emit EthPriceUpdated(collective, ethPrice_); } /// Mint Collective NFT - one per person /// @param collective Collective to mint /// @param amount amount to be minted /// @return true function mint(address collective, uint256 amount) external payable nonReentrant onlyCollectiveInterface(collective) returns (bool) { require( msg.value == ethPrice[collective] * amount, "EthPriceMintModule: Must send ETH value equal to ethPrice" ); // solhint-disable-next-line avoid-low-level-calls (bool success, ) = payable(Ownable(collective).owner()).call{ value: msg.value }(""); require(success, "EthPriceMintModule: Failed to send Ether to owner"); IERC721Collective(collective).bulkMintToOneAddress(msg.sender, amount); emit Minted(collective, msg.sender, amount); return true; } /// 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("EthPriceMintModule: 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":false,"internalType":"uint256","name":"ethPrice_","type":"uint256"}],"name":"EthPriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collective","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":"","type":"address"}],"name":"ethPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collective","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","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"},{"inputs":[{"internalType":"address","name":"collective","type":"address"},{"internalType":"uint256","name":"ethPrice_","type":"uint256"}],"name":"updateEthPrice","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610e08380380610e0883398101604081905261002f91610059565b6001600081905580546001600160a01b0319166001600160a01b0392909216919091179055610089565b60006020828403121561006b57600080fd5b81516001600160a01b038116811461008257600080fd5b9392505050565b610d70806100986000396000f3fe6080604052600436106100555760003560e01c80631171bda9146100c15780632cdf2c35146100e35780632f24b6f81461010357806340c10f19146101235780636018401b1461014b578063f851a44014610186575b34801561006157600080fd5b5060405162461bcd60e51b815260206004820152602960248201527f45746850726963654d696e744d6f64756c653a206e6f6e2d6578697374656e7460448201526810333ab731ba34b7b760b91b60648201526084015b60405180910390fd5b3480156100cd57600080fd5b506100e16100dc366004610b83565b6101be565b005b3480156100ef57600080fd5b506100e16100fe366004610b83565b61024e565b34801561010f57600080fd5b506100e161011e366004610bc4565b610325565b610136610131366004610bc4565b610389565b60405190151581526020015b60405180910390f35b34801561015757600080fd5b50610178610166366004610bf0565b60026020526000908152604090205481565b604051908152602001610142565b34801561019257600080fd5b506001546101a6906001600160a01b031681565b6040516001600160a01b039091168152602001610142565b6001546001600160a01b031633146101e85760405162461bcd60e51b81526004016100b890610c0d565b6101fc6001600160a01b038316848361061b565b816001600160a01b0316836001600160a01b03167f8473dac0dd12ed8ebce9f08282e5e9c0748da064d820d3ed4e513ebe71e306e08360405161024191815260200190565b60405180910390a3505050565b6001546001600160a01b031633146102785760405162461bcd60e51b81526004016100b890610c0d565b6040516323b872dd60e01b81523060048201526001600160a01b038481166024830152604482018390528316906323b872dd90606401600060405180830381600087803b1580156102c857600080fd5b505af11580156102dc573d6000803e3d6000fd5b50505050816001600160a01b0316836001600160a01b03167f82f9a833433b7c1a528eb33f949fe31f35aafd7acb1969ea900f8958f6f8bf9e8360405161024191815260200190565b8161032f81610672565b6001600160a01b03831660008181526002602052604090819020849055517f524cecc77af23c505ed68013235d4e4b25f14355ddfc8cbe05723a91bd6ffef99061037c9085815260200190565b60405180910390a2505050565b6000610393610749565b8261039d816107a2565b6001600160a01b0384166000908152600260205260409020546103c1908490610c4f565b34146104355760405162461bcd60e51b815260206004820152603960248201527f45746850726963654d696e744d6f64756c653a204d7573742073656e6420455460448201527f482076616c756520657175616c20746f2065746850726963650000000000000060648201526084016100b8565b6000846001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610475573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104999190610c7c565b6001600160a01b03163460405160006040518083038185875af1925050503d80600081146104e3576040519150601f19603f3d011682016040523d82523d6000602084013e6104e8565b606091505b50509050806105535760405162461bcd60e51b815260206004820152603160248201527f45746850726963654d696e744d6f64756c653a204661696c656420746f20736560448201527037321022ba3432b9103a379037bbb732b960791b60648201526084016100b8565b604051636b978f7760e01b8152336004820152602481018590526001600160a01b03861690636b978f77906044016020604051808303816000875af11580156105a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c49190610c99565b5060405184815233906001600160a01b038716907f9d228d69b5fdb8d273a2336f8fb8612d039631024ea9bf09c424a9503aa078f09060200160405180910390a36001925050506106156001600055565b92915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261066d90849061083d565b505050565b806001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d49190610c7c565b6001600160a01b0316336001600160a01b0316146107465760405162461bcd60e51b815260206004820152602960248201527f546f6b656e4f776e6572436865636b65723a2043616c6c6572206e6f7420746f60448201526835b2b71037bbb732b960b91b60648201526084016100b8565b50565b60026000540361079b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016100b8565b6002600055565b6107ad81600061090f565b6107465760405162461bcd60e51b815260206004820152605560248201527f455243313635436865636b6572455243373231436f6c6c6563746976653a206360448201527f6f6c6c656374697665206164647265737320646f6573206e6f7420696d706c656064820152746d656e742070726f70657220696e7465726661636560581b608482015260a4016100b8565b6000610892826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166109329092919063ffffffff16565b80519091501561066d57808060200190518101906108b09190610c99565b61066d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016100b8565b600061091a83610949565b801561092b575061092b838361097c565b9392505050565b60606109418484600085610a05565b949350505050565b600061095c826301ffc9a760e01b61097c565b80156106155750610975826001600160e01b031961097c565b1592915050565b604080516001600160e01b03198316602480830191909152825180830390910181526044909101909152602080820180516001600160e01b03166301ffc9a760e01b178152825160009392849283928392918391908a617530fa92503d915060005190508280156109ee575060208210155b80156109fa5750600081115b979650505050505050565b606082471015610a665760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016100b8565b600080866001600160a01b03168587604051610a829190610ceb565b60006040518083038185875af1925050503d8060008114610abf576040519150601f19603f3d011682016040523d82523d6000602084013e610ac4565b606091505b50915091506109fa8783838760608315610b3f578251600003610b38576001600160a01b0385163b610b385760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016100b8565b5081610941565b6109418383815115610b545781518083602001fd5b8060405162461bcd60e51b81526004016100b89190610d07565b6001600160a01b038116811461074657600080fd5b600080600060608486031215610b9857600080fd5b8335610ba381610b6e565b92506020840135610bb381610b6e565b929592945050506040919091013590565b60008060408385031215610bd757600080fd5b8235610be281610b6e565b946020939093013593505050565b600060208284031215610c0257600080fd5b813561092b81610b6e565b60208082526022908201527f546f6b656e5265636f76657261626c653a2043616c6c6572206e6f742061646d60408201526134b760f11b606082015260800190565b6000816000190483118215151615610c7757634e487b7160e01b600052601160045260246000fd5b500290565b600060208284031215610c8e57600080fd5b815161092b81610b6e565b600060208284031215610cab57600080fd5b8151801515811461092b57600080fd5b60005b83811015610cd6578181015183820152602001610cbe565b83811115610ce5576000848401525b50505050565b60008251610cfd818460208701610cbb565b9190910192915050565b6020815260008251806020840152610d26816040850160208701610cbb565b601f01601f1916919091016040019291505056fea26469706673582212204f86c23938074cc8814908fdb39f05e56a224232a8feb69a12a52b2166347c0b64736f6c634300080f003300000000000000000000000040db79f7f18c468c6552538b488c58b5e72bf4d9
Deployed Bytecode
0x6080604052600436106100555760003560e01c80631171bda9146100c15780632cdf2c35146100e35780632f24b6f81461010357806340c10f19146101235780636018401b1461014b578063f851a44014610186575b34801561006157600080fd5b5060405162461bcd60e51b815260206004820152602960248201527f45746850726963654d696e744d6f64756c653a206e6f6e2d6578697374656e7460448201526810333ab731ba34b7b760b91b60648201526084015b60405180910390fd5b3480156100cd57600080fd5b506100e16100dc366004610b83565b6101be565b005b3480156100ef57600080fd5b506100e16100fe366004610b83565b61024e565b34801561010f57600080fd5b506100e161011e366004610bc4565b610325565b610136610131366004610bc4565b610389565b60405190151581526020015b60405180910390f35b34801561015757600080fd5b50610178610166366004610bf0565b60026020526000908152604090205481565b604051908152602001610142565b34801561019257600080fd5b506001546101a6906001600160a01b031681565b6040516001600160a01b039091168152602001610142565b6001546001600160a01b031633146101e85760405162461bcd60e51b81526004016100b890610c0d565b6101fc6001600160a01b038316848361061b565b816001600160a01b0316836001600160a01b03167f8473dac0dd12ed8ebce9f08282e5e9c0748da064d820d3ed4e513ebe71e306e08360405161024191815260200190565b60405180910390a3505050565b6001546001600160a01b031633146102785760405162461bcd60e51b81526004016100b890610c0d565b6040516323b872dd60e01b81523060048201526001600160a01b038481166024830152604482018390528316906323b872dd90606401600060405180830381600087803b1580156102c857600080fd5b505af11580156102dc573d6000803e3d6000fd5b50505050816001600160a01b0316836001600160a01b03167f82f9a833433b7c1a528eb33f949fe31f35aafd7acb1969ea900f8958f6f8bf9e8360405161024191815260200190565b8161032f81610672565b6001600160a01b03831660008181526002602052604090819020849055517f524cecc77af23c505ed68013235d4e4b25f14355ddfc8cbe05723a91bd6ffef99061037c9085815260200190565b60405180910390a2505050565b6000610393610749565b8261039d816107a2565b6001600160a01b0384166000908152600260205260409020546103c1908490610c4f565b34146104355760405162461bcd60e51b815260206004820152603960248201527f45746850726963654d696e744d6f64756c653a204d7573742073656e6420455460448201527f482076616c756520657175616c20746f2065746850726963650000000000000060648201526084016100b8565b6000846001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610475573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104999190610c7c565b6001600160a01b03163460405160006040518083038185875af1925050503d80600081146104e3576040519150601f19603f3d011682016040523d82523d6000602084013e6104e8565b606091505b50509050806105535760405162461bcd60e51b815260206004820152603160248201527f45746850726963654d696e744d6f64756c653a204661696c656420746f20736560448201527037321022ba3432b9103a379037bbb732b960791b60648201526084016100b8565b604051636b978f7760e01b8152336004820152602481018590526001600160a01b03861690636b978f77906044016020604051808303816000875af11580156105a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c49190610c99565b5060405184815233906001600160a01b038716907f9d228d69b5fdb8d273a2336f8fb8612d039631024ea9bf09c424a9503aa078f09060200160405180910390a36001925050506106156001600055565b92915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261066d90849061083d565b505050565b806001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d49190610c7c565b6001600160a01b0316336001600160a01b0316146107465760405162461bcd60e51b815260206004820152602960248201527f546f6b656e4f776e6572436865636b65723a2043616c6c6572206e6f7420746f60448201526835b2b71037bbb732b960b91b60648201526084016100b8565b50565b60026000540361079b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016100b8565b6002600055565b6107ad81600061090f565b6107465760405162461bcd60e51b815260206004820152605560248201527f455243313635436865636b6572455243373231436f6c6c6563746976653a206360448201527f6f6c6c656374697665206164647265737320646f6573206e6f7420696d706c656064820152746d656e742070726f70657220696e7465726661636560581b608482015260a4016100b8565b6000610892826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166109329092919063ffffffff16565b80519091501561066d57808060200190518101906108b09190610c99565b61066d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016100b8565b600061091a83610949565b801561092b575061092b838361097c565b9392505050565b60606109418484600085610a05565b949350505050565b600061095c826301ffc9a760e01b61097c565b80156106155750610975826001600160e01b031961097c565b1592915050565b604080516001600160e01b03198316602480830191909152825180830390910181526044909101909152602080820180516001600160e01b03166301ffc9a760e01b178152825160009392849283928392918391908a617530fa92503d915060005190508280156109ee575060208210155b80156109fa5750600081115b979650505050505050565b606082471015610a665760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016100b8565b600080866001600160a01b03168587604051610a829190610ceb565b60006040518083038185875af1925050503d8060008114610abf576040519150601f19603f3d011682016040523d82523d6000602084013e610ac4565b606091505b50915091506109fa8783838760608315610b3f578251600003610b38576001600160a01b0385163b610b385760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016100b8565b5081610941565b6109418383815115610b545781518083602001fd5b8060405162461bcd60e51b81526004016100b89190610d07565b6001600160a01b038116811461074657600080fd5b600080600060608486031215610b9857600080fd5b8335610ba381610b6e565b92506020840135610bb381610b6e565b929592945050506040919091013590565b60008060408385031215610bd757600080fd5b8235610be281610b6e565b946020939093013593505050565b600060208284031215610c0257600080fd5b813561092b81610b6e565b60208082526022908201527f546f6b656e5265636f76657261626c653a2043616c6c6572206e6f742061646d60408201526134b760f11b606082015260800190565b6000816000190483118215151615610c7757634e487b7160e01b600052601160045260246000fd5b500290565b600060208284031215610c8e57600080fd5b815161092b81610b6e565b600060208284031215610cab57600080fd5b8151801515811461092b57600080fd5b60005b83811015610cd6578181015183820152602001610cbe565b83811115610ce5576000848401525b50505050565b60008251610cfd818460208701610cbb565b9190910192915050565b6020815260008251806020840152610d26816040850160208701610cbb565b601f01601f1916919091016040019291505056fea26469706673582212204f86c23938074cc8814908fdb39f05e56a224232a8feb69a12a52b2166347c0b64736f6c634300080f0033
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
66459:2261:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68658:51:0;;-1:-1:-1;;;68658:51:0;;216:2:1;68658:51:0;;;198:21:1;255:2;235:18;;;228:30;294:34;274:18;;;267:62;-1:-1:-1;;;345:18:1;;;338:39;394:19;;68658:51:0;;;;;;;;65444:248;;;;;;;;;;-1:-1:-1;65444:248:0;;;;;:::i;:::-;;:::i;:::-;;66100:272;;;;;;;;;;-1:-1:-1;66100:272:0;;;;;:::i;:::-;;:::i;67098:225::-;;;;;;;;;;-1:-1:-1;67098:225:0;;;;;:::i;:::-;;:::i;67488:767::-;;;;;;:::i;:::-;;:::i;:::-;;;1506:14:1;;1499:22;1481:41;;1469:2;1454:18;67488:767:0;;;;;;;;66653:43;;;;;;;;;;-1:-1:-1;66653:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1931:25:1;;;1919:2;1904:18;66653:43:0;1785:177:1;64830:20:0;;;;;;;;;;-1:-1:-1;64830:20:0;;;;-1:-1:-1;;;;;64830:20:0;;;;;;-1:-1:-1;;;;;2131:32:1;;;2113:51;;2101:2;2086:18;64830:20:0;1967:203:1;65444:248:0;64980:5;;-1:-1:-1;;;;;64980:5:0;64966:10;:19;64958:66;;;;-1:-1:-1;;;64958:66:0;;;;;;;:::i;:::-;65578:45:::1;-1:-1:-1::0;;;;;65578:26:0;::::1;65605:9:::0;65616:6;65578:26:::1;:45::i;:::-;65670:5;-1:-1:-1::0;;;;;65639:45:0::1;65659:9;-1:-1:-1::0;;;;;65639:45:0::1;;65677:6;65639:45;;;;1931:25:1::0;;1919:2;1904:18;;1785:177;65639:45:0::1;;;;;;;;65444:248:::0;;;:::o;66100:272::-;64980:5;;-1:-1:-1;;;;;64980:5:0;64966:10;:19;64958:66;;;;-1:-1:-1;;;64958:66:0;;;;;;;:::i;:::-;66237:63:::1;::::0;-1:-1:-1;;;66237:63:0;;66274:4:::1;66237:63;::::0;::::1;2818:34:1::0;-1:-1:-1;;;;;2888:15:1;;;2868:18;;;2861:43;2920:18;;;2913:34;;;66237:28:0;::::1;::::0;::::1;::::0;2753:18:1;;66237:63:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;66348:6;-1:-1:-1::0;;;;;66316:48:0::1;66337:9;-1:-1:-1::0;;;;;66316:48:0::1;;66356:7;66316:48;;;;1931:25:1::0;;1919:2;1904:18;;1785:177;67098:225:0;67201:10;39003:22;39019:5;39003:15;:22::i;:::-;-1:-1:-1;;;;;67229:20:0;::::1;;::::0;;;:8:::1;:20;::::0;;;;;;:32;;;67277:38;::::1;::::0;::::1;::::0;67252:9;1931:25:1;;1919:2;1904:18;;1785:177;67277:38:0::1;;;;;;;;67098:225:::0;;;:::o;67488:767::-;67658:4;2298:21;:19;:21::i;:::-;67628:10:::1;38101:37;38127:10;38101:25;:37::i;:::-;-1:-1:-1::0;;;;;67715:20:0;::::2;;::::0;;;:8:::2;:20;::::0;;;;;:29:::2;::::0;67738:6;;67715:29:::2;:::i;:::-;67702:9;:42;67680:149;;;::::0;-1:-1:-1;;;67680:149:0;;3430:2:1;67680:149:0::2;::::0;::::2;3412:21:1::0;3469:2;3449:18;;;3442:30;3508:34;3488:18;;;3481:62;3579:27;3559:18;;;3552:55;3624:19;;67680:149:0::2;3228:421:1::0;67680:149:0::2;67903:12;67937:10;-1:-1:-1::0;;;;;67929:25:0::2;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;67921:41:0::2;67984:9;67921:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67902:106;;;68027:7;68019:69;;;::::0;-1:-1:-1;;;68019:69:0;;4322:2:1;68019:69:0::2;::::0;::::2;4304:21:1::0;4361:2;4341:18;;;4334:30;4400:34;4380:18;;;4373:62;-1:-1:-1;;;4451:18:1;;;4444:47;4508:19;;68019:69:0::2;4120:413:1::0;68019:69:0::2;68101:70;::::0;-1:-1:-1;;;68101:70:0;;68152:10:::2;68101:70;::::0;::::2;4712:51:1::0;4779:18;;;4772:34;;;-1:-1:-1;;;;;68101:50:0;::::2;::::0;::::2;::::0;4685:18:1;;68101:70:0::2;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;68187:38:0::2;::::0;1931:25:1;;;68206:10:0::2;::::0;-1:-1:-1;;;;;68187:38:0;::::2;::::0;::::2;::::0;1919:2:1;1904:18;68187:38:0::2;;;;;;;68243:4;68236:11;;;2330:1:::1;2342:20:::0;1736:1;2862:7;:22;2679:213;2342:20;67488:767;;;;:::o;60362:248::-;60533:58;;;-1:-1:-1;;;;;4730:32:1;;60533:58:0;;;4712:51:1;4779:18;;;;4772:34;;;60533:58:0;;;;;;;;;;4685:18:1;;;;60533:58:0;;;;;;;;-1:-1:-1;;;;;60533:58:0;-1:-1:-1;;;60533:58:0;;;60479:123;;60513:5;;60479:19;:123::i;:::-;60362:248;;;:::o;39053:199::-;39161:5;-1:-1:-1;;;;;39154:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39140:35:0;:10;-1:-1:-1;;;;;39140:35:0;;39118:126;;;;-1:-1:-1;;;39118:126:0;;5301:2:1;39118:126:0;;;5283:21:1;5340:2;5320:18;;;5313:30;5379:34;5359:18;;;5352:62;-1:-1:-1;;;5430:18:1;;;5423:39;5479:19;;39118:126:0;5099:405:1;39118:126:0;39053:199;:::o;2378:293::-;1780:1;2512:7;;:19;2504:63;;;;-1:-1:-1;;;2504:63:0;;5711:2:1;2504:63:0;;;5693:21:1;5750:2;5730:18;;;5723:30;5789:33;5769:18;;;5762:61;5840:18;;2504:63:0;5509:355:1;2504:63:0;1780:1;2645:7;:18;2378:293::o;38166:352::-;38268:129;38318:10;38347:35;38268:31;:129::i;:::-;38246:264;;;;-1:-1:-1;;;38246:264:0;;6071:2:1;38246:264:0;;;6053:21:1;6110:2;6090:18;;;6083:30;6149:34;6129:18;;;6122:62;6220:34;6200:18;;;6193:62;-1:-1:-1;;;6271:19:1;;;6264:52;6333:19;;38246:264:0;5869:489:1;63860:802:0;64284:23;64310:106;64352:4;64310:106;;;;;;;;;;;;;;;;;64318:5;-1:-1:-1;;;;;64310:27:0;;;:106;;;;;:::i;:::-;64431:17;;64284:132;;-1:-1:-1;64431:21:0;64427:228;;64546:10;64535:30;;;;;;;;;;;;:::i;:::-;64509:134;;;;-1:-1:-1;;;64509:134:0;;6565:2:1;64509:134:0;;;6547:21:1;6604:2;6584:18;;;6577:30;6643:34;6623:18;;;6616:62;-1:-1:-1;;;6694:18:1;;;6687:40;6744:19;;64509:134:0;6363:406:1;33757:343:0;33871:4;33998:23;34013:7;33998:14;:23::i;:::-;:94;;;;;34038:54;34071:7;34080:11;34038:32;:54::i;:::-;33978:114;33757:343;-1:-1:-1;;;33757:343:0:o;53717:229::-;53854:12;53886:52;53908:6;53916:4;53922:1;53925:12;53886:21;:52::i;:::-;53879:59;53717:229;-1:-1:-1;;;;53717:229:0:o;33049:482::-;33113:4;33324:117;33375:7;-1:-1:-1;;;33324:32:0;:117::i;:::-;:199;;;;-1:-1:-1;33459:64:0;33492:7;-1:-1:-1;;;;;;33459:32:0;:64::i;:::-;33458:65;33304:219;33049:482;-1:-1:-1;;33049:482:0:o;36878:841::-;37076:108;;;-1:-1:-1;;;;;;6936:33:1;;37076:108:0;;;;6918:52:1;;;;37076:108:0;;;;;;;;;;6891:18:1;;;;37076:108:0;;;;;;;;;-1:-1:-1;;;;;37076:108:0;-1:-1:-1;;;37076:108:0;;;37468:20;;37005:4;;37076:108;37005:4;;;;;;37076:108;37005:4;;37468:20;37399:7;37375:5;37346:203;37335:214;;37577:16;37563:30;;37628:4;37622:11;37607:26;;37663:7;:29;;;;;37688:4;37674:10;:18;;37663:29;:48;;;;;37710:1;37696:11;:15;37663:48;37656:55;36878:841;-1:-1:-1;;;;;;;36878:841:0:o;54933:612::-;55103:12;55175:5;55150:21;:30;;55128:118;;;;-1:-1:-1;;;55128:118:0;;7183:2:1;55128:118:0;;;7165:21:1;7222:2;7202:18;;;7195:30;7261:34;7241:18;;;7234:62;-1:-1:-1;;;7312:18:1;;;7305:36;7358:19;;55128:118:0;6981:402:1;55128:118:0;55258:12;55272:23;55299:6;-1:-1:-1;;;;;55299:11:0;55318:5;55339:4;55299:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55257:97;;;;55385:152;55430:6;55455:7;55481:10;55510:12;58253;58282:7;58278:427;;;58310:10;:17;58331:1;58310:22;58306:290;;-1:-1:-1;;;;;51063:19:0;;;58520:60;;;;-1:-1:-1;;;58520:60:0;;8132:2:1;58520:60:0;;;8114:21:1;8171:2;8151:18;;;8144:30;8210:31;8190:18;;;8183:59;8259:18;;58520:60:0;7930:353:1;58520:60:0;-1:-1:-1;58617:10:0;58610:17;;58278:427;58660:33;58668:10;58680:12;59438:17;;:21;59434:388;;59670:10;59664:17;59727:15;59714:10;59710:2;59706:19;59699:44;59434:388;59797:12;59790:20;;-1:-1:-1;;;59790:20:0;;;;;;;;:::i;424:131:1:-;-1:-1:-1;;;;;499:31:1;;489:42;;479:70;;545:1;542;535:12;560:456;637:6;645;653;706:2;694:9;685:7;681:23;677:32;674:52;;;722:1;719;712:12;674:52;761:9;748:23;780:31;805:5;780:31;:::i;:::-;830:5;-1:-1:-1;887:2:1;872:18;;859:32;900:33;859:32;900:33;:::i;:::-;560:456;;952:7;;-1:-1:-1;;;1006:2:1;991:18;;;;978:32;;560:456::o;1021:315::-;1089:6;1097;1150:2;1138:9;1129:7;1125:23;1121:32;1118:52;;;1166:1;1163;1156:12;1118:52;1205:9;1192:23;1224:31;1249:5;1224:31;:::i;:::-;1274:5;1326:2;1311:18;;;;1298:32;;-1:-1:-1;;;1021:315:1:o;1533:247::-;1592:6;1645:2;1633:9;1624:7;1620:23;1616:32;1613:52;;;1661:1;1658;1651:12;1613:52;1700:9;1687:23;1719:31;1744:5;1719:31;:::i;2175:398::-;2377:2;2359:21;;;2416:2;2396:18;;;2389:30;2455:34;2450:2;2435:18;;2428:62;-1:-1:-1;;;2521:2:1;2506:18;;2499:32;2563:3;2548:19;;2175:398::o;2958:265::-;2998:7;3064:1;3060;3056:6;3052:14;3049:1;3046:21;3041:1;3034:9;3027:17;3023:45;3020:168;;;3110:10;3105:3;3101:20;3098:1;3091:31;3145:4;3142:1;3135:15;3173:4;3170:1;3163:15;3020:168;-1:-1:-1;3208:9:1;;2958:265::o;3654:251::-;3724:6;3777:2;3765:9;3756:7;3752:23;3748:32;3745:52;;;3793:1;3790;3783:12;3745:52;3825:9;3819:16;3844:31;3869:5;3844:31;:::i;4817:277::-;4884:6;4937:2;4925:9;4916:7;4912:23;4908:32;4905:52;;;4953:1;4950;4943:12;4905:52;4985:9;4979:16;5038:5;5031:13;5024:21;5017:5;5014:32;5004:60;;5060:1;5057;5050:12;7388:258;7460:1;7470:113;7484:6;7481:1;7478:13;7470:113;;;7560:11;;;7554:18;7541:11;;;7534:39;7506:2;7499:10;7470:113;;;7601:6;7598:1;7595:13;7592:48;;;7636:1;7627:6;7622:3;7618:16;7611:27;7592:48;;7388:258;;;:::o;7651:274::-;7780:3;7818:6;7812:13;7834:53;7880:6;7875:3;7868:4;7860:6;7856:17;7834:53;:::i;:::-;7903:16;;;;;7651:274;-1:-1:-1;;7651:274:1:o;8288:383::-;8437:2;8426:9;8419:21;8400:4;8469:6;8463:13;8512:6;8507:2;8496:9;8492:18;8485:34;8528:66;8587:6;8582:2;8571:9;8567:18;8562:2;8554:6;8550:15;8528:66;:::i;:::-;8655:2;8634:15;-1:-1:-1;;8630:29:1;8615:45;;;;8662:2;8611:54;;8288:383;-1:-1:-1;;8288:383:1:o
Swarm Source
ipfs://4f86c23938074cc8814908fdb39f05e56a224232a8feb69a12a52b2166347c0b
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.