export interface IAlchemyGetNFTs { ownedNfts: IAlchemyGetNFTsItem[]; totalCount: number; blockHash: string; } export interface IAlchemyGetNFTsItem { balance: string; contract: { address: string; }; description: string; id: { tokenId: string; tokenMetadata: { tokenType: string; }; }; media: IAlchemyGetNFTsItemMedia[]; metadata: IAlchemyGetNFTsItemMetadata; title: string; tokenUri: { raw: string; gateway: string; }; tokenId?: number; timeLastUpdated: Date; } interface IAlchemyGetNFTsItemMedia { raw: string; gateway: string; } export interface IAlchemyGetNFTsItemMetadata { name: string; animation_url_mimetype: string; description: string; image: string; external_url: string; animation_url: string; } export {}; //# sourceMappingURL=alchemy.d.ts.map