Skip to main content

ERC721 - View Owned NFTs

You can utilize these features of the SDK if your contract implements the ERC721Enumerable standard.

Get Owned NFTs

Get all of the NFTs owned by a specific wallet address at this current point in time.

Automatically fetches the metadata for each NFT.

// Address of the wallet to get the NFTs of
const address = "{{wallet_address}}";
const nfts = await contract.erc721.getOwned(address);
console.log(nfts);

This snippet is for v3 of the SDK. Learn how to upgrade.

View in React SDK Documentation