This repository was archived by the owner on Oct 30, 2023. It is now read-only.
Commit cd6d98e
Jon Eyrick
Add assetDetail and tradeFee functions
Add assetDetail and tradeFee functions
```js
const Binance = require('node-binance-api');
const binance = new Binance().options("options.json");
binance.useServerTime( () => {
binance.assetDetail((error, response) => {
console.log(response);
});
binance.tradeFee((error, response) => {
console.log(response);
}, "BNBBTC");
});
```3 files changed
+26
-6
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1321 | 1321 | | |
1322 | 1322 | | |
1323 | 1323 | | |
1324 | | - | |
| 1324 | + | |
1325 | 1325 | | |
1326 | 1326 | | |
1327 | | - | |
1328 | | - | |
| 1327 | + | |
| 1328 | + | |
1329 | 1329 | | |
1330 | 1330 | | |
1331 | 1331 | | |
| |||
1359 | 1359 | | |
1360 | 1360 | | |
1361 | 1361 | | |
| 1362 | + | |
| 1363 | + | |
| 1364 | + | |
| 1365 | + | |
| 1366 | + | |
| 1367 | + | |
| 1368 | + | |
| 1369 | + | |
| 1370 | + | |
| 1371 | + | |
| 1372 | + | |
| 1373 | + | |
| 1374 | + | |
| 1375 | + | |
| 1376 | + | |
| 1377 | + | |
| 1378 | + | |
| 1379 | + | |
| 1380 | + | |
| 1381 | + | |
1362 | 1382 | | |
1363 | 1383 | | |
1364 | 1384 | | |
| |||
1735 | 1755 | | |
1736 | 1756 | | |
1737 | 1757 | | |
1738 | | - | |
| 1758 | + | |
1739 | 1759 | | |
1740 | 1760 | | |
1741 | 1761 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | | - | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| |||
0 commit comments