forked from ccxt/ccxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhuobicny.js
26 lines (22 loc) · 879 Bytes
/
huobicny.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
'use strict';
// ---------------------------------------------------------------------------
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',
'has': {
'CORS': 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',
},
});
}
};