@kraken-crypto/ccxt
Version:
A cryptocurrency trading API with more than 100 exchanges in JavaScript / TypeScript / Python / C# / PHP / Go
56 lines (51 loc) • 1.8 kB
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var okx = require('./okx.js');
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
class okxus extends okx["default"] {
describe() {
return this.deepExtend(super.describe(), {
'id': 'okxus',
'name': 'OKX (US)',
'certified': false,
'pro': true,
'hostname': 'us.okx.com',
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/152485636-38b19e4a-bece-4dec-979a-5982859ffc04.jpg',
'api': {
'rest': 'https://{hostname}',
},
'www': 'https://app.okx.com',
'doc': 'https://app.okx.com/docs-v5/en/#overview',
'fees': 'https://app.okx.com/pages/products/fees.html',
'referral': {
'url': 'https://www.app.okx.com/join/CCXT2023',
'discount': 0.2,
},
'test': {
'rest': 'https://{hostname}',
},
},
'has': {
'CORS': undefined,
'spot': true,
'margin': undefined,
'swap': false,
'future': false,
'option': false,
},
'features': {
'swap': {
'linear': undefined,
'inverse': undefined,
},
'future': {
'linear': undefined,
'inverse': undefined,
},
},
});
}
}
exports["default"] = okxus;