ccxt-compiled
Version:
A JavaScript / Python / PHP cryptocurrency trading library with support for 90+ exchanges
25 lines (20 loc) • 836 B
JavaScript
// ---------------------------------------------------------------------------
const huobipro = require('./huobipro.js');
// ---------------------------------------------------------------------------
module.exports = class huobicny extends huobipro {
describe() {
return this.deepExtend(super.describe(), {
'id': 'huobicny',
'name': 'Huobi CNY',
'hostname': 'be.huobi.com',
'hasCORS': false,
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/27766569-15aa7b9a-5edd-11e7-9e7f-44791f4ee49c.jpg',
'api': 'https://be.huobi.com',
'www': 'https://www.huobi.com',
'doc': 'https://github.com/huobiapi/API_Docs/wiki/REST_api_reference'
}
});
}
};
;