type NFT<type extends NFTType = NFTType> = { id: bigint; metadata: NFTMetadata; owner: string | null; supply: bigint; tokenURI: string; type: type;};