@usherlabs/ccxt
Version:
A JavaScript cryptocurrency trading library with support for 100+ exchanges. Verifiable data powered by Verity.
20 lines (16 loc) • 382 B
JavaScript
;
var hitbtc = require('./hitbtc.js');
// ---------------------------------------------------------------------------
/**
* @class hitbtc3
* @augments Exchange
*/
class hitbtc3 extends hitbtc {
describe() {
return this.deepExtend(super.describe(), {
'id': 'hitbtc3',
'alias': true,
});
}
}
module.exports = hitbtc3;