Parameters for retrieving owned tokenIds of an ERC1155 contract.
type GetOwnedTokenIdsParams = { address: string; count?: number; start?: number;};
The address of the wallet to get the NFTs of.
type address = string;
The number of NFTs to retrieve.
type count = number;
Which tokenId to start at.
type start = number;