Standard NFT

The ERC721 smart contract standard is the basic standard for NFTs on EVM compatible chains.

The ERC721 is a smart contract standard which is specialised in single-copy Non Fungible Tokens (NFT) and out-of-the-box compatible with Opensea. In an ERC721, every NFT is unique which means you have to reference the content for each NFT.


Variables

_name: The name of your NFT collection

_symbol: The symbol of your NFT collection

_owner: The owner of the NFT collection. Can be transferred and is initially set to the deployer wallet.

_currentTokenID: The Index of NFTs minted in this collection. Initially set to 1.


Last updated