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

Stable Release

Compare
Choose a tag to compare
@jaggedsoft jaggedsoft released this 03 Jul 11:34
· 414 commits to master since this release
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({
  // ...
});