UNPKG

@mojito-inc/core-service

Version:

Mojito Core API service for auction, payment, token

22 lines (21 loc) 622 B
export interface FavoriteParam { orgID: string; tokenId: string; } export declare enum SavedNFTFilterInput { RECENTLY_LISTED = "recently_listed", RECENTLY_MINTED = "recently_minted", INITIALLY_MINTED = "initially_minted", PRICE_LOW_TO_HIGH = "price_low_to_high", PRICE_HIGH_TO_LOW = "price_high_to_low", MOST_SAVED = "most_saved", PURCHASED_FROM_ORG = "purchased_from_org" } export interface FavoriteListByUserParam { orgId: string; offset?: number; limit?: number; searchKey?: string; filter?: SavedNFTFilterInput; buyerAddress?: string; }