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