Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,993 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Whitelist Mint | 13928154 | 1055 days ago | IN | 0.08 ETH | 0.0046101 | ||||
Whitelist Mint | 13791585 | 1076 days ago | IN | 0.08 ETH | 0.00259904 | ||||
Doge Whitelist M... | 13784830 | 1077 days ago | IN | 0.16 ETH | 0.00353085 | ||||
Doge Whitelist M... | 13784830 | 1077 days ago | IN | 0.16 ETH | 0.00349363 | ||||
Whitelist Mint | 13776697 | 1079 days ago | IN | 0.24 ETH | 0.00246892 | ||||
Public Mint | 13774679 | 1079 days ago | IN | 0.08 ETH | 0.00327209 | ||||
Public Mint | 13761758 | 1081 days ago | IN | 0.16 ETH | 0.00313456 | ||||
Public Mint | 13761707 | 1081 days ago | IN | 0.16 ETH | 0.00434079 | ||||
Withdraw | 13761706 | 1081 days ago | IN | 0 ETH | 0.01313327 | ||||
Public Mint | 13761706 | 1081 days ago | IN | 0.08 ETH | 0.00397469 | ||||
Whitelist Mint | 13761686 | 1081 days ago | IN | 0.08 ETH | 0.00318049 | ||||
Public Mint | 13761686 | 1081 days ago | IN | 0.08 ETH | 0.00325939 | ||||
Public Mint | 13761684 | 1081 days ago | IN | 0.16 ETH | 0.00362433 | ||||
Public Mint | 13761681 | 1081 days ago | IN | 0.08 ETH | 0.00302651 | ||||
Public Mint | 13761677 | 1081 days ago | IN | 0.08 ETH | 0.00333083 | ||||
Public Mint | 13761657 | 1081 days ago | IN | 0.08 ETH | 0.01185688 | ||||
Public Mint | 13761644 | 1081 days ago | IN | 0.24 ETH | 0.03013208 | ||||
Public Mint | 13761643 | 1081 days ago | IN | 0.24 ETH | 0.0266703 | ||||
Public Mint | 13761629 | 1081 days ago | IN | 0.08 ETH | 0.01248335 | ||||
Public Mint | 13761586 | 1081 days ago | IN | 0.08 ETH | 0.00931066 | ||||
Public Mint | 13761532 | 1081 days ago | IN | 0.08 ETH | 0.01413202 | ||||
Public Mint | 13761531 | 1081 days ago | IN | 0.08 ETH | 0.01362317 | ||||
Public Mint | 13761515 | 1081 days ago | IN | 0.24 ETH | 0.02872147 | ||||
Public Mint | 13761494 | 1081 days ago | IN | 0.08 ETH | 0.01776785 | ||||
Public Mint | 13761493 | 1081 days ago | IN | 0.08 ETH | 0.01689689 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
13761706 | 1081 days ago | 8.56 ETH | ||||
13761706 | 1081 days ago | 8.56 ETH | ||||
13761706 | 1081 days ago | 1.712 ETH | ||||
13761706 | 1081 days ago | 2.568 ETH | ||||
13761706 | 1081 days ago | 4.28 ETH | ||||
13761706 | 1081 days ago | 4.28 ETH | ||||
13761706 | 1081 days ago | 5.992 ETH | ||||
13761706 | 1081 days ago | 6.848 ETH | ||||
13761706 | 1081 days ago | 8.56 ETH | ||||
13761706 | 1081 days ago | 8.56 ETH | ||||
13761706 | 1081 days ago | 8.56 ETH | ||||
13761706 | 1081 days ago | 8.56 ETH | ||||
13761706 | 1081 days ago | 8.56 ETH | ||||
13750476 | 1083 days ago | 4.28 ETH | ||||
13750476 | 1083 days ago | 4.28 ETH | ||||
13750476 | 1083 days ago | 0.856 ETH | ||||
13750476 | 1083 days ago | 1.284 ETH | ||||
13750476 | 1083 days ago | 2.14 ETH | ||||
13750476 | 1083 days ago | 2.14 ETH | ||||
13750476 | 1083 days ago | 2.996 ETH | ||||
13750476 | 1083 days ago | 3.424 ETH | ||||
13750476 | 1083 days ago | 4.28 ETH | ||||
13750476 | 1083 days ago | 4.28 ETH | ||||
13750476 | 1083 days ago | 4.28 ETH | ||||
13750476 | 1083 days ago | 4.28 ETH |
Loading...
Loading
Contract Name:
PlayersOnlyNFTMinter
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./PlayersOnlyNFT.sol"; contract PlayersOnlyNFTMinter is Ownable, ReentrancyGuard { using SafeMath for uint256; address public nftAddress; uint256 public MAX_SUPPLY; uint256 public price; bool public public_minting; bool public whitelistMinting; bool public dogeWhitelistMinting; bool public threeLimit; PlayersOnlyNFT playersOnlyNFT; mapping(address => uint256) public whitelistMints; mapping(address => uint256) public dogeWhitelistMints; mapping(address => uint256) public publicSale; uint256 public reserveCounter; uint256 public dogeReserveCounter; uint256 public counter; constructor(address _nftAddress) { MAX_SUPPLY = 9990; price = 80000000000000000; playersOnlyNFT = PlayersOnlyNFT(_nftAddress); nftAddress = _nftAddress; public_minting = false; whitelistMinting = false; dogeWhitelistMinting = false; threeLimit = true; reserveCounter = 0; dogeReserveCounter = 0; counter = 0; } modifier onlyOwnerOrDev() { require(owner() == _msgSender() || _msgSender() == 0xCd1B5613E06A6d66F5106cF13E103C9B98253B0c, "Ownable: caller is not the owner"); _; } function publicMint(address _toAddress, uint256 amount) external payable nonReentrant { require(amount <= 3, "3 mints max per transaction"); require(public_minting, "Public minting isn't allowed yet"); require(playersOnlyNFT.totalSupply().add(amount) <= MAX_SUPPLY, "Purchase would exceed max supply"); require(price.mul(amount) <= msg.value, "Ether value sent is not correct"); uint256 currentMints = publicSale[_toAddress]; if (threeLimit) { require(currentMints.add(amount) <= 3, "Already minted 3!"); } for (uint256 i = 0; i < amount; i++) { playersOnlyNFT.factoryMint(_toAddress); currentMints++; counter++; } if (threeLimit) { publicSale[_toAddress] = currentMints; } } function whitelistMint(address _toAddress, uint256 amount) external payable nonReentrant { require(amount <= 3, "3 mints max per transaction"); require(whitelistMinting, "Whitelist minting isn't allowed yet"); require(counter.add(amount) <= MAX_SUPPLY, "Purchase would exceed max supply"); require(price.mul(amount) <= msg.value, "Ether value sent is not correct"); uint256 currentMints = whitelistMints[_toAddress]; if (threeLimit) { require(currentMints.add(amount) <= 3, "Already minted 3!"); } for (uint256 i = 0; i < amount; i++) { playersOnlyNFT.factoryMint(_toAddress); currentMints++; counter++; } if (threeLimit) { whitelistMints[_toAddress] = currentMints; } } function dogeWhitelistMint(address _toAddress, uint256 amount) external payable nonReentrant { require(amount <= 3, "3 mints max per transaction"); require(dogeWhitelistMinting, "Whitelist minting isn't allowed yet"); require(counter.add(amount) <= MAX_SUPPLY, "Purchase would exceed max supply"); require(price.mul(amount) <= msg.value, "Ether value sent is not correct"); uint256 currentMints = dogeWhitelistMints[_toAddress]; if (threeLimit) { require(currentMints.add(amount) <= 3, "Already minted 3!"); } for (uint256 i = 0; i < amount; i++) { playersOnlyNFT.factoryMint(_toAddress); currentMints++; counter++; } if (threeLimit) { dogeWhitelistMints[_toAddress] = currentMints; } } function ownerMint(address _toAddress, uint256 amount) external onlyOwner { require(counter.add(amount) <= MAX_SUPPLY, "Purchase would exceed max supply"); require(reserveCounter.add(amount) <= 102, "Purchase would exceed max supply for owner"); for (uint256 i = 0; i < amount; i++) { playersOnlyNFT.factoryMint(_toAddress); reserveCounter++; counter++; } } function dogeReserveMint(address _toAddress, uint256 amount) external { require(msg.sender == 0xEf72D8793Ab32d20358aa0303ae1405E8B695DA6, "Only ment for doge address"); require(counter.add(amount) <= MAX_SUPPLY, "Purchase would exceed max supply"); require(dogeReserveCounter.add(amount) <= 20, "Purchase would exceed max supply for owner"); for (uint256 i = 0; i < amount; i++) { playersOnlyNFT.factoryMint(_toAddress); dogeReserveCounter++; counter++; } } function startPublicSale() external onlyOwnerOrDev { public_minting = true; } function enableWhitelistMinting() external onlyOwnerOrDev { whitelistMinting = true; } function disableWhitelistMinting() external onlyOwnerOrDev { whitelistMinting = false; } function enableDogeWhitelistMinting() external onlyOwnerOrDev { dogeWhitelistMinting = true; } function disableDogeWhitelistMinting() external onlyOwnerOrDev { dogeWhitelistMinting = false; } function disableThreeLimit() external onlyOwnerOrDev { threeLimit = false; } struct PayoutTable { address walletTen1; address walletTen2; address walletTen3; address walletTen4; address walletTen5; address walletTen6; address walletTen7; address walletEight; address walletSeven; address walletFive1; address walletFive2; address walletThree; address walletTwo; } function withdraw() external onlyOwner { PayoutTable memory payoutTable; uint256 balance = address(this).balance; uint256 tenPercent = balance.mul(10).div(100); uint256 eightPercent = balance.mul(8).div(100); uint256 sevenPercent = balance.mul(7).div(100); uint256 fivePercent = balance.mul(5).div(100); uint256 threePecent = balance.mul(3).div(100); uint256 twoPercent = balance.mul(2).div(100); payoutTable.walletTen1 = 0x366E3CE88b92c3973F3522Ec91d6fcD11BDa8CdC; payoutTable.walletTen2 = 0x405aff472b8EAC6a9541707D78e6F192d90B4c2C; payoutTable.walletTen3 = 0x8d1985967282c1019fCd42B46F18bE6CC597989B; payoutTable.walletTen4 = 0xfeF05cf80913F1d1E970F9587b0a884106D9e909; payoutTable.walletTen5 = 0x4dC3BD8918c18cf778c5b67Da7DB58D28880Fe73; payoutTable.walletTen6 = 0xEf72D8793Ab32d20358aa0303ae1405E8B695DA6; payoutTable.walletTen7 = 0x74893b849076135FceC3Baf0FF571640f6c1e038; payoutTable.walletEight = 0xE990519dd9DCdd085360D1C7C54520Fd85ddBeD4; payoutTable.walletSeven = 0x697bf1008D142A8D8251C03471384216e760e97e; payoutTable.walletFive1 = 0x144b30e857Dcf819419f41A0202AF9df85694509; payoutTable.walletFive2 = 0x465fFE2077D5a8911b7dDd6f2f8D46f7d9769362; payoutTable.walletThree = 0xA629B8793F2A8D20744a166f5B0F7193fc0f713e; payoutTable.walletTwo = 0xb110D64D0c791199FA0dA809E8DcDa1Aeea2D0a9; payable(payoutTable.walletTen1).transfer(tenPercent); payable(payoutTable.walletTen2).transfer(tenPercent); payable(payoutTable.walletTen3).transfer(tenPercent); payable(payoutTable.walletTen4).transfer(tenPercent); payable(payoutTable.walletTen5).transfer(tenPercent); payable(payoutTable.walletEight).transfer(eightPercent); payable(payoutTable.walletSeven).transfer(sevenPercent); payable(payoutTable.walletFive1).transfer(fivePercent); payable(payoutTable.walletFive2).transfer(fivePercent); payable(payoutTable.walletThree).transfer(threePecent); payable(payoutTable.walletTwo).transfer(twoPercent); payable(payoutTable.walletTen6).transfer(tenPercent); payable(payoutTable.walletTen7).transfer(tenPercent); } function transferCollectionOwnership(address _newOwner) external onlyOwner { playersOnlyNFT.transferOwnership(_newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT 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 make 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 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: balance query for the zero address"); 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: owner query for nonexistent token"); 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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 overriden 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 owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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: transfer caller is not 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: transfer caller is not 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) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @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 { 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 {} }
// SPDX-License-Identifier: MIT 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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; }
// SPDX-License-Identifier: MIT 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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT 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 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 tokenId); /** * @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 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } }
// SPDX-License-Identifier: MIT 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 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 pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** * @title ERC721Tradable * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality. */ abstract contract ERC721Tradable is ERC721Enumerable, Ownable { using Strings for string; using SafeMath for uint256; address proxyRegistryAddress; uint256 public MAX_SUPPLY; address factoryAddress; uint256 private _currentTokenId = 0; constructor( string memory _name, string memory _symbol, address _proxyRegistryAddress ) ERC721(_name, _symbol) { MAX_SUPPLY = 9990; proxyRegistryAddress = _proxyRegistryAddress; } /** * @dev Mints a token to an address with a tokenURI. * @param _to address of the future owner of the token */ function mintTo(address _to) public onlyOwner { require(totalSupply() < MAX_SUPPLY, "Purchase would exceed max supply"); uint256 newTokenId = _getNextTokenId(); _mint(_to, newTokenId); _incrementTokenId(); } function factoryMint(address _to) public { require(factoryAddress == _msgSender(), "Ownable: caller is not the factory!"); uint256 newTokenId = _getNextTokenId(); _mint(_to, newTokenId); _incrementTokenId(); } function setFactoryAddress(address _factoryAddress) public onlyOwner { factoryAddress = _factoryAddress; } /** * @dev calculates the next token ID based on value of _currentTokenId * @return uint256 for the next token ID */ function _getNextTokenId() private view returns (uint256) { return _currentTokenId.add(1); } /** * @dev increments the value of _currentTokenId */ function _incrementTokenId() private { _currentTokenId++; } function baseTokenURI() virtual public pure returns (string memory); function tokenURI(uint256 _tokenId) override public pure returns (string memory) { return string(abi.encodePacked(baseTokenURI(), uint2str(_tokenId), ".json")); } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } /** * @dev override transfer to prevent transfer of calimed tokens */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev override transfer to prevent transfer of calimed tokens */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev override transfer to prevent transfer of calimed tokens */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } function uint2str(uint _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len; while (_i != 0) { k = k-1; uint8 temp = (48 + uint8(_i - _i / 10 * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return string(bstr); } function burn(uint256 _tokenId) public { require(ownerOf(_tokenId) == _msgSender()); _burn(_tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "./ERC721Tradable.sol"; contract PlayersOnlyNFT is ERC721Tradable{ constructor(address _proxyRegistryAddress) ERC721Tradable("Players Only NFT", "POF", _proxyRegistryAddress) { } function baseTokenURI() override public pure returns (string memory) { return "https://storage.googleapis.com/playersonlydrop/JSON/Final"; } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableDogeWhitelistMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableThreeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableWhitelistMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dogeReserveCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"dogeReserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_toAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"dogeWhitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"dogeWhitelistMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"dogeWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableDogeWhitelistMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableWhitelistMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nftAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_minting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"threeLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferCollectionOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_toAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405162001c2c38038062001c2c83398101604081905261003191610102565b61003a336100b2565b6001805561270660035567011c37937e08000060045560058054600280546001600160a01b0319166001600160a01b03909416938417905563ffffffff1964010000000093909302929092166001600160c01b031990921691909117630100000017905560006009819055600a819055600b55610132565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561011457600080fd5b81516001600160a01b038116811461012b57600080fd5b9392505050565b611aea80620001426000396000f3fe6080604052600436106101c15760003560e01c806365f9ecc9116100f7578063a035b1fe11610095578063ce6df2b911610064578063ce6df2b9146104a9578063e615393a146104bc578063f2fde38b146104dc578063f73972e0146104fc57600080fd5b8063a035b1fe14610453578063a782544214610469578063c48d3f0f1461047e578063c74dff9a1461049457600080fd5b806375b6ca48116100d157806375b6ca48146103f55780637bfbae19146104085780638da5cb5b14610422578063957993881461044057600080fd5b806365f9ecc9146103905780636992d229146103c1578063715018a6146103e057600080fd5b806332cb6b0c11610164578063484b973c1161013e578063484b973c146103025780635a502c6b146103225780635bf8633a1461034257806361bc221a1461037a57600080fd5b806332cb6b0c146102aa57806339dab186146102c05780633ccfd60b146102ed57600080fd5b806309cbab8d116101a057806309cbab8d1461023e5780630b7b4bef1461026b5780630c1c972a146102805780632d29fd341461029557600080fd5b80628af2e6146101c657806304dad93514610206578063058e299414610228575b600080fd5b3480156101d257600080fd5b506101f36101e1366004611805565b60066020526000908152604090205481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b50610226610221366004611805565b610511565b005b34801561023457600080fd5b506101f360095481565b34801561024a57600080fd5b506101f3610259366004611805565b60076020526000908152604090205481565b34801561027757600080fd5b506102266105af565b34801561028c57600080fd5b50610226610608565b3480156102a157600080fd5b5061022661065f565b3480156102b657600080fd5b506101f360035481565b3480156102cc57600080fd5b506101f36102db366004611805565b60086020526000908152604090205481565b3480156102f957600080fd5b506102266106b5565b34801561030e57600080fd5b5061022661031d366004611820565b610c43565b34801561032e57600080fd5b5061022661033d366004611820565b610d7f565b34801561034e57600080fd5b50600254610362906001600160a01b031681565b6040516001600160a01b0390911681526020016101fd565b34801561038657600080fd5b506101f3600b5481565b34801561039c57600080fd5b506005546103b1906301000000900460ff1681565b60405190151581526020016101fd565b3480156103cd57600080fd5b506005546103b190610100900460ff1681565b3480156103ec57600080fd5b50610226610eef565b610226610403366004611820565b610f25565b34801561041457600080fd5b506005546103b19060ff1681565b34801561042e57600080fd5b506000546001600160a01b0316610362565b61022661044e366004611820565b611129565b34801561045f57600080fd5b506101f360045481565b34801561047557600080fd5b5061022661132b565b34801561048a57600080fd5b506101f3600a5481565b3480156104a057600080fd5b50610226611382565b6102266104b7366004611820565b6113dd565b3480156104c857600080fd5b506005546103b19062010000900460ff1681565b3480156104e857600080fd5b506102266104f7366004611805565b61167e565b34801561050857600080fd5b50610226611719565b6000546001600160a01b031633146105445760405162461bcd60e51b815260040161053b9061184a565b60405180910390fd5b60055460405163f2fde38b60e01b81526001600160a01b0383811660048301526401000000009092049091169063f2fde38b90602401600060405180830381600087803b15801561059457600080fd5b505af11580156105a8573d6000803e3d6000fd5b5050505050565b6000546001600160a01b03163314806105db575073cd1b5613e06a6d66f5106cf13e103c9b98253b0c33145b6105f75760405162461bcd60e51b815260040161053b9061184a565b6005805461ff001916610100179055565b6000546001600160a01b0316331480610634575073cd1b5613e06a6d66f5106cf13e103c9b98253b0c33145b6106505760405162461bcd60e51b815260040161053b9061184a565b6005805460ff19166001179055565b6000546001600160a01b031633148061068b575073cd1b5613e06a6d66f5106cf13e103c9b98253b0c33145b6106a75760405162461bcd60e51b815260040161053b9061184a565b6005805462ff000019169055565b6000546001600160a01b031633146106df5760405162461bcd60e51b815260040161053b9061184a565b604080516101a081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810182905261014081018290526101608101829052610180810191909152476000610761606461075b84600a61176e565b90611781565b90506000610775606461075b85600861176e565b90506000610789606461075b86600761176e565b9050600061079d606461075b87600561176e565b905060006107b1606461075b88600361176e565b905060006107c5606461075b89600261176e565b73366e3ce88b92c3973f3522ec91d6fcd11bda8cdc808a5273405aff472b8eac6a9541707d78e6f192d90b4c2c60208b0152738d1985967282c1019fcd42b46f18be6cc597989b6040808c019190915273fef05cf80913f1d1e970f9587b0a884106d9e90960608c0152734dc3bd8918c18cf778c5b67da7db58d28880fe7360808c015273ef72d8793ab32d20358aa0303ae1405e8b695da660a08c01527374893b849076135fcec3baf0ff571640f6c1e03860c08c015273e990519dd9dcdd085360d1c7c54520fd85ddbed460e08c015273697bf1008d142a8d8251c03471384216e760e97e6101008c015273144b30e857dcf819419f41a0202af9df856945096101208c015273465ffe2077d5a8911b7ddd6f2f8d46f7d97693626101408c015273a629b8793f2a8d20744a166f5b0f7193fc0f713e6101608c015273b110d64d0c791199fa0da809e8dcda1aeea2d0a96101808c0152519192509087156108fc029088906000818181858888f1935050505015801561094b573d6000803e3d6000fd5b5087602001516001600160a01b03166108fc879081150290604051600060405180830381858888f19350505050158015610989573d6000803e3d6000fd5b5087604001516001600160a01b03166108fc879081150290604051600060405180830381858888f193505050501580156109c7573d6000803e3d6000fd5b5087606001516001600160a01b03166108fc879081150290604051600060405180830381858888f19350505050158015610a05573d6000803e3d6000fd5b5087608001516001600160a01b03166108fc879081150290604051600060405180830381858888f19350505050158015610a43573d6000803e3d6000fd5b508760e001516001600160a01b03166108fc869081150290604051600060405180830381858888f19350505050158015610a81573d6000803e3d6000fd5b508761010001516001600160a01b03166108fc859081150290604051600060405180830381858888f19350505050158015610ac0573d6000803e3d6000fd5b508761012001516001600160a01b03166108fc849081150290604051600060405180830381858888f19350505050158015610aff573d6000803e3d6000fd5b508761014001516001600160a01b03166108fc849081150290604051600060405180830381858888f19350505050158015610b3e573d6000803e3d6000fd5b508761016001516001600160a01b03166108fc839081150290604051600060405180830381858888f19350505050158015610b7d573d6000803e3d6000fd5b508761018001516001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610bbc573d6000803e3d6000fd5b508760a001516001600160a01b03166108fc879081150290604051600060405180830381858888f19350505050158015610bfa573d6000803e3d6000fd5b508760c001516001600160a01b03166108fc879081150290604051600060405180830381858888f19350505050158015610c38573d6000803e3d6000fd5b505050505050505050565b6000546001600160a01b03163314610c6d5760405162461bcd60e51b815260040161053b9061184a565b600354600b54610c7d908361178d565b1115610c9b5760405162461bcd60e51b815260040161053b9061187f565b600954606690610cab908361178d565b1115610cc95760405162461bcd60e51b815260040161053b906118b4565b60005b81811015610d7a57600554604051630355d30960e11b81526001600160a01b038581166004830152640100000000909204909116906306aba61290602401600060405180830381600087803b158015610d2457600080fd5b505af1158015610d38573d6000803e3d6000fd5b505060098054925090506000610d4d83611914565b9091555050600b8054906000610d6283611914565b91905055508080610d7290611914565b915050610ccc565b505050565b73ef72d8793ab32d20358aa0303ae1405e8b695da63314610de25760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c79206d656e7420666f7220646f67652061646472657373000000000000604482015260640161053b565b600354600b54610df2908361178d565b1115610e105760405162461bcd60e51b815260040161053b9061187f565b600a54601490610e20908361178d565b1115610e3e5760405162461bcd60e51b815260040161053b906118b4565b60005b81811015610d7a57600554604051630355d30960e11b81526001600160a01b038581166004830152640100000000909204909116906306aba61290602401600060405180830381600087803b158015610e9957600080fd5b505af1158015610ead573d6000803e3d6000fd5b5050600a8054925090506000610ec283611914565b9091555050600b8054906000610ed783611914565b91905055508080610ee790611914565b915050610e41565b6000546001600160a01b03163314610f195760405162461bcd60e51b815260040161053b9061184a565b610f236000611799565b565b60026001541415610f485760405162461bcd60e51b815260040161053b9061192f565b60026001556003811115610f6e5760405162461bcd60e51b815260040161053b90611966565b60055462010000900460ff16610f965760405162461bcd60e51b815260040161053b9061199d565b600354600b54610fa6908361178d565b1115610fc45760405162461bcd60e51b815260040161053b9061187f565b6004543490610fd3908361176e565b1115610ff15760405162461bcd60e51b815260040161053b906119e0565b6001600160a01b0382166000908152600760205260409020546005546301000000900460ff1615611046576003611028828461178d565b11156110465760405162461bcd60e51b815260040161053b90611a17565b60005b828110156110f157600554604051630355d30960e11b81526001600160a01b038681166004830152640100000000909204909116906306aba61290602401600060405180830381600087803b1580156110a157600080fd5b505af11580156110b5573d6000803e3d6000fd5b5050505081806110c490611914565b600b805491945090915060006110d983611914565b919050555080806110e990611914565b915050611049565b506005546301000000900460ff1615611120576001600160a01b03831660009081526007602052604090208190555b50506001805550565b6002600154141561114c5760405162461bcd60e51b815260040161053b9061192f565b600260015560038111156111725760405162461bcd60e51b815260040161053b90611966565b600554610100900460ff166111995760405162461bcd60e51b815260040161053b9061199d565b600354600b546111a9908361178d565b11156111c75760405162461bcd60e51b815260040161053b9061187f565b60045434906111d6908361176e565b11156111f45760405162461bcd60e51b815260040161053b906119e0565b6001600160a01b0382166000908152600660205260409020546005546301000000900460ff161561124957600361122b828461178d565b11156112495760405162461bcd60e51b815260040161053b90611a17565b60005b828110156112f457600554604051630355d30960e11b81526001600160a01b038681166004830152640100000000909204909116906306aba61290602401600060405180830381600087803b1580156112a457600080fd5b505af11580156112b8573d6000803e3d6000fd5b5050505081806112c790611914565b600b805491945090915060006112dc83611914565b919050555080806112ec90611914565b91505061124c565b506005546301000000900460ff1615611120576001600160a01b038316600090815260066020526040902081905550506001805550565b6000546001600160a01b0316331480611357575073cd1b5613e06a6d66f5106cf13e103c9b98253b0c33145b6113735760405162461bcd60e51b815260040161053b9061184a565b6005805463ff00000019169055565b6000546001600160a01b03163314806113ae575073cd1b5613e06a6d66f5106cf13e103c9b98253b0c33145b6113ca5760405162461bcd60e51b815260040161053b9061184a565b6005805462ff0000191662010000179055565b600260015414156114005760405162461bcd60e51b815260040161053b9061192f565b600260015560038111156114265760405162461bcd60e51b815260040161053b90611966565b60055460ff166114785760405162461bcd60e51b815260206004820181905260248201527f5075626c6963206d696e74696e672069736e277420616c6c6f77656420796574604482015260640161053b565b6003546114fc82600560049054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f69190611a42565b9061178d565b111561151a5760405162461bcd60e51b815260040161053b9061187f565b6004543490611529908361176e565b11156115475760405162461bcd60e51b815260040161053b906119e0565b6001600160a01b0382166000908152600860205260409020546005546301000000900460ff161561159c57600361157e828461178d565b111561159c5760405162461bcd60e51b815260040161053b90611a17565b60005b8281101561164757600554604051630355d30960e11b81526001600160a01b038681166004830152640100000000909204909116906306aba61290602401600060405180830381600087803b1580156115f757600080fd5b505af115801561160b573d6000803e3d6000fd5b50505050818061161a90611914565b600b8054919450909150600061162f83611914565b9190505550808061163f90611914565b91505061159f565b506005546301000000900460ff1615611120576001600160a01b038316600090815260086020526040902081905550506001805550565b6000546001600160a01b031633146116a85760405162461bcd60e51b815260040161053b9061184a565b6001600160a01b03811661170d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161053b565b61171681611799565b50565b6000546001600160a01b0316331480611745575073cd1b5613e06a6d66f5106cf13e103c9b98253b0c33145b6117615760405162461bcd60e51b815260040161053b9061184a565b6005805461ff0019169055565b600061177a8284611a5b565b9392505050565b600061177a8284611a7a565b600061177a8284611a9c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461180057600080fd5b919050565b60006020828403121561181757600080fd5b61177a826117e9565b6000806040838503121561183357600080fd5b61183c836117e9565b946020939093013593505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269103337b91037bbb732b960b11b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611928576119286118fe565b5060010190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601b908201527f33206d696e7473206d617820706572207472616e73616374696f6e0000000000604082015260600190565b60208082526023908201527f57686974656c697374206d696e74696e672069736e277420616c6c6f776564206040820152621e595d60ea1b606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b602080825260119082015270416c7265616479206d696e74656420332160781b604082015260600190565b600060208284031215611a5457600080fd5b5051919050565b6000816000190483118215151615611a7557611a756118fe565b500290565b600082611a9757634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611aaf57611aaf6118fe565b50019056fea26469706673582212206beb495ac4bad934799ba4fe108e8711c3562ebf6c6bed4061a0fa3bc27ed65d64736f6c634300080a00330000000000000000000000002828fd113b2459d8872633da79c421c0275bff53
Deployed Bytecode
0x6080604052600436106101c15760003560e01c806365f9ecc9116100f7578063a035b1fe11610095578063ce6df2b911610064578063ce6df2b9146104a9578063e615393a146104bc578063f2fde38b146104dc578063f73972e0146104fc57600080fd5b8063a035b1fe14610453578063a782544214610469578063c48d3f0f1461047e578063c74dff9a1461049457600080fd5b806375b6ca48116100d157806375b6ca48146103f55780637bfbae19146104085780638da5cb5b14610422578063957993881461044057600080fd5b806365f9ecc9146103905780636992d229146103c1578063715018a6146103e057600080fd5b806332cb6b0c11610164578063484b973c1161013e578063484b973c146103025780635a502c6b146103225780635bf8633a1461034257806361bc221a1461037a57600080fd5b806332cb6b0c146102aa57806339dab186146102c05780633ccfd60b146102ed57600080fd5b806309cbab8d116101a057806309cbab8d1461023e5780630b7b4bef1461026b5780630c1c972a146102805780632d29fd341461029557600080fd5b80628af2e6146101c657806304dad93514610206578063058e299414610228575b600080fd5b3480156101d257600080fd5b506101f36101e1366004611805565b60066020526000908152604090205481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b50610226610221366004611805565b610511565b005b34801561023457600080fd5b506101f360095481565b34801561024a57600080fd5b506101f3610259366004611805565b60076020526000908152604090205481565b34801561027757600080fd5b506102266105af565b34801561028c57600080fd5b50610226610608565b3480156102a157600080fd5b5061022661065f565b3480156102b657600080fd5b506101f360035481565b3480156102cc57600080fd5b506101f36102db366004611805565b60086020526000908152604090205481565b3480156102f957600080fd5b506102266106b5565b34801561030e57600080fd5b5061022661031d366004611820565b610c43565b34801561032e57600080fd5b5061022661033d366004611820565b610d7f565b34801561034e57600080fd5b50600254610362906001600160a01b031681565b6040516001600160a01b0390911681526020016101fd565b34801561038657600080fd5b506101f3600b5481565b34801561039c57600080fd5b506005546103b1906301000000900460ff1681565b60405190151581526020016101fd565b3480156103cd57600080fd5b506005546103b190610100900460ff1681565b3480156103ec57600080fd5b50610226610eef565b610226610403366004611820565b610f25565b34801561041457600080fd5b506005546103b19060ff1681565b34801561042e57600080fd5b506000546001600160a01b0316610362565b61022661044e366004611820565b611129565b34801561045f57600080fd5b506101f360045481565b34801561047557600080fd5b5061022661132b565b34801561048a57600080fd5b506101f3600a5481565b3480156104a057600080fd5b50610226611382565b6102266104b7366004611820565b6113dd565b3480156104c857600080fd5b506005546103b19062010000900460ff1681565b3480156104e857600080fd5b506102266104f7366004611805565b61167e565b34801561050857600080fd5b50610226611719565b6000546001600160a01b031633146105445760405162461bcd60e51b815260040161053b9061184a565b60405180910390fd5b60055460405163f2fde38b60e01b81526001600160a01b0383811660048301526401000000009092049091169063f2fde38b90602401600060405180830381600087803b15801561059457600080fd5b505af11580156105a8573d6000803e3d6000fd5b5050505050565b6000546001600160a01b03163314806105db575073cd1b5613e06a6d66f5106cf13e103c9b98253b0c33145b6105f75760405162461bcd60e51b815260040161053b9061184a565b6005805461ff001916610100179055565b6000546001600160a01b0316331480610634575073cd1b5613e06a6d66f5106cf13e103c9b98253b0c33145b6106505760405162461bcd60e51b815260040161053b9061184a565b6005805460ff19166001179055565b6000546001600160a01b031633148061068b575073cd1b5613e06a6d66f5106cf13e103c9b98253b0c33145b6106a75760405162461bcd60e51b815260040161053b9061184a565b6005805462ff000019169055565b6000546001600160a01b031633146106df5760405162461bcd60e51b815260040161053b9061184a565b604080516101a081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810182905261014081018290526101608101829052610180810191909152476000610761606461075b84600a61176e565b90611781565b90506000610775606461075b85600861176e565b90506000610789606461075b86600761176e565b9050600061079d606461075b87600561176e565b905060006107b1606461075b88600361176e565b905060006107c5606461075b89600261176e565b73366e3ce88b92c3973f3522ec91d6fcd11bda8cdc808a5273405aff472b8eac6a9541707d78e6f192d90b4c2c60208b0152738d1985967282c1019fcd42b46f18be6cc597989b6040808c019190915273fef05cf80913f1d1e970f9587b0a884106d9e90960608c0152734dc3bd8918c18cf778c5b67da7db58d28880fe7360808c015273ef72d8793ab32d20358aa0303ae1405e8b695da660a08c01527374893b849076135fcec3baf0ff571640f6c1e03860c08c015273e990519dd9dcdd085360d1c7c54520fd85ddbed460e08c015273697bf1008d142a8d8251c03471384216e760e97e6101008c015273144b30e857dcf819419f41a0202af9df856945096101208c015273465ffe2077d5a8911b7ddd6f2f8d46f7d97693626101408c015273a629b8793f2a8d20744a166f5b0f7193fc0f713e6101608c015273b110d64d0c791199fa0da809e8dcda1aeea2d0a96101808c0152519192509087156108fc029088906000818181858888f1935050505015801561094b573d6000803e3d6000fd5b5087602001516001600160a01b03166108fc879081150290604051600060405180830381858888f19350505050158015610989573d6000803e3d6000fd5b5087604001516001600160a01b03166108fc879081150290604051600060405180830381858888f193505050501580156109c7573d6000803e3d6000fd5b5087606001516001600160a01b03166108fc879081150290604051600060405180830381858888f19350505050158015610a05573d6000803e3d6000fd5b5087608001516001600160a01b03166108fc879081150290604051600060405180830381858888f19350505050158015610a43573d6000803e3d6000fd5b508760e001516001600160a01b03166108fc869081150290604051600060405180830381858888f19350505050158015610a81573d6000803e3d6000fd5b508761010001516001600160a01b03166108fc859081150290604051600060405180830381858888f19350505050158015610ac0573d6000803e3d6000fd5b508761012001516001600160a01b03166108fc849081150290604051600060405180830381858888f19350505050158015610aff573d6000803e3d6000fd5b508761014001516001600160a01b03166108fc849081150290604051600060405180830381858888f19350505050158015610b3e573d6000803e3d6000fd5b508761016001516001600160a01b03166108fc839081150290604051600060405180830381858888f19350505050158015610b7d573d6000803e3d6000fd5b508761018001516001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610bbc573d6000803e3d6000fd5b508760a001516001600160a01b03166108fc879081150290604051600060405180830381858888f19350505050158015610bfa573d6000803e3d6000fd5b508760c001516001600160a01b03166108fc879081150290604051600060405180830381858888f19350505050158015610c38573d6000803e3d6000fd5b505050505050505050565b6000546001600160a01b03163314610c6d5760405162461bcd60e51b815260040161053b9061184a565b600354600b54610c7d908361178d565b1115610c9b5760405162461bcd60e51b815260040161053b9061187f565b600954606690610cab908361178d565b1115610cc95760405162461bcd60e51b815260040161053b906118b4565b60005b81811015610d7a57600554604051630355d30960e11b81526001600160a01b038581166004830152640100000000909204909116906306aba61290602401600060405180830381600087803b158015610d2457600080fd5b505af1158015610d38573d6000803e3d6000fd5b505060098054925090506000610d4d83611914565b9091555050600b8054906000610d6283611914565b91905055508080610d7290611914565b915050610ccc565b505050565b73ef72d8793ab32d20358aa0303ae1405e8b695da63314610de25760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c79206d656e7420666f7220646f67652061646472657373000000000000604482015260640161053b565b600354600b54610df2908361178d565b1115610e105760405162461bcd60e51b815260040161053b9061187f565b600a54601490610e20908361178d565b1115610e3e5760405162461bcd60e51b815260040161053b906118b4565b60005b81811015610d7a57600554604051630355d30960e11b81526001600160a01b038581166004830152640100000000909204909116906306aba61290602401600060405180830381600087803b158015610e9957600080fd5b505af1158015610ead573d6000803e3d6000fd5b5050600a8054925090506000610ec283611914565b9091555050600b8054906000610ed783611914565b91905055508080610ee790611914565b915050610e41565b6000546001600160a01b03163314610f195760405162461bcd60e51b815260040161053b9061184a565b610f236000611799565b565b60026001541415610f485760405162461bcd60e51b815260040161053b9061192f565b60026001556003811115610f6e5760405162461bcd60e51b815260040161053b90611966565b60055462010000900460ff16610f965760405162461bcd60e51b815260040161053b9061199d565b600354600b54610fa6908361178d565b1115610fc45760405162461bcd60e51b815260040161053b9061187f565b6004543490610fd3908361176e565b1115610ff15760405162461bcd60e51b815260040161053b906119e0565b6001600160a01b0382166000908152600760205260409020546005546301000000900460ff1615611046576003611028828461178d565b11156110465760405162461bcd60e51b815260040161053b90611a17565b60005b828110156110f157600554604051630355d30960e11b81526001600160a01b038681166004830152640100000000909204909116906306aba61290602401600060405180830381600087803b1580156110a157600080fd5b505af11580156110b5573d6000803e3d6000fd5b5050505081806110c490611914565b600b805491945090915060006110d983611914565b919050555080806110e990611914565b915050611049565b506005546301000000900460ff1615611120576001600160a01b03831660009081526007602052604090208190555b50506001805550565b6002600154141561114c5760405162461bcd60e51b815260040161053b9061192f565b600260015560038111156111725760405162461bcd60e51b815260040161053b90611966565b600554610100900460ff166111995760405162461bcd60e51b815260040161053b9061199d565b600354600b546111a9908361178d565b11156111c75760405162461bcd60e51b815260040161053b9061187f565b60045434906111d6908361176e565b11156111f45760405162461bcd60e51b815260040161053b906119e0565b6001600160a01b0382166000908152600660205260409020546005546301000000900460ff161561124957600361122b828461178d565b11156112495760405162461bcd60e51b815260040161053b90611a17565b60005b828110156112f457600554604051630355d30960e11b81526001600160a01b038681166004830152640100000000909204909116906306aba61290602401600060405180830381600087803b1580156112a457600080fd5b505af11580156112b8573d6000803e3d6000fd5b5050505081806112c790611914565b600b805491945090915060006112dc83611914565b919050555080806112ec90611914565b91505061124c565b506005546301000000900460ff1615611120576001600160a01b038316600090815260066020526040902081905550506001805550565b6000546001600160a01b0316331480611357575073cd1b5613e06a6d66f5106cf13e103c9b98253b0c33145b6113735760405162461bcd60e51b815260040161053b9061184a565b6005805463ff00000019169055565b6000546001600160a01b03163314806113ae575073cd1b5613e06a6d66f5106cf13e103c9b98253b0c33145b6113ca5760405162461bcd60e51b815260040161053b9061184a565b6005805462ff0000191662010000179055565b600260015414156114005760405162461bcd60e51b815260040161053b9061192f565b600260015560038111156114265760405162461bcd60e51b815260040161053b90611966565b60055460ff166114785760405162461bcd60e51b815260206004820181905260248201527f5075626c6963206d696e74696e672069736e277420616c6c6f77656420796574604482015260640161053b565b6003546114fc82600560049054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f69190611a42565b9061178d565b111561151a5760405162461bcd60e51b815260040161053b9061187f565b6004543490611529908361176e565b11156115475760405162461bcd60e51b815260040161053b906119e0565b6001600160a01b0382166000908152600860205260409020546005546301000000900460ff161561159c57600361157e828461178d565b111561159c5760405162461bcd60e51b815260040161053b90611a17565b60005b8281101561164757600554604051630355d30960e11b81526001600160a01b038681166004830152640100000000909204909116906306aba61290602401600060405180830381600087803b1580156115f757600080fd5b505af115801561160b573d6000803e3d6000fd5b50505050818061161a90611914565b600b8054919450909150600061162f83611914565b9190505550808061163f90611914565b91505061159f565b506005546301000000900460ff1615611120576001600160a01b038316600090815260086020526040902081905550506001805550565b6000546001600160a01b031633146116a85760405162461bcd60e51b815260040161053b9061184a565b6001600160a01b03811661170d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161053b565b61171681611799565b50565b6000546001600160a01b0316331480611745575073cd1b5613e06a6d66f5106cf13e103c9b98253b0c33145b6117615760405162461bcd60e51b815260040161053b9061184a565b6005805461ff0019169055565b600061177a8284611a5b565b9392505050565b600061177a8284611a7a565b600061177a8284611a9c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461180057600080fd5b919050565b60006020828403121561181757600080fd5b61177a826117e9565b6000806040838503121561183357600080fd5b61183c836117e9565b946020939093013593505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269103337b91037bbb732b960b11b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611928576119286118fe565b5060010190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601b908201527f33206d696e7473206d617820706572207472616e73616374696f6e0000000000604082015260600190565b60208082526023908201527f57686974656c697374206d696e74696e672069736e277420616c6c6f776564206040820152621e595d60ea1b606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b602080825260119082015270416c7265616479206d696e74656420332160781b604082015260600190565b600060208284031215611a5457600080fd5b5051919050565b6000816000190483118215151615611a7557611a756118fe565b500290565b600082611a9757634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611aaf57611aaf6118fe565b50019056fea26469706673582212206beb495ac4bad934799ba4fe108e8711c3562ebf6c6bed4061a0fa3bc27ed65d64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002828fd113b2459d8872633da79c421c0275bff53
-----Decoded View---------------
Arg [0] : _nftAddress (address): 0x2828Fd113B2459D8872633Da79C421C0275Bff53
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002828fd113b2459d8872633da79c421c0275bff53
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.