@exchanges/binance
Version:
Exchange provider for Binance API
40 lines (39 loc) • 1.11 kB
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface AllCoinsInformationItem {
coin: string;
depositAllEnable: boolean;
free: number;
freeze: number;
ipoable: number;
ipoing: number;
isLegalMoney: boolean;
locked: number;
name: string;
networkList: {
addressRegex: RegExp;
memoRegex: RegExp;
coin: string;
depositDesc: string;
depositEnable: boolean;
isDefault: boolean;
minConfirm: number;
name: string;
network: string;
resetAddressStatus: boolean;
specialTips: string;
unLockConfirm: number;
withdrawDesc: string;
withdrawEnable: boolean;
withdrawFee: number;
withdrawMin: number;
withdrawMax: number;
insertTime: Date;
updateTime: Date;
withdrawIntegerMultiple: number;
}[];
storage: number;
trading: boolean;
withdrawAllEnable: boolean;
withdrawing: number;
}
export declare function allCoinsInformation(client: BinanceSignedClient): Promise<AllCoinsInformationItem[]>;