Parameters for retrieving NFTs.
type GetNFTsParams = { count?: number; includeOwners?: boolean; start?: number;};
The number of NFTs to retrieve.
type count = number;
Whether to include the owner of each NFT.
type includeOwners = boolean;
Which tokenId to start at.
type start = number;