NFT
type NFT =  | {      id: bigint;      owner: string | null;      tokenURI: string;      type: "ERC721";    }  | {      id: bigint;      owner: string | null;      supply: bigint;      tokenURI: string;      type: "ERC1155";    };
type NFT =  | {      id: bigint;      owner: string | null;      tokenURI: string;      type: "ERC721";    }  | {      id: bigint;      owner: string | null;      supply: bigint;      tokenURI: string;      type: "ERC1155";    };