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

15 Aug 16:09
f536947
Compare
Choose a tag to compare

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

08 Feb 00:56
f30d372
Compare
Choose a tag to compare

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

22 Jan 12:29
ecf5403
Compare
Choose a tag to compare

Final fix for roundStep by bmino
Fix POST requests by afsharsafavi

No breaking changes. Thank you!!

Stable Release

02 Nov 12:34
ab0e0d0
Compare
Choose a tag to compare

Adjustable limit for chart function

Stable Release

23 Oct 20:12
39e969d
Compare
Choose a tag to compare

Fix for roundStep function

Stable Release

29 Aug 17:58
cd6d98e
Compare
Choose a tag to compare

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

15 Jul 05:53
26f61e9
Compare
Choose a tag to compare

(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

03 Jul 11:34
16f5150
Compare
Choose a tag to compare

(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

19 Jun 22:38
f6eb762
Compare
Choose a tag to compare

Expose order() function to public API (Thanks ManuCart)

Stable Release

14 Jun 16:51
fc790e0
Compare
Choose a tag to compare

Fix for Duplicate Deletion Issue (Thanks davewang!!)
Fixes issue: binance-exchange #148
#148