@proton/ccxt
Version:
A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges
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;
;