55 lines
1.7 KiB
Python
55 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# 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
|
|
|
|
from ccxt.async_support.okx import okx
|
|
from ccxt.abstract.okxus import ImplicitAPI
|
|
from ccxt.base.types import Any
|
|
|
|
|
|
class okxus(okx, ImplicitAPI):
|
|
|
|
def describe(self) -> Any:
|
|
return self.deep_extend(super(okxus, self).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': None,
|
|
'spot': True,
|
|
'margin': None,
|
|
'swap': False,
|
|
'future': False,
|
|
'option': False,
|
|
},
|
|
'features': {
|
|
'swap': {
|
|
'linear': None,
|
|
'inverse': None,
|
|
},
|
|
'future': {
|
|
'linear': None,
|
|
'inverse': None,
|
|
},
|
|
},
|
|
})
|