UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

15 lines (14 loc) 454 B
import { BinanceSignedClient } from '../../../clients'; export interface RedeemBLVTPayload { tokenName: string; amount: number; } export interface RedeemBLVTResponse { id: number; status: 'SUCCESS' | 'PENDING' | 'FAILTURE'; tokenName: string; redeemAmount: number; amount: number; timestamp: Date; } export declare function redeemBLVT(client: BinanceSignedClient, payload: RedeemBLVTPayload): Promise<RedeemBLVTResponse>;