export interface Bids { amount: string; token: string; } export interface AuctionsQuery { size?: number; } export interface Auctions { owner: string; auctionId: number; identifier: string; collection: string; status: "running" | "claimable" | "ended" | "closed" | "unknown"; auctionType: string; createdAt: number; endsAt: number; marketplaceAuctionId: number; marketplace: string; minBid: Bids; maxBid: Bids; } export interface AuctionsCountQuery { status?: string; } export interface AuctionDetailsQuery { auctionId?: string; } export interface AccountAuctionStats { auctions: number; claimable: number; collected: number; collections: number; creations: number; likes: number; orders: number; } export interface AccountAuctionsQuery { from?: number; size?: number; status?: string; } export interface Auction { owner: string; auctionId: number; identifier: string; collection: string; status: "running" | "claimable" | "ended" | "closed" | "unknown"; auctionType: string; createdAt: number; endsAt: number; marketplaceAuctionId: string; marketplace: string; minBid: Bids; maxBid: Bids; } export interface CollectionAuctionsQuery { size?: number; }