sfccxt
Version:
A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges
20 lines (15 loc) • 529 B
JavaScript
// ---------------------------------------------------------------------------
const huobi = require ('./huobi.js');
// ---------------------------------------------------------------------------
module.exports = 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',
});
}
};
;