@exchanges/binance
Version:
Exchange provider for Binance API
10 lines (9 loc) • 417 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
import { spot } from '../../../info';
export interface UserUniversalTransferPayload {
type: spot.UserUniversalTransferType;
asset: string;
amount: number;
}
export declare type UserUniversalTransferResponse = number;
export declare function userUniversalTransfer(client: BinanceSignedClient, payload: UserUniversalTransferPayload): Promise<number>;