@kraken-crypto/ccxt
Version:
A cryptocurrency trading API with more than 100 exchanges in JavaScript / TypeScript / Python / C# / PHP / Go
20 lines (16 loc) • 531 B
JavaScript
;
var huobi = require('./huobi.js');
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
class huobipro extends huobi {
describe() {
// this is an alias for backward-compatibility
// to be removed soon
return this.deepExtend(super.describe(), {
'id': 'huobipro',
'alias': true,
'name': 'Huobi Pro',
});
}
}
module.exports = huobipro;