ccxt 4.5.0__py2.py3-none-any.whl → 4.5.2__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ccxt/__init__.py +1 -5
- ccxt/ascendex.py +1 -1
- ccxt/async_support/__init__.py +1 -5
- ccxt/async_support/ascendex.py +1 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/binance.py +17 -12
- ccxt/async_support/bitget.py +1 -1
- ccxt/async_support/coinbase.py +46 -34
- ccxt/async_support/gate.py +31 -17
- ccxt/async_support/gemini.py +1 -1
- ccxt/async_support/hibachi.py +1 -1
- ccxt/async_support/hyperliquid.py +13 -2
- ccxt/async_support/indodax.py +11 -12
- ccxt/async_support/kraken.py +1 -8
- ccxt/async_support/krakenfutures.py +25 -25
- ccxt/async_support/mexc.py +2 -1
- ccxt/async_support/okx.py +2 -2
- ccxt/async_support/poloniex.py +1 -1
- ccxt/async_support/timex.py +35 -0
- ccxt/async_support/tradeogre.py +32 -0
- ccxt/async_support/wavesexchange.py +33 -0
- ccxt/async_support/zonda.py +12 -0
- ccxt/base/exchange.py +7 -1
- ccxt/binance.py +17 -12
- ccxt/bitget.py +1 -1
- ccxt/coinbase.py +46 -34
- ccxt/gate.py +31 -17
- ccxt/gemini.py +1 -1
- ccxt/hibachi.py +1 -1
- ccxt/hyperliquid.py +13 -2
- ccxt/indodax.py +11 -12
- ccxt/kraken.py +1 -8
- ccxt/krakenfutures.py +25 -25
- ccxt/mexc.py +2 -1
- ccxt/okx.py +2 -2
- ccxt/poloniex.py +1 -1
- ccxt/pro/__init__.py +1 -3
- ccxt/pro/bitget.py +328 -75
- ccxt/pro/bitmart.py +1 -1
- ccxt/pro/bybit.py +8 -10
- ccxt/pro/gate.py +8 -1
- ccxt/pro/gemini.py +6 -2
- ccxt/pro/hyperliquid.py +6 -0
- ccxt/pro/kraken.py +4 -6
- ccxt/pro/lbank.py +56 -2
- ccxt/pro/mexc.py +1 -1
- ccxt/test/tests_async.py +2 -25
- ccxt/test/tests_sync.py +2 -25
- ccxt/timex.py +35 -0
- ccxt/tradeogre.py +32 -0
- ccxt/wavesexchange.py +33 -0
- ccxt/zonda.py +12 -0
- {ccxt-4.5.0.dist-info → ccxt-4.5.2.dist-info}/METADATA +111 -113
- {ccxt-4.5.0.dist-info → ccxt-4.5.2.dist-info}/RECORD +57 -64
- ccxt/abstract/ellipx.py +0 -25
- ccxt/abstract/vertex.py +0 -19
- ccxt/async_support/ellipx.py +0 -2029
- ccxt/async_support/vertex.py +0 -3050
- ccxt/ellipx.py +0 -2029
- ccxt/pro/vertex.py +0 -948
- ccxt/vertex.py +0 -3050
- {ccxt-4.5.0.dist-info → ccxt-4.5.2.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.5.0.dist-info → ccxt-4.5.2.dist-info}/WHEEL +0 -0
- {ccxt-4.5.0.dist-info → ccxt-4.5.2.dist-info}/top_level.txt +0 -0
ccxt/okx.py
CHANGED
@@ -1243,7 +1243,7 @@ class okx(Exchange, ImplicitAPI):
|
|
1243
1243
|
'FUTURES': 'FUTURES',
|
1244
1244
|
'OPTION': 'OPTION',
|
1245
1245
|
},
|
1246
|
-
'brokerId': '
|
1246
|
+
'brokerId': '6b9ad766b55dBCDE',
|
1247
1247
|
},
|
1248
1248
|
'features': {
|
1249
1249
|
'default': {
|
@@ -6008,7 +6008,7 @@ class okx(Exchange, ImplicitAPI):
|
|
6008
6008
|
self.check_required_credentials()
|
6009
6009
|
# inject id in implicit api call
|
6010
6010
|
if method == 'POST' and (path == 'trade/batch-orders' or path == 'trade/order-algo' or path == 'trade/order'):
|
6011
|
-
brokerId = self.safe_string(self.options, 'brokerId', '
|
6011
|
+
brokerId = self.safe_string(self.options, 'brokerId', '6b9ad766b55dBCDE')
|
6012
6012
|
if isinstance(params, list):
|
6013
6013
|
for i in range(0, len(params)):
|
6014
6014
|
entry = params[i]
|
ccxt/poloniex.py
CHANGED
@@ -2567,7 +2567,7 @@ class poloniex(Exchange, ImplicitAPI):
|
|
2567
2567
|
# "scale" : "-1",
|
2568
2568
|
# "asks" : ["23139.82", "0.317981", "23140", "0.191091", "23170.06", "0.01", "23200", "0.107758", "23230.55", "0.01", "23247.2", "0.154", "23254", "0.005121", "23263", "0.038", "23285.4", "0.308", "23300", "0.108896"],
|
2569
2569
|
# "bids" : ["23139.74", "0.432092", "23139.73", "0.198592", "23123.21", "0.000886", "23123.2", "0.308", "23121.4", "0.154", "23105", "0.000789", "23100", "0.078175", "23069.1", "0.026276", "23068.83", "0.001329", "23051", "0.000048"],
|
2570
|
-
# "ts" :
|
2570
|
+
# "ts" : 1659695219512
|
2571
2571
|
# }
|
2572
2572
|
#
|
2573
2573
|
timestamp = self.safe_integer(response, 'time')
|
ccxt/pro/__init__.py
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
# ----------------------------------------------------------------------------
|
6
6
|
|
7
|
-
__version__ = '4.5.
|
7
|
+
__version__ = '4.5.2'
|
8
8
|
|
9
9
|
# ----------------------------------------------------------------------------
|
10
10
|
|
@@ -125,7 +125,6 @@ from ccxt.pro.poloniex import poloniex # noqa
|
|
125
125
|
from ccxt.pro.probit import probit # noqa: F401
|
126
126
|
from ccxt.pro.tradeogre import tradeogre # noqa: F401
|
127
127
|
from ccxt.pro.upbit import upbit # noqa: F401
|
128
|
-
from ccxt.pro.vertex import vertex # noqa: F401
|
129
128
|
from ccxt.pro.whitebit import whitebit # noqa: F401
|
130
129
|
from ccxt.pro.woo import woo # noqa: F401
|
131
130
|
from ccxt.pro.woofipro import woofipro # noqa: F401
|
@@ -200,7 +199,6 @@ exchanges = [
|
|
200
199
|
'probit',
|
201
200
|
'tradeogre',
|
202
201
|
'upbit',
|
203
|
-
'vertex',
|
204
202
|
'whitebit',
|
205
203
|
'woo',
|
206
204
|
'woofipro',
|