binance-api-node
Advanced tools
Comparing version 0.8.19 to 0.8.20
@@ -171,3 +171,3 @@ // tslint:disable:interface-name | ||
cancelOrder(options: { symbol: string; orderId: number, useServerTime?: boolean }): Promise<CancelOrderResult>; | ||
openOrders(options: { symbol: string, useServerTime?: boolean }): Promise<QueryOrderResult[]>; | ||
openOrders(options: { symbol?: string, useServerTime?: boolean }): Promise<QueryOrderResult[]>; | ||
dailyStats(options?: { symbol: string }): Promise<DailyStatsResult | DailyStatsResult[]>; | ||
@@ -174,0 +174,0 @@ candles(options: CandlesOptions): Promise<CandleChartResult[]>; |
{ | ||
"name": "binance-api-node", | ||
"version": "0.8.19", | ||
"version": "0.8.20", | ||
"description": "A node API wrapper for Binance", | ||
@@ -5,0 +5,0 @@ "main": "dist", |
@@ -124,5 +124,5 @@ import test from 'ava' | ||
test('[REST] depositAddress', async t => { | ||
const out = await client.depositAddress({ asset: 'NEO' }) | ||
const out = await client.depositAddress({ asset: 'ETH' }) | ||
t.true(out.success) | ||
t.is(out.asset, 'NEO') | ||
t.is(out.asset, 'ETH') | ||
t.truthy(out.address) | ||
@@ -129,0 +129,0 @@ }) |
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
252363