Parameters for retrieving NFTs.
type GetOwnedNFTsParams = { 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;