Contract Overview
Balance:
1,540.701566893023635992 CRO
CRO Value:
$123.87 (@ $0.08/CRO)
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
SkronosSyndicate
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Developer: https://twitter.com/0xArtCro pragma solidity ^0.8.15; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract SkronosSyndicate is Ownable, ERC721Enumerable, ERC2981, ReentrancyGuard { // Minting uint public stage = 0; uint public maxPerWallet = 5; uint256 public mintPrice = 300 ether; uint256 public startTimestamp; string private baseTokenURI; uint256 public currentMaxSupply = 100; uint256 public availableSupply = 100; uint256 public stageTotalSupply = 100; mapping(uint256 => mapping(uint256 => uint256)) private tokensMatrix; address public immutable dooWallet; address public immutable projectWallet; // Royalties uint256 public totalRoyalties = 0; mapping(uint256 => uint256) private claimedRoyalties; uint256 private currentRoyalties = 0; // Events event MintStatusChanged(bool paused); event RoyaltiesAdded(uint256 amount); event RoyaltiesClaimed(address indexed sender, uint256 amount); event Minted( address indexed sender, uint256 currentSupply, uint256 amount, uint256 time ); // Errors error AlreadyLastStage(); error StageNotFinished(); error PausedMint(); error AddingNoRewards(); error InsufficientPayment(); error CannotMintZero(); error OverMint(); error MintLimit(); error MintNotOpen(); error NoTokenMintedYet(); error WalletLimitReached(); // Constants uint256 public constant MAX_SUPPLY = 200; uint256 public constant STAGE_ONE_SUPPLY = 100; uint256 public constant MAX_TX_MINT = 5; uint256 public constant MINT_ROYALTIES = 10; uint256 public constant LAUNCHPAD_ROYALTIES = 10; // Structs struct MintInfo { uint stage; uint256 mintPrice; uint256 supply; uint256 stageMaxSupply; uint256 maxSupply; uint256 startTimestamp; } constructor( string memory uri, address dooWallet_, address projectWallet_, address royaltiesWallet_, uint256 startTimestamp_ ) ERC721("SkronosSyndicate", "SKROSYN") { baseTokenURI = uri; dooWallet = dooWallet_; projectWallet = projectWallet_; startTimestamp = startTimestamp_; setDefaultRoyalty(royaltiesWallet_, 1000); } // Owner // - Setup function setBaseTokenURI(string memory uri) external onlyOwner { baseTokenURI = uri; } function setDefaultRoyalty(address receiver, uint96 feeNumerator) public onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function setStartTimestamp(uint256 startTimestamp_) external onlyOwner { startTimestamp = startTimestamp_; } function setMintPrice(uint256 mintPrice_) external onlyOwner { mintPrice = mintPrice_; } function nextStage() external onlyOwner { if (stage == 2) revert AlreadyLastStage(); if (stageTotalSupply < currentMaxSupply) revert StageNotFinished(); stage += 1; availableSupply = MAX_SUPPLY; stageTotalSupply = 0; emit MintStatusChanged(isPaused()); } function setMaxPerWallet(uint maxPerWallet_) external onlyOwner { maxPerWallet = maxPerWallet_; } // - Team minting function teamMint(uint256 amount, address to) external onlyOwner { if (stageTotalSupply + amount > currentMaxSupply) revert OverMint(); for (uint256 i = 1; i <= amount; ) { uint256 tokenId = randomTokenId(); _safeMint(to, tokenId); stageTotalSupply += 1; unchecked { claimedRoyalties[tokenId] = currentRoyalties; ++i; } } } // - Team Funds function emergencyWithdraw(uint256 amount) external onlyOwner { payable(owner()).transfer(amount); } // External function addRoyalties() external payable { addRewards(msg.value); } function mint(uint256 amount) external payable nonReentrant { if (block.timestamp < startTimestamp) revert MintNotOpen(); if (isPaused()) revert PausedMint(); if (amount > MAX_TX_MINT) revert MintLimit(); if (amount == 0) revert CannotMintZero(); uint256 ownerTokenCount = balanceOf(_msgSender()); if (ownerTokenCount + amount > maxPerWallet) revert WalletLimitReached(); uint256 totalPrice = mintPrice * amount; uint currentSupply = totalSupply(); if (stageTotalSupply + amount > currentMaxSupply) revert OverMint(); if (msg.value != totalPrice) revert InsufficientPayment(); uint256 royalties = 0; if (currentSupply > 0) { royalties = (msg.value * MINT_ROYALTIES) / 100; addRewards(royalties); } for (uint256 i = 1; i <= amount; ) { uint256 tokenId = randomTokenId(); _safeMint(_msgSender(), tokenId); stageTotalSupply += 1; unchecked { claimedRoyalties[tokenId] = currentRoyalties; ++i; } } uint256 dooPayout = (msg.value * LAUNCHPAD_ROYALTIES) / 100; uint256 projectPayout = msg.value - royalties - dooPayout; _payout(dooWallet, dooPayout); _payout(projectWallet, projectPayout); emit Minted(_msgSender(), currentSupply, amount, block.timestamp); } function _payout(address to, uint256 _amount) private { (bool success, ) = payable(to).call{value: _amount, gas: 50000}(""); require(success, "Cannot payout"); } // Random function startTokenId() private view returns (uint256) { if (stage == 2) { return 100; } return 0; } function randomTokenId() internal returns (uint256) { uint256 maxIndex = currentMaxSupply - stageTotalSupply; uint256 random = uint256( keccak256( abi.encodePacked( msg.sender, block.coinbase, block.difficulty, block.gaslimit, block.timestamp ) ) ) % maxIndex; uint256 value = 0; if (tokensMatrix[stage][random] == 0) { value = random; } else { value = tokensMatrix[stage][random]; } if (tokensMatrix[stage][maxIndex - 1] == 0) { tokensMatrix[stage][random] = maxIndex - 1; } else { tokensMatrix[stage][random] = tokensMatrix[stage][maxIndex - 1]; } return startTokenId() + value + 1; } function tokensOfWallet(address _address) external view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_address); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_address, i); } return tokenIds; } function claimAllRoyalties() external { uint256 rewards = 0; uint count = balanceOf(_msgSender()); for (uint i = 0; i < count; ) { uint tokenId = tokenOfOwnerByIndex(_msgSender(), i); unchecked { rewards += (getRewardsToken(tokenId)); claimedRoyalties[tokenId] = currentRoyalties; ++i; } } payable(_msgSender()).transfer(rewards); emit RoyaltiesClaimed(_msgSender(), rewards); } function claimRoyalties(uint256[] memory tokensToClaim) external { uint256 rewards = 0; for (uint256 i = 0; i < tokensToClaim.length; ) { unchecked { uint tokenId = tokensToClaim[i]; if (ownerOf(tokenId) == _msgSender()) { rewards += (getRewardsToken(tokenId)); claimedRoyalties[tokenId] = currentRoyalties; } ++i; } } payable(_msgSender()).transfer(rewards); emit RoyaltiesClaimed(_msgSender(), rewards); } // Private function addRewards(uint256 amount) private { if (amount == 0) revert AddingNoRewards(); uint currentSupply = totalSupply(); if (currentSupply == 0) revert NoTokenMintedYet(); totalRoyalties = totalRoyalties + amount; currentRoyalties += (amount / currentSupply); emit RoyaltiesAdded(amount); } // Internal function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } // Getters function isPaused() public view returns (bool) { if (stage == 1) { return totalSupply() == STAGE_ONE_SUPPLY; } return stage == 0; } function stageMaxSupply() public view returns (uint256) { if (stage == 1) return STAGE_ONE_SUPPLY; else if (stage == 2) return MAX_SUPPLY; else return 0; } function getMintInfo() external view returns (MintInfo memory) { return MintInfo( stage, mintPrice, totalSupply(), stageMaxSupply(), MAX_SUPPLY, startTimestamp ); } function maxMintCount(address wallet_) public view returns (int256) { int256 max = int256(maxPerWallet) - int256(balanceOf(wallet_)); if (max > 0) { return max; } return 0; } function getRewardsToken(uint256 id) public view returns (uint256 rewards) { rewards += currentRoyalties - claimedRoyalties[id]; } function getRoyalties() external view returns (uint256) { uint256 balance = 0; uint count = balanceOf(_msgSender()); for (uint i = 0; i < count; i++) { uint tokenId = tokenOfOwnerByIndex(_msgSender(), i); balance += (getRewardsToken(tokenId)); } return balance; } // Overrides function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory _tokenURI = string( abi.encodePacked(baseTokenURI, Strings.toString(_tokenId), ".json") ); return _tokenURI; } function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } }
// 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.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // 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 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// 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 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.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @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, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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 (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_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) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_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.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: 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; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"inputs":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"address","name":"dooWallet_","type":"address"},{"internalType":"address","name":"projectWallet_","type":"address"},{"internalType":"address","name":"royaltiesWallet_","type":"address"},{"internalType":"uint256","name":"startTimestamp_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AddingNoRewards","type":"error"},{"inputs":[],"name":"AlreadyLastStage","type":"error"},{"inputs":[],"name":"CannotMintZero","type":"error"},{"inputs":[],"name":"InsufficientPayment","type":"error"},{"inputs":[],"name":"MintLimit","type":"error"},{"inputs":[],"name":"MintNotOpen","type":"error"},{"inputs":[],"name":"NoTokenMintedYet","type":"error"},{"inputs":[],"name":"OverMint","type":"error"},{"inputs":[],"name":"PausedMint","type":"error"},{"inputs":[],"name":"StageNotFinished","type":"error"},{"inputs":[],"name":"WalletLimitReached","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"paused","type":"bool"}],"name":"MintStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"currentSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RoyaltiesAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RoyaltiesClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"LAUNCHPAD_ROYALTIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_ROYALTIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAGE_ONE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addRoyalties","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAllRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokensToClaim","type":"uint256[]"}],"name":"claimRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dooWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintInfo","outputs":[{"components":[{"internalType":"uint256","name":"stage","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"stageMaxSupply","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"startTimestamp","type":"uint256"}],"internalType":"struct SkronosSyndicate.MintInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getRewardsToken","outputs":[{"internalType":"uint256","name":"rewards","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRoyalties","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet_","type":"address"}],"name":"maxMintCount","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice_","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTimestamp_","type":"uint256"}],"name":"setStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stageMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stageTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"tokensOfWallet","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRoyalties","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526000600e556005600f55681043561a8829300000601055606460135560646014556064601555600060175560006019553480156200004157600080fd5b506040516200368438038062003684833981016040819052620000649162000330565b6040518060400160405280601081526020016f536b726f6e6f7353796e64696361746560801b8152506040518060400160405280600781526020016629a5a927a9aca760c91b815250620000c7620000c16200012c60201b60201c565b62000130565b6001620000d58382620004df565b506002620000e48282620004df565b50506001600d55506012620000fa8682620004df565b506001600160a01b03808516608052831660a052601181905562000121826103e862000180565b5050505050620005ab565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200018a6200019a565b620001968282620001fc565b5050565b6000546001600160a01b03163314620001fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b565b6127106001600160601b03821611156200026c5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620001f1565b6001600160a01b038216620002c45760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001f1565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200032b57600080fd5b919050565b600080600080600060a086880312156200034957600080fd5b85516001600160401b03808211156200036157600080fd5b818801915088601f8301126200037657600080fd5b8151818111156200038b576200038b620002fd565b604051601f8201601f19908116603f01168101908382118183101715620003b657620003b6620002fd565b81604052828152602093508b84848701011115620003d357600080fd5b600091505b82821015620003f75784820184015181830185015290830190620003d8565b82821115620004095760008484830101525b98506200041b91505088820162000313565b955050506200042d6040870162000313565b92506200043d6060870162000313565b9150608086015190509295509295909350565b600181811c908216806200046557607f821691505b6020821081036200048657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004da57600081815260208120601f850160051c81016020861015620004b55750805b601f850160051c820191505b81811015620004d657828155600101620004c1565b5050505b505050565b81516001600160401b03811115620004fb57620004fb620002fd565b62000513816200050c845462000450565b846200048c565b602080601f8311600181146200054b5760008415620005325750858301515b600019600386901b1c1916600185901b178555620004d6565b600085815260208120601f198616915b828110156200057c578886015182559484019460019091019084016200055b565b50858210156200059b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a0516130a5620005df6000396000818161080701526114d501526000818161063601526114ab01526130a56000f3fe6080604052600436106103355760003560e01c806375935d11116101ab578063ba12b502116100f7578063db4f6d3111610095578063e985e9c51161006f578063e985e9c51461093e578063ee3743ab14610987578063f2fde38b1461099c578063f4a0a528146109bc57600080fd5b8063db4f6d3114610900578063e268e4d314610908578063e6fd48bc1461092857600080fd5b8063c040e6b8116100d1578063c040e6b814610849578063c44bef751461085f578063c87b56dd1461087f578063d0520c231461089f57600080fd5b8063ba12b502146107e0578063beb08ab9146107f5578063bfa457bc1461082957600080fd5b80639578962b11610164578063a22cb4651161013e578063a22cb4651461078b578063abe81f271461074e578063b187bd26146107ab578063b88d4fde146107c057600080fd5b80639578962b1461074e57806395d89b4114610763578063a0712d681461077857600080fd5b806375935d11146106a25780637ecc2b56146106cf57806386d02608146106e55780638aa84e80146106fb5780638da5cb5b146107105780639563ca911461072e57600080fd5b806333df048e11610285578063547eafd0116102235780636a86255c116101fd5780636a86255c1461062457806370a0823114610658578063715018a6146106785780637467f6d51461068d57600080fd5b8063547eafd0146105d95780636352211e146105ee5780636817c76c1461060e57600080fd5b806342842e0e1161025f57806342842e0e14610563578063453c2310146105835780634f6ccce7146105995780635312ea8e146105b957600080fd5b806333df048e146105185780633cd972ac1461052d5780634094bbc11461054d57600080fd5b806313ece816116102f25780632a55205a116102cc5780632a55205a146104845780632f745c59146104c357806330176e13146104e357806332cb6b0c1461050357600080fd5b806313ece8161461042f57806318160ddd1461044f57806323b872dd1461046457600080fd5b806301ffc9a71461033a57806304634d8d1461036f57806306fdde0314610391578063081812fc146103b3578063095ea7b3146103eb578063104aeef81461040b575b600080fd5b34801561034657600080fd5b5061035a6103553660046127f1565b6109dc565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b5061038f61038a366004612831565b6109ed565b005b34801561039d57600080fd5b506103a6610a03565b60405161036691906128cc565b3480156103bf57600080fd5b506103d36103ce3660046128df565b610a95565b6040516001600160a01b039091168152602001610366565b3480156103f757600080fd5b5061038f6104063660046128f8565b610abc565b34801561041757600080fd5b5061042160135481565b604051908152602001610366565b34801561043b57600080fd5b5061038f61044a366004612969565b610bd6565b34801561045b57600080fd5b50600954610421565b34801561047057600080fd5b5061038f61047f366004612a0f565b610cba565b34801561049057600080fd5b506104a461049f366004612a4b565b610ceb565b604080516001600160a01b039093168352602083019190915201610366565b3480156104cf57600080fd5b506104216104de3660046128f8565b610d97565b3480156104ef57600080fd5b5061038f6104fe366004612ac5565b610e2d565b34801561050f57600080fd5b5061042160c881565b34801561052457600080fd5b50610421610e41565b34801561053957600080fd5b506104216105483660046128df565b610e9b565b34801561055957600080fd5b5061042160155481565b34801561056f57600080fd5b5061038f61057e366004612a0f565b610ec1565b34801561058f57600080fd5b50610421600f5481565b3480156105a557600080fd5b506104216105b43660046128df565b610edc565b3480156105c557600080fd5b5061038f6105d43660046128df565b610f6f565b3480156105e557600080fd5b5061038f610fb0565b3480156105fa57600080fd5b506103d36106093660046128df565b611062565b34801561061a57600080fd5b5061042160105481565b34801561063057600080fd5b506103d37f000000000000000000000000000000000000000000000000000000000000000081565b34801561066457600080fd5b50610421610673366004612b0e565b6110c2565b34801561068457600080fd5b5061038f611148565b34801561069957600080fd5b50610421600581565b3480156106ae57600080fd5b506106c26106bd366004612b0e565b61115c565b6040516103669190612b29565b3480156106db57600080fd5b5061042160145481565b3480156106f157600080fd5b5061042160175481565b34801561070757600080fd5b506104216111fe565b34801561071c57600080fd5b506000546001600160a01b03166103d3565b34801561073a57600080fd5b50610421610749366004612b0e565b611226565b34801561075a57600080fd5b50610421600a81565b34801561076f57600080fd5b506103a6611259565b61038f6107863660046128df565b611268565b34801561079757600080fd5b5061038f6107a6366004612b6d565b61154a565b3480156107b757600080fd5b5061035a611555565b3480156107cc57600080fd5b5061038f6107db366004612b9e565b61157a565b3480156107ec57600080fd5b50610421606481565b34801561080157600080fd5b506103d37f000000000000000000000000000000000000000000000000000000000000000081565b34801561083557600080fd5b5061038f610844366004612c1a565b6115b2565b34801561085557600080fd5b50610421600e5481565b34801561086b57600080fd5b5061038f61087a3660046128df565b61163d565b34801561088b57600080fd5b506103a661089a3660046128df565b61164a565b3480156108ab57600080fd5b506108b46116fe565b6040516103669190600060c082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015292915050565b61038f61177f565b34801561091457600080fd5b5061038f6109233660046128df565b611788565b34801561093457600080fd5b5061042160115481565b34801561094a57600080fd5b5061035a610959366004612c46565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561099357600080fd5b5061038f611795565b3480156109a857600080fd5b5061038f6109b7366004612b0e565b611845565b3480156109c857600080fd5b5061038f6109d73660046128df565b6118be565b60006109e7826118cb565b92915050565b6109f56118f0565b6109ff828261194a565b5050565b606060018054610a1290612c70565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90612c70565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa082611a47565b506000908152600560205260409020546001600160a01b031690565b6000610ac782611062565b9050806001600160a01b0316836001600160a01b031603610b395760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610b555750610b558133610959565b610bc75760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610b30565b610bd18383611aa6565b505050565b6000805b8251811015610c51576000838281518110610bf757610bf7612caa565b60200260200101519050610c083390565b6001600160a01b0316610c1a82611062565b6001600160a01b031603610c4857610c3181610e9b565b601954600083815260186020526040902055909201915b50600101610bda565b50604051339082156108fc029083906000818181858888f19350505050158015610c7f573d6000803e3d6000fd5b5060405181815233907f8fbbda19f4a70036f6f585dc4160142a8fa2a20ffb9393d23274f78de4e39888906020015b60405180910390a25050565b610cc43382611b14565b610ce05760405162461bcd60e51b8152600401610b3090612cc0565b610bd1838383611b93565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610d60575060408051808201909152600b546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610d7f906001600160601b031687612d24565b610d899190612d59565b915196919550909350505050565b6000610da2836110c2565b8210610e045760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b30565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610e356118f0565b60126109ff8282612dbb565b60008080610e4e336110c2565b905060005b81811015610e93576000610e68335b83610d97565b9050610e7381610e9b565b610e7d9085612e7b565b9350508080610e8b90612e93565b915050610e53565b509092915050565b600081815260186020526040812054601954610eb79190612eac565b6109e79082612e7b565b610bd18383836040518060200160405280600081525061157a565b6000610ee760095490565b8210610f4a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b30565b60098281548110610f5d57610f5d612caa565b90600052602060002001549050919050565b610f776118f0565b600080546040516001600160a01b039091169183156108fc02918491818181858888f193505050501580156109ff573d6000803e3d6000fd5b600080610fbc336110c2565b905060005b81811015611001576000610fd433610e62565b9050610fdf81610e9b565b6019546000928352601860205260409092209190915590920191600101610fc1565b50604051339083156108fc029084906000818181858888f1935050505015801561102f573d6000803e3d6000fd5b5060405182815233907f8fbbda19f4a70036f6f585dc4160142a8fa2a20ffb9393d23274f78de4e3988890602001610cae565b6000818152600360205260408120546001600160a01b0316806109e75760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b30565b60006001600160a01b03821661112c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b30565b506001600160a01b031660009081526004602052604090205490565b6111506118f0565b61115a6000611d3a565b565b60606000611169836110c2565b905060008167ffffffffffffffff81111561118657611186612922565b6040519080825280602002602001820160405280156111af578160200160208202803683370190505b50905060005b828110156111f6576111c78582610d97565b8282815181106111d9576111d9612caa565b6020908102919091010152806111ee81612e93565b9150506111b5565b509392505050565b6000600e546001036112105750606490565b600e54600203611220575060c890565b50600090565b600080611232836110c2565b600f5461123f9190612ec3565b905060008113156112505792915050565b50600092915050565b606060028054610a1290612c70565b6002600d54036112ba5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b30565b6002600d556011544210156112e25760405163951b974f60e01b815260040160405180910390fd5b6112ea611555565b1561130857604051634c97d28b60e01b815260040160405180910390fd5b600581111561132a5760405163ec8e6a6360e01b815260040160405180910390fd5b8060000361134b57604051632a6ce29960e11b815260040160405180910390fd5b6000611356336110c2565b600f549091506113668383612e7b565b11156113855760405163426d5b2360e11b815260040160405180910390fd5b6000826010546113959190612d24565b905060006113a260095490565b9050601354846015546113b59190612e7b565b11156113d457604051633bd7ad7760e21b815260040160405180910390fd5b8134146113f45760405163cd1c886760e01b815260040160405180910390fd5b6000811561141e576064611409600a34612d24565b6114139190612d59565b905061141e81611d8a565b60015b858111611471576000611432611e41565b905061143e3382611fd6565b6001601560008282546114519190612e7b565b909155505060195460009182526018602052604090912055600101611421565b5060006064611481600a34612d24565b61148b9190612d59565b905060008161149a8434612eac565b6114a49190612eac565b90506114d07f000000000000000000000000000000000000000000000000000000000000000083611ff0565b6114fa7f000000000000000000000000000000000000000000000000000000000000000082611ff0565b60408051858152602081018990524281830152905133917f5a3358a3d27a5373c0df2604662088d37894d56b7cfd27f315770440f4e0d919919081900360600190a250506001600d555050505050565b6109ff338383612088565b6000600e5460010361157257606461156c60095490565b14905090565b50600e541590565b6115843383611b14565b6115a05760405162461bcd60e51b8152600401610b3090612cc0565b6115ac84848484612156565b50505050565b6115ba6118f0565b601354826015546115cb9190612e7b565b11156115ea57604051633bd7ad7760e21b815260040160405180910390fd5b60015b828111610bd15760006115fe611e41565b905061160a8382611fd6565b60016015600082825461161d9190612e7b565b9091555050601954600091825260186020526040909120556001016115ed565b6116456118f0565b601155565b6000818152600360205260409020546060906001600160a01b03166116c95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b30565b600060126116d684612189565b6040516020016116e7929190612f02565b60408051601f198184030181529190529392505050565b6117376040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040518060c00160405280600e548152602001601054815260200161175b60095490565b81526020016117686111fe565b815260200160c88152602001601154815250905090565b61115a34611d8a565b6117906118f0565b600f55565b61179d6118f0565b600e546002036117c057604051635b0781b960e01b815260040160405180910390fd5b60135460155410156117e55760405163195dd2e960e31b815260040160405180910390fd5b6001600e60008282546117f89190612e7b565b909155505060c860145560006015557fb304fe5dd2d3c45e8ec87c1dd1bd2b3a773b3135e84a7b9151f5fb4bf1a06d0e611830611555565b604051901515815260200160405180910390a1565b61184d6118f0565b6001600160a01b0381166118b25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b30565b6118bb81611d3a565b50565b6118c66118f0565b601055565b60006001600160e01b0319821663152a902d60e11b14806109e757506109e78261228a565b6000546001600160a01b0316331461115a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b30565b6127106001600160601b03821611156119b85760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610b30565b6001600160a01b038216611a0e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b30565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b6000818152600360205260409020546001600160a01b03166118bb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b30565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611adb82611062565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611b2083611062565b9050806001600160a01b0316846001600160a01b03161480611b6757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b80611b8b5750836001600160a01b0316611b8084610a95565b6001600160a01b0316145b949350505050565b826001600160a01b0316611ba682611062565b6001600160a01b031614611c0a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b30565b6001600160a01b038216611c6c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b30565b611c778383836122af565b611c82600082611aa6565b6001600160a01b0383166000908152600460205260408120805460019290611cab908490612eac565b90915550506001600160a01b0382166000908152600460205260408120805460019290611cd9908490612e7b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80600003611dab5760405163e3a12f6760e01b815260040160405180910390fd5b6000611db660095490565b905080600003611dd9576040516378ad1dcf60e11b815260040160405180910390fd5b81601754611de79190612e7b565b601755611df48183612d59565b60196000828254611e059190612e7b565b90915550506040518281527f5a02b40077e797196e633f9dd9c358d21e6c6fce881c924fac5d583fc4359f979060200160405180910390a15050565b600080601554601354611e549190612eac565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c611ebb9190612f99565b600e546000908152601660209081526040808320848452909152812054919250908103611ee9575080611f08565b50600e5460009081526016602090815260408083208484529091529020545b600e54600090815260166020526040812090611f25600186612eac565b815260200190815260200160002054600003611f6857611f46600184612eac565b600e546000908152601660209081526040808320868452909152902055611fb0565b600e54600090815260166020526040812090611f85600186612eac565b81526020808201929092526040908101600090812054600e5482526016845282822086835290935220555b80611fb9612367565b611fc39190612e7b565b611fce906001612e7b565b935050505090565b6109ff828260405180602001604052806000815250612379565b6000826001600160a01b03168261c35090604051600060405180830381858888f193505050503d8060008114612042576040519150601f19603f3d011682016040523d82523d6000602084013e612047565b606091505b5050905080610bd15760405162461bcd60e51b815260206004820152600d60248201526c10d85b9b9bdd081c185e5bdd5d609a1b6044820152606401610b30565b816001600160a01b0316836001600160a01b0316036120e95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b30565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612161848484611b93565b61216d848484846123ac565b6115ac5760405162461bcd60e51b8152600401610b3090612fad565b6060816000036121b05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121da57806121c481612e93565b91506121d39050600a83612d59565b91506121b4565b60008167ffffffffffffffff8111156121f5576121f5612922565b6040519080825280601f01601f19166020018201604052801561221f576020820181803683370190505b5090505b8415611b8b57612234600183612eac565b9150612241600a86612f99565b61224c906030612e7b565b60f81b81838151811061226157612261612caa565b60200101906001600160f81b031916908160001a905350612283600a86612d59565b9450612223565b60006001600160e01b0319821663780e9d6360e01b14806109e757506109e7826124ad565b6001600160a01b03831661230a5761230581600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61232d565b816001600160a01b0316836001600160a01b03161461232d5761232d83826124fd565b6001600160a01b03821661234457610bd18161259a565b826001600160a01b0316826001600160a01b031614610bd157610bd18282612649565b6000600e546002036112205750606490565b612383838361268d565b61239060008484846123ac565b610bd15760405162461bcd60e51b8152600401610b3090612fad565b60006001600160a01b0384163b156124a257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123f0903390899088908890600401612fff565b6020604051808303816000875af192505050801561242b575060408051601f3d908101601f191682019092526124289181019061303c565b60015b612488573d808015612459576040519150601f19603f3d011682016040523d82523d6000602084013e61245e565b606091505b5080516000036124805760405162461bcd60e51b8152600401610b3090612fad565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b8b565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b14806124de57506001600160e01b03198216635b5e139f60e01b145b806109e757506301ffc9a760e01b6001600160e01b03198316146109e7565b6000600161250a846110c2565b6125149190612eac565b600083815260086020526040902054909150808214612567576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906125ac90600190612eac565b6000838152600a6020526040812054600980549394509092849081106125d4576125d4612caa565b9060005260206000200154905080600983815481106125f5576125f5612caa565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061262d5761262d613059565b6001900381819060005260206000200160009055905550505050565b6000612654836110c2565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166126e35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b30565b6000818152600360205260409020546001600160a01b0316156127485760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b30565b612754600083836122af565b6001600160a01b038216600090815260046020526040812080546001929061277d908490612e7b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146118bb57600080fd5b60006020828403121561280357600080fd5b813561280e816127db565b9392505050565b80356001600160a01b038116811461282c57600080fd5b919050565b6000806040838503121561284457600080fd5b61284d83612815565b915060208301356001600160601b038116811461286957600080fd5b809150509250929050565b60005b8381101561288f578181015183820152602001612877565b838111156115ac5750506000910152565b600081518084526128b8816020860160208601612874565b601f01601f19169290920160200192915050565b60208152600061280e60208301846128a0565b6000602082840312156128f157600080fd5b5035919050565b6000806040838503121561290b57600080fd5b61291483612815565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561296157612961612922565b604052919050565b6000602080838503121561297c57600080fd5b823567ffffffffffffffff8082111561299457600080fd5b818501915085601f8301126129a857600080fd5b8135818111156129ba576129ba612922565b8060051b91506129cb848301612938565b81815291830184019184810190888411156129e557600080fd5b938501935b83851015612a03578435825293850193908501906129ea565b98975050505050505050565b600080600060608486031215612a2457600080fd5b612a2d84612815565b9250612a3b60208501612815565b9150604084013590509250925092565b60008060408385031215612a5e57600080fd5b50508035926020909101359150565b600067ffffffffffffffff831115612a8757612a87612922565b612a9a601f8401601f1916602001612938565b9050828152838383011115612aae57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612ad757600080fd5b813567ffffffffffffffff811115612aee57600080fd5b8201601f81018413612aff57600080fd5b611b8b84823560208401612a6d565b600060208284031215612b2057600080fd5b61280e82612815565b6020808252825182820181905260009190848201906040850190845b81811015612b6157835183529284019291840191600101612b45565b50909695505050505050565b60008060408385031215612b8057600080fd5b612b8983612815565b91506020830135801515811461286957600080fd5b60008060008060808587031215612bb457600080fd5b612bbd85612815565b9350612bcb60208601612815565b925060408501359150606085013567ffffffffffffffff811115612bee57600080fd5b8501601f81018713612bff57600080fd5b612c0e87823560208401612a6d565b91505092959194509250565b60008060408385031215612c2d57600080fd5b82359150612c3d60208401612815565b90509250929050565b60008060408385031215612c5957600080fd5b612c6283612815565b9150612c3d60208401612815565b600181811c90821680612c8457607f821691505b602082108103612ca457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612d3e57612d3e612d0e565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612d6857612d68612d43565b500490565b601f821115610bd157600081815260208120601f850160051c81016020861015612d945750805b601f850160051c820191505b81811015612db357828155600101612da0565b505050505050565b815167ffffffffffffffff811115612dd557612dd5612922565b612de981612de38454612c70565b84612d6d565b602080601f831160018114612e1e5760008415612e065750858301515b600019600386901b1c1916600185901b178555612db3565b600085815260208120601f198616915b82811015612e4d57888601518255948401946001909101908401612e2e565b5085821015612e6b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115612e8e57612e8e612d0e565b500190565b600060018201612ea557612ea5612d0e565b5060010190565b600082821015612ebe57612ebe612d0e565b500390565b60008083128015600160ff1b850184121615612ee157612ee1612d0e565b6001600160ff1b0384018313811615612efc57612efc612d0e565b50500390565b6000808454612f1081612c70565b60018281168015612f285760018114612f3d57612f6c565b60ff1984168752821515830287019450612f6c565b8860005260208060002060005b85811015612f635781548a820152908401908201612f4a565b50505082870194505b505050508351612f80818360208801612874565b64173539b7b760d91b9101908152600501949350505050565b600082612fa857612fa8612d43565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613032908301846128a0565b9695505050505050565b60006020828403121561304e57600080fd5b815161280e816127db565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220361c2bacd322b7c7fadfc8ef7780fea631c7dcc4d36d51c3d84fb4b6aec1e7a064736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000076d19e4f535af90ffeaf44531aed8936922473bb000000000000000000000000c9f662294d7b305989669cdb91c9c78604927e24000000000000000000000000c9f662294d7b305989669cdb91c9c78604927e2400000000000000000000000000000000000000000000000000000000635e9f800000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696565646e34767a3768657773746762713463727867687177356537746d67656e35347075347a7a6b683472626a6a69686b6a76752f0000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000076d19e4f535af90ffeaf44531aed8936922473bb000000000000000000000000c9f662294d7b305989669cdb91c9c78604927e24000000000000000000000000c9f662294d7b305989669cdb91c9c78604927e2400000000000000000000000000000000000000000000000000000000635e9f800000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696565646e34767a3768657773746762713463727867687177356537746d67656e35347075347a7a6b683472626a6a69686b6a76752f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : uri (string): ipfs://bafybeieedn4vz7hewstgbq4crxghqw5e7tmgen54pu4zzkh4rbjjihkjvu/
Arg [1] : dooWallet_ (address): 0x76d19e4f535af90ffeaf44531aed8936922473bb
Arg [2] : projectWallet_ (address): 0xc9f662294d7b305989669cdb91c9c78604927e24
Arg [3] : royaltiesWallet_ (address): 0xc9f662294d7b305989669cdb91c9c78604927e24
Arg [4] : startTimestamp_ (uint256): 1667145600
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000076d19e4f535af90ffeaf44531aed8936922473bb
Arg [2] : 000000000000000000000000c9f662294d7b305989669cdb91c9c78604927e24
Arg [3] : 000000000000000000000000c9f662294d7b305989669cdb91c9c78604927e24
Arg [4] : 00000000000000000000000000000000000000000000000000000000635e9f80
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [6] : 697066733a2f2f626166796265696565646e34767a3768657773746762713463
Arg [7] : 727867687177356537746d67656e35347075347a7a6b683472626a6a69686b6a
Arg [8] : 76752f0000000000000000000000000000000000000000000000000000000000
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.