-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathokex.js
30 lines (25 loc) · 1018 Bytes
/
okex.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
27
28
29
30
"use strict";
// ---------------------------------------------------------------------------
const okcoinusd = require ('./okcoinusd.js')
// ---------------------------------------------------------------------------
module.exports = class okex extends okcoinusd {
describe () {
return this.deepExtend (super.describe (), {
'id': 'okex',
'name': 'OKEX',
'countries': [ 'CN', 'US' ],
'hasCORS': false,
'hasFutureMarkets': true,
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/32552768-0d6dd3c6-c4a6-11e7-90f8-c043b64756a7.jpg',
'api': {
'web': 'https://www.okex.com/v2',
'public': 'https://www.okex.com/api',
'private': 'https://www.okex.com/api',
},
'www': 'https://www.okex.com',
'doc': 'https://www.okex.com/rest_getStarted.html',
},
});
}
}