ERC721s
ERC-721 is a token standard on the Ethereum blockchain for representing non-fungible tokens (NFTs). Each token is identified by a unique tokenId and has a specific owner. Unlike fungible tokens such as ERC-20, ERC-721 tokens are not interchangeable and can carry distinct metadata and value.
A compliant ERC-721 contract implements a core set of functions and events defined by the IERC721 interface,
Optional extensions add more features. IERC721Metadata introduces name, symbol, and tokenURI(tokenId) for token-specific metadata. IERC721Enumerable provides
Storage of metadata is commonly done via tokenURI, which returns a URI pointing to a JSON metadata
Common use cases include digital art, collectibles, in-game items, and tokenized real-world assets. ERC-721 is often