add
This commit is contained in:
38
ccxt/pro/okxus.py
Normal file
38
ccxt/pro/okxus.py
Normal file
@@ -0,0 +1,38 @@
|
||||
# -*- 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.pro.okx import okx
|
||||
from ccxt.base.types import Any
|
||||
|
||||
|
||||
class okxus(okx):
|
||||
|
||||
def describe(self) -> Any:
|
||||
return self.deep_extend(super(okxus, self).describe(), {
|
||||
'id': 'okxus',
|
||||
'name': 'OKX(US)',
|
||||
'hostname': 'us.okx.com',
|
||||
'urls': {
|
||||
'api': {
|
||||
'rest': 'https://{hostname}',
|
||||
'ws': 'wss://wsus.okx.com:8443/ws/v5',
|
||||
},
|
||||
'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': {
|
||||
'ws': 'wss://wsuspap.okx.com:8443/ws/v5',
|
||||
},
|
||||
},
|
||||
'has': {
|
||||
'swap': False,
|
||||
'future': False,
|
||||
'option': False,
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user