Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 297 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Purchase | 18100094 | 437 days ago | IN | 0.2 ETH | 0.00165532 | ||||
Purchase | 17093484 | 579 days ago | IN | 0.2 ETH | 0.0064045 | ||||
Distribute Funds | 17034948 | 587 days ago | IN | 0 ETH | 0.00161184 | ||||
Initialize Split | 17034936 | 587 days ago | IN | 0 ETH | 0.00187043 | ||||
Purchase | 16766212 | 625 days ago | IN | 0.2 ETH | 0.00792929 | ||||
Purchase | 16729889 | 630 days ago | IN | 0.2 ETH | 0.00297286 | ||||
Purchase | 16704622 | 634 days ago | IN | 0.4 ETH | 0.00448222 | ||||
Purchase | 16673850 | 638 days ago | IN | 0.2 ETH | 0.00348174 | ||||
Purchase | 16673843 | 638 days ago | IN | 0.4 ETH | 0.00560356 | ||||
Purchase | 16673826 | 638 days ago | IN | 0.2 ETH | 0.00567598 | ||||
Purchase | 16673671 | 638 days ago | IN | 0.2 ETH | 0.00315042 | ||||
Purchase | 16666140 | 639 days ago | IN | 0.4 ETH | 0.00346458 | ||||
Purchase | 16665446 | 639 days ago | IN | 0.2 ETH | 0.0030243 | ||||
Purchase | 16665039 | 639 days ago | IN | 0.2 ETH | 0.00357158 | ||||
Purchase | 16663980 | 639 days ago | IN | 0.2 ETH | 0.00503082 | ||||
Purchase | 16649724 | 641 days ago | IN | 0.2 ETH | 0.00528298 | ||||
Purchase | 16648882 | 641 days ago | IN | 0.2 ETH | 0.00384686 | ||||
Purchase | 16648609 | 641 days ago | IN | 0.2 ETH | 0.00396163 | ||||
Purchase | 16648050 | 642 days ago | IN | 0.2 ETH | 0.00356339 | ||||
Purchase | 16647696 | 642 days ago | IN | 0.4 ETH | 0.0039774 | ||||
Purchase | 16647155 | 642 days ago | IN | 0.4 ETH | 0.0037919 | ||||
Purchase | 16646816 | 642 days ago | IN | 0.2 ETH | 0.00364322 | ||||
Purchase | 16646750 | 642 days ago | IN | 0.2 ETH | 0.00345174 | ||||
Allow List Purch... | 16646406 | 642 days ago | IN | 0.1 ETH | 0.0007887 | ||||
Purchase | 16646166 | 642 days ago | IN | 0.4 ETH | 0.00498949 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17034948 | 587 days ago | 46 ETH |
Loading...
Loading
Contract Name:
DigitalPaintSale
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import {Random} from "./libraries/Random.sol"; import {AllowList} from "./AllowList.sol"; import {DigitalPaint} from "./DigitalPaint.sol"; contract DigitalPaintSale is AccessControl, AllowList, ReentrancyGuard { using Random for Random.Manifest; /// @notice Raised when caller is not an EOA error OnlyEOA(address account); /// @notice Raised when allowlist sale has ended error AllowListSaleClosed(); /// @notice Raised when public sale has ended error PublicSaleClosed(); /// @notice Raised when caller tries to mint more than the mint cap error MintCapExceeded(); /// @notice Raised when there are insufficient tokens to mint error InsufficientSupply(); /// @notice Raised when caller does not send the correct amount of ETH error IncorrectMintPrice(); /// @notice Raised when caller is not an admin error Unauthorized(); /// @notice Raised when sale has not been initialized error SaleNotInitialized(); /// @notice Raised when attempt made to distribute funds without split being initialized error SplitNotInitialized(); /// @notice Packed little guy for tracking mint status struct MintStatus { uint128 ac; uint128 pp; } /// @notice Packed little guy who remembers sale times struct SaleTimes { /// @notice Allow List sale start time: 1676566800 = 2/16/2023 09:00:00 AM PST uint128 allowListStart; /// @notice Public sale start time: 1676577600 = 2/16/2023 12:00:00 PM PST uint128 publicStart; } /// @notice Access Control role for admin bytes32 public constant ADMIN = keccak256("ADMIN"); /// @notice The total number of tokens for sale uint256 public constant TOTAL_SALE_SUPLLY = 4950; /// @notice Maximum number of tokens per wallet during allowlist sale uint256 public constant ALLOWLIST_MINT_CAP = 3; /// @notice Maximum number of tokens per wallet during public sale uint256 public constant PUBLIC_MINT_CAP = 2; SaleTimes public saleTimes; /// @notice DigitalPaint contract DigitalPaint public digitalPaint; /// @notice Track number of tokens minted MintStatus public mintStatus; /// @notice Mint price during allowlist sale uint256 public allowListMintPrice = 0.1 ether; /// @notice Mint price during public sale uint256 public publicMintPrice = 0.2 ether; /// @notice Track number of tokens minted per wallet during allowlist sale mapping(address => uint256) public allowListPurchases; /// @notice Track number of tokens minted per wallet during public sale mapping(address => uint256) public publicPurchases; /// @notice Amount to be paid prior to splitting uint256 public topCut; /// @notice Amount paid to topCutRecipient uint256 public topCutPaid; /// @notice Recipient address of topCut address payable public topCutReipient; /// @notice Address of sale splitter for address payable public primarySaleSplitter; /// @notice Deck to draw from when (randomly) minting tokens Random.Manifest private _acDeck; constructor(address[] memory admins) { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); for (uint256 i = 0; i < admins.length; i++) { _setupRole(ADMIN, admins[i]); } Random.setup(_acDeck, 4950); } modifier onlyAdmin() { if ( !hasRole(ADMIN, msg.sender) && !hasRole(DEFAULT_ADMIN_ROLE, msg.sender) ) revert Unauthorized(); _; } /// @notice Allow accounts on allowlist to mint an Artist Choice token /// @param amount The number of tokens to mint /// @param proof Merkle proof used to establish that the caller is on the allowlist function allowListPurchase(uint256 amount, bytes32[] calldata proof) external payable nonReentrant { _onlyAllowList(); _onlyEOA(msg.sender); _verifyProof(msg.sender, proof); MintStatus memory status = mintStatus; if (status.ac + status.pp + amount > TOTAL_SALE_SUPLLY) { revert InsufficientSupply(); } if (allowListPurchases[msg.sender] + amount > ALLOWLIST_MINT_CAP) { revert MintCapExceeded(); } if (msg.value != amount * allowListMintPrice) { revert IncorrectMintPrice(); } allowListPurchases[msg.sender] += amount; _randomMint(msg.sender, amount); } /// @notice Randomly purchase either Artist Choice tokens or Paint Passes /// @param amount The number of tokens to mint function purchase(uint256 amount) external payable nonReentrant { _onlyPublic(); _onlyEOA(msg.sender); if (publicPurchases[msg.sender] + amount > PUBLIC_MINT_CAP) { revert MintCapExceeded(); } MintStatus memory status = mintStatus; if (status.ac + status.pp + amount > TOTAL_SALE_SUPLLY) { revert InsufficientSupply(); } if (msg.value != amount * publicMintPrice) { revert IncorrectMintPrice(); } publicPurchases[msg.sender] += amount; _randomMint(msg.sender, amount); } //////////////////////////////////////////////////////////////////////////// // ADMIN //////////////////////////////////////////////////////////////////////////// /// @notice Admin function to initialize the sale /// @param _digitalPaint The DigitalPaint contract /// @param allowListStart The timestamp when the allowlist sale starts /// @param publicStart The timestamp when the public sale starts function initializeSale( DigitalPaint _digitalPaint, uint128 allowListStart, uint128 publicStart ) external onlyAdmin { digitalPaint = _digitalPaint; saleTimes = SaleTimes(allowListStart, publicStart); } /// @notice Admin function to mint tokens as necessary /// @param to The address to mint tokens to /// @param amount The number of tokens to mint function adminMint(address to, uint256 amount) external onlyAdmin nonReentrant { MintStatus memory status = mintStatus; if (status.ac + status.pp + amount > TOTAL_SALE_SUPLLY) { revert InsufficientSupply(); } _randomMint(to, amount); } /// @notice Admin function to set parameters required to distribute funds /// @param _topCut The amount to be paid to topCutRecipient prior to splitting /// @param _topCutRecipient The recipient address of the top cut /// @param _primarySaleSplitter The address of the sale splitter for primary sales function initializeSplit( uint256 _topCut, address payable _topCutRecipient, address payable _primarySaleSplitter ) external onlyAdmin { topCut = _topCut; topCutReipient = _topCutRecipient; primarySaleSplitter = _primarySaleSplitter; } /// @notice Admin function to distribute funds from the sale /// @dev Until the topCut is paid, the primary sale splitter will not receive any funds function distributeFunds() external onlyAdmin nonReentrant { if ( topCut == 0 || topCutReipient == address(0) || primarySaleSplitter == address(0) ) { revert SplitNotInitialized(); } // First take care of topCut if (topCutPaid < topCut) { uint256 amount = topCut - topCutPaid; if (amount > address(this).balance) { amount = address(this).balance; } topCutPaid += amount; (bool topSplitSuccess, ) = topCutReipient.call{value: amount}(""); require(topSplitSuccess); } // Then send the rest to the primary sale splitter (bool success, ) = primarySaleSplitter.call{ value: address(this).balance }(""); require(success); } /// @notice Admin function to set the allowlist merkle root /// @param _merkleRoot The new merkle root function setMerkleRoot(bytes32 _merkleRoot) external onlyAdmin { _setMerkleRoot(_merkleRoot); } //////////////////////////////////////////////////////////////////////////// // INTERNAL GUYS //////////////////////////////////////////////////////////////////////////// /// @dev Revert if the account is a smart contract. Does not protect against calls from the constructor. /// @param account The account to check function _onlyEOA(address account) internal view { if (msg.sender != tx.origin || account.code.length > 0) { revert OnlyEOA(account); } } /// @notice Verify that allowlist sale is active function _onlyAllowList() internal view { SaleTimes memory times = saleTimes; if (times.allowListStart == 0) revert SaleNotInitialized(); if ( block.timestamp < times.allowListStart || block.timestamp >= times.publicStart ) revert AllowListSaleClosed(); } /// @notice Verify that public sale is active function _onlyPublic() internal view { SaleTimes memory times = saleTimes; if (times.publicStart == 0) revert SaleNotInitialized(); if (block.timestamp < times.publicStart) revert PublicSaleClosed(); } /// @notice Randomly mint @param amount Artist Choice or Paint Pass tokens function _randomMint(address to, uint256 amount) internal { bytes32 seed = Random.random(); uint256 tokenId; MintStatus memory status = mintStatus; uint128 ppToMint; // Determine random mints: for (uint256 i = 0; i < amount; i++) { seed = keccak256(abi.encodePacked(seed, i)); tokenId = _acDeck.draw(seed) + 1; if (tokenId <= 100) { digitalPaint.transferFrom(address(this), to, tokenId); status.ac++; } else { ppToMint++; } } if (ppToMint > 0) { digitalPaint.mint(to, ppToMint); status.pp += ppToMint; } mintStatus = status; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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`, * 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 be 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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * 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 payable; /** * @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 payable; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract AllowList { /// @notice Raised when submitted merkle proof is invalid error InvalidProof(); /// @notice Raised when merkle root is not set error MerkleRootNotSet(); /// @notice The merkle root of the allowlist bytes32 public merkleRoot; /// @notice Verifies a proof of inclusion in the allowlist /// @param sender The address to verify /// @param proof The proof of inclusion function _verifyProof(address sender, bytes32[] calldata proof) internal view { if (merkleRoot == 0x0) revert MerkleRootNotSet(); bool verified = MerkleProof.verify( proof, merkleRoot, keccak256(abi.encodePacked(sender)) ); if (!verified) revert InvalidProof(); } /// @notice Sets the merkle root /// @param _merkleRoot The new merkle root to use function _setMerkleRoot(bytes32 _merkleRoot) internal { merkleRoot = _merkleRoot; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import {IAccessControl, AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol"; import {DefaultOperatorFilterer} from "operator-filter-registry/DefaultOperatorFilterer.sol"; import {ERC2981} from "@openzeppelin/contracts/token/common/ERC2981.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import {Strings} from "@openzeppelin/contracts/utils/Strings.sol"; import {ERC721A, ERC721AURIStorage} from "./ERC721AURIStorage.sol"; import {DPVoucher, DigitalPaintVoucher} from "./DigitalPaintVoucher.sol"; contract DigitalPaint is ERC721AURIStorage, ERC2981, DigitalPaintVoucher, AccessControl, DefaultOperatorFilterer, ReentrancyGuard { using Strings for uint256; /// @notice Raised when attempting to update an Artist Choice token error CannotUpdateArtistChoice(); /// @notice Raised when attempting to burn an Artist Choice token error CannotBurnArtistChoice(); /// @notice Raised when attempting to mint or update using an invalid voucher error InvalidVoucher(); /// @notice Raised when attempting to mint or update using an expired voucher error VoucherExpired(); /// @notice Raised when attempting to update metadata after freeze has taken place error MetadataFrozen(); /// @notice Raised when a non-EOA account calls a gated function error OnlyEOA(address msgSender); /// @notice Raised when trying to access token that does not exist error TokenDoesNotExist(); /// @notice Raised when an unauthorized account attempts to perform an action error Unauthorized(); /// @notice Raised when a call is made to update a token while updates are disabled error UpdatesDisabled(); /// @notice Emitted when a token is updated with new painting data event PaintingUpdated( uint256 indexed tokenId, address indexed updatedBy, string oldURI, string newURI ); /// @notice Access Control role for administrative functions bytes32 public constant ADMIN = keccak256("ADMIN"); /// @notice Access Control role authorizing account to sign DigitalPaintVouchers bytes32 public constant SIGNER = keccak256("SIGNER"); /// @notice Access Control role authorizing account to mint tokens bytes32 public constant MINTER = keccak256("MINTER"); /// @notice Once flipped to TRUE, metadata will be irrevocably frozen bool public metadataFrozen; /// @notice Whether updates for tokens 101-1000 are enabled bool public updatesEnabled = false; constructor( address saleContract, address signer, address cutMod, address chainSaw, address payable royaltySplitter, address[] memory admins ) ERC721A("Digital Paint", "DIGITALPAINT") DigitalPaintVoucher("DigitalPaint", "1") { _setDefaultRoyalty(royaltySplitter, 750); _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(SIGNER, signer); _setupRole(MINTER, saleContract); // Set up admin roles for (uint256 i = 0; i < admins.length; i++) { _setupRole(ADMIN, admins[i]); } // Mint Artist Choice to sale contract _mint(saleContract, 100); // Mint 50 Paint Passes to the contract deployer _mint(msg.sender, 30); _mint(cutMod, 10); _mint(chainSaw, 10); } //////////////////////////////////////////////////////////////////////////// // MODIFIERS //////////////////////////////////////////////////////////////////////////// /// @notice Modifier to ensure that only accounts with the ADMIN role can call a function modifier onlyAdmin() { if ( !hasRole(ADMIN, msg.sender) && !hasRole(DEFAULT_ADMIN_ROLE, msg.sender) ) revert Unauthorized(); _; } /// @notice Modifier to ensure that only accounts with the MINTER role can call a function modifier onlyMinter() { if (!hasRole(MINTER, msg.sender)) revert Unauthorized(); _; } //////////////////////////////////////////////////////////////////////////// // WRITES //////////////////////////////////////////////////////////////////////////// /// @notice Permissioned mint function to be called by sale contract /// @param to The address to mint the Digital Paint NFT to /// @param amount The amount of Digital Paint NFTs to mint function mint(address to, uint256 amount) external onlyMinter { _mint(to, amount); } /// @notice Update the tokenURI of an existing Digital Paint NFT /// @param tokenId The ID of the Digital Paint NFT to update /// @param _tokenURI The new tokenURI of the Digital Paint NFT /// @param expiration The expiration of the Digital Paint Voucher /// @param signature The signature representing a valid Digital Paint Voucher function update( uint256 tokenId, string calldata _tokenURI, uint256 expiration, bytes calldata signature ) external { if (metadataFrozen) revert MetadataFrozen(); if (!updatesEnabled) revert UpdatesDisabled(); if (_isArtistChoice(tokenId)) revert CannotUpdateArtistChoice(); if (!_exists(tokenId)) revert TokenDoesNotExist(); if (ownerOf(tokenId) != msg.sender) revert Unauthorized(); _checkVoucher(tokenId, _tokenURI, expiration, signature); string memory prevURI = tokenURI(tokenId); _setTokenURI(tokenId, _tokenURI); emit PaintingUpdated(tokenId, msg.sender, prevURI, _tokenURI); } //////////////////////////////////////////////////////////////////////////// // ADMIN //////////////////////////////////////////////////////////////////////////// /// @notice Allows admin to burn a Digital Paint NFT /// @param tokenId The ID of the Digital Paint NFT to burn function adminBurn(uint256 tokenId) external onlyAdmin { if (!_exists(tokenId)) revert TokenDoesNotExist(); if (_isArtistChoice(tokenId)) revert CannotBurnArtistChoice(); _burn(tokenId); } /// @notice Allows admin to update tokenURI of a Digital Paint NFT /// @param tokenId The ID of the Digital Paint NFT to update /// @param _tokenURI The new tokenURI of the Digital Paint NFT function adminUpdate(uint256 tokenId, string memory _tokenURI) external onlyAdmin { if (metadataFrozen) revert MetadataFrozen(); if (!_exists(tokenId)) revert TokenDoesNotExist(); if (_isArtistChoice(tokenId)) revert CannotUpdateArtistChoice(); string memory prevURI = tokenURI(tokenId); _setTokenURI(tokenId, _tokenURI); emit PaintingUpdated(tokenId, msg.sender, prevURI, _tokenURI); } /// @notice Irrevocably freeze metadata. Once frozen, metadata cannot be updated. function freezeMetadata() external onlyAdmin { if (metadataFrozen) revert MetadataFrozen(); metadataFrozen = true; } /// @notice Set the base tokenURI for all Digital Paint NFTs function setBaseTokenURI(string memory baseTokenURI) external onlyAdmin { if (metadataFrozen) revert MetadataFrozen(); _setBaseTokenURI(baseTokenURI); } /// @notice Set whether to ignore individually set tokenURIs function setForceBaseTokenURI(bool forceBaseTokenURI) external onlyAdmin { if (metadataFrozen) revert MetadataFrozen(); _setForceBaseTokenURI(forceBaseTokenURI); } /// @notice Toggle whether updates for tokens 101-5000 are enabled function toggleUpdates() external onlyAdmin { updatesEnabled = !updatesEnabled; } /// @notice Set the default royalty for all Digital Paint NFTs /// @param receiver The address to receive royalties /// @param feeNumerator The numerator of the royalty fee function setDefaultRoyalty(address receiver, uint96 feeNumerator) external onlyAdmin { _setDefaultRoyalty(receiver, feeNumerator); } //////////////////////////////////////////////////////////////////////////// // INTERNAL GUYS //////////////////////////////////////////////////////////////////////////// /// @dev Revert if the account is a smart contract. Does not protect against calls from the constructor. /// @param account The account to check function _onlyEOA(address account) internal view { if (msg.sender != tx.origin || account.code.length > 0) { revert OnlyEOA(account); } } /// @notice Check if a Digital Paint Voucher is valid. Revert if Invalid or Expired. /// @param tokenId The ID of the Digital Paint NFT to check /// @param uri The verified URI of the Digital Paint NFT /// @param expiration The expiration of the Digital Paint Voucher /// @param signature The signature representing a valid Digital Paint Voucher function _checkVoucher( uint256 tokenId, string calldata uri, uint256 expiration, bytes calldata signature ) internal view { if (block.timestamp > expiration) revert VoucherExpired(); address signer = _recoverSigner( DPVoucher(tokenId, msg.sender, uri, expiration), signature ); if (!hasRole(SIGNER, signer)) revert InvalidVoucher(); } /// @notice Helper to check whether @param tokenId is an Artist Choice NFT /// @param tokenId The ID of the Digital Paint NFT to check function _isArtistChoice(uint256 tokenId) internal pure returns (bool) { return tokenId >= 1 && tokenId <= 100; } //////////////////////////////////////////////////////////////////////////// // OPERATOR FILTER REGISTRY //////////////////////////////////////////////////////////////////////////// function setApprovalForAll(address operator, bool approved) public override(ERC721A) onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override(ERC721A) onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom( address from, address to, uint256 tokenId ) public payable override(ERC721A) onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override(ERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override(ERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } //////////////////////////////////////////////////////////////////////////// // OVERRIDES //////////////////////////////////////////////////////////////////////////// /// @dev See {IERC165-supportsInterface}. function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981, AccessControl) returns (bool) { return interfaceId == type(IAccessControl).interfaceId || interfaceId == 0x2a55205a || // ERC165 Interface ID for ERC2981 interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165 interfaceId == 0x80ac58cd || // ERC165 Interface ID for ERC721 interfaceId == 0x5b5e139f; // ERC165 Interface ID for ERC721Metadata } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.15; import "@openzeppelin/contracts/utils/cryptography/EIP712.sol"; struct DPVoucher { uint256 tokenId; address creator; string tokenURI; uint256 expiration; } contract DigitalPaintVoucher is EIP712 { constructor(string memory name, string memory version) EIP712(name, version) {} function DOMAIN_SEPARATOR() public view returns (bytes32) { return _domainSeparatorV4(); } function _getVoucherHash(DPVoucher memory voucher) public view returns (bytes32) { return _hashTypedDataV4( keccak256( abi.encode( keccak256( "DPVoucher(uint256 tokenId,address creator,string tokenURI,uint256 expiration)" ), voucher.tokenId, voucher.creator, keccak256(bytes(voucher.tokenURI)), voucher.expiration ) ) ); } function _recoverSigner(DPVoucher memory voucher, bytes memory signature) internal view returns (address) { bytes32 digest = _getVoucherHash(voucher); return ECDSA.recover(digest, signature); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import {ERC721A} from "@ERC721A/contracts/ERC721A.sol"; import {Strings} from "@openzeppelin/contracts/utils/Strings.sol"; abstract contract ERC721AURIStorage is ERC721A { using Strings for uint256; /// @notice Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /// @notice Base token URI string internal _baseTokenURI; /// @notice Whether or not to override individually set tokenURIs bool internal _forceBaseTokenURI; /// @dev See {IERC721Metadata-tokenURI}. function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if (!_forceBaseTokenURI) { string memory _tokenURI = _tokenURIs[tokenId]; // If URI has been set for token, return it if (bytes(_tokenURI).length > 0) { return _tokenURI; } } return super.tokenURI(tokenId); } /// @notice Sets the base token URI /// @param baseTokenURI The base token URI function _setBaseTokenURI(string memory baseTokenURI) internal { _baseTokenURI = baseTokenURI; } /// @notice Sets whether or not to override individually set tokenURIs with the base URI function _setForceBaseTokenURI(bool forceBaseTokenURI) internal { _forceBaseTokenURI = forceBaseTokenURI; } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function _startTokenId() internal pure override returns (uint256) { return 1; } /// @notice Sets the token URI for a given token ID /// @param tokenId The token ID to set the token URI for /// @param _tokenURI The token URI to set function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require( _exists(tokenId), "ERC721URIStorage: URI set of nonexistent token" ); _tokenURIs[tokenId] = _tokenURI; } function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library Random { function random() internal view returns (bytes32) { return keccak256( abi.encodePacked( blockhash(block.number - 1), block.difficulty, msg.sender ) ); } struct Manifest { uint256[] _data; } function setup(Manifest storage self, uint256 length) internal { uint256[] storage data = self._data; require(data.length == 0, "cannot-setup-during-active-draw"); assembly { sstore(data.slot, length) } } function draw(Manifest storage self) internal returns (uint256) { return draw(self, random()); } function draw(Manifest storage self, bytes32 seed) internal returns (uint256) { uint256[] storage data = self._data; uint256 l = data.length; uint256 i = uint256(seed) % l; uint256 x = data[i]; uint256 y = data[--l]; if (x == 0) { x = i + 1; } if (y == 0) { y = l + 1; } if (i != l) { data[i] = y; } data.pop(); return x - 1; } function put(Manifest storage self, uint256 i) internal { self._data.push(i + 1); } function remaining(Manifest storage self) internal view returns (uint256) { return self._data.length; } }
{ "remappings": [ "@ERC721A/=lib/ERC721A/", "@openzeppelin/=lib/openzeppelin-contracts/", "ERC721A/=lib/ERC721A/contracts/", "ds-test/=lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/operator-filter-registry/lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "murky/=lib/murky/src/", "openzeppelin-contracts-upgradeable/=lib/operator-filter-registry/lib/openzeppelin-contracts-upgradeable/contracts/", "openzeppelin-contracts/=lib/murky/lib/openzeppelin-contracts/", "operator-filter-registry/=lib/operator-filter-registry/src/", "solmate/=lib/solmate/src/" ], "optimizer": { "enabled": true, "runs": 1000000 }, "metadata": { "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "london", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"admins","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllowListSaleClosed","type":"error"},{"inputs":[],"name":"IncorrectMintPrice","type":"error"},{"inputs":[],"name":"InsufficientSupply","type":"error"},{"inputs":[],"name":"InvalidProof","type":"error"},{"inputs":[],"name":"MerkleRootNotSet","type":"error"},{"inputs":[],"name":"MintCapExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OnlyEOA","type":"error"},{"inputs":[],"name":"PublicSaleClosed","type":"error"},{"inputs":[],"name":"SaleNotInitialized","type":"error"},{"inputs":[],"name":"SplitNotInitialized","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ALLOWLIST_MINT_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SALE_SUPLLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowListMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"allowListPurchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"digitalPaint","outputs":[{"internalType":"contract DigitalPaint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distributeFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract DigitalPaint","name":"_digitalPaint","type":"address"},{"internalType":"uint128","name":"allowListStart","type":"uint128"},{"internalType":"uint128","name":"publicStart","type":"uint128"}],"name":"initializeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_topCut","type":"uint256"},{"internalType":"address payable","name":"_topCutRecipient","type":"address"},{"internalType":"address payable","name":"_primarySaleSplitter","type":"address"}],"name":"initializeSplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"uint128","name":"ac","type":"uint128"},{"internalType":"uint128","name":"pp","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"primarySaleSplitter","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleTimes","outputs":[{"internalType":"uint128","name":"allowListStart","type":"uint128"},{"internalType":"uint128","name":"publicStart","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"topCut","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"topCutPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"topCutReipient","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405267016345785d8a00006006556702c68af0bb1400006007553480156200002957600080fd5b50604051620027e3380380620027e38339810160408190526200004c916200022d565b60016002556200005e600033620000f0565b60005b8151811015620000ce57620000b97fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42838381518110620000a557620000a5620002ff565b6020026020010151620000f060201b60201c565b80620000c58162000315565b91505062000061565b50620000e9600e6113566200010060201b620011c71760201c565b506200033d565b620000fc82826200015a565b5050565b8154829015620001565760405162461bcd60e51b815260206004820152601f60248201527f63616e6e6f742d73657475702d647572696e672d6163746976652d6472617700604482015260640160405180910390fd5b5550565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620000fc576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001b63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200022857600080fd5b919050565b600060208083850312156200024157600080fd5b82516001600160401b03808211156200025957600080fd5b818501915085601f8301126200026e57600080fd5b815181811115620002835762000283620001fa565b8060051b604051601f19603f83011681018181108582111715620002ab57620002ab620001fa565b604052918252848201925083810185019188831115620002ca57600080fd5b938501935b82851015620002f357620002e38562000210565b84529385019392850192620002cf565b98975050505050505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016200033657634e487b7160e01b600052601160045260246000fd5b5060010190565b612496806200034d6000396000f3fe6080604052600436106101cd5760003560e01c80637cb64759116100f7578063cd8fcc0e11610095578063e58306f911610064578063e58306f9146105db578063e70050c0146105fb578063efef39a114610628578063f52299011461063b57600080fd5b8063cd8fcc0e1461056f578063d547741f14610585578063dc53fd92146105a5578063dfa11dca146105bb57600080fd5b80639da3f8fd116100d15780639da3f8fd146104d7578063a217fddf14610518578063a5f1b4881461052d578063a8199b121461054257600080fd5b80637cb647591461045057806391d14854146104705780639a41b00e146104c157600080fd5b806336568abe1161016f5780636204947e1161013e5780636204947e146103bd57806368855b64146103d2578063753980d5146103e8578063780862da146103fe57600080fd5b806336568abe146103485780633a6a4d2e1461036857806353f33cf11461037d5780635d38ffff1461039057600080fd5b8063248a9ca3116101ab578063248a9ca3146102ac5780632a0acc6a146102dc5780632eb4a7ab146103105780632f2ff15d1461032657600080fd5b806301ffc9a7146101d257806302fcc998146102075780631d421e9b14610271575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611f49565b61065b565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50600354610248906fffffffffffffffffffffffffffffffff8082169170010000000000000000000000000000000090041682565b604080516fffffffffffffffffffffffffffffffff9384168152929091166020830152016101fe565b34801561027d57600080fd5b5061029e61028c366004611fad565b60096020526000908152604090205481565b6040519081526020016101fe565b3480156102b857600080fd5b5061029e6102c7366004611fca565b60009081526020819052604090206001015490565b3480156102e857600080fd5b5061029e7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4281565b34801561031c57600080fd5b5061029e60015481565b34801561033257600080fd5b50610346610341366004611fe3565b6106f4565b005b34801561035457600080fd5b50610346610363366004611fe3565b61071e565b34801561037457600080fd5b506103466107d6565b61034661038b366004612013565b610a2c565b34801561039c57600080fd5b5061029e6103ab366004611fad565b60086020526000908152604090205481565b3480156103c957600080fd5b5061029e600381565b3480156103de57600080fd5b5061029e60065481565b3480156103f457600080fd5b5061029e600b5481565b34801561040a57600080fd5b50600d5461042b9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101fe565b34801561045c57600080fd5b5061034661046b366004611fca565b610bc9565b34801561047c57600080fd5b506101f261048b366004611fe3565b60009182526020828152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156104cd57600080fd5b5061029e600a5481565b3480156104e357600080fd5b50600554610248906fffffffffffffffffffffffffffffffff8082169170010000000000000000000000000000000090041682565b34801561052457600080fd5b5061029e600081565b34801561053957600080fd5b5061029e600281565b34801561054e57600080fd5b5060045461042b9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561057b57600080fd5b5061029e61135681565b34801561059157600080fd5b506103466105a0366004611fe3565b610c7a565b3480156105b157600080fd5b5061029e60075481565b3480156105c757600080fd5b506103466105d63660046120b7565b610c9f565b3480156105e757600080fd5b506103466105f63660046120fc565b610dd1565b34801561060757600080fd5b50600c5461042b9073ffffffffffffffffffffffffffffffffffffffff1681565b610346610636366004611fca565b610f37565b34801561064757600080fd5b50610346610656366004612128565b6110c9565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b0000000000000000000000000000000000000000000000000000000014806106ee57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60008281526020819052604090206001015461070f81611236565b6107198383611240565b505050565b73ffffffffffffffffffffffffffffffffffffffff811633146107c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084015b60405180910390fd5b6107d28282611330565b5050565b3360009081527f5cbfc8ee58ca47855df7bcf648dd304ddb6b932f9b87878bdf6318d7ec7ee5b7602052604090205460ff1615801561084457503360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16155b1561087b576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108836113e7565b600a5415806108a85750600c5473ffffffffffffffffffffffffffffffffffffffff16155b806108c95750600d5473ffffffffffffffffffffffffffffffffffffffff16155b15610900576040517fc1040e1700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54600b5410156109b2576000600b54600a5461091e9190612199565b90504781111561092b5750475b80600b600082825461093d91906121ac565b9091555050600c5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d806000811461099c576040519150601f19603f3d011682016040523d82523d6000602084013e6109a1565b606091505b50509050806109af57600080fd5b50505b600d5460405160009173ffffffffffffffffffffffffffffffffffffffff169047908381818185875af1925050503d8060008114610a0c576040519150601f19603f3d011682016040523d82523d6000602084013e610a11565b606091505b5050905080610a1f57600080fd5b50610a2a6001600255565b565b610a346113e7565b610a3c611458565b610a453361153e565b610a503383836115b3565b604080518082019091526005546fffffffffffffffffffffffffffffffff8082168084527001000000000000000000000000000000009092041660208301819052611356918691610aa0916121bf565b6fffffffffffffffffffffffffffffffff16610abc91906121ac565b1115610af4576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600090815260086020526040902054600390610b129086906121ac565b1115610b4a576040517f63f10f7700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600654610b5790856121ef565b3414610b8f576040517fdc14ea7700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526008602052604081208054869290610bae9084906121ac565b90915550610bbe905033856116b9565b506107196001600255565b3360009081527f5cbfc8ee58ca47855df7bcf648dd304ddb6b932f9b87878bdf6318d7ec7ee5b7602052604090205460ff16158015610c3757503360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16155b15610c6e576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c7781600155565b50565b600082815260208190526040902060010154610c9581611236565b6107198383611330565b3360009081527f5cbfc8ee58ca47855df7bcf648dd304ddb6b932f9b87878bdf6318d7ec7ee5b7602052604090205460ff16158015610d0d57503360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16155b15610d44576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6004805473ffffffffffffffffffffffffffffffffffffffff9094167fffffffffffffffffffffffff000000000000000000000000000000000000000090941693909317909255604080518082019091526fffffffffffffffffffffffffffffffff9182168082529290911660209091018190527001000000000000000000000000000000000217600355565b3360009081527f5cbfc8ee58ca47855df7bcf648dd304ddb6b932f9b87878bdf6318d7ec7ee5b7602052604090205460ff16158015610e3f57503360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16155b15610e76576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e7e6113e7565b604080518082019091526005546fffffffffffffffffffffffffffffffff8082168084527001000000000000000000000000000000009092041660208301819052611356918491610ece916121bf565b6fffffffffffffffffffffffffffffffff16610eea91906121ac565b1115610f22576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f2c83836116b9565b506107d26001600255565b610f3f6113e7565b610f47611975565b610f503361153e565b33600090815260096020526040902054600290610f6e9083906121ac565b1115610fa6576040517f63f10f7700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604080518082019091526005546fffffffffffffffffffffffffffffffff8082168084527001000000000000000000000000000000009092041660208301819052611356918491610ff6916121bf565b6fffffffffffffffffffffffffffffffff1661101291906121ac565b111561104a576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075461105790836121ef565b341461108f576040517fdc14ea7700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600090815260096020526040812080548492906110ae9084906121ac565b909155506110be905033836116b9565b50610c776001600255565b3360009081527f5cbfc8ee58ca47855df7bcf648dd304ddb6b932f9b87878bdf6318d7ec7ee5b7602052604090205460ff1615801561113757503360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16155b1561116e576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a92909255600c805473ffffffffffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155600d8054929093169116179055565b8154829015611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f63616e6e6f742d73657475702d647572696e672d6163746976652d647261770060448201526064016107bf565b5550565b610c778133611a3e565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166107d25760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556112d23390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16156107d25760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6002805403611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107bf565b60028055565b604080518082019091526003546fffffffffffffffffffffffffffffffff8082168084527001000000000000000000000000000000009092041660208301526000036114d0576040517f88e690ee00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80516fffffffffffffffffffffffffffffffff16421080611507575080602001516fffffffffffffffffffffffffffffffff164210155b15610c77576040517f9a41015300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3332141580611564575060008173ffffffffffffffffffffffffffffffffffffffff163b115b15610c77576040517f93575bef00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024016107bf565b6001546000036115ef576040517f9f8a28f200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061167a838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506001546040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608b901b166020820152909250603401905060405160208183030381529060405280519060200120611af6565b9050806116b3576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60006116c3611b0c565b604080518082019091526005546fffffffffffffffffffffffffffffffff808216835270010000000000000000000000000000000090910416602082015290915060009081805b85811015611859576040805160208101879052908101829052606001604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291905280516020909101209450611769600e86611b73565b6117749060016121ac565b93506064841161183957600480546040517f23b872dd000000000000000000000000000000000000000000000000000000008152309281019290925273ffffffffffffffffffffffffffffffffffffffff89811660248401526044830187905216906323b872dd90606401600060405180830381600087803b1580156117f957600080fd5b505af115801561180d573d6000803e3d6000fd5b50508451915084905061181f82612206565b6fffffffffffffffffffffffffffffffff16905250611847565b8161184381612206565b9250505b8061185181612235565b91505061170a565b506fffffffffffffffffffffffffffffffff81161561193957600480546040517f40c10f1900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff898116938201939093526fffffffffffffffffffffffffffffffff841660248201529116906340c10f1990604401600060405180830381600087803b1580156118f957600080fd5b505af115801561190d573d6000803e3d6000fd5b50505050808260200181815161192391906121bf565b6fffffffffffffffffffffffffffffffff169052505b5080516020909101516fffffffffffffffffffffffffffffffff9081167001000000000000000000000000000000000291161760055550505050565b604080518082019091526003546fffffffffffffffffffffffffffffffff808216835270010000000000000000000000000000000090910416602082018190526000036119ee576040517f88e690ee00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80602001516fffffffffffffffffffffffffffffffff16421015610c77576040517fdd4e010600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166107d257611a7c81611c64565b611a87836020611c83565b604051602001611a98929190612291565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a00000000000000000000000000000000000000000000000000000000082526107bf91600401612312565b600082611b038584611ecd565b14949350505050565b6000611b19600143612199565b6040805191406020830152449082015233606090811b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169082015260740160405160208183030381529060405280519060200120905090565b8154600090839082611b858286612363565b90506000838281548110611b9b57611b9b61239e565b6000918252602082200154915084611bb2856123cd565b94508481548110611bc557611bc561239e565b9060005260206000200154905081600003611be857611be58360016121ac565b91505b80600003611bfe57611bfb8460016121ac565b90505b838314611c255780858481548110611c1857611c1861239e565b6000918252602090912001555b84805480611c3557611c35612402565b60019003818190600052602060002001600090559055600182611c589190612199565b98975050505050505050565b60606106ee73ffffffffffffffffffffffffffffffffffffffff831660145b60606000611c928360026121ef565b611c9d9060026121ac565b67ffffffffffffffff811115611cb557611cb5612431565b6040519080825280601f01601f191660200182016040528015611cdf576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611d1657611d1661239e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611d7957611d7961239e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000611db58460026121ef565b611dc09060016121ac565b90505b6001811115611e5d577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611e0157611e0161239e565b1a60f81b828281518110611e1757611e1761239e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93611e56816123cd565b9050611dc3565b508315611ec6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107bf565b9392505050565b600081815b8451811015611f1257611efe82868381518110611ef157611ef161239e565b6020026020010151611f1a565b915080611f0a81612235565b915050611ed2565b509392505050565b6000818310611f36576000828152602084905260409020611ec6565b6000838152602083905260409020611ec6565b600060208284031215611f5b57600080fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114611ec657600080fd5b73ffffffffffffffffffffffffffffffffffffffff81168114610c7757600080fd5b600060208284031215611fbf57600080fd5b8135611ec681611f8b565b600060208284031215611fdc57600080fd5b5035919050565b60008060408385031215611ff657600080fd5b82359150602083013561200881611f8b565b809150509250929050565b60008060006040848603121561202857600080fd5b83359250602084013567ffffffffffffffff8082111561204757600080fd5b818601915086601f83011261205b57600080fd5b81358181111561206a57600080fd5b8760208260051b850101111561207f57600080fd5b6020830194508093505050509250925092565b80356fffffffffffffffffffffffffffffffff811681146120b257600080fd5b919050565b6000806000606084860312156120cc57600080fd5b83356120d781611f8b565b92506120e560208501612092565b91506120f360408501612092565b90509250925092565b6000806040838503121561210f57600080fd5b823561211a81611f8b565b946020939093013593505050565b60008060006060848603121561213d57600080fd5b83359250602084013561214f81611f8b565b9150604084013561215f81611f8b565b809150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156106ee576106ee61216a565b808201808211156106ee576106ee61216a565b6fffffffffffffffffffffffffffffffff8181168382160190808211156121e8576121e861216a565b5092915050565b80820281158282048414176106ee576106ee61216a565b60006fffffffffffffffffffffffffffffffff80831681810361222b5761222b61216a565b6001019392505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036122665761226661216a565b5060010190565b60005b83811015612288578181015183820152602001612270565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516122c981601785016020880161226d565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161230681602884016020880161226d565b01602801949350505050565b602081526000825180602084015261233181604085016020870161226d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b600082612399577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000816123dc576123dc61216a565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea2646970667358221220f2ec823f93186d5f7d8dae7c74702950cf9d97f88cb537ef3eb448fc6f00986664736f6c63430008120033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000003f7a75043a9bab81dd5932733209ca1e579f0ace
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80637cb64759116100f7578063cd8fcc0e11610095578063e58306f911610064578063e58306f9146105db578063e70050c0146105fb578063efef39a114610628578063f52299011461063b57600080fd5b8063cd8fcc0e1461056f578063d547741f14610585578063dc53fd92146105a5578063dfa11dca146105bb57600080fd5b80639da3f8fd116100d15780639da3f8fd146104d7578063a217fddf14610518578063a5f1b4881461052d578063a8199b121461054257600080fd5b80637cb647591461045057806391d14854146104705780639a41b00e146104c157600080fd5b806336568abe1161016f5780636204947e1161013e5780636204947e146103bd57806368855b64146103d2578063753980d5146103e8578063780862da146103fe57600080fd5b806336568abe146103485780633a6a4d2e1461036857806353f33cf11461037d5780635d38ffff1461039057600080fd5b8063248a9ca3116101ab578063248a9ca3146102ac5780632a0acc6a146102dc5780632eb4a7ab146103105780632f2ff15d1461032657600080fd5b806301ffc9a7146101d257806302fcc998146102075780631d421e9b14610271575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611f49565b61065b565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50600354610248906fffffffffffffffffffffffffffffffff8082169170010000000000000000000000000000000090041682565b604080516fffffffffffffffffffffffffffffffff9384168152929091166020830152016101fe565b34801561027d57600080fd5b5061029e61028c366004611fad565b60096020526000908152604090205481565b6040519081526020016101fe565b3480156102b857600080fd5b5061029e6102c7366004611fca565b60009081526020819052604090206001015490565b3480156102e857600080fd5b5061029e7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4281565b34801561031c57600080fd5b5061029e60015481565b34801561033257600080fd5b50610346610341366004611fe3565b6106f4565b005b34801561035457600080fd5b50610346610363366004611fe3565b61071e565b34801561037457600080fd5b506103466107d6565b61034661038b366004612013565b610a2c565b34801561039c57600080fd5b5061029e6103ab366004611fad565b60086020526000908152604090205481565b3480156103c957600080fd5b5061029e600381565b3480156103de57600080fd5b5061029e60065481565b3480156103f457600080fd5b5061029e600b5481565b34801561040a57600080fd5b50600d5461042b9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101fe565b34801561045c57600080fd5b5061034661046b366004611fca565b610bc9565b34801561047c57600080fd5b506101f261048b366004611fe3565b60009182526020828152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156104cd57600080fd5b5061029e600a5481565b3480156104e357600080fd5b50600554610248906fffffffffffffffffffffffffffffffff8082169170010000000000000000000000000000000090041682565b34801561052457600080fd5b5061029e600081565b34801561053957600080fd5b5061029e600281565b34801561054e57600080fd5b5060045461042b9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561057b57600080fd5b5061029e61135681565b34801561059157600080fd5b506103466105a0366004611fe3565b610c7a565b3480156105b157600080fd5b5061029e60075481565b3480156105c757600080fd5b506103466105d63660046120b7565b610c9f565b3480156105e757600080fd5b506103466105f63660046120fc565b610dd1565b34801561060757600080fd5b50600c5461042b9073ffffffffffffffffffffffffffffffffffffffff1681565b610346610636366004611fca565b610f37565b34801561064757600080fd5b50610346610656366004612128565b6110c9565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b0000000000000000000000000000000000000000000000000000000014806106ee57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60008281526020819052604090206001015461070f81611236565b6107198383611240565b505050565b73ffffffffffffffffffffffffffffffffffffffff811633146107c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084015b60405180910390fd5b6107d28282611330565b5050565b3360009081527f5cbfc8ee58ca47855df7bcf648dd304ddb6b932f9b87878bdf6318d7ec7ee5b7602052604090205460ff1615801561084457503360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16155b1561087b576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108836113e7565b600a5415806108a85750600c5473ffffffffffffffffffffffffffffffffffffffff16155b806108c95750600d5473ffffffffffffffffffffffffffffffffffffffff16155b15610900576040517fc1040e1700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54600b5410156109b2576000600b54600a5461091e9190612199565b90504781111561092b5750475b80600b600082825461093d91906121ac565b9091555050600c5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d806000811461099c576040519150601f19603f3d011682016040523d82523d6000602084013e6109a1565b606091505b50509050806109af57600080fd5b50505b600d5460405160009173ffffffffffffffffffffffffffffffffffffffff169047908381818185875af1925050503d8060008114610a0c576040519150601f19603f3d011682016040523d82523d6000602084013e610a11565b606091505b5050905080610a1f57600080fd5b50610a2a6001600255565b565b610a346113e7565b610a3c611458565b610a453361153e565b610a503383836115b3565b604080518082019091526005546fffffffffffffffffffffffffffffffff8082168084527001000000000000000000000000000000009092041660208301819052611356918691610aa0916121bf565b6fffffffffffffffffffffffffffffffff16610abc91906121ac565b1115610af4576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600090815260086020526040902054600390610b129086906121ac565b1115610b4a576040517f63f10f7700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600654610b5790856121ef565b3414610b8f576040517fdc14ea7700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526008602052604081208054869290610bae9084906121ac565b90915550610bbe905033856116b9565b506107196001600255565b3360009081527f5cbfc8ee58ca47855df7bcf648dd304ddb6b932f9b87878bdf6318d7ec7ee5b7602052604090205460ff16158015610c3757503360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16155b15610c6e576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c7781600155565b50565b600082815260208190526040902060010154610c9581611236565b6107198383611330565b3360009081527f5cbfc8ee58ca47855df7bcf648dd304ddb6b932f9b87878bdf6318d7ec7ee5b7602052604090205460ff16158015610d0d57503360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16155b15610d44576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6004805473ffffffffffffffffffffffffffffffffffffffff9094167fffffffffffffffffffffffff000000000000000000000000000000000000000090941693909317909255604080518082019091526fffffffffffffffffffffffffffffffff9182168082529290911660209091018190527001000000000000000000000000000000000217600355565b3360009081527f5cbfc8ee58ca47855df7bcf648dd304ddb6b932f9b87878bdf6318d7ec7ee5b7602052604090205460ff16158015610e3f57503360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16155b15610e76576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e7e6113e7565b604080518082019091526005546fffffffffffffffffffffffffffffffff8082168084527001000000000000000000000000000000009092041660208301819052611356918491610ece916121bf565b6fffffffffffffffffffffffffffffffff16610eea91906121ac565b1115610f22576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f2c83836116b9565b506107d26001600255565b610f3f6113e7565b610f47611975565b610f503361153e565b33600090815260096020526040902054600290610f6e9083906121ac565b1115610fa6576040517f63f10f7700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604080518082019091526005546fffffffffffffffffffffffffffffffff8082168084527001000000000000000000000000000000009092041660208301819052611356918491610ff6916121bf565b6fffffffffffffffffffffffffffffffff1661101291906121ac565b111561104a576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075461105790836121ef565b341461108f576040517fdc14ea7700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600090815260096020526040812080548492906110ae9084906121ac565b909155506110be905033836116b9565b50610c776001600255565b3360009081527f5cbfc8ee58ca47855df7bcf648dd304ddb6b932f9b87878bdf6318d7ec7ee5b7602052604090205460ff1615801561113757503360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16155b1561116e576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a92909255600c805473ffffffffffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155600d8054929093169116179055565b8154829015611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f63616e6e6f742d73657475702d647572696e672d6163746976652d647261770060448201526064016107bf565b5550565b610c778133611a3e565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166107d25760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556112d23390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16156107d25760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6002805403611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107bf565b60028055565b604080518082019091526003546fffffffffffffffffffffffffffffffff8082168084527001000000000000000000000000000000009092041660208301526000036114d0576040517f88e690ee00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80516fffffffffffffffffffffffffffffffff16421080611507575080602001516fffffffffffffffffffffffffffffffff164210155b15610c77576040517f9a41015300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3332141580611564575060008173ffffffffffffffffffffffffffffffffffffffff163b115b15610c77576040517f93575bef00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024016107bf565b6001546000036115ef576040517f9f8a28f200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061167a838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506001546040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608b901b166020820152909250603401905060405160208183030381529060405280519060200120611af6565b9050806116b3576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60006116c3611b0c565b604080518082019091526005546fffffffffffffffffffffffffffffffff808216835270010000000000000000000000000000000090910416602082015290915060009081805b85811015611859576040805160208101879052908101829052606001604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291905280516020909101209450611769600e86611b73565b6117749060016121ac565b93506064841161183957600480546040517f23b872dd000000000000000000000000000000000000000000000000000000008152309281019290925273ffffffffffffffffffffffffffffffffffffffff89811660248401526044830187905216906323b872dd90606401600060405180830381600087803b1580156117f957600080fd5b505af115801561180d573d6000803e3d6000fd5b50508451915084905061181f82612206565b6fffffffffffffffffffffffffffffffff16905250611847565b8161184381612206565b9250505b8061185181612235565b91505061170a565b506fffffffffffffffffffffffffffffffff81161561193957600480546040517f40c10f1900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff898116938201939093526fffffffffffffffffffffffffffffffff841660248201529116906340c10f1990604401600060405180830381600087803b1580156118f957600080fd5b505af115801561190d573d6000803e3d6000fd5b50505050808260200181815161192391906121bf565b6fffffffffffffffffffffffffffffffff169052505b5080516020909101516fffffffffffffffffffffffffffffffff9081167001000000000000000000000000000000000291161760055550505050565b604080518082019091526003546fffffffffffffffffffffffffffffffff808216835270010000000000000000000000000000000090910416602082018190526000036119ee576040517f88e690ee00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80602001516fffffffffffffffffffffffffffffffff16421015610c77576040517fdd4e010600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166107d257611a7c81611c64565b611a87836020611c83565b604051602001611a98929190612291565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a00000000000000000000000000000000000000000000000000000000082526107bf91600401612312565b600082611b038584611ecd565b14949350505050565b6000611b19600143612199565b6040805191406020830152449082015233606090811b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169082015260740160405160208183030381529060405280519060200120905090565b8154600090839082611b858286612363565b90506000838281548110611b9b57611b9b61239e565b6000918252602082200154915084611bb2856123cd565b94508481548110611bc557611bc561239e565b9060005260206000200154905081600003611be857611be58360016121ac565b91505b80600003611bfe57611bfb8460016121ac565b90505b838314611c255780858481548110611c1857611c1861239e565b6000918252602090912001555b84805480611c3557611c35612402565b60019003818190600052602060002001600090559055600182611c589190612199565b98975050505050505050565b60606106ee73ffffffffffffffffffffffffffffffffffffffff831660145b60606000611c928360026121ef565b611c9d9060026121ac565b67ffffffffffffffff811115611cb557611cb5612431565b6040519080825280601f01601f191660200182016040528015611cdf576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611d1657611d1661239e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611d7957611d7961239e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000611db58460026121ef565b611dc09060016121ac565b90505b6001811115611e5d577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611e0157611e0161239e565b1a60f81b828281518110611e1757611e1761239e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93611e56816123cd565b9050611dc3565b508315611ec6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107bf565b9392505050565b600081815b8451811015611f1257611efe82868381518110611ef157611ef161239e565b6020026020010151611f1a565b915080611f0a81612235565b915050611ed2565b509392505050565b6000818310611f36576000828152602084905260409020611ec6565b6000838152602083905260409020611ec6565b600060208284031215611f5b57600080fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114611ec657600080fd5b73ffffffffffffffffffffffffffffffffffffffff81168114610c7757600080fd5b600060208284031215611fbf57600080fd5b8135611ec681611f8b565b600060208284031215611fdc57600080fd5b5035919050565b60008060408385031215611ff657600080fd5b82359150602083013561200881611f8b565b809150509250929050565b60008060006040848603121561202857600080fd5b83359250602084013567ffffffffffffffff8082111561204757600080fd5b818601915086601f83011261205b57600080fd5b81358181111561206a57600080fd5b8760208260051b850101111561207f57600080fd5b6020830194508093505050509250925092565b80356fffffffffffffffffffffffffffffffff811681146120b257600080fd5b919050565b6000806000606084860312156120cc57600080fd5b83356120d781611f8b565b92506120e560208501612092565b91506120f360408501612092565b90509250925092565b6000806040838503121561210f57600080fd5b823561211a81611f8b565b946020939093013593505050565b60008060006060848603121561213d57600080fd5b83359250602084013561214f81611f8b565b9150604084013561215f81611f8b565b809150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156106ee576106ee61216a565b808201808211156106ee576106ee61216a565b6fffffffffffffffffffffffffffffffff8181168382160190808211156121e8576121e861216a565b5092915050565b80820281158282048414176106ee576106ee61216a565b60006fffffffffffffffffffffffffffffffff80831681810361222b5761222b61216a565b6001019392505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036122665761226661216a565b5060010190565b60005b83811015612288578181015183820152602001612270565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516122c981601785016020880161226d565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161230681602884016020880161226d565b01602801949350505050565b602081526000825180602084015261233181604085016020870161226d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b600082612399577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000816123dc576123dc61216a565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea2646970667358221220f2ec823f93186d5f7d8dae7c74702950cf9d97f88cb537ef3eb448fc6f00986664736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000003f7a75043a9bab81dd5932733209ca1e579f0ace
-----Decoded View---------------
Arg [0] : admins (address[]): 0x3F7a75043a9bAb81dD5932733209cA1E579F0Ace
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 0000000000000000000000003f7a75043a9bab81dd5932733209ca1e579f0ace
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,093.27 | 0.4 | $1,237.31 |
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.