hitbtc-node-sdk
v1.0.5
Published
HitBtc Node.JS SDK - small node.js library for the HitBtc API https://hitbtc.com
Downloads
13
Maintainers
Readme
HitBtc Node.JS SDK
HitBtc Node SDK - small node.js Promise-like library for the HitBtc API https://hitbtc.com
Current version supports
- full REST v2 API
Installation
npm i hitbtc-node-sdk
Usage
let APIKey ='APIKey';
let SecretKey ='SecretKey';
const hitbtc = require('hitbtc-node-sdk');
hitbtc.auth(APIKey, SecretKey);
hitbtc.accountBalance()
.then(balances => console.log(balances))
.catch(e =>console.log(e));
See examples for more details