3.0.0 • Published 6 years ago
tradebyte-node-api v3.0.0
tradebyte node api
Usage
const Promise = require('bluebird');
const tradebyte = require('tradebyte-node-api')({
hnr: 1234,
user: 'my-username',
pass: 'my-password',
isSandbox: true // Remove this line if you want to hit Tradebyte production server
});
tradebyte
.getOrders({channel: 8})
.then((res) => console.log(res));