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

25 Jan 09:02
877fa35
Compare
Choose a tag to compare

Fixed historicalTrades, recentTrades, aggTrades functions

Stable Release

21 Jan 00:15
d4f0910
Compare
Choose a tag to compare

Added time() and useServerTime options

  1. You can now use the useServerTime option to synchronize with the servers time at startup
  2. 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

19 Jan 20:07
c158f3f
Compare
Choose a tag to compare

Update endpoints, fix allPrices websocket

Stable Release

19 Jan 01:17
dcdaf3e
Compare
Choose a tag to compare

Fix error handling on order()

Stable Release

18 Jan 07:23
395b284
Compare
Choose a tag to compare

Fixed user data streams, order()

(Breaking:) Improved error handling, thanks hems and robaleman!

18 Jan 06:29
719771b
Compare
Choose a tag to compare

Stable Release

15 Jan 12:06
3a0c754
Compare
Choose a tag to compare

Added optional params to get candlestick data

Stable Release

13 Jan 10:48
a16e4cd
Compare
Choose a tag to compare

Fixed market orders

Stable Release

09 Jan 02:57
de52e0d
Compare
Choose a tag to compare

Better error handling on API requests. Thanks hems!

Stable Release

08 Jan 11:45
e2c7eef
Compare
Choose a tag to compare

Fixed depth cache reconnect with multiple symbols (Thanks mstijak)