UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

8 lines (7 loc) 317 B
import { BinanceSignedClient } from '../../../clients'; export interface TransferToMasterPayload { asset: string; amount: number; } export declare type TransferToMasterResponse = string; export declare function transferToMaster(client: BinanceSignedClient, payload: TransferToMasterPayload): Promise<string>;