@exchanges/binance
Version:
Exchange provider for Binance API
15 lines (14 loc) • 479 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface DustTransferResponse {
totalServiceCharge: number;
totalTransfered: number;
transferResult: {
amount: number;
fromAsset: string;
operateTime: Date;
serviceChargeAmount: number;
tranId: number;
transferedAmount: number;
}[];
}
export declare function dustTransfer(client: BinanceSignedClient, assets: string[]): Promise<DustTransferResponse>;