binance-api-node
Advanced tools
Comparing version 0.12.0 to 0.12.1
@@ -644,4 +644,4 @@ "use strict"; | ||
}, | ||
futuresPrices: function futuresPrices() { | ||
return pubCall('/fapi/v1/ticker/price').then(function (r) { | ||
futuresPrices: function futuresPrices(payload) { | ||
return pubCall('/fapi/v1/ticker/price', payload).then(function (r) { | ||
return (Array.isArray(r) ? r : [r]).reduce(function (out, cur) { | ||
@@ -648,0 +648,0 @@ return out[cur.symbol] = cur.price, out; |
@@ -594,3 +594,3 @@ // tslint:disable:interface-name | ||
futuresDailyStats(options?: { symbol: string }): Promise<DailyStatsResult | DailyStatsResult[]> | ||
futuresPrices(): Promise<{ [index: string]: string }> | ||
futuresPrices(options?: { symbol: string }): Promise<{ [index: string]: string }> | ||
futuresAllBookTickers(): Promise<{ [key: string]: Ticker }> | ||
@@ -998,3 +998,3 @@ futuresMarkPrice(): Promise<MarkPriceResult[]> | ||
filterType: SymbolFilterType.MIN_NOTIONAL | ||
notional: string | ||
minNotional: string | ||
} | ||
@@ -1001,0 +1001,0 @@ |
{ | ||
"name": "binance-api-node", | ||
"version": "0.12.0", | ||
"version": "0.12.1", | ||
"description": "A node API wrapper for Binance", | ||
@@ -5,0 +5,0 @@ "main": "dist", |
Sorry, the diff of this file is too big to display
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
275196
5355