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

Releases: binance-exchange/node-binance-api

Stable Release

Choose a tag to compare

@jaggedsoft jaggedsoft released this 15 Aug 16:09
f536947

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

Choose a tag to compare

@jaggedsoft jaggedsoft released this 08 Feb 00:56
f30d372

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

Choose a tag to compare

@jaggedsoft jaggedsoft released this 22 Jan 12:29
ecf5403

Final fix for roundStep by bmino
Fix POST requests by afsharsafavi

No breaking changes. Thank you!!

Stable Release

Choose a tag to compare

@jaggedsoft jaggedsoft released this 02 Nov 12:34
ab0e0d0

Adjustable limit for chart function

Stable Release

Choose a tag to compare

@jaggedsoft jaggedsoft released this 23 Oct 20:12
39e969d

Fix for roundStep function

Stable Release

Choose a tag to compare

@jaggedsoft jaggedsoft released this 29 Aug 17:58
cd6d98e

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

Choose a tag to compare

@jaggedsoft jaggedsoft released this 15 Jul 05:53
26f61e9

(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

Choose a tag to compare

@jaggedsoft jaggedsoft released this 03 Jul 11:34
16f5150

(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

Choose a tag to compare

@jaggedsoft jaggedsoft released this 19 Jun 22:38
f6eb762

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

Stable Release

Choose a tag to compare

@jaggedsoft jaggedsoft released this 14 Jun 16:51
fc790e0

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