ERC-721
Overview
Max Total Supply
130 WT
Holders
77
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WagmiTable
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@1001-digital/erc721-extensions/contracts/WithAdditionalMints.sol"; import "@1001-digital/erc721-extensions/contracts/WithFreezableMetadata.sol"; import "@1001-digital/erc721-extensions/contracts/WithSaleStart.sol"; import "@1001-digital/erc721-extensions/contracts/WithTokenPrices.sol"; import "@1001-digital/erc721-extensions/contracts/WithWithdrawals.sol"; // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– // // // // __ __ ______ ____ ______ ______ ______ ____ __ ____ // // /\ \ __/\ \/\ _ \/\ _`\ /'\_/`\/\__ _\ /\__ _/\ _ \/\ _`\ /\ \ /\ _`\ // // \ \ \/\ \ \ \ \ \L\ \ \ \L\_\/\ \/_/\ \/ \/_/\ \\ \ \L\ \ \ \L\ \ \ \ \ \ \L\_\ // // \ \ \ \ \ \ \ \ __ \ \ \L_L\ \ \__\ \ \ \ \ \ \ \\ \ __ \ \ _ <\ \ \ _\ \ _\L // // \ \ \_/ \_\ \ \ \/\ \ \ \/, \ \ \_/\ \ \_\ \__ \ \ \\ \ \/\ \ \ \L\ \ \ \L\ \ \ \L\ \ // // \ `\___x___/\ \_\ \_\ \____/\ \_\\ \_\/\_____\ \ \_\\ \_\ \_\ \____/\ \____/\ \____/ // // '\/__//__/ \/_/\/_/\/___/ \/_/ \/_/\/_____/ \/_/ \/_/\/_/\/___/ \/___/ \/___/ // // // // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– // // trust the process · by aaraalto.eth // // ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– // contract WagmiTable is WithAdditionalMints, WithFreezableMetadata, WithTokenPrices, WithWithdrawals, WithSaleStart { /// Initialize the WagmiTable Contract /// @param _initialSupply The initial supply of the collection /// @param _defaultPrice The default price for all tokens /// @param _cid The content identifyer for the collection /// @param _time The sale start time constructor( uint256 _initialSupply, uint256 _defaultPrice, string memory _cid, uint256 _time ) ERC721("WagmiTable", "WT") WithSaleStart(_time) WithIPFSMetaData(_cid) WithTokenPrices(_defaultPrice) WithLimitedSupply(_initialSupply) { // Mint #0 to Aaron _mint(0x03C19A8432904f450cc90ba1892329deb43C8077, 0); // Mint #17 to Sandy _mint(0xE4C107c27AE5869E323289c04aE55827a4EaA7d3, 17); // Gift #69 to Jack Butcher / VV _mint(0xc8f8e2F59Dd95fF67c3d39109ecA2e2A017D4c8a, 69); // Gift #72 to Larva Labs _mint(0xC352B534e8b987e036A93539Fd6897F53488e56a, 72); // Gift #129 to the Scapoors _mint(0xFF9774E77966a96b920791968a41aa840DEdE507, 129); } /// Mint a new WAGMI TABLE token /// @param _tokenId The token to mint /// @param _to The address of the recipient of the token function mint(uint256 _tokenId, address _to) external payable withinSupply(_tokenId) meetsPrice(_tokenId) afterSaleStart { _mint(_to, _tokenId); } /// Add new token supply, but only if the collection isn't frozen yet /// @param _cid The new IFPS hash (content identifyer) of the collection /// @param _count The number of tokens to create function addTokens(string memory _cid, uint256 _count) public override onlyOwner unfrozen { super.addTokens(_cid, _count); } /// Update the IPFS hash of the collection /// @param _cid The new IFPS hash (content identifyer) of the collection function setCID(string memory _cid) external onlyOwner unfrozen { _setCID(_cid); } /// Check whether we are exceeding the token supply. /// @param _tokenId The tokenID to check against the supply. modifier withinSupply (uint256 _tokenId) { require(_tokenId < totalSupply(), "Token not available to mint"); _; } } // a gift to aaraalto.eth from jalil.eth
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "./WithLimitedSupply.sol"; import "./WithIPFSMetaData.sol"; /// @author 1001.digital /// @title A token tracker that increments token IDs on each new mint. abstract contract WithAdditionalMints is WithLimitedSupply, WithIPFSMetaData, Ownable { /// @param _cid The new collection CID which holds the metadata for the updated collection. /// @dev Add a new token to the supply function addToken(string memory _cid) public onlyOwner { addTokens(_cid, 1); } /// @param _cid The new collection CID which holds the metadata for the updated collection. /// @param _count The count of additional tokens. /// @dev Add a new token to the supply function addTokens(string memory _cid, uint256 _count) public virtual onlyOwner { _setCID(_cid); _setSupply(totalSupply() + _count); } /// @param _cid The new collection CID which holds the metadata for the updated collection. /// @param _to The owner of the new token. /// @dev Add and mint a new token function mintAdditionalToken(string memory _cid, address _to) public onlyOwner { addToken(_cid); _safeMint(_to, nextToken()); } /// @param _cid The new collection CID which holds the metadata for the updated collection. /// @param _count The number of tokens to mint. /// @param _to The owner of the new tokens. /// @dev Add and mint new tokens function mintAdditionalTokens(string memory _cid, uint256 _count, address _to) public onlyOwner { addTokens(_cid, _count); for (uint256 index = 0; index < _count; index++) { _safeMint(_to, nextToken()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; /// @author 1001.digital /// @title A small helper to handle freezing of metadata contract WithFreezableMetadata is Ownable { // Whether metadata is frozen bool public frozen; /// @dev Freeze the metadata function freeze() external onlyOwner { frozen = true; } /// @dev Whether metadata is unfrozen modifier unfrozen() { require(! frozen, "Metadata already frozen"); _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; /// @author 1001.digital /// @title An extension that enables the contract owner to set and update the date of a public sale. abstract contract WithSaleStart is Ownable { // Stores the sale start time uint256 private _saleStart; /// @dev Emitted when the sale start date changes event SaleStartChanged(uint256 time); /// @dev Initialize with a given timestamp when to start the sale constructor (uint256 time) { _saleStart = time; } /// @dev Sets the start of the sale. Only owners can do so. function setSaleStart(uint256 time) public virtual onlyOwner beforeSaleStart { _saleStart = time; emit SaleStartChanged(time); } /// @dev Returns the start of the sale in seconds since the Unix Epoch function saleStart() public view virtual returns (uint256) { return _saleStart; } /// @dev Returns true if the sale has started function saleStarted() public view virtual returns (bool) { return _saleStart <= block.timestamp; } /// @dev Modifier to make a function callable only after sale start modifier afterSaleStart() { require(saleStarted(), "Sale hasn't started yet"); _; } /// @dev Modifier to make a function callable only before sale start modifier beforeSaleStart() { require(! saleStarted(), "Sale has already started"); _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; /// @author 1001.digital /// @title Enables to sell tokens at default and custom prices. contract WithTokenPrices is Ownable { // The default price for the tokens uint256 public defaultPrice; // Each tokenId has a price mapping(uint256 => uint256) public priceForToken; /// @param _defaultPrice The default price for tokens within the collection /// @dev Create the WithTokenPrices contract constructor(uint256 _defaultPrice) { defaultPrice = _defaultPrice; } /// @param _tokenId The token to update the price for /// @param _price The price to use for the token /// @dev Set a custom price for a token function setTokenPrice(uint256 _tokenId, uint256 _price) external onlyOwner { priceForToken[_tokenId] = _price; } /// @param _tokenIds The tokens to update the price for /// @param _price The price to use for the tokens /// @dev Set a custom price for multiple tokens function setTokenPrices(uint256[] memory _tokenIds, uint256 _price) external onlyOwner { for (uint256 index = 0; index < _tokenIds.length; index++) { priceForToken[_tokenIds[index]] = _price; } } /// @param _tokenId The token to check the price for /// @dev Ensure the sent value meets the price for the token modifier meetsPrice (uint256 _tokenId) { uint256 tokenPrice = priceForToken[_tokenId] > 0 ? priceForToken[_tokenId] : defaultPrice; require(msg.value >= tokenPrice, "Pay up, friend"); _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; /// @author 1001.digital /// @title An extension that enables the contract owner to withdraw funds stored in the contract. abstract contract WithWithdrawals is Ownable { /// Withdraws the ETH stored in the contract. /// @dev only the owner can withdraw funds. function withdraw() onlyOwner public { payable(owner()).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Counters.sol"; /// @author 1001.digital /// @title A token tracker that limits the token supply and increments token IDs on each new mint. abstract contract WithLimitedSupply { using Counters for Counters.Counter; /// @dev Emitted when the supply of this collection changes event SupplyChanged(uint256 indexed supply); // Keeps track of how many we have minted Counters.Counter private _tokenCount; /// @dev The maximum count of tokens this token tracker will hold. uint256 private _totalSupply; /// Instanciate the contract /// @param totalSupply_ how many tokens this collection should hold constructor (uint256 totalSupply_) { _totalSupply = totalSupply_; } /// @dev Get the max Supply /// @return the maximum token count function totalSupply() public view returns (uint256) { return _totalSupply; } /// @dev Get the current token count /// @return the created token count function tokenCount() public view returns (uint256) { return _tokenCount.current(); } /// @dev Check whether tokens are still available /// @return the available token count function availableTokenCount() public view returns (uint256) { return totalSupply() - tokenCount(); } /// @dev Increment the token count and fetch the latest count /// @return the next token id function nextToken() internal virtual returns (uint256) { uint256 token = _tokenCount.current(); _tokenCount.increment(); return token; } /// @dev Check whether another token is still available modifier ensureAvailability() { require(availableTokenCount() > 0, "No more tokens available"); _; } /// @param amount Check whether number of tokens are still available /// @dev Check whether tokens are still available modifier ensureAvailabilityFor(uint256 amount) { require(availableTokenCount() >= amount, "Requested number of tokens not available"); _; } /// Update the supply for the collection /// @param _supply the new token supply. /// @dev create additional token supply for this collection. function _setSupply(uint256 _supply) internal virtual { require(_supply > tokenCount(), "Can't set the supply to less than the current token count"); _totalSupply = _supply; emit SupplyChanged(totalSupply()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; /// @author 1001.digital /// @title Handle NFT Metadata stored on IPFS abstract contract WithIPFSMetaData is ERC721 { using Strings for uint256; /// @dev Emitted when the content identifyer changes event MetadataURIChanged(string indexed baseURI); /// @dev The content identifier of the folder containing all JSON files. string public cid; /// Instantiate the contract /// @param _cid the content identifier for the token metadata. /// @dev be careful & make sure your metadata is correct - you can't change this constructor (string memory _cid) { _setCID(_cid); } /// Get the tokenURI for a tokenID /// @param tokenId the token id for which to get the matadata URL /// @dev links to the metadata json file on IPFS. /// @return the URL to the token metadata file function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); // We don't check whether the _baseURI is set like in the OpenZeppelin implementation // as we're deploying the contract with the CID. return string(abi.encodePacked( _baseURI(), "/", tokenId.toString(), "/metadata.json" )); } /// Configure the baseURI for the tokenURI method. /// @dev override the standard OpenZeppelin implementation /// @return the IPFS base uri function _baseURI() internal view virtual override returns (string memory) { return string(abi.encodePacked("ipfs://", cid)); } /// Set the content identifier for this collection. /// @param _cid the new content identifier /// @dev update the content identifier for this nft. function _setCID(string memory _cid) internal virtual { cid = _cid; emit MetadataURIChanged(_baseURI()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: 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 { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev 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 // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"uint256","name":"_defaultPrice","type":"uint256"},{"internalType":"string","name":"_cid","type":"string"},{"internalType":"uint256","name":"_time","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"baseURI","type":"string"}],"name":"MetadataURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"SaleStartChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"SupplyChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"string","name":"_cid","type":"string"}],"name":"addToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_cid","type":"string"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"addTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cid","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_cid","type":"string"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintAdditionalToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_cid","type":"string"},{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintAdditionalTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"priceForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_cid","type":"string"}],"name":"setCID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setTokenPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002b6238038062002b62833981016040819052620000349162000451565b8083836040518060400160405280600a8152602001695761676d695461626c6560b01b8152506040518060400160405280600281526020016115d560f21b815250888060018190555050816002908051906020019062000096929190620003ab565b508051620000ac906003906020840190620003ab565b505050620000c0816200018160201b60201c565b50620000cc33620001e3565b600a55600c55620000f37303c19a8432904f450cc90ba1892329deb43c8077600062000235565b6200011473e4c107c27ae5869e323289c04ae55827a4eaa7d3601162000235565b6200013573c8f8e2f59dd95ff67c3d39109eca2e2a017d4c8a604562000235565b6200015673c352b534e8b987e036a93539fd6897f53488e56a604862000235565b6200017773ff9774e77966a96b920791968a41aa840dede507608162000235565b50505050620006a5565b805162000196906008906020840190620003ab565b50620001a162000381565b604051620001b0919062000521565b604051908190038120907f7d54a9964a6e80cd8847f2d2f9089adad79dfe2945af7128f5b673e67c319d2390600090a250565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002915760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600460205260409020546001600160a01b031615620002f85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000288565b6001600160a01b038216600090815260056020526040812080546001929062000323908490620005fa565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606060086040516020016200039791906200053f565b604051602081830303815290604052905090565b828054620003b99062000652565b90600052602060002090601f016020900481019282620003dd576000855562000428565b82601f10620003f857805160ff191683800117855562000428565b8280016001018555821562000428579182015b82811115620004285782518255916020019190600101906200040b565b50620004369291506200043a565b5090565b5b808211156200043657600081556001016200043b565b6000806000806080858703121562000467578384fd5b84516020860151604087015191955093506001600160401b03808211156200048d578384fd5b818701915087601f830112620004a1578384fd5b815181811115620004b657620004b66200068f565b604051601f8201601f19908116603f01168101908382118183101715620004e157620004e16200068f565b816040528281528a6020848701011115620004fa578687fd5b6200050d8360208301602088016200061f565b60609990990151979a969950505050505050565b60008251620005358184602087016200061f565b9190910192915050565b66697066733a2f2f60c81b81526000600781845483600182811c9150808316806200056b57607f831692505b60208084108214156200058c57634e487b7160e01b88526022600452602488fd5b818015620005a35760018114620005b957620005eb565b60ff1986168a890152848a0188019650620005eb565b60008b815260209020895b86811015620005e15781548c82018b0152908501908301620005c4565b505087858b010196505b50949998505050505050505050565b600082198211156200061a57634e487b7160e01b81526011600452602481fd5b500190565b60005b838110156200063c57818101518382015260200162000622565b838111156200064c576000848401525b50505050565b600181811c908216806200066757607f821691505b602082108114156200068957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6124ad80620006b56000396000f3fe60806040526004361061020f5760003560e01c806386dd83a311610118578063ab0bcc41116100a0578063e14ca3531161006f578063e14ca353146105ce578063e69e04b3146105e3578063e985e9c5146105f9578063eb685c4714610642578063f2fde38b1461066257600080fd5b8063ab0bcc4114610559578063b88d4fde1461056e578063c3d6ee7f1461058e578063c87b56dd146105ae57600080fd5b806395d89b41116100e757806395d89b41146104da5780639f181b5e146104ef578063a1e56fd914610504578063a22cb46514610524578063aa3ec0a91461054457600080fd5b806386dd83a3146104695780638ce26108146104895780638da5cb5b146104a957806394bf804d146104c757600080fd5b80633c5a159b1161019b5780635c474f9e1161016a5780635c474f9e146103e757806362a5af3b146103ff5780636352211e1461041457806370a0823114610434578063715018a61461045457600080fd5b80633c5a159b146103655780633ccfd60b1461039257806342842e0e146103a75780634adcfc27146103c757600080fd5b8063095ea7b3116101e2578063095ea7b3146102c457806318160ddd146102e657806323b872dd146103055780632bb0f76e146103255780632f181f541461034557600080fd5b806301ffc9a714610214578063054f7d9c1461024957806306fdde031461026a578063081812fc1461028c575b600080fd5b34801561022057600080fd5b5061023461022f366004611efa565b610682565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5060095461023490600160a01b900460ff1681565b34801561027657600080fd5b5061027f6106d4565b604051610240919061222a565b34801561029857600080fd5b506102ac6102a7366004612040565b610766565b6040516001600160a01b039091168152602001610240565b3480156102d057600080fd5b506102e46102df366004611e23565b610800565b005b3480156102f257600080fd5b506001545b604051908152602001610240565b34801561031157600080fd5b506102e4610320366004611d35565b610916565b34801561033157600080fd5b506102e4610340366004611e4c565b610947565b34801561035157600080fd5b506102e4610360366004612040565b6109cf565b34801561037157600080fd5b506102f7610380366004612040565b600b6020526000908152604090205481565b34801561039e57600080fd5b506102e4610a85565b3480156103b357600080fd5b506102e46103c2366004611d35565b610aeb565b3480156103d357600080fd5b506102e46103e2366004611f65565b610b06565b3480156103f357600080fd5b50600c54421015610234565b34801561040b57600080fd5b506102e4610b4e565b34801561042057600080fd5b506102ac61042f366004612040565b610b8d565b34801561044057600080fd5b506102f761044f366004611ce9565b610c04565b34801561046057600080fd5b506102e4610c8b565b34801561047557600080fd5b506102e4610484366004611fa8565b610cc1565b34801561049557600080fd5b506102e46104a4366004611f32565b610d49565b3480156104b557600080fd5b506009546001600160a01b03166102ac565b6102e46104d5366004612058565b610d7e565b3480156104e657600080fd5b5061027f610eaa565b3480156104fb57600080fd5b506000546102f7565b34801561051057600080fd5b506102e461051f366004611feb565b610ebe565b34801561053057600080fd5b506102e461053f366004611de9565b610f21565b34801561055057600080fd5b5061027f610f2c565b34801561056557600080fd5b50600c546102f7565b34801561057a57600080fd5b506102e4610589366004611d70565b610fba565b34801561059a57600080fd5b506102e46105a9366004611f32565b610fec565b3480156105ba57600080fd5b5061027f6105c9366004612040565b611073565b3480156105da57600080fd5b506102f761112a565b3480156105ef57600080fd5b506102f7600a5481565b34801561060557600080fd5b50610234610614366004611d03565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064e57600080fd5b506102e461065d36600461207a565b61113b565b34801561066e57600080fd5b506102e461067d366004611ce9565b611177565b60006001600160e01b031982166380ac58cd60e01b14806106b357506001600160e01b03198216635b5e139f60e01b145b806106ce57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106e3906123b5565b80601f016020809104026020016040519081016040528092919081815260200182805461070f906123b5565b801561075c5780601f106107315761010080835404028352916020019161075c565b820191906000526020600020905b81548152906001019060200180831161073f57829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166107e45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061080b82610b8d565b9050806001600160a01b0316836001600160a01b031614156108795760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107db565b336001600160a01b038216148061089557506108958133610614565b6109075760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107db565b610911838361120f565b505050565b610920338261127d565b61093c5760405162461bcd60e51b81526004016107db906122c4565b610911838383611374565b6009546001600160a01b031633146109715760405162461bcd60e51b81526004016107db9061228f565b60005b82518110156109115781600b60008584815181106109a257634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000208190555080806109c7906123f0565b915050610974565b6009546001600160a01b031633146109f95760405162461bcd60e51b81526004016107db9061228f565b600c544210610a4a5760405162461bcd60e51b815260206004820152601860248201527f53616c652068617320616c72656164792073746172746564000000000000000060448201526064016107db565b600c8190556040518181527fb751cc79e5d90c9173e2971809c6658fcf527209d16860326bfe7779a9169f0b9060200160405180910390a150565b6009546001600160a01b03163314610aaf5760405162461bcd60e51b81526004016107db9061228f565b6009546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610ae8573d6000803e3d6000fd5b50565b61091183838360405180602001604052806000815250610fba565b6009546001600160a01b03163314610b305760405162461bcd60e51b81526004016107db9061228f565b610b3982610d49565b610b4a81610b45611514565b611535565b5050565b6009546001600160a01b03163314610b785760405162461bcd60e51b81526004016107db9061228f565b6009805460ff60a01b1916600160a01b179055565b6000818152600460205260408120546001600160a01b0316806106ce5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107db565b60006001600160a01b038216610c6f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107db565b506001600160a01b031660009081526005602052604090205490565b6009546001600160a01b03163314610cb55760405162461bcd60e51b81526004016107db9061228f565b610cbf600061154f565b565b6009546001600160a01b03163314610ceb5760405162461bcd60e51b81526004016107db9061228f565b600954600160a01b900460ff1615610d3f5760405162461bcd60e51b815260206004820152601760248201527626b2ba30b230ba309030b63932b0b23c90333937bd32b760491b60448201526064016107db565b610b4a82826115a1565b6009546001600160a01b03163314610d735760405162461bcd60e51b81526004016107db9061228f565b610ae8816001610cc1565b81610d8860015490565b8110610dd65760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e206e6f7420617661696c61626c6520746f206d696e74000000000060448201526064016107db565b6000838152600b6020526040812054849190610df457600a54610e04565b6000828152600b60205260409020545b905080341015610e475760405162461bcd60e51b815260206004820152600e60248201526d14185e481d5c0b08199c9a595b9960921b60448201526064016107db565b600c54421015610e995760405162461bcd60e51b815260206004820152601760248201527f53616c65206861736e277420737461727465642079657400000000000000000060448201526064016107db565b610ea384866115f0565b5050505050565b6060600380546106e3906123b5565b905090565b6009546001600160a01b03163314610ee85760405162461bcd60e51b81526004016107db9061228f565b610ef28383610cc1565b60005b82811015610f1b57610f0982610b45611514565b80610f13816123f0565b915050610ef5565b50505050565b610b4a338383611732565b60088054610f39906123b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610f65906123b5565b8015610fb25780601f10610f8757610100808354040283529160200191610fb2565b820191906000526020600020905b815481529060010190602001808311610f9557829003601f168201915b505050505081565b610fc4338361127d565b610fe05760405162461bcd60e51b81526004016107db906122c4565b610f1b84848484611801565b6009546001600160a01b031633146110165760405162461bcd60e51b81526004016107db9061228f565b600954600160a01b900460ff161561106a5760405162461bcd60e51b815260206004820152601760248201527626b2ba30b230ba309030b63932b0b23c90333937bd32b760491b60448201526064016107db565b610ae881611834565b6000818152600460205260409020546060906001600160a01b03166110f25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107db565b6110fa611890565b611103836118b8565b6040516020016111149291906120e3565b6040516020818303038152906040529050919050565b60008054600154610eb99190612372565b6009546001600160a01b031633146111655760405162461bcd60e51b81526004016107db9061228f565b6000918252600b602052604090912055565b6009546001600160a01b031633146111a15760405162461bcd60e51b81526004016107db9061228f565b6001600160a01b0381166112065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107db565b610ae88161154f565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061124482610b8d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b03166112f65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107db565b600061130183610b8d565b9050806001600160a01b0316846001600160a01b0316148061133c5750836001600160a01b031661133184610766565b6001600160a01b0316145b8061136c57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661138782610b8d565b6001600160a01b0316146113ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107db565b6001600160a01b0382166114515760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107db565b61145c60008261120f565b6001600160a01b0383166000908152600560205260408120805460019290611485908490612372565b90915550506001600160a01b03821660009081526005602052604081208054600192906114b3908490612346565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008061152060005490565b9050611530600080546001019055565b919050565b610b4a8282604051806020016040528060008152506119d2565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6009546001600160a01b031633146115cb5760405162461bcd60e51b81526004016107db9061228f565b6115d482611834565b610b4a816115e160015490565b6115eb9190612346565b611a05565b6001600160a01b0382166116465760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107db565b6000818152600460205260409020546001600160a01b0316156116ab5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107db565b6001600160a01b03821660009081526005602052604081208054600192906116d4908490612346565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156117945760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107db565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61180c848484611374565b61181884848484611aae565b610f1b5760405162461bcd60e51b81526004016107db9061223d565b8051611847906008906020840190611bbb565b50611850611890565b60405161185d91906120c7565b604051908190038120907f7d54a9964a6e80cd8847f2d2f9089adad79dfe2945af7128f5b673e67c319d2390600090a250565b606060086040516020016118a4919061213a565b604051602081830303815290604052905090565b6060816118dc5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190657806118f0816123f0565b91506118ff9050600a8361235e565b91506118e0565b60008167ffffffffffffffff81111561192f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611959576020820181803683370190505b5090505b841561136c5761196e600183612372565b915061197b600a8661240b565b611986906030612346565b60f81b8183815181106119a957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119cb600a8661235e565b945061195d565b6119dc83836115f0565b6119e96000848484611aae565b6109115760405162461bcd60e51b81526004016107db9061223d565b6000548111611a7c5760405162461bcd60e51b815260206004820152603960248201527f43616e2774207365742074686520737570706c7920746f206c6573732074686160448201527f6e207468652063757272656e7420746f6b656e20636f756e740000000000000060648201526084016107db565b6001819055806040517ff71f9c3841c0bab7774017ffe585aeab36b5438d148506067901d47c5fa6f7e990600090a250565b60006001600160a01b0384163b15611bb057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611af29033908990889088906004016121ed565b602060405180830381600087803b158015611b0c57600080fd5b505af1925050508015611b3c575060408051601f3d908101601f19168201909252611b3991810190611f16565b60015b611b96573d808015611b6a576040519150601f19603f3d011682016040523d82523d6000602084013e611b6f565b606091505b508051611b8e5760405162461bcd60e51b81526004016107db9061223d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061136c565b506001949350505050565b828054611bc7906123b5565b90600052602060002090601f016020900481019282611be95760008555611c2f565b82601f10611c0257805160ff1916838001178555611c2f565b82800160010185558215611c2f579182015b82811115611c2f578251825591602001919060010190611c14565b50611c3b929150611c3f565b5090565b5b80821115611c3b5760008155600101611c40565b600067ffffffffffffffff831115611c6e57611c6e61244b565b611c81601f8401601f1916602001612315565b9050828152838383011115611c9557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461153057600080fd5b600082601f830112611cd3578081fd5b611ce283833560208501611c54565b9392505050565b600060208284031215611cfa578081fd5b611ce282611cac565b60008060408385031215611d15578081fd5b611d1e83611cac565b9150611d2c60208401611cac565b90509250929050565b600080600060608486031215611d49578081fd5b611d5284611cac565b9250611d6060208501611cac565b9150604084013590509250925092565b60008060008060808587031215611d85578081fd5b611d8e85611cac565b9350611d9c60208601611cac565b925060408501359150606085013567ffffffffffffffff811115611dbe578182fd5b8501601f81018713611dce578182fd5b611ddd87823560208401611c54565b91505092959194509250565b60008060408385031215611dfb578182fd5b611e0483611cac565b915060208301358015158114611e18578182fd5b809150509250929050565b60008060408385031215611e35578182fd5b611e3e83611cac565b946020939093013593505050565b60008060408385031215611e5e578182fd5b823567ffffffffffffffff80821115611e75578384fd5b818501915085601f830112611e88578384fd5b8135602082821115611e9c57611e9c61244b565b8160051b9250611ead818401612315565b8281528181019085830185870184018b1015611ec7578889fd5b8896505b84871015611ee9578035835260019690960195918301918301611ecb565b509997909101359750505050505050565b600060208284031215611f0b578081fd5b8135611ce281612461565b600060208284031215611f27578081fd5b8151611ce281612461565b600060208284031215611f43578081fd5b813567ffffffffffffffff811115611f59578182fd5b61136c84828501611cc3565b60008060408385031215611f77578182fd5b823567ffffffffffffffff811115611f8d578283fd5b611f9985828601611cc3565b925050611d2c60208401611cac565b60008060408385031215611fba578182fd5b823567ffffffffffffffff811115611fd0578283fd5b611fdc85828601611cc3565b95602094909401359450505050565b600080600060608486031215611fff578081fd5b833567ffffffffffffffff811115612015578182fd5b61202186828701611cc3565b9350506020840135915061203760408501611cac565b90509250925092565b600060208284031215612051578081fd5b5035919050565b6000806040838503121561206a578182fd5b82359150611d2c60208401611cac565b6000806040838503121561208c578182fd5b50508035926020909101359150565b600081518084526120b3816020860160208601612389565b601f01601f19169290920160200192915050565b600082516120d9818460208701612389565b9190910192915050565b600083516120f5818460208801612389565b602f60f81b9083019081528351612113816001840160208801612389565b6d17b6b2ba30b230ba30973539b7b760911b60019290910191820152600f01949350505050565b66697066733a2f2f60c81b81526000600781845483600182811c91508083168061216557607f831692505b602080841082141561218557634e487b7160e01b88526022600452602488fd5b81801561219957600181146121ae576121de565b60ff1986168a890152848a01880196506121de565b60008b815260209020895b868110156121d45781548c82018b01529085019083016121b9565b505087858b010196505b50949998505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122209083018461209b565b9695505050505050565b602081526000611ce2602083018461209b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561233e5761233e61244b565b604052919050565b600082198211156123595761235961241f565b500190565b60008261236d5761236d612435565b500490565b6000828210156123845761238461241f565b500390565b60005b838110156123a457818101518382015260200161238c565b83811115610f1b5750506000910152565b600181811c908216806123c957607f821691505b602082108114156123ea57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124045761240461241f565b5060010190565b60008261241a5761241a612435565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ae857600080fdfea2646970667358221220d216c7e2fc0c5b24cede6904415a9964c3fe33c474322a900f4176af4a9a7a8e64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008200000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000061df4f60000000000000000000000000000000000000000000000000000000000000002e516d637a317957697a526e763753794a4e62677455434672366b6772476a6d384c6261345961667a43706d665776000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c806386dd83a311610118578063ab0bcc41116100a0578063e14ca3531161006f578063e14ca353146105ce578063e69e04b3146105e3578063e985e9c5146105f9578063eb685c4714610642578063f2fde38b1461066257600080fd5b8063ab0bcc4114610559578063b88d4fde1461056e578063c3d6ee7f1461058e578063c87b56dd146105ae57600080fd5b806395d89b41116100e757806395d89b41146104da5780639f181b5e146104ef578063a1e56fd914610504578063a22cb46514610524578063aa3ec0a91461054457600080fd5b806386dd83a3146104695780638ce26108146104895780638da5cb5b146104a957806394bf804d146104c757600080fd5b80633c5a159b1161019b5780635c474f9e1161016a5780635c474f9e146103e757806362a5af3b146103ff5780636352211e1461041457806370a0823114610434578063715018a61461045457600080fd5b80633c5a159b146103655780633ccfd60b1461039257806342842e0e146103a75780634adcfc27146103c757600080fd5b8063095ea7b3116101e2578063095ea7b3146102c457806318160ddd146102e657806323b872dd146103055780632bb0f76e146103255780632f181f541461034557600080fd5b806301ffc9a714610214578063054f7d9c1461024957806306fdde031461026a578063081812fc1461028c575b600080fd5b34801561022057600080fd5b5061023461022f366004611efa565b610682565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5060095461023490600160a01b900460ff1681565b34801561027657600080fd5b5061027f6106d4565b604051610240919061222a565b34801561029857600080fd5b506102ac6102a7366004612040565b610766565b6040516001600160a01b039091168152602001610240565b3480156102d057600080fd5b506102e46102df366004611e23565b610800565b005b3480156102f257600080fd5b506001545b604051908152602001610240565b34801561031157600080fd5b506102e4610320366004611d35565b610916565b34801561033157600080fd5b506102e4610340366004611e4c565b610947565b34801561035157600080fd5b506102e4610360366004612040565b6109cf565b34801561037157600080fd5b506102f7610380366004612040565b600b6020526000908152604090205481565b34801561039e57600080fd5b506102e4610a85565b3480156103b357600080fd5b506102e46103c2366004611d35565b610aeb565b3480156103d357600080fd5b506102e46103e2366004611f65565b610b06565b3480156103f357600080fd5b50600c54421015610234565b34801561040b57600080fd5b506102e4610b4e565b34801561042057600080fd5b506102ac61042f366004612040565b610b8d565b34801561044057600080fd5b506102f761044f366004611ce9565b610c04565b34801561046057600080fd5b506102e4610c8b565b34801561047557600080fd5b506102e4610484366004611fa8565b610cc1565b34801561049557600080fd5b506102e46104a4366004611f32565b610d49565b3480156104b557600080fd5b506009546001600160a01b03166102ac565b6102e46104d5366004612058565b610d7e565b3480156104e657600080fd5b5061027f610eaa565b3480156104fb57600080fd5b506000546102f7565b34801561051057600080fd5b506102e461051f366004611feb565b610ebe565b34801561053057600080fd5b506102e461053f366004611de9565b610f21565b34801561055057600080fd5b5061027f610f2c565b34801561056557600080fd5b50600c546102f7565b34801561057a57600080fd5b506102e4610589366004611d70565b610fba565b34801561059a57600080fd5b506102e46105a9366004611f32565b610fec565b3480156105ba57600080fd5b5061027f6105c9366004612040565b611073565b3480156105da57600080fd5b506102f761112a565b3480156105ef57600080fd5b506102f7600a5481565b34801561060557600080fd5b50610234610614366004611d03565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064e57600080fd5b506102e461065d36600461207a565b61113b565b34801561066e57600080fd5b506102e461067d366004611ce9565b611177565b60006001600160e01b031982166380ac58cd60e01b14806106b357506001600160e01b03198216635b5e139f60e01b145b806106ce57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106e3906123b5565b80601f016020809104026020016040519081016040528092919081815260200182805461070f906123b5565b801561075c5780601f106107315761010080835404028352916020019161075c565b820191906000526020600020905b81548152906001019060200180831161073f57829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166107e45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061080b82610b8d565b9050806001600160a01b0316836001600160a01b031614156108795760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107db565b336001600160a01b038216148061089557506108958133610614565b6109075760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107db565b610911838361120f565b505050565b610920338261127d565b61093c5760405162461bcd60e51b81526004016107db906122c4565b610911838383611374565b6009546001600160a01b031633146109715760405162461bcd60e51b81526004016107db9061228f565b60005b82518110156109115781600b60008584815181106109a257634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000208190555080806109c7906123f0565b915050610974565b6009546001600160a01b031633146109f95760405162461bcd60e51b81526004016107db9061228f565b600c544210610a4a5760405162461bcd60e51b815260206004820152601860248201527f53616c652068617320616c72656164792073746172746564000000000000000060448201526064016107db565b600c8190556040518181527fb751cc79e5d90c9173e2971809c6658fcf527209d16860326bfe7779a9169f0b9060200160405180910390a150565b6009546001600160a01b03163314610aaf5760405162461bcd60e51b81526004016107db9061228f565b6009546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610ae8573d6000803e3d6000fd5b50565b61091183838360405180602001604052806000815250610fba565b6009546001600160a01b03163314610b305760405162461bcd60e51b81526004016107db9061228f565b610b3982610d49565b610b4a81610b45611514565b611535565b5050565b6009546001600160a01b03163314610b785760405162461bcd60e51b81526004016107db9061228f565b6009805460ff60a01b1916600160a01b179055565b6000818152600460205260408120546001600160a01b0316806106ce5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107db565b60006001600160a01b038216610c6f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107db565b506001600160a01b031660009081526005602052604090205490565b6009546001600160a01b03163314610cb55760405162461bcd60e51b81526004016107db9061228f565b610cbf600061154f565b565b6009546001600160a01b03163314610ceb5760405162461bcd60e51b81526004016107db9061228f565b600954600160a01b900460ff1615610d3f5760405162461bcd60e51b815260206004820152601760248201527626b2ba30b230ba309030b63932b0b23c90333937bd32b760491b60448201526064016107db565b610b4a82826115a1565b6009546001600160a01b03163314610d735760405162461bcd60e51b81526004016107db9061228f565b610ae8816001610cc1565b81610d8860015490565b8110610dd65760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e206e6f7420617661696c61626c6520746f206d696e74000000000060448201526064016107db565b6000838152600b6020526040812054849190610df457600a54610e04565b6000828152600b60205260409020545b905080341015610e475760405162461bcd60e51b815260206004820152600e60248201526d14185e481d5c0b08199c9a595b9960921b60448201526064016107db565b600c54421015610e995760405162461bcd60e51b815260206004820152601760248201527f53616c65206861736e277420737461727465642079657400000000000000000060448201526064016107db565b610ea384866115f0565b5050505050565b6060600380546106e3906123b5565b905090565b6009546001600160a01b03163314610ee85760405162461bcd60e51b81526004016107db9061228f565b610ef28383610cc1565b60005b82811015610f1b57610f0982610b45611514565b80610f13816123f0565b915050610ef5565b50505050565b610b4a338383611732565b60088054610f39906123b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610f65906123b5565b8015610fb25780601f10610f8757610100808354040283529160200191610fb2565b820191906000526020600020905b815481529060010190602001808311610f9557829003601f168201915b505050505081565b610fc4338361127d565b610fe05760405162461bcd60e51b81526004016107db906122c4565b610f1b84848484611801565b6009546001600160a01b031633146110165760405162461bcd60e51b81526004016107db9061228f565b600954600160a01b900460ff161561106a5760405162461bcd60e51b815260206004820152601760248201527626b2ba30b230ba309030b63932b0b23c90333937bd32b760491b60448201526064016107db565b610ae881611834565b6000818152600460205260409020546060906001600160a01b03166110f25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107db565b6110fa611890565b611103836118b8565b6040516020016111149291906120e3565b6040516020818303038152906040529050919050565b60008054600154610eb99190612372565b6009546001600160a01b031633146111655760405162461bcd60e51b81526004016107db9061228f565b6000918252600b602052604090912055565b6009546001600160a01b031633146111a15760405162461bcd60e51b81526004016107db9061228f565b6001600160a01b0381166112065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107db565b610ae88161154f565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061124482610b8d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b03166112f65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107db565b600061130183610b8d565b9050806001600160a01b0316846001600160a01b0316148061133c5750836001600160a01b031661133184610766565b6001600160a01b0316145b8061136c57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661138782610b8d565b6001600160a01b0316146113ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107db565b6001600160a01b0382166114515760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107db565b61145c60008261120f565b6001600160a01b0383166000908152600560205260408120805460019290611485908490612372565b90915550506001600160a01b03821660009081526005602052604081208054600192906114b3908490612346565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008061152060005490565b9050611530600080546001019055565b919050565b610b4a8282604051806020016040528060008152506119d2565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6009546001600160a01b031633146115cb5760405162461bcd60e51b81526004016107db9061228f565b6115d482611834565b610b4a816115e160015490565b6115eb9190612346565b611a05565b6001600160a01b0382166116465760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107db565b6000818152600460205260409020546001600160a01b0316156116ab5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107db565b6001600160a01b03821660009081526005602052604081208054600192906116d4908490612346565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156117945760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107db565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61180c848484611374565b61181884848484611aae565b610f1b5760405162461bcd60e51b81526004016107db9061223d565b8051611847906008906020840190611bbb565b50611850611890565b60405161185d91906120c7565b604051908190038120907f7d54a9964a6e80cd8847f2d2f9089adad79dfe2945af7128f5b673e67c319d2390600090a250565b606060086040516020016118a4919061213a565b604051602081830303815290604052905090565b6060816118dc5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190657806118f0816123f0565b91506118ff9050600a8361235e565b91506118e0565b60008167ffffffffffffffff81111561192f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611959576020820181803683370190505b5090505b841561136c5761196e600183612372565b915061197b600a8661240b565b611986906030612346565b60f81b8183815181106119a957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119cb600a8661235e565b945061195d565b6119dc83836115f0565b6119e96000848484611aae565b6109115760405162461bcd60e51b81526004016107db9061223d565b6000548111611a7c5760405162461bcd60e51b815260206004820152603960248201527f43616e2774207365742074686520737570706c7920746f206c6573732074686160448201527f6e207468652063757272656e7420746f6b656e20636f756e740000000000000060648201526084016107db565b6001819055806040517ff71f9c3841c0bab7774017ffe585aeab36b5438d148506067901d47c5fa6f7e990600090a250565b60006001600160a01b0384163b15611bb057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611af29033908990889088906004016121ed565b602060405180830381600087803b158015611b0c57600080fd5b505af1925050508015611b3c575060408051601f3d908101601f19168201909252611b3991810190611f16565b60015b611b96573d808015611b6a576040519150601f19603f3d011682016040523d82523d6000602084013e611b6f565b606091505b508051611b8e5760405162461bcd60e51b81526004016107db9061223d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061136c565b506001949350505050565b828054611bc7906123b5565b90600052602060002090601f016020900481019282611be95760008555611c2f565b82601f10611c0257805160ff1916838001178555611c2f565b82800160010185558215611c2f579182015b82811115611c2f578251825591602001919060010190611c14565b50611c3b929150611c3f565b5090565b5b80821115611c3b5760008155600101611c40565b600067ffffffffffffffff831115611c6e57611c6e61244b565b611c81601f8401601f1916602001612315565b9050828152838383011115611c9557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461153057600080fd5b600082601f830112611cd3578081fd5b611ce283833560208501611c54565b9392505050565b600060208284031215611cfa578081fd5b611ce282611cac565b60008060408385031215611d15578081fd5b611d1e83611cac565b9150611d2c60208401611cac565b90509250929050565b600080600060608486031215611d49578081fd5b611d5284611cac565b9250611d6060208501611cac565b9150604084013590509250925092565b60008060008060808587031215611d85578081fd5b611d8e85611cac565b9350611d9c60208601611cac565b925060408501359150606085013567ffffffffffffffff811115611dbe578182fd5b8501601f81018713611dce578182fd5b611ddd87823560208401611c54565b91505092959194509250565b60008060408385031215611dfb578182fd5b611e0483611cac565b915060208301358015158114611e18578182fd5b809150509250929050565b60008060408385031215611e35578182fd5b611e3e83611cac565b946020939093013593505050565b60008060408385031215611e5e578182fd5b823567ffffffffffffffff80821115611e75578384fd5b818501915085601f830112611e88578384fd5b8135602082821115611e9c57611e9c61244b565b8160051b9250611ead818401612315565b8281528181019085830185870184018b1015611ec7578889fd5b8896505b84871015611ee9578035835260019690960195918301918301611ecb565b509997909101359750505050505050565b600060208284031215611f0b578081fd5b8135611ce281612461565b600060208284031215611f27578081fd5b8151611ce281612461565b600060208284031215611f43578081fd5b813567ffffffffffffffff811115611f59578182fd5b61136c84828501611cc3565b60008060408385031215611f77578182fd5b823567ffffffffffffffff811115611f8d578283fd5b611f9985828601611cc3565b925050611d2c60208401611cac565b60008060408385031215611fba578182fd5b823567ffffffffffffffff811115611fd0578283fd5b611fdc85828601611cc3565b95602094909401359450505050565b600080600060608486031215611fff578081fd5b833567ffffffffffffffff811115612015578182fd5b61202186828701611cc3565b9350506020840135915061203760408501611cac565b90509250925092565b600060208284031215612051578081fd5b5035919050565b6000806040838503121561206a578182fd5b82359150611d2c60208401611cac565b6000806040838503121561208c578182fd5b50508035926020909101359150565b600081518084526120b3816020860160208601612389565b601f01601f19169290920160200192915050565b600082516120d9818460208701612389565b9190910192915050565b600083516120f5818460208801612389565b602f60f81b9083019081528351612113816001840160208801612389565b6d17b6b2ba30b230ba30973539b7b760911b60019290910191820152600f01949350505050565b66697066733a2f2f60c81b81526000600781845483600182811c91508083168061216557607f831692505b602080841082141561218557634e487b7160e01b88526022600452602488fd5b81801561219957600181146121ae576121de565b60ff1986168a890152848a01880196506121de565b60008b815260209020895b868110156121d45781548c82018b01529085019083016121b9565b505087858b010196505b50949998505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122209083018461209b565b9695505050505050565b602081526000611ce2602083018461209b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561233e5761233e61244b565b604052919050565b600082198211156123595761235961241f565b500190565b60008261236d5761236d612435565b500490565b6000828210156123845761238461241f565b500390565b60005b838110156123a457818101518382015260200161238c565b83811115610f1b5750506000910152565b600181811c908216806123c957607f821691505b602082108114156123ea57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124045761240461241f565b5060010190565b60008261241a5761241a612435565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ae857600080fdfea2646970667358221220d216c7e2fc0c5b24cede6904415a9964c3fe33c474322a900f4176af4a9a7a8e64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008200000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000061df4f60000000000000000000000000000000000000000000000000000000000000002e516d637a317957697a526e763753794a4e62677455434672366b6772476a6d384c6261345961667a43706d665776000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 130
Arg [1] : _defaultPrice (uint256): 20000000000000000
Arg [2] : _cid (string): Qmcz1yWizRnv7SyJNbgtUCFr6kgrGjm8Lba4YafzCpmfWv
Arg [3] : _time (uint256): 1642024800
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000082
Arg [1] : 00000000000000000000000000000000000000000000000000470de4df820000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 0000000000000000000000000000000000000000000000000000000061df4f60
Arg [4] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [5] : 516d637a317957697a526e763753794a4e62677455434672366b6772476a6d38
Arg [6] : 4c6261345961667a43706d665776000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.