ccxt-compiled
Version:
A JavaScript / Python / PHP cryptocurrency trading library with support for 90+ exchanges
30 lines (25 loc) • 1.01 kB
JavaScript
// ---------------------------------------------------------------------------
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'
}
});
}
};
;