Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Releases: binance-exchange/node-binance-api

Stable Release

10 Jun 03:24
2caa181
Compare
Choose a tag to compare

Fixed unit testing (Singleton VS New Object)

Stable Release

09 Jun 08:05
0ac5221
Compare
Choose a tag to compare

⚠ Breaking Changes: ⚠

🔧 Singleton VS New Object: (Thanks usama33!)
The API is now instantiated like this:

const binance = new Binance().options({
	APIKEY: "",
	APISECRET: "",
	useServerTime: true
});

or this:

const Binance = require('node-binance-api');
const binance = new Binance().options("options.json");

🔧 default recvWindow changed to 5000 as recommended by Binance

🔧 lastEventUpdateTime added to the response of depthCache callback, as third parameter. Thanks yanislk!

Stable Release

20 May 18:06
0ba414d
Compare
Choose a tag to compare

Fix depthCache & depthHandler logic (Thank you keith1024 + learnathoner)
(BREAKING) Rename trades to aggTrades (Thank you dmitriz)
WebSocket trades() function now consistent with Binance specification

Stable Release

03 May 19:01
fb19391
Compare
Choose a tag to compare

15 commits by dmitriz 🏆
Refactoring, improving consistency, reducing redundancies and making code cleaner

Stable Release

20 Apr 00:14
74fb051
Compare
Choose a tag to compare

28 commits by dmzoneill 🏆
many improvements including documentation, unit testing, proxy support, and debugging

Stable Release

30 Mar 15:47
4e28ae6
Compare
Choose a tag to compare

Improve userData keep-alive + Recover out of sync depth streams (keith1024)

Stable Release

20 Mar 01:01
3a48dd9
Compare
Choose a tag to compare

Read API keys from config file
Example: binance.options("config.json");
config.json would look like this:

{
	"APIKEY": "z5RQZ9n8JcS3HLDQmPpfLQIGGQN6TTs5pCP5CTnn4nYk2ImFcew49v4ZrmP3MGl5",
	"APISECRET": "ZqePF1DcLb6Oa0CfcLWH0Tva59y8qBBIqu789JEY27jq0RkOKXpNl9992By1PN9Z",
	"verbose": true
}

Stable Release

17 Mar 23:48
270dc21
Compare
Choose a tag to compare

depth: add lastUpdateId (hoota)
depth call should resurn lastUpdateId as well as bids/asks (hoota)
Add miniTicker example

Stable Release

02 Mar 21:42
e5e8a10
Compare
Choose a tag to compare

depositHistory: Support additional parameters
call book tickers by symbol (thanks MadDeveloper)
Fix combinedStream error (thanks boyhagemann)

Stable Release

14 Feb 22:22
5eea84b
Compare
Choose a tag to compare

carlosmiei#131 [#129] Fix depth cache sync by keith1024