What is ERC721
ERC-721 is a standard for non-fungible tokens (NFTs) that defines a specific function interface. It contains the following properties and methods. name(): returns the name of the token.symbol(): returns the symbol of the token.balanceOf(): returns the number of tokens owned by an account.ownerOf(uint256 tokenId): return the owner of the token with the specified tokenId.safeTransferFrom(address from,…