Releases: binance-exchange/node-binance-api
Stable Release
BREAKING CHANGE: use sapi endpoints instead of wapi by gunar
- depositHistory
- withdrawHistory
- dustLog
This is a breaking change as the sapi endpoints return different data structures than the wapi ones
various improvements by jorisw, tripolskypetr, taboca, vJoeyz, maxah, dependabot, fanazhe, Wostafa, polygxn, mattgrint, updatesvc, WilliamStam, gunar, celalsensoy. See https://github.com/jaggedsoft/node-binance-api/commits/master
Stable Release
Now supporting Promises, Futures, Margin, and OCO
For the latest development updates follow this repository instead https://github.com/jaggedsoft/node-binance-api
Stable Release
Final fix for roundStep by bmino
Fix POST requests by afsharsafavi
No breaking changes. Thank you!!
Stable Release
Adjustable limit for chart function
Stable Release
Fix for roundStep function
Stable Release
Add assetDetail and tradeFee functions
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");
});
Stable Release
(BREAKING) Improve Instantiation w/Multiple Instances: (Thanks bmino!!)
Creates separate instances of the internal objects.
When Using Singletons:
Allows internal objects such as depthCache to be shared between multiple require() calls
const binance = require('node-binance-api')().options({
APIKEY: '<key>',
APISECRET: '<secret>'
});
Instantiating Multiple Instances
const Binance = require('node-binance-api');
const instance1 = new Binance().options({
// ...
});
const instance2 = new Binance().options({
// ...
});
Stable Release
(BREAKING) Allow instances and singletons for constructor (Thanks bmino!!)
const binance = require('node-binance-api').options({
APIKEY: '<key>',
APISECRET: '<secret>'
});
Instantiating Multiple Instances
const Binance = require('node-binance-api');
const instance1 = new Binance().options({
// ...
});
const instance2 = new Binance().options({
// ...
});
Stable Release
Expose order() function to public API (Thanks ManuCart)