UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

31 lines (30 loc) 1.04 kB
import { BinanceSignedClient } from '../../../clients'; import { spot } from '../../../info'; export interface GetFixedAndActivityProjectListPayload { type: spot.FlexibleProductType; asset?: string; status?: spot.FlexibleProductStatusType; isSortAsc?: boolean; sortBy?: spot.FlexibleSortByType; current?: number; size?: number; } export interface GetFixedAndActivityProjectListResponse { asset: string; displayPriority: number; duration: number; interestPerLot: number; interestRate: number; lotSize: number; lotsLowLimit: number; lotsPurchased: number; lotsUpLimit: number; maxLotsPerUser: number; needKyc: boolean; projectId: string; projectName: string; status: spot.FlexibleProductStatusType; type: spot.FlexibleProductType; withAreaLimitation: boolean; } export declare function getFixedAndActivityProjectList(client: BinanceSignedClient, payload: GetFixedAndActivityProjectListPayload): Promise<GetFixedAndActivityProjectListResponse[]>;