Releases: jaggedsoft/node-binance-api
Releases · jaggedsoft/node-binance-api
Stable Release
Added time() and useServerTime options
- You can now use the
useServerTime
option to synchronize with the servers time at startup - You can now pass a callback function to options() which runs after the synchronization is complete
binance.options({
APIKEY: '<key>',
APISECRET: '<secret>',
useServerTime: true
}, main);
function main() {
binance.balance((error, balances) => {
if ( error ) {
console.error(error);
return;
}
console.log("balances()", balances);
console.log("BNB balance: ", balances.BNB.available);
});
}
Stable Release
Update endpoints, fix allPrices websocket
Stable Release
Fix error handling on order()
Stable Release
Fixed user data streams, order()
(Breaking:) Improved error handling, thanks hems and robaleman!
See v0.4.0
b5d8107
Stable Release
Added optional params to get candlestick data
Stable Release
Remove breaking changes, preparing for v0.4.0
Stable Release
Fixed syntax error
Stable Release
Better error handling on API requests. Thanks hems!
Also rolled back a breaking change for Electron
Stable Release
Better error handling on API requests. Thanks hems!