@exchanges/binance
Version:
Exchange provider for Binance API
15 lines (14 loc) • 459 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface SubscribeBLVTPayload {
tokenName: string;
cost: number;
}
export interface SubscribeBLVTResponse {
id: number;
status: 'SUCCESS' | 'PENDING' | 'FAILTURE';
tokenName: string;
amount: number;
cost: number;
timestamp: Date;
}
export declare function subscribeBLVT(client: BinanceSignedClient, payload: SubscribeBLVTPayload): Promise<SubscribeBLVTResponse>;