Cryptopia exchange api wrapper
npm install cryptopia.js
const Cryptopia = require('cryptopia.js')
const cryptopia = new Cryptopia('YOUR_KEY', 'YOUR_SECRET');
(async function () {
const orderBook = await cryptopia.GetMarketOrders('DOT_BTC', 50)
console.log(orderBook)
}())
See example.js
for the implemented methods