type NFT = { metadata: NFTMetadata; owner: string; quantityOwned?: string; supply: string; type: "ERC1155" | "ERC721" | "metaplex";};
type metadata = NFTMetadata;
type owner = string;
type quantityOwned = string;
type supply = string;
type type = "ERC1155" | "ERC721" | "metaplex";