coinspot-mini

0.1.1 • Public • Published

Mini SDK for the read only coinspot API, this only contains what you need to get account balances and transactions.

Have a look at https://www.coinspot.com.au/api for more info on the CoinSpot API.

Example usage

var coinspot = require('coinspot-mini');

var secret = ''; // insert your secret here
var key = ''; // insert your key here

var client = new coinspot(key, secret);

client.balances(function(e, data) {
 	console.log(data);
}); 

client.transactions(function(e, data) {
 	console.log(data);
});

Package Sidebar

Install

npm i coinspot-mini

Weekly Downloads

0

Version

0.1.1

License

Apache-2.0

Unpacked Size

13.8 kB

Total Files

4

Last publish

Collaborators

  • developersteve