Allows you to enumerate through owned tokens faster. ERC721AQueryable also supported.
Get the metadata of all NFTs a wallet owns from this contract.
var data = await contract.ERC721.GetOwned();
The address of the wallet to get the NFTs of. If not provided, defaults to the connected wallet address.
Must be a string.
string
var data = await contract.ERC721.GetOwned("{{wallet_address}}");
Returns a List of NFT structs, containing the following properties:
NFT
{ { string id; string uri; string description; string image; string name; string external_url; object attributes; } string owner; string type; int supply; int quantityOwned; // only for ERC1155}