Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,444 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint Bblock | 13618342 | 1097 days ago | IN | 0.069 ETH | 0.0030646 | ||||
Mint Bblock | 13618342 | 1097 days ago | IN | 0.069 ETH | 0.0030646 | ||||
Mint Bblock | 13466533 | 1120 days ago | IN | 0.138 ETH | 0.00226301 | ||||
Withdraw | 13453165 | 1122 days ago | IN | 0 ETH | 0.00256762 | ||||
Mint Bblock | 13452859 | 1123 days ago | IN | 0.069 ETH | 0.00154734 | ||||
Mint Bblock | 13452797 | 1123 days ago | IN | 0.276 ETH | 0.0015183 | ||||
Mint Bblock | 13452614 | 1123 days ago | IN | 0.069 ETH | 0.00252472 | ||||
Mint Bblock | 13452612 | 1123 days ago | IN | 0.069 ETH | 0.01547663 | ||||
Mint Bblock | 13452610 | 1123 days ago | IN | 0.276 ETH | 0.04266472 | ||||
Mint Bblock | 13452604 | 1123 days ago | IN | 0.069 ETH | 0.01540081 | ||||
Mint Bblock | 13452602 | 1123 days ago | IN | 0.069 ETH | 0.01552518 | ||||
Mint Bblock | 13452602 | 1123 days ago | IN | 0.069 ETH | 0.01563534 | ||||
Mint Bblock | 13452584 | 1123 days ago | IN | 0.069 ETH | 0.0150212 | ||||
Mint Bblock | 13452578 | 1123 days ago | IN | 0.069 ETH | 0.01635561 | ||||
Mint Bblock | 13452571 | 1123 days ago | IN | 0.069 ETH | 0.01094574 | ||||
Mint Bblock | 13452563 | 1123 days ago | IN | 0.069 ETH | 0.01309292 | ||||
Mint Bblock | 13452562 | 1123 days ago | IN | 0.069 ETH | 0.0137707 | ||||
Mint Bblock | 13452544 | 1123 days ago | IN | 0.207 ETH | 0.02597371 | ||||
Mint Bblock | 13452542 | 1123 days ago | IN | 0.069 ETH | 0.01038016 | ||||
Mint Bblock | 13452542 | 1123 days ago | IN | 0.069 ETH | 0.0103796 | ||||
Mint Bblock | 13452534 | 1123 days ago | IN | 0.138 ETH | 0.02090012 | ||||
Mint Bblock | 13452534 | 1123 days ago | IN | 0.069 ETH | 0.0119534 | ||||
Mint Bblock | 13452531 | 1123 days ago | IN | 0.207 ETH | 0.02866587 | ||||
Mint Bblock | 13452523 | 1123 days ago | IN | 0.069 ETH | 0.01556153 | ||||
Mint Bblock | 13452504 | 1123 days ago | IN | 0.069 ETH | 0.01132599 |
Loading...
Loading
Contract Name:
BrokeBoyzMinter
Compiler Version
v0.8.9+commit.e5eed63a
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/utils/Strings.sol"; import "./BrokeBoyz.sol"; contract BrokeBoyzMinter is Ownable { using Strings for string; using SafeMath for uint256; address public nftAddress; uint256 public MAX_SUPPLY; uint256 public mintPrice; bool public public_bblock_minting; bool public presale_bblock_minting; bool public public_pass_minting; uint256 public whitelistCap; uint256 public whitelistAmount; mapping(address => bool) public whitelist; bool public whitelistOpened; bool public whitelistBblockMinting; bool public whitelistMintPassMinting; constructor(address _nftAddress) { MAX_SUPPLY = 5000; mintPrice = 69000000000000000; // 0.069 ETH nftAddress = _nftAddress; public_bblock_minting = false; public_pass_minting = false; whitelistCap = 1000; whitelistAmount = 0; } function setWhitelistCap(uint256 _amount) public onlyOwner { whitelistCap = _amount; } function setWhitelistOpened(bool isOpened) public onlyOwner { whitelistOpened = isOpened; } function setWhitelistBblockMinting(bool isEnabled) public onlyOwner { whitelistBblockMinting = isEnabled; } function setWhitelistMintPassMinting(bool isEnabled) public onlyOwner { whitelistMintPassMinting = isEnabled; } function checkWhitelsitaddress() public view returns (bool) { return whitelist[_msgSender()]; } function whitelistAddress(address _addy) public { require(whitelistOpened, "Whitelisting hasn't started yet"); require(whitelistAmount + 1 <= whitelistCap, "Whitelist is full!"); whitelist[_addy] = true; whitelistAmount++; } function name() external pure returns (string memory) { return "Broke Boyz minter"; } function symbol() external pure returns (string memory) { return "BBZ"; } function whitelistMintBblock(uint256 amount, address _toAddress) external payable { require(whitelistBblockMinting, "Minting hasn't started yet"); require(whitelist[_msgSender()], "Address is not whitelisted"); require(mintPrice.mul(amount) <= msg.value, "Ether value sent is not correct"); require(amount <= 5, "Too many mints! Max is 5."); BrokeBoyz brokeBoyz = BrokeBoyz(nftAddress); uint256 currentSupply = brokeBoyz.bBlockSupply(); require(currentSupply + amount <= MAX_SUPPLY, "Purchase would exceed max supply"); for (uint256 i = 0; i < amount; i++) { brokeBoyz.factoryMintBblock(_toAddress); } } function whitelistMintPass(uint256 amount, address _toAddress) external payable { require(whitelistMintPassMinting, "Minting hasn't started yet"); require(whitelist[_msgSender()], "Address is not whitelisted"); require(mintPrice.mul(amount) <= msg.value, "Ether value sent is not correct"); require(amount <= 5, "Too many mints! Max is 5."); BrokeBoyz brokeBoyz = BrokeBoyz(nftAddress); uint256 currentSupply = brokeBoyz.passSupply(); require(currentSupply + amount <= MAX_SUPPLY, "Purchase would exceed max supply"); for (uint256 i = 0; i < amount; i++) { brokeBoyz.factoryMintMintPass(_toAddress); } } function mintBblockPresale(uint256 amount, address _toAddress) external payable { require(presale_bblock_minting, "Presale minting isn't allowed yet"); require(mintPrice.mul(amount) <= msg.value, "Ether value sent is not correct"); require(amount <= 3, "Too many mints! Max is 3."); BrokeBoyz brokeBoyz = BrokeBoyz(nftAddress); uint256 currentSupply = brokeBoyz.bBlockSupply(); require(currentSupply + amount <= MAX_SUPPLY, "Purchase would exceed max supply"); for (uint256 i = 0; i < amount; i++) { brokeBoyz.factoryMintBblock(_toAddress); } } function mintBblock(uint256 amount, address _toAddress) external payable { require(public_bblock_minting, "Public minting isn't allowed yet"); require(mintPrice.mul(amount) <= msg.value, "Ether value sent is not correct"); require(amount <= 6, "Too many mints! Max is 6."); BrokeBoyz brokeBoyz = BrokeBoyz(nftAddress); uint256 currentSupply = brokeBoyz.bBlockSupply(); require(currentSupply + amount <= MAX_SUPPLY, "Purchase would exceed max supply"); for (uint256 i = 0; i < amount; i++) { brokeBoyz.factoryMintBblock(_toAddress); } } function privateMintBblock(uint256 amount, address _toAddress) external onlyOwner { BrokeBoyz brokeBoyz = BrokeBoyz(nftAddress); uint256 currentSupply = brokeBoyz.bBlockSupply(); require(currentSupply + amount <= 250, "Purchase would exceed allocated private sale"); for (uint256 i = 0; i < amount; i++) { brokeBoyz.factoryMintBblock(_toAddress); } } function mintPass(uint256 amount, address _toAddress) external payable { require(public_pass_minting, "Public minting isn't allowed yet"); require(mintPrice.mul(amount) <= msg.value, "Ether value sent is not correct"); require(amount <= 5, "Too many mints! Max is 5."); BrokeBoyz brokeBoyz = BrokeBoyz(nftAddress); uint256 currentSupply = brokeBoyz.passSupply(); require(currentSupply + amount <= MAX_SUPPLY, "Purchase would exceed max supply"); for (uint256 i = 0; i < amount; i++) { brokeBoyz.factoryMintMintPass(_toAddress); } } function privateMintMintPass(uint256 amount, address _toAddress) external onlyOwner { BrokeBoyz brokeBoyz = BrokeBoyz(nftAddress); uint256 currentSupply = brokeBoyz.passSupply(); require(currentSupply + amount <= 250, "Purchase would exceed allocated private sale"); for (uint256 i = 0; i < amount; i++) { brokeBoyz.factoryMintMintPass(_toAddress); } } function withdraw() external onlyOwner { uint256 balance = address(this).balance; address wallet = 0x3B6Abe1cF8A608632228dFC7395591020D47474D; payable(wallet).transfer(balance); } function setBblockPublicMinting(bool isEnabled) public onlyOwner { public_bblock_minting = isEnabled; } function setPassPublicMinting(bool isEnabled) public onlyOwner { public_pass_minting = isEnabled; } function setBblockPresaleMinting(bool isEnabled) public onlyOwner { presale_bblock_minting = isEnabled; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "./ERC721Tradable.sol"; contract BrokeBoyz is ERC721Tradable{ constructor(address _proxyRegistryAddress) ERC721Tradable("BrokeBoyz", "BBZ", _proxyRegistryAddress) { } function baseTokenURI() override public pure returns (string memory) { return "https://storage.googleapis.com/brokeboyz/"; } } // https://storage.googleapis.com/brokeboyz/bblockg1.png // https://storage.googleapis.com/brokeboyz/bblockg1.json // ** // Rest of naming structures will be the exact same URL above but the name at the end will be formatted like this: // bblockg <- B-Block (good) // bblocke <- B-Block (evil) // mintpass <-mint pass // tessg <- Tess (good) // tesse <- Tess (evil) // rooseveltg <- Roosevelt (good) // roosevelte <- Roosevelt (evil)
// 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; address factoryAddress; uint256 private _currentTokenId = 0; uint256 private _currentBblockId = 0; uint256 private _currentMintPassId = 0; uint256 private _currentTessId = 0; uint256 private _currentRoosId = 0; bool private mintPassMintingEnabled = false; bool private tessToEvil = false; bool private roosToEvil = false; bool private bblockToEvil = false; bool private tessToGood = false; bool private roosToGood = false; bool private bblockToGood = false; mapping(uint256 => uint256) public idMappings; // mapping(uint256 => bool) public isGoodMapping; mapping(uint256 => string) public goodEvilMapping; constructor( string memory _name, string memory _symbol, address _proxyRegistryAddress ) ERC721(_name, _symbol) { proxyRegistryAddress = _proxyRegistryAddress; } // todo ipfs hash might be removed /** * @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 { uint256 newTokenId = _getNextTokenId(); _mint(_to, newTokenId); _incrementTokenId(); } function setMintPassEnabled(bool isEnabled) public onlyOwner { mintPassMintingEnabled = isEnabled; } function setTessToEvil(bool isEnabled) public onlyOwner { tessToEvil = isEnabled; } function setRoosToEvil(bool isEnabled) public onlyOwner { roosToEvil = isEnabled; } function setBblockToEvil(bool isEnabled) public onlyOwner { bblockToEvil = isEnabled; } function setTessToGood(bool isEnabled) public onlyOwner { tessToGood = isEnabled; } function setRoosToGood(bool isEnabled) public onlyOwner { roosToGood = isEnabled; } function setBblockToGood(bool isEnabled) public onlyOwner { bblockToGood = isEnabled; } function bBlockSupply() public view returns (uint256) { return _currentBblockId; } function tessSupply() public view returns (uint256) { return _currentTessId; } function roosSupply() public view returns (uint256) { return _currentRoosId; } function passSupply() public view returns (uint256) { return _currentMintPassId; } function lastTokenId() public view returns (uint256) { return _currentTokenId; } function factoryMintBblock(address _to) public { require(factoryAddress == _msgSender(), "Ownable: caller is not the factory!"); uint256 newTokenId = _getNextTokenId(); uint256 newBblockId = _getNextBblockId(); goodEvilMapping[newTokenId] = string(abi.encodePacked("bblockg", uint2str(newBblockId), ".json")); idMappings[newTokenId] = newBblockId; _mint(_to, newTokenId); _incrementTokenId(); _incrementBblockId(); } function factoryMintMintPass(address _to) public { require(factoryAddress == _msgSender(), "Ownable: caller is not the factory!"); uint256 newTokenId = _getNextTokenId(); uint256 newMintPassId = _getNextMintPassId(); goodEvilMapping[newTokenId] = string(abi.encodePacked("mintpass", uint2str(newMintPassId), ".json")); idMappings[newTokenId] = newMintPassId; _mint(_to, newTokenId); _incrementTokenId(); _incrementMintPassId(); } function exchangeMintPassForTess(uint256 _tokenId) public { require(mintPassMintingEnabled, "Minting is not unlocked yet"); require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner"); uint256 mintPassId = idMappings[_tokenId]; require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("mintpass", uint2str(mintPassId), ".json")), "Token is not Mintpass"); uint256 newTokenId = _getNextTokenId(); uint256 newTessId = _getNextTessId(); goodEvilMapping[newTokenId] = string(abi.encodePacked("tessg", uint2str(newTessId), ".json")); idMappings[newTokenId] = newTessId; _burn(_tokenId); _mint(_msgSender(), newTokenId); _incrementTokenId(); _incrementTessId(); } function exchangeMintPassForRoos(uint256 _tokenId) public { require(mintPassMintingEnabled, "Minting is not unlocked yet"); require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner"); uint256 mintPassId = idMappings[_tokenId]; require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("mintpass", uint2str(mintPassId), ".json")), "Token is not Mintpass"); uint256 newTokenId = _getNextTokenId(); uint256 newRoosId = _getNextRoosId(); goodEvilMapping[newTokenId] = string(abi.encodePacked("rooseveltg", uint2str(newRoosId), ".json")); idMappings[newTokenId] = newRoosId; _burn(_tokenId); _mint(_msgSender(), newTokenId); _incrementTokenId(); _incrementRoosId(); } function convertTessToEvil(uint256 _tokenId) public { require(tessToEvil, "Not available at this time"); require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner"); uint256 tessId = idMappings[_tokenId]; require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("tessg", uint2str(tessId), ".json")), "Token is already evil or is not tess"); uint256 newTokenId = _getNextTokenId(); goodEvilMapping[newTokenId] = string(abi.encodePacked("tesse", uint2str(tessId), ".json")); idMappings[newTokenId] = tessId; _burn(_tokenId); _mint(_msgSender(), newTokenId); _incrementTokenId(); } function convertRoosToEvil(uint256 _tokenId) public { require(roosToEvil, "Not available at this time"); require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner"); uint256 roosId = idMappings[_tokenId]; require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("rooseveltg", uint2str(roosId), ".json")), "Token is already evil or is not Roosevelt"); uint256 newTokenId = _getNextTokenId(); goodEvilMapping[newTokenId] = string(abi.encodePacked("roosevelte", uint2str(roosId), ".json")); idMappings[newTokenId] = roosId; _burn(_tokenId); _mint(_msgSender(), newTokenId); _incrementTokenId(); } function convertBblockToEvil(uint256 _tokenId) public { require(bblockToEvil, "Not available at this time"); require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner"); uint256 bblockId = idMappings[_tokenId]; require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("bblockg", uint2str(bblockId), ".json")), "Token is already evil or is not bblock"); uint256 newTokenId = _getNextTokenId(); goodEvilMapping[newTokenId] = string(abi.encodePacked("bblocke", uint2str(bblockId), ".json")); idMappings[newTokenId] = bblockId; _burn(_tokenId); _mint(_msgSender(), newTokenId); _incrementTokenId(); } function convertTessToGood(uint256 _tokenId) public { require(tessToGood, "Not available at this time"); require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner"); uint256 tessId = idMappings[_tokenId]; require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("tesse", uint2str(tessId), ".json")), "Token is already good or is not tess"); uint256 newTokenId = _getNextTokenId(); goodEvilMapping[newTokenId] = string(abi.encodePacked("tessg", uint2str(tessId), ".json")); idMappings[newTokenId] = tessId; _burn(_tokenId); _mint(_msgSender(), newTokenId); _incrementTokenId(); } function convertRoosToGood(uint256 _tokenId) public { require(roosToGood, "Not available at this time"); require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner"); uint256 roosId = idMappings[_tokenId]; require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("roosevelte", uint2str(roosId), ".json")), "Token is already good or is not Roosevelt"); uint256 newTokenId = _getNextTokenId(); goodEvilMapping[newTokenId] = string(abi.encodePacked("rooseveltg", uint2str(roosId), ".json")); idMappings[newTokenId] = roosId; _burn(_tokenId); _mint(_msgSender(), newTokenId); _incrementTokenId(); } function convertBblockToGood(uint256 _tokenId) public { require(bblockToGood, "Not available at this time"); require(ownerOf(_tokenId) == _msgSender(), "Sender is not token owner"); uint256 bblockId = idMappings[_tokenId]; require(keccak256(bytes(goodEvilMapping[_tokenId])) == keccak256(abi.encodePacked("bblocke", uint2str(bblockId), ".json")), "Token is already evil or is not bblock"); uint256 newTokenId = _getNextTokenId(); goodEvilMapping[newTokenId] = string(abi.encodePacked("bblockg", uint2str(bblockId), ".json")); idMappings[newTokenId] = bblockId; _burn(_tokenId); _mint(_msgSender(), 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); } function _getNextBblockId() private view returns (uint256) { return _currentBblockId.add(1); } function _getNextMintPassId() private view returns (uint256) { return _currentMintPassId.add(1); } function _getNextTessId() private view returns (uint256) { return _currentTessId.add(1); } function _getNextRoosId() private view returns (uint256) { return _currentRoosId.add(1); } /** * @dev increments the value of _currentTokenId */ function _incrementTokenId() private { _currentTokenId++; } function _incrementBblockId() private { _currentBblockId++; } function _incrementMintPassId() private { _currentMintPassId++; } function _incrementTessId() private { _currentTessId++; } function _incrementRoosId() private { _currentRoosId++; } function baseTokenURI() virtual public pure returns (string memory); function tokenURI(uint256 _tokenId) override public view returns (string memory) { return string(abi.encodePacked(baseTokenURI(), goodEvilMapping[_tokenId])); } /** * 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.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; 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; } } }
{ "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":"checkWhitelsitaddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_toAddress","type":"address"}],"name":"mintBblock","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_toAddress","type":"address"}],"name":"mintBblockPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_toAddress","type":"address"}],"name":"mintPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":[],"name":"presale_bblock_minting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_toAddress","type":"address"}],"name":"privateMintBblock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_toAddress","type":"address"}],"name":"privateMintMintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"public_bblock_minting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_pass_minting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"setBblockPresaleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"setBblockPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"setPassPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"setWhitelistBblockMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setWhitelistCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"setWhitelistMintPassMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isOpened","type":"bool"}],"name":"setWhitelistOpened","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addy","type":"address"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistBblockMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_toAddress","type":"address"}],"name":"whitelistMintBblock","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_toAddress","type":"address"}],"name":"whitelistMintPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintPassMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405162001b3a38038062001b3a833981016040819052610031916100d7565b61003a33610087565b61138860025566f5232269808000600355600180546001600160a01b0319166001600160a01b03929092169190911790556004805462ff00ff191690556103e86005556000600655610107565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100e957600080fd5b81516001600160a01b038116811461010057600080fd5b9392505050565b611a2380620001176000396000f3fe6080604052600436106101f95760003560e01c80639b19251a1161010d578063de86f8de116100a0578063f2fde38b1161006f578063f2fde38b146105b5578063f5414c1b146105d5578063f5c6a32f146105e8578063f634d51914610608578063fb26a0c91461061e57600080fd5b8063de86f8de1461053b578063e7ffc16f14610555578063ea835a4d14610575578063f09d116e1461059557600080fd5b8063c410a95d116100dc578063c410a95d146104ca578063cdc24e53146104e4578063d4475adf14610503578063dcad2ae81461051657600080fd5b80639b19251a146104475780639f099f7114610477578063a20e0bca14610497578063af3dd639146104b757600080fd5b80635e79873d1161019057806387b7dcd31161015f57806387b7dcd3146103ab5780638d560eb9146103ca5780638da5cb5b146103ea57806395d89b41146104085780639a834cac1461043457600080fd5b80635e79873d1461034d57806362a32a3a1461036d5780636817c76c14610380578063715018a61461039657600080fd5b80633eb967aa116101cc5780633eb967aa146102a557806341566585146102d5578063597cccd1146102f55780635bf8633a1461031557600080fd5b806302018c55146101fe57806306fdde031461022057806332cb6b0c1461026c5780633ccfd60b14610290575b600080fd5b34801561020a57600080fd5b5061021e610219366004611755565b610634565b005b34801561022c57600080fd5b50604080518082019091526011815270213937b5b2902137bcbd1036b4b73a32b960791b60208201525b6040516102639190611777565b60405180910390f35b34801561027857600080fd5b5061028260025481565b604051908152602001610263565b34801561029c57600080fd5b5061021e610681565b3480156102b157600080fd5b506004546102c59062010000900460ff1681565b6040519015158152602001610263565b3480156102e157600080fd5b5061021e6102f03660046117e8565b6106f5565b34801561030157600080fd5b5061021e610310366004611755565b6107d4565b34801561032157600080fd5b50600154610335906001600160a01b031681565b6040516001600160a01b039091168152602001610263565b34801561035957600080fd5b5061021e610368366004611755565b61081a565b61021e61037b366004611803565b610857565b34801561038c57600080fd5b5061028260035481565b3480156103a257600080fd5b5061021e610a66565b3480156103b757600080fd5b506004546102c590610100900460ff1681565b3480156103d657600080fd5b5061021e6103e5366004611755565b610a9c565b3480156103f657600080fd5b506000546001600160a01b0316610335565b34801561041457600080fd5b5060408051808201909152600381526221212d60e91b6020820152610256565b61021e610442366004611803565b610ae0565b34801561045357600080fd5b506102c56104623660046117e8565b60076020526000908152604090205460ff1681565b34801561048357600080fd5b5061021e610492366004611803565b610cd9565b3480156104a357600080fd5b5061021e6104b236600461182f565b610e2a565b61021e6104c5366004611803565b610e59565b3480156104d657600080fd5b506004546102c59060ff1681565b3480156104f057600080fd5b506008546102c590610100900460ff1681565b61021e610511366004611803565b611028565b34801561052257600080fd5b503360009081526007602052604090205460ff166102c5565b34801561054757600080fd5b506008546102c59060ff1681565b34801561056157600080fd5b5061021e610570366004611755565b611256565b34801561058157600080fd5b5061021e610590366004611755565b61129c565b3480156105a157600080fd5b506008546102c59062010000900460ff1681565b3480156105c157600080fd5b5061021e6105d03660046117e8565b6112d9565b61021e6105e3366004611803565b611374565b3480156105f457600080fd5b5061021e610603366004611803565b6115a1565b34801561061457600080fd5b5061028260055481565b34801561062a57600080fd5b5061028260065481565b6000546001600160a01b031633146106675760405162461bcd60e51b815260040161065e90611848565b60405180910390fd5b600880549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146106ab5760405162461bcd60e51b815260040161065e90611848565b6040514790733b6abe1cf8a608632228dfc7395591020d47474d90819083156108fc029084906000818181858888f193505050501580156106f0573d6000803e3d6000fd5b505050565b60085460ff166107475760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374696e67206861736e277420737461727465642079657400604482015260640161065e565b600554600654610758906001611893565b111561079b5760405162461bcd60e51b815260206004820152601260248201527157686974656c6973742069732066756c6c2160701b604482015260640161065e565b6001600160a01b0381166000908152600760205260408120805460ff1916600117905560068054916107cc836118ab565b919050555050565b6000546001600160a01b031633146107fe5760405162461bcd60e51b815260040161065e90611848565b60048054911515620100000262ff000019909216919091179055565b6000546001600160a01b031633146108445760405162461bcd60e51b815260040161065e90611848565b6008805460ff1916911515919091179055565b600454610100900460ff166108b85760405162461bcd60e51b815260206004820152602160248201527f50726573616c65206d696e74696e672069736e277420616c6c6f7765642079656044820152601d60fa1b606482015260840161065e565b60035434906108c790846116f2565b11156108e55760405162461bcd60e51b815260040161065e906118c6565b60038211156109365760405162461bcd60e51b815260206004820152601960248201527f546f6f206d616e79206d696e747321204d617820697320332e00000000000000604482015260640161065e565b6001546040805163cdc0027760e01b815290516001600160a01b0390921691600091839163cdc0027791600480820192602092909190829003018186803b15801561098057600080fd5b505afa158015610994573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b891906118fd565b6002549091506109c88583611893565b11156109e65760405162461bcd60e51b815260040161065e90611916565b60005b84811015610a5f57604051630370abdd60e01b81526001600160a01b038581166004830152841690630370abdd90602401600060405180830381600087803b158015610a3457600080fd5b505af1158015610a48573d6000803e3d6000fd5b505050508080610a57906118ab565b9150506109e9565b5050505050565b6000546001600160a01b03163314610a905760405162461bcd60e51b815260040161065e90611848565b610a9a6000611705565b565b6000546001600160a01b03163314610ac65760405162461bcd60e51b815260040161065e90611848565b600480549115156101000261ff0019909216919091179055565b60045460ff16610b325760405162461bcd60e51b815260206004820181905260248201527f5075626c6963206d696e74696e672069736e277420616c6c6f77656420796574604482015260640161065e565b6003543490610b4190846116f2565b1115610b5f5760405162461bcd60e51b815260040161065e906118c6565b6006821115610bb05760405162461bcd60e51b815260206004820152601960248201527f546f6f206d616e79206d696e747321204d617820697320362e00000000000000604482015260640161065e565b6001546040805163cdc0027760e01b815290516001600160a01b0390921691600091839163cdc0027791600480820192602092909190829003018186803b158015610bfa57600080fd5b505afa158015610c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3291906118fd565b600254909150610c428583611893565b1115610c605760405162461bcd60e51b815260040161065e90611916565b60005b84811015610a5f57604051630370abdd60e01b81526001600160a01b038581166004830152841690630370abdd90602401600060405180830381600087803b158015610cae57600080fd5b505af1158015610cc2573d6000803e3d6000fd5b505050508080610cd1906118ab565b915050610c63565b6000546001600160a01b03163314610d035760405162461bcd60e51b815260040161065e90611848565b6001546040805163cdc0027760e01b815290516001600160a01b0390921691600091839163cdc0027791600480820192602092909190829003018186803b158015610d4d57600080fd5b505afa158015610d61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8591906118fd565b905060fa610d938583611893565b1115610db15760405162461bcd60e51b815260040161065e9061194b565b60005b84811015610a5f57604051630370abdd60e01b81526001600160a01b038581166004830152841690630370abdd90602401600060405180830381600087803b158015610dff57600080fd5b505af1158015610e13573d6000803e3d6000fd5b505050508080610e22906118ab565b915050610db4565b6000546001600160a01b03163314610e545760405162461bcd60e51b815260040161065e90611848565b600555565b60045462010000900460ff16610eb15760405162461bcd60e51b815260206004820181905260248201527f5075626c6963206d696e74696e672069736e277420616c6c6f77656420796574604482015260640161065e565b6003543490610ec090846116f2565b1115610ede5760405162461bcd60e51b815260040161065e906118c6565b6005821115610eff5760405162461bcd60e51b815260040161065e90611997565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab49591600480820192602092909190829003018186803b158015610f4957600080fd5b505afa158015610f5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8191906118fd565b600254909150610f918583611893565b1115610faf5760405162461bcd60e51b815260040161065e90611916565b60005b84811015610a5f57604051632b9a721760e01b81526001600160a01b038581166004830152841690632b9a721790602401600060405180830381600087803b158015610ffd57600080fd5b505af1158015611011573d6000803e3d6000fd5b505050508080611020906118ab565b915050610fb2565b60085462010000900460ff166110805760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e67206861736e2774207374617274656420796574000000000000604482015260640161065e565b3360009081526007602052604090205460ff166110df5760405162461bcd60e51b815260206004820152601a60248201527f41646472657373206973206e6f742077686974656c6973746564000000000000604482015260640161065e565b60035434906110ee90846116f2565b111561110c5760405162461bcd60e51b815260040161065e906118c6565b600582111561112d5760405162461bcd60e51b815260040161065e90611997565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab49591600480820192602092909190829003018186803b15801561117757600080fd5b505afa15801561118b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111af91906118fd565b6002549091506111bf8583611893565b11156111dd5760405162461bcd60e51b815260040161065e90611916565b60005b84811015610a5f57604051632b9a721760e01b81526001600160a01b038581166004830152841690632b9a721790602401600060405180830381600087803b15801561122b57600080fd5b505af115801561123f573d6000803e3d6000fd5b50505050808061124e906118ab565b9150506111e0565b6000546001600160a01b031633146112805760405162461bcd60e51b815260040161065e90611848565b60088054911515620100000262ff000019909216919091179055565b6000546001600160a01b031633146112c65760405162461bcd60e51b815260040161065e90611848565b6004805460ff1916911515919091179055565b6000546001600160a01b031633146113035760405162461bcd60e51b815260040161065e90611848565b6001600160a01b0381166113685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065e565b61137181611705565b50565b600854610100900460ff166113cb5760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e67206861736e2774207374617274656420796574000000000000604482015260640161065e565b3360009081526007602052604090205460ff1661142a5760405162461bcd60e51b815260206004820152601a60248201527f41646472657373206973206e6f742077686974656c6973746564000000000000604482015260640161065e565b600354349061143990846116f2565b11156114575760405162461bcd60e51b815260040161065e906118c6565b60058211156114785760405162461bcd60e51b815260040161065e90611997565b6001546040805163cdc0027760e01b815290516001600160a01b0390921691600091839163cdc0027791600480820192602092909190829003018186803b1580156114c257600080fd5b505afa1580156114d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fa91906118fd565b60025490915061150a8583611893565b11156115285760405162461bcd60e51b815260040161065e90611916565b60005b84811015610a5f57604051630370abdd60e01b81526001600160a01b038581166004830152841690630370abdd90602401600060405180830381600087803b15801561157657600080fd5b505af115801561158a573d6000803e3d6000fd5b505050508080611599906118ab565b91505061152b565b6000546001600160a01b031633146115cb5760405162461bcd60e51b815260040161065e90611848565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab49591600480820192602092909190829003018186803b15801561161557600080fd5b505afa158015611629573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164d91906118fd565b905060fa61165b8583611893565b11156116795760405162461bcd60e51b815260040161065e9061194b565b60005b84811015610a5f57604051632b9a721760e01b81526001600160a01b038581166004830152841690632b9a721790602401600060405180830381600087803b1580156116c757600080fd5b505af11580156116db573d6000803e3d6000fd5b5050505080806116ea906118ab565b91505061167c565b60006116fe82846119ce565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561176757600080fd5b813580151581146116fe57600080fd5b600060208083528351808285015260005b818110156117a457858101830151858201604001528201611788565b818111156117b6576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146117e357600080fd5b919050565b6000602082840312156117fa57600080fd5b6116fe826117cc565b6000806040838503121561181657600080fd5b82359150611826602084016117cc565b90509250929050565b60006020828403121561184157600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156118a6576118a661187d565b500190565b60006000198214156118bf576118bf61187d565b5060010190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60006020828403121561190f57600080fd5b5051919050565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6020808252602c908201527f507572636861736520776f756c642065786365656420616c6c6f63617465642060408201526b707269766174652073616c6560a01b606082015260800190565b60208082526019908201527f546f6f206d616e79206d696e747321204d617820697320352e00000000000000604082015260600190565b60008160001904831182151516156119e8576119e861187d565b50029056fea264697066735822122062bc0909b2a0650cedc79920252b2ab8ae2311b43330c09290fa5fad2ac47a2a64736f6c63430008090033000000000000000000000000f8ef0631aa8150aee8cfb4db3fa27e81d78df620
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80639b19251a1161010d578063de86f8de116100a0578063f2fde38b1161006f578063f2fde38b146105b5578063f5414c1b146105d5578063f5c6a32f146105e8578063f634d51914610608578063fb26a0c91461061e57600080fd5b8063de86f8de1461053b578063e7ffc16f14610555578063ea835a4d14610575578063f09d116e1461059557600080fd5b8063c410a95d116100dc578063c410a95d146104ca578063cdc24e53146104e4578063d4475adf14610503578063dcad2ae81461051657600080fd5b80639b19251a146104475780639f099f7114610477578063a20e0bca14610497578063af3dd639146104b757600080fd5b80635e79873d1161019057806387b7dcd31161015f57806387b7dcd3146103ab5780638d560eb9146103ca5780638da5cb5b146103ea57806395d89b41146104085780639a834cac1461043457600080fd5b80635e79873d1461034d57806362a32a3a1461036d5780636817c76c14610380578063715018a61461039657600080fd5b80633eb967aa116101cc5780633eb967aa146102a557806341566585146102d5578063597cccd1146102f55780635bf8633a1461031557600080fd5b806302018c55146101fe57806306fdde031461022057806332cb6b0c1461026c5780633ccfd60b14610290575b600080fd5b34801561020a57600080fd5b5061021e610219366004611755565b610634565b005b34801561022c57600080fd5b50604080518082019091526011815270213937b5b2902137bcbd1036b4b73a32b960791b60208201525b6040516102639190611777565b60405180910390f35b34801561027857600080fd5b5061028260025481565b604051908152602001610263565b34801561029c57600080fd5b5061021e610681565b3480156102b157600080fd5b506004546102c59062010000900460ff1681565b6040519015158152602001610263565b3480156102e157600080fd5b5061021e6102f03660046117e8565b6106f5565b34801561030157600080fd5b5061021e610310366004611755565b6107d4565b34801561032157600080fd5b50600154610335906001600160a01b031681565b6040516001600160a01b039091168152602001610263565b34801561035957600080fd5b5061021e610368366004611755565b61081a565b61021e61037b366004611803565b610857565b34801561038c57600080fd5b5061028260035481565b3480156103a257600080fd5b5061021e610a66565b3480156103b757600080fd5b506004546102c590610100900460ff1681565b3480156103d657600080fd5b5061021e6103e5366004611755565b610a9c565b3480156103f657600080fd5b506000546001600160a01b0316610335565b34801561041457600080fd5b5060408051808201909152600381526221212d60e91b6020820152610256565b61021e610442366004611803565b610ae0565b34801561045357600080fd5b506102c56104623660046117e8565b60076020526000908152604090205460ff1681565b34801561048357600080fd5b5061021e610492366004611803565b610cd9565b3480156104a357600080fd5b5061021e6104b236600461182f565b610e2a565b61021e6104c5366004611803565b610e59565b3480156104d657600080fd5b506004546102c59060ff1681565b3480156104f057600080fd5b506008546102c590610100900460ff1681565b61021e610511366004611803565b611028565b34801561052257600080fd5b503360009081526007602052604090205460ff166102c5565b34801561054757600080fd5b506008546102c59060ff1681565b34801561056157600080fd5b5061021e610570366004611755565b611256565b34801561058157600080fd5b5061021e610590366004611755565b61129c565b3480156105a157600080fd5b506008546102c59062010000900460ff1681565b3480156105c157600080fd5b5061021e6105d03660046117e8565b6112d9565b61021e6105e3366004611803565b611374565b3480156105f457600080fd5b5061021e610603366004611803565b6115a1565b34801561061457600080fd5b5061028260055481565b34801561062a57600080fd5b5061028260065481565b6000546001600160a01b031633146106675760405162461bcd60e51b815260040161065e90611848565b60405180910390fd5b600880549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146106ab5760405162461bcd60e51b815260040161065e90611848565b6040514790733b6abe1cf8a608632228dfc7395591020d47474d90819083156108fc029084906000818181858888f193505050501580156106f0573d6000803e3d6000fd5b505050565b60085460ff166107475760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374696e67206861736e277420737461727465642079657400604482015260640161065e565b600554600654610758906001611893565b111561079b5760405162461bcd60e51b815260206004820152601260248201527157686974656c6973742069732066756c6c2160701b604482015260640161065e565b6001600160a01b0381166000908152600760205260408120805460ff1916600117905560068054916107cc836118ab565b919050555050565b6000546001600160a01b031633146107fe5760405162461bcd60e51b815260040161065e90611848565b60048054911515620100000262ff000019909216919091179055565b6000546001600160a01b031633146108445760405162461bcd60e51b815260040161065e90611848565b6008805460ff1916911515919091179055565b600454610100900460ff166108b85760405162461bcd60e51b815260206004820152602160248201527f50726573616c65206d696e74696e672069736e277420616c6c6f7765642079656044820152601d60fa1b606482015260840161065e565b60035434906108c790846116f2565b11156108e55760405162461bcd60e51b815260040161065e906118c6565b60038211156109365760405162461bcd60e51b815260206004820152601960248201527f546f6f206d616e79206d696e747321204d617820697320332e00000000000000604482015260640161065e565b6001546040805163cdc0027760e01b815290516001600160a01b0390921691600091839163cdc0027791600480820192602092909190829003018186803b15801561098057600080fd5b505afa158015610994573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b891906118fd565b6002549091506109c88583611893565b11156109e65760405162461bcd60e51b815260040161065e90611916565b60005b84811015610a5f57604051630370abdd60e01b81526001600160a01b038581166004830152841690630370abdd90602401600060405180830381600087803b158015610a3457600080fd5b505af1158015610a48573d6000803e3d6000fd5b505050508080610a57906118ab565b9150506109e9565b5050505050565b6000546001600160a01b03163314610a905760405162461bcd60e51b815260040161065e90611848565b610a9a6000611705565b565b6000546001600160a01b03163314610ac65760405162461bcd60e51b815260040161065e90611848565b600480549115156101000261ff0019909216919091179055565b60045460ff16610b325760405162461bcd60e51b815260206004820181905260248201527f5075626c6963206d696e74696e672069736e277420616c6c6f77656420796574604482015260640161065e565b6003543490610b4190846116f2565b1115610b5f5760405162461bcd60e51b815260040161065e906118c6565b6006821115610bb05760405162461bcd60e51b815260206004820152601960248201527f546f6f206d616e79206d696e747321204d617820697320362e00000000000000604482015260640161065e565b6001546040805163cdc0027760e01b815290516001600160a01b0390921691600091839163cdc0027791600480820192602092909190829003018186803b158015610bfa57600080fd5b505afa158015610c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3291906118fd565b600254909150610c428583611893565b1115610c605760405162461bcd60e51b815260040161065e90611916565b60005b84811015610a5f57604051630370abdd60e01b81526001600160a01b038581166004830152841690630370abdd90602401600060405180830381600087803b158015610cae57600080fd5b505af1158015610cc2573d6000803e3d6000fd5b505050508080610cd1906118ab565b915050610c63565b6000546001600160a01b03163314610d035760405162461bcd60e51b815260040161065e90611848565b6001546040805163cdc0027760e01b815290516001600160a01b0390921691600091839163cdc0027791600480820192602092909190829003018186803b158015610d4d57600080fd5b505afa158015610d61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8591906118fd565b905060fa610d938583611893565b1115610db15760405162461bcd60e51b815260040161065e9061194b565b60005b84811015610a5f57604051630370abdd60e01b81526001600160a01b038581166004830152841690630370abdd90602401600060405180830381600087803b158015610dff57600080fd5b505af1158015610e13573d6000803e3d6000fd5b505050508080610e22906118ab565b915050610db4565b6000546001600160a01b03163314610e545760405162461bcd60e51b815260040161065e90611848565b600555565b60045462010000900460ff16610eb15760405162461bcd60e51b815260206004820181905260248201527f5075626c6963206d696e74696e672069736e277420616c6c6f77656420796574604482015260640161065e565b6003543490610ec090846116f2565b1115610ede5760405162461bcd60e51b815260040161065e906118c6565b6005821115610eff5760405162461bcd60e51b815260040161065e90611997565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab49591600480820192602092909190829003018186803b158015610f4957600080fd5b505afa158015610f5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8191906118fd565b600254909150610f918583611893565b1115610faf5760405162461bcd60e51b815260040161065e90611916565b60005b84811015610a5f57604051632b9a721760e01b81526001600160a01b038581166004830152841690632b9a721790602401600060405180830381600087803b158015610ffd57600080fd5b505af1158015611011573d6000803e3d6000fd5b505050508080611020906118ab565b915050610fb2565b60085462010000900460ff166110805760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e67206861736e2774207374617274656420796574000000000000604482015260640161065e565b3360009081526007602052604090205460ff166110df5760405162461bcd60e51b815260206004820152601a60248201527f41646472657373206973206e6f742077686974656c6973746564000000000000604482015260640161065e565b60035434906110ee90846116f2565b111561110c5760405162461bcd60e51b815260040161065e906118c6565b600582111561112d5760405162461bcd60e51b815260040161065e90611997565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab49591600480820192602092909190829003018186803b15801561117757600080fd5b505afa15801561118b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111af91906118fd565b6002549091506111bf8583611893565b11156111dd5760405162461bcd60e51b815260040161065e90611916565b60005b84811015610a5f57604051632b9a721760e01b81526001600160a01b038581166004830152841690632b9a721790602401600060405180830381600087803b15801561122b57600080fd5b505af115801561123f573d6000803e3d6000fd5b50505050808061124e906118ab565b9150506111e0565b6000546001600160a01b031633146112805760405162461bcd60e51b815260040161065e90611848565b60088054911515620100000262ff000019909216919091179055565b6000546001600160a01b031633146112c65760405162461bcd60e51b815260040161065e90611848565b6004805460ff1916911515919091179055565b6000546001600160a01b031633146113035760405162461bcd60e51b815260040161065e90611848565b6001600160a01b0381166113685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065e565b61137181611705565b50565b600854610100900460ff166113cb5760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e67206861736e2774207374617274656420796574000000000000604482015260640161065e565b3360009081526007602052604090205460ff1661142a5760405162461bcd60e51b815260206004820152601a60248201527f41646472657373206973206e6f742077686974656c6973746564000000000000604482015260640161065e565b600354349061143990846116f2565b11156114575760405162461bcd60e51b815260040161065e906118c6565b60058211156114785760405162461bcd60e51b815260040161065e90611997565b6001546040805163cdc0027760e01b815290516001600160a01b0390921691600091839163cdc0027791600480820192602092909190829003018186803b1580156114c257600080fd5b505afa1580156114d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fa91906118fd565b60025490915061150a8583611893565b11156115285760405162461bcd60e51b815260040161065e90611916565b60005b84811015610a5f57604051630370abdd60e01b81526001600160a01b038581166004830152841690630370abdd90602401600060405180830381600087803b15801561157657600080fd5b505af115801561158a573d6000803e3d6000fd5b505050508080611599906118ab565b91505061152b565b6000546001600160a01b031633146115cb5760405162461bcd60e51b815260040161065e90611848565b600154604080516346dab49560e01b815290516001600160a01b039092169160009183916346dab49591600480820192602092909190829003018186803b15801561161557600080fd5b505afa158015611629573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164d91906118fd565b905060fa61165b8583611893565b11156116795760405162461bcd60e51b815260040161065e9061194b565b60005b84811015610a5f57604051632b9a721760e01b81526001600160a01b038581166004830152841690632b9a721790602401600060405180830381600087803b1580156116c757600080fd5b505af11580156116db573d6000803e3d6000fd5b5050505080806116ea906118ab565b91505061167c565b60006116fe82846119ce565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561176757600080fd5b813580151581146116fe57600080fd5b600060208083528351808285015260005b818110156117a457858101830151858201604001528201611788565b818111156117b6576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146117e357600080fd5b919050565b6000602082840312156117fa57600080fd5b6116fe826117cc565b6000806040838503121561181657600080fd5b82359150611826602084016117cc565b90509250929050565b60006020828403121561184157600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156118a6576118a661187d565b500190565b60006000198214156118bf576118bf61187d565b5060010190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60006020828403121561190f57600080fd5b5051919050565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b6020808252602c908201527f507572636861736520776f756c642065786365656420616c6c6f63617465642060408201526b707269766174652073616c6560a01b606082015260800190565b60208082526019908201527f546f6f206d616e79206d696e747321204d617820697320352e00000000000000604082015260600190565b60008160001904831182151516156119e8576119e861187d565b50029056fea264697066735822122062bc0909b2a0650cedc79920252b2ab8ae2311b43330c09290fa5fad2ac47a2a64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f8ef0631aa8150aee8cfb4db3fa27e81d78df620
-----Decoded View---------------
Arg [0] : _nftAddress (address): 0xf8Ef0631aA8150aEE8cFb4Db3Fa27e81D78df620
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f8ef0631aa8150aee8cfb4db3fa27e81d78df620
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.