Skip to content

Releases: jaggedsoft/node-binance-api

Stable Release

21 Jan 00:14
f4bca67
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:08
f94c2fd
Compare
Choose a tag to compare

Update endpoints, fix allPrices websocket

Stable Release

19 Jan 01:16
b5bb192
Compare
Choose a tag to compare

Fix error handling on order()

Stable Release

18 Jan 07:20
6477b14
Compare
Choose a tag to compare

Fixed user data streams, order()

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

18 Jan 06:27
b30399d
Compare
Choose a tag to compare

Stable Release

15 Jan 12:07
2433bdd
Compare
Choose a tag to compare

Added optional params to get candlestick data

Stable Release

12 Jan 02:10
34f63ec
Compare
Choose a tag to compare

Remove breaking changes, preparing for v0.4.0

Stable Release

11 Jan 05:37
1e25f09
Compare
Choose a tag to compare

Fixed syntax error

Stable Release

10 Jan 22:20
048a307
Compare
Choose a tag to compare

Better error handling on API requests. Thanks hems!
Also rolled back a breaking change for Electron

Stable Release

09 Jan 02:56
76d20a2
Compare
Choose a tag to compare

Better error handling on API requests. Thanks hems!