binance-api-node
Advanced tools
Comparing version 0.9.10 to 0.9.11
@@ -362,5 +362,3 @@ 'use strict'; | ||
tradeFee: function tradeFee(payload) { | ||
return privCall('/wapi/v3/tradeFee.html', payload).then(function (res) { | ||
return res.tradeFee; | ||
}); | ||
return privCall('/wapi/v3/tradeFee.html', payload); | ||
}, | ||
@@ -367,0 +365,0 @@ assetDetail: function assetDetail(payload) { |
@@ -300,11 +300,17 @@ // tslint:disable:interface-name | ||
export interface Symbol { | ||
symbol: string; | ||
status: string; | ||
baseAsset: string; | ||
baseAssetPrecision: number; | ||
baseCommissionPrecision: number; | ||
filters: SymbolFilter[]; | ||
icebergAllowed: boolean; | ||
isMarginTradingAllowed: boolean; | ||
isSpotTradingAllowed: boolean; | ||
ocoAllowed: boolean; | ||
orderTypes: OrderType[]; | ||
quoteAsset: string; | ||
quoteCommissionPrecision: number; | ||
quoteOrderQtyMarketAllowed: boolean; | ||
quotePrecision: number; | ||
orderTypes: OrderType[]; | ||
icebergAllowed: boolean; | ||
filters: SymbolFilter[]; | ||
status: string; | ||
symbol: string; | ||
} | ||
@@ -311,0 +317,0 @@ |
{ | ||
"name": "binance-api-node", | ||
"version": "0.9.10", | ||
"version": "0.9.11", | ||
"description": "A node API wrapper for Binance", | ||
@@ -5,0 +5,0 @@ "main": "dist", |
@@ -914,13 +914,17 @@ # binance-api-node [![build](https://img.shields.io/travis/HyperCubeProject/binance-api-node.svg?style=flat-square)](https://travis-ci.org/HyperCubeProject/binance-api-node) [![cover](https://img.shields.io/coveralls/HyperCubeProject/binance-api-node.svg?style=flat-square)](https://coveralls.io/github/HyperCubeProject/binance-api-node) [![bnb](https://img.shields.io/badge/binance-winner-yellow.svg?style=flat-square)](https://github.com/binance-exchange/binance-api-node) | ||
```js | ||
[{ | ||
symbol: 'BTC', | ||
maker: 0.0001, | ||
taker: 0.0001, | ||
}, | ||
{ | ||
symbol: 'LTC', | ||
maker: 0.0001, | ||
taker: 0.0001, | ||
tradeFee: [{ | ||
symbol: 'BTC', | ||
maker: 0.0001, | ||
taker: 0.0001, | ||
}, | ||
{ | ||
symbol: 'LTC', | ||
maker: 0.0001, | ||
taker: 0.0001, | ||
} | ||
...], | ||
success: true, | ||
} | ||
...] | ||
``` | ||
@@ -927,0 +931,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
73657
1417
1207