binance-api-node
Advanced tools
Comparing version 0.11.32 to 0.11.33
@@ -167,2 +167,37 @@ // tslint:disable:interface-name | ||
export interface NetworkInformation { | ||
addressRegex: string | ||
coin: string | ||
depositDesc: string | ||
depositEnable: boolean | ||
isDefault: boolean | ||
memoRegex: string | ||
minConfirm: number | ||
name: string | ||
network: string | ||
resetAddressStatus: boolean | ||
specialTips: string | ||
unLockConfirm: number | ||
withdrawDesc: string | ||
withdrawEnable: boolean | ||
withdrawFee: number | ||
withdrawIntegerMultiple: number | ||
withdrawMax: number | ||
withdrawMin: number | ||
sameAddress: string | ||
} | ||
export interface CoinInformation { | ||
coin: string, | ||
depositAllEnable: boolean, | ||
free: number, | ||
freeze: number, | ||
ipoable: number, | ||
ipoing: number, | ||
isLegalMoney: boolean, | ||
locked: number, | ||
name: string, | ||
networkList: NetworkInformation[] | ||
} | ||
export interface DepositAddress { | ||
@@ -274,7 +309,7 @@ address: string | ||
| { | ||
symbol: string | ||
origClientOrderId: string | ||
useServerTime?: boolean | ||
newClientOrderId?: string | ||
} | ||
symbol: string | ||
origClientOrderId: string | ||
useServerTime?: boolean | ||
newClientOrderId?: string | ||
} | ||
@@ -288,7 +323,7 @@ export type GetOrderOcoOptions = | ||
| { | ||
symbol: string | ||
listClientOrderId: string | ||
useServerTime?: boolean | ||
newClientOrderId?: string | ||
} | ||
symbol: string | ||
listClientOrderId: string | ||
useServerTime?: boolean | ||
newClientOrderId?: string | ||
} | ||
@@ -491,3 +526,4 @@ export type cancelOpenOrdersOptions = { | ||
}): Promise<TradeResult[]> | ||
depositAddress(options: { coin: string }): Promise<DepositAddress> | ||
capitalConfigs(options?: { recvWindow?: number }): Promise<CoinInformation[]>; | ||
depositAddress(options: { coin: string, network?: string, recvWindow?: number }): Promise<DepositAddress> | ||
withdraw(options: { | ||
@@ -494,0 +530,0 @@ coin: string |
{ | ||
"name": "binance-api-node", | ||
"version": "0.11.32", | ||
"version": "0.11.33", | ||
"description": "A node API wrapper for Binance", | ||
@@ -5,0 +5,0 @@ "main": "dist", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
225914
3651