Releases: jaggedsoft/node-idex-api
Releases · jaggedsoft/node-idex-api
Stable Release
Major new release, supports trade functions, lots of changes
Stable Release
First stable release. Fixed WebSocket issues
Development Release
(async () => {
const idex = require("node-idex-api");
let currencies = await idex.returnCurrencies();
console.log(currencies);
let volume = await idex.return24Volume();
console.log(volume);
})();