UNPKG

ccxt

Version:

A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges

55 lines (52 loc) 1.98 kB
// ---------------------------------------------------------------------------- // PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN: // https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code // EDIT THE CORRESPONDENT .ts FILE INSTEAD // --------------------------------------------------------------------------- import okx from './okx.js'; // --------------------------------------------------------------------------- export default class okxus extends okx { 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, }, }, }); } }