Understanding ERC721Enumerable

Hey everyone, I have been trying to understand one of the extensions of ERC-721 but am not very clear on it. It's ERC721Enumerble; I am working on a generative NFT project with a max supply, and the user mints them. Relatively straightforward, and I am very confident and aware of the custom logic and functionalities that I will need to implement but not clear on what this extension allows us to do.

Can anyone help with this ?

As the name implies, this extension allows enumerating NFTs. Relevant functions include tokenOfOwnerByIndex, and tokenByIndex.

That's it? Alright, I was completely overthinking it. Thanks

1 Like