ccxt 4.4.61__py2.py3-none-any.whl → 4.4.62__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 -1
- ccxt/abstract/bybit.py +1 -0
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/base/exchange.py +9 -7
- ccxt/async_support/bingx.py +5 -6
- ccxt/async_support/bybit.py +109 -2
- ccxt/async_support/kraken.py +2 -2
- ccxt/async_support/phemex.py +221 -5
- ccxt/async_support/whitebit.py +3 -1
- ccxt/base/exchange.py +53 -26
- ccxt/bingx.py +5 -6
- ccxt/bybit.py +109 -2
- ccxt/kraken.py +2 -2
- ccxt/phemex.py +221 -5
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/binance.py +25 -11
- ccxt/pro/lbank.py +10 -4
- ccxt/pro/myokx.py +10 -1
- ccxt/test/tests_init.py +2 -1
- ccxt/whitebit.py +3 -1
- {ccxt-4.4.61.dist-info → ccxt-4.4.62.dist-info}/METADATA +4 -4
- {ccxt-4.4.61.dist-info → ccxt-4.4.62.dist-info}/RECORD +25 -25
- {ccxt-4.4.61.dist-info → ccxt-4.4.62.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.4.61.dist-info → ccxt-4.4.62.dist-info}/WHEEL +0 -0
- {ccxt-4.4.61.dist-info → ccxt-4.4.62.dist-info}/top_level.txt +0 -0
ccxt/pro/binance.py
CHANGED
@@ -78,6 +78,7 @@ class binance(ccxt.async_support.binance):
|
|
78
78
|
'ws-api': {
|
79
79
|
'spot': 'wss://testnet.binance.vision/ws-api/v3',
|
80
80
|
'future': 'wss://testnet.binancefuture.com/ws-fapi/v1',
|
81
|
+
'delivery': 'wss://testnet.binancefuture.com/ws-dapi/v1',
|
81
82
|
},
|
82
83
|
},
|
83
84
|
},
|
@@ -90,6 +91,7 @@ class binance(ccxt.async_support.binance):
|
|
90
91
|
'ws-api': {
|
91
92
|
'spot': 'wss://ws-api.binance.com:443/ws-api/v3',
|
92
93
|
'future': 'wss://ws-fapi.binance.com/ws-fapi/v1',
|
94
|
+
'delivery': 'wss://ws-dapi.binance.com/ws-dapi/v1',
|
93
95
|
},
|
94
96
|
'papi': 'wss://fstream.binance.com/pm/ws',
|
95
97
|
},
|
@@ -2334,6 +2336,7 @@ class binance(ccxt.async_support.binance):
|
|
2334
2336
|
|
2335
2337
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/account/websocket-api/Futures-Account-Balance
|
2336
2338
|
https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#account-information-user_data
|
2339
|
+
https://developers.binance.com/docs/derivatives/coin-margined-futures/account/websocket-api
|
2337
2340
|
|
2338
2341
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2339
2342
|
:param str|None [params.type]: 'future', 'delivery', 'savings', 'funding', or 'spot'
|
@@ -2344,7 +2347,7 @@ class binance(ccxt.async_support.binance):
|
|
2344
2347
|
"""
|
2345
2348
|
await self.load_markets()
|
2346
2349
|
type = self.get_market_type('fetchBalanceWs', None, params)
|
2347
|
-
if type != 'spot' and type != 'future':
|
2350
|
+
if type != 'spot' and type != 'future' and type != 'delivery':
|
2348
2351
|
raise BadRequest(self.id + ' fetchBalanceWs only supports spot or swap markets')
|
2349
2352
|
url = self.urls['api']['ws']['ws-api'][type]
|
2350
2353
|
requestId = self.request_id(url)
|
@@ -2450,6 +2453,7 @@ class binance(ccxt.async_support.binance):
|
|
2450
2453
|
fetch all open positions
|
2451
2454
|
|
2452
2455
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/websocket-api/Position-Information
|
2456
|
+
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/websocket-api/Position-Information
|
2453
2457
|
|
2454
2458
|
:param str[] [symbols]: list of unified market symbols
|
2455
2459
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -2458,15 +2462,20 @@ class binance(ccxt.async_support.binance):
|
|
2458
2462
|
:returns dict[]: a list of `position structure <https://docs.ccxt.com/#/?id=position-structure>`
|
2459
2463
|
"""
|
2460
2464
|
await self.load_markets()
|
2461
|
-
symbols = self.market_symbols(symbols, 'swap', True, True, True)
|
2462
|
-
url = self.urls['api']['ws']['ws-api']['future']
|
2463
|
-
requestId = self.request_id(url)
|
2464
|
-
messageHash = str(requestId)
|
2465
2465
|
payload: dict = {}
|
2466
|
+
market = None
|
2467
|
+
symbols = self.market_symbols(symbols, 'swap', True, True, True)
|
2466
2468
|
if symbols is not None:
|
2467
2469
|
symbolsLength = len(symbols)
|
2468
2470
|
if symbolsLength == 1:
|
2469
|
-
|
2471
|
+
market = self.market(symbols[0])
|
2472
|
+
payload['symbol'] = market['id']
|
2473
|
+
type = self.get_market_type('fetchPositionsWs', market, params)
|
2474
|
+
if type != 'future' and type != 'delivery':
|
2475
|
+
raise BadRequest(self.id + ' fetchPositionsWs only supports swap markets')
|
2476
|
+
url = self.urls['api']['ws']['ws-api'][type]
|
2477
|
+
requestId = self.request_id(url)
|
2478
|
+
messageHash = str(requestId)
|
2470
2479
|
returnRateLimits = False
|
2471
2480
|
returnRateLimits, params = self.handle_option_and_params(params, 'fetchPositionsWs', 'returnRateLimits', False)
|
2472
2481
|
payload['returnRateLimits'] = returnRateLimits
|
@@ -2675,6 +2684,7 @@ class binance(ccxt.async_support.binance):
|
|
2675
2684
|
|
2676
2685
|
https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#place-new-order-trade
|
2677
2686
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/websocket-api/New-Order
|
2687
|
+
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/websocket-api
|
2678
2688
|
|
2679
2689
|
:param str symbol: unified symbol of the market to create an order in
|
2680
2690
|
:param str type: 'market' or 'limit'
|
@@ -2689,7 +2699,7 @@ class binance(ccxt.async_support.binance):
|
|
2689
2699
|
await self.load_markets()
|
2690
2700
|
market = self.market(symbol)
|
2691
2701
|
marketType = self.get_market_type('createOrderWs', market, params)
|
2692
|
-
if marketType != 'spot' and marketType != 'future':
|
2702
|
+
if marketType != 'spot' and marketType != 'future' and marketType != 'delivery':
|
2693
2703
|
raise BadRequest(self.id + ' createOrderWs only supports spot or swap markets')
|
2694
2704
|
url = self.urls['api']['ws']['ws-api'][marketType]
|
2695
2705
|
requestId = self.request_id(url)
|
@@ -2819,6 +2829,7 @@ class binance(ccxt.async_support.binance):
|
|
2819
2829
|
|
2820
2830
|
https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#cancel-and-replace-order-trade
|
2821
2831
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/websocket-api/Modify-Order
|
2832
|
+
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/websocket-api/Modify-Order
|
2822
2833
|
|
2823
2834
|
:param str id: order id
|
2824
2835
|
:param str symbol: unified symbol of the market to create an order in
|
@@ -2832,22 +2843,23 @@ class binance(ccxt.async_support.binance):
|
|
2832
2843
|
await self.load_markets()
|
2833
2844
|
market = self.market(symbol)
|
2834
2845
|
marketType = self.get_market_type('editOrderWs', market, params)
|
2835
|
-
if marketType != 'spot' and marketType != 'future':
|
2846
|
+
if marketType != 'spot' and marketType != 'future' and marketType != 'delivery':
|
2836
2847
|
raise BadRequest(self.id + ' editOrderWs only supports spot or swap markets')
|
2837
2848
|
url = self.urls['api']['ws']['ws-api'][marketType]
|
2838
2849
|
requestId = self.request_id(url)
|
2839
2850
|
messageHash = str(requestId)
|
2851
|
+
isSwap = (marketType == 'future' or marketType == 'delivery')
|
2840
2852
|
payload = None
|
2841
2853
|
if marketType == 'spot':
|
2842
2854
|
payload = self.editSpotOrderRequest(id, symbol, type, side, amount, price, params)
|
2843
|
-
elif
|
2855
|
+
elif isSwap:
|
2844
2856
|
payload = self.editContractOrderRequest(id, symbol, type, side, amount, price, params)
|
2845
2857
|
returnRateLimits = False
|
2846
2858
|
returnRateLimits, params = self.handle_option_and_params(params, 'editOrderWs', 'returnRateLimits', False)
|
2847
2859
|
payload['returnRateLimits'] = returnRateLimits
|
2848
2860
|
message: dict = {
|
2849
2861
|
'id': messageHash,
|
2850
|
-
'method': 'order.modify' if (
|
2862
|
+
'method': 'order.modify' if (isSwap) else 'order.cancelReplace',
|
2851
2863
|
'params': self.sign_params(self.extend(payload, params)),
|
2852
2864
|
}
|
2853
2865
|
subscription: dict = {
|
@@ -2970,6 +2982,7 @@ class binance(ccxt.async_support.binance):
|
|
2970
2982
|
|
2971
2983
|
https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#cancel-order-trade
|
2972
2984
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/websocket-api/Cancel-Order
|
2985
|
+
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/websocket-api/Cancel-Order
|
2973
2986
|
|
2974
2987
|
:param str id: order id
|
2975
2988
|
:param str [symbol]: unified market symbol, default is None
|
@@ -3047,6 +3060,7 @@ class binance(ccxt.async_support.binance):
|
|
3047
3060
|
|
3048
3061
|
https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#query-order-user_data
|
3049
3062
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/websocket-api/Query-Order
|
3063
|
+
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/websocket-api/Query-Order
|
3050
3064
|
|
3051
3065
|
:param str id: order id
|
3052
3066
|
:param str [symbol]: unified symbol of the market the order was made in
|
@@ -3058,7 +3072,7 @@ class binance(ccxt.async_support.binance):
|
|
3058
3072
|
raise BadRequest(self.id + ' cancelOrderWs requires a symbol')
|
3059
3073
|
market = self.market(symbol)
|
3060
3074
|
type = self.get_market_type('fetchOrderWs', market, params)
|
3061
|
-
if type != 'spot' and type != 'future':
|
3075
|
+
if type != 'spot' and type != 'future' and type != 'delivery':
|
3062
3076
|
raise BadRequest(self.id + ' fetchOrderWs only supports spot or swap markets')
|
3063
3077
|
url = self.urls['api']['ws']['ws-api'][type]
|
3064
3078
|
requestId = self.request_id(url)
|
ccxt/pro/lbank.py
CHANGED
@@ -429,7 +429,7 @@ class lbank(ccxt.async_support.lbank):
|
|
429
429
|
# "volume":6.3607,
|
430
430
|
# "amount":77148.9303,
|
431
431
|
# "price":12129,
|
432
|
-
# "direction":"sell", #
|
432
|
+
# "direction":"sell", # buy, sell, buy_market, sell_market, buy_maker, sell_maker, buy_ioc, sell_ioc, buy_fok, sell_fok
|
433
433
|
# "TS":"2019-06-28T19:55:49.460"
|
434
434
|
# },
|
435
435
|
# "type":"trade",
|
@@ -467,7 +467,7 @@ class lbank(ccxt.async_support.lbank):
|
|
467
467
|
# "volume":6.3607,
|
468
468
|
# "amount":77148.9303,
|
469
469
|
# "price":12129,
|
470
|
-
# "direction":"sell", #
|
470
|
+
# "direction":"sell", # buy, sell, buy_market, sell_market, buy_maker, sell_maker, buy_ioc, sell_ioc, buy_fok, sell_fok
|
471
471
|
# "TS":"2019-06-28T19:55:49.460"
|
472
472
|
# }
|
473
473
|
#
|
@@ -475,8 +475,14 @@ class lbank(ccxt.async_support.lbank):
|
|
475
475
|
datetime = (self.iso8601(timestamp)) if (timestamp is not None) else (self.safe_string(trade, 'TS'))
|
476
476
|
if timestamp is None:
|
477
477
|
timestamp = self.parse8601(datetime)
|
478
|
-
|
479
|
-
|
478
|
+
rawSide = self.safe_string_2(trade, 'direction', 3)
|
479
|
+
parts = rawSide.split('_')
|
480
|
+
firstPart = self.safe_string(parts, 0)
|
481
|
+
secondPart = self.safe_string(parts, 1)
|
482
|
+
side = firstPart
|
483
|
+
# reverse if it was 'maker'
|
484
|
+
if secondPart is not None and secondPart == 'maker':
|
485
|
+
side = 'sell' if (side == 'buy') else 'buy'
|
480
486
|
return self.safe_trade({
|
481
487
|
'timestamp': timestamp,
|
482
488
|
'datetime': datetime,
|
ccxt/pro/myokx.py
CHANGED
@@ -12,11 +12,20 @@ class myokx(okx):
|
|
12
12
|
def describe(self) -> Any:
|
13
13
|
return self.deep_extend(super(myokx, self).describe(), {
|
14
14
|
'id': 'myokx',
|
15
|
-
'name': 'MyOKX',
|
15
|
+
'name': 'MyOKX(EEA)',
|
16
|
+
'hostname': 'eea.okx.com',
|
16
17
|
'urls': {
|
17
18
|
'api': {
|
19
|
+
'rest': 'https://{hostname}',
|
18
20
|
'ws': 'wss://wseea.okx.com:8443/ws/v5',
|
19
21
|
},
|
22
|
+
'www': 'https://my.okx.com',
|
23
|
+
'doc': 'https://my.okx.com/docs-v5/en/#overview',
|
24
|
+
'fees': 'https://my.okx.com/pages/products/fees.html',
|
25
|
+
'referral': {
|
26
|
+
'url': 'https://www.my.okx.com/join/CCXT2023',
|
27
|
+
'discount': 0.2,
|
28
|
+
},
|
20
29
|
'test': {
|
21
30
|
'ws': 'wss://wseeapap.okx.com:8443/ws/v5',
|
22
31
|
},
|
ccxt/test/tests_init.py
CHANGED
@@ -24,9 +24,10 @@ runAll = get_cli_arg_value('--all')
|
|
24
24
|
if (isBaseTests):
|
25
25
|
if (isWs):
|
26
26
|
test_base_init_ws()
|
27
|
+
print('base WS tests passed!')
|
27
28
|
else:
|
28
29
|
base_tests_init()
|
29
|
-
|
30
|
+
print('base REST tests passed!')
|
30
31
|
if not runAll:
|
31
32
|
exit(0)
|
32
33
|
|
ccxt/whitebit.py
CHANGED
@@ -1150,6 +1150,7 @@ class whitebit(Exchange, ImplicitAPI):
|
|
1150
1150
|
# "clientOrderId": "customId11",
|
1151
1151
|
# "role": 2, # 1 = maker, 2 = taker
|
1152
1152
|
# "deal": "0.00419198" # amount in money
|
1153
|
+
# "feeAsset": "USDT"
|
1153
1154
|
# }
|
1154
1155
|
#
|
1155
1156
|
# fetchMyTrades
|
@@ -1165,6 +1166,7 @@ class whitebit(Exchange, ImplicitAPI):
|
|
1165
1166
|
# "deal": "9.981007",
|
1166
1167
|
# "fee": "0.009981007",
|
1167
1168
|
# "orderId": 58166729555,
|
1169
|
+
# "feeAsset": "USDT"
|
1168
1170
|
# }
|
1169
1171
|
#
|
1170
1172
|
market = self.safe_market(None, market)
|
@@ -1185,7 +1187,7 @@ class whitebit(Exchange, ImplicitAPI):
|
|
1185
1187
|
if feeCost is not None:
|
1186
1188
|
fee = {
|
1187
1189
|
'cost': feeCost,
|
1188
|
-
'currency':
|
1190
|
+
'currency': self.safe_currency_code(self.safe_string(trade, 'feeAsset')),
|
1189
1191
|
}
|
1190
1192
|
return self.safe_trade({
|
1191
1193
|
'info': trade,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.4.
|
3
|
+
Version: 4.4.62
|
4
4
|
Summary: A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges
|
5
5
|
Home-page: https://ccxt.com
|
6
6
|
Author: Igor Kroitor
|
@@ -277,13 +277,13 @@ console.log(version, Object.keys(exchanges));
|
|
277
277
|
|
278
278
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
279
279
|
|
280
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
281
|
-
* unpkg: https://unpkg.com/ccxt@4.4.
|
280
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.62/dist/ccxt.browser.min.js
|
281
|
+
* unpkg: https://unpkg.com/ccxt@4.4.62/dist/ccxt.browser.min.js
|
282
282
|
|
283
283
|
CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
|
284
284
|
|
285
285
|
```HTML
|
286
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
286
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.62/dist/ccxt.browser.min.js"></script>
|
287
287
|
```
|
288
288
|
|
289
289
|
Creates a global `ccxt` object:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=n9NPOnGQ_KHGF-zFuWhbX2lD7XQNVk-mTd-RpGBXvCU,16681
|
2
2
|
ccxt/ace.py,sha256=l_4-pNkkJBINgPsBtM4b9Ff6t8Tp59tKCXstLesMzvc,44752
|
3
3
|
ccxt/alpaca.py,sha256=t8ahjPZQEENMElUyPzH_1-I0i5VGsJpoUknpKl-IkKM,78428
|
4
4
|
ccxt/ascendex.py,sha256=CoV4qMazVCUMn1J0wlE5sJIak_hfmVq0VOeHB6VOQBs,155992
|
@@ -8,7 +8,7 @@ ccxt/binance.py,sha256=hgiSOBZjKk756qsMbZUlSHWQTeD9kXZJHMuQ-DXHCuA,686034
|
|
8
8
|
ccxt/binancecoinm.py,sha256=UEJd_dZQkrLdJpaCE_t9aHCwJdxpjheyTaWJ8RKWIm8,1720
|
9
9
|
ccxt/binanceus.py,sha256=fPaJxinZbmJbrXMW1aYW32n6fXX_VL7odjLEng77wdI,9500
|
10
10
|
ccxt/binanceusdm.py,sha256=BI4hya6nydNHC7hiYw6FVk7QaQWHG6emVnCx1K6R02k,2650
|
11
|
-
ccxt/bingx.py,sha256=
|
11
|
+
ccxt/bingx.py,sha256=ww61G-kb_pZXHg4u6Umrszy92ppUgxE2g_ApGhGRPMw,273527
|
12
12
|
ccxt/bit2c.py,sha256=cphPmWwrnHYSGpHJz48BYu3zPGkj_oJIUYFXNLdl_Q4,39471
|
13
13
|
ccxt/bitbank.py,sha256=eoSBMt-CZi6p2Xy5dq17N0sGNlfiERmPRdqlhVZHOG4,46286
|
14
14
|
ccxt/bitbns.py,sha256=rysY94AjfqPhC3rvPBp-7OL79rJgMS5gKMnYc200A0Y,50903
|
@@ -34,7 +34,7 @@ ccxt/btcalpha.py,sha256=t9ku28FD2yE4rc-V4U-eRhsHKz4izMSCK8xb7wQ4kNE,39704
|
|
34
34
|
ccxt/btcbox.py,sha256=nsJrbfky_4wC-O1oXb4oWr3EYiO49L-sa4-0NxB9Zkg,30034
|
35
35
|
ccxt/btcmarkets.py,sha256=jC6RA5Tn1DR4FZpZln-KZKkz9WYT6o_MNJ6s6G-Dhjs,55829
|
36
36
|
ccxt/btcturk.py,sha256=mNG1uJqcPgTQ0g2sozq5Up1xNndrF_vraYEYsOs3jKw,39482
|
37
|
-
ccxt/bybit.py,sha256=
|
37
|
+
ccxt/bybit.py,sha256=HcI5HkVPc747D_dV9VwVp3prLMp3mhXRZHkPwBBFYTs,436722
|
38
38
|
ccxt/cex.py,sha256=QczrmAFcDyGK7pTKjdH4yVkG916War3_cigkqsEDlwQ,72342
|
39
39
|
ccxt/coinbase.py,sha256=3MqYX9n4wCojQzFc_OFEGpPdn4ZR8wwnYdnt-uPgEL4,229962
|
40
40
|
ccxt/coinbaseadvanced.py,sha256=Eb1X4_VtdNEu1q0Anr-MzdHG55OhCiZYgdeZv2kFuPg,577
|
@@ -71,7 +71,7 @@ ccxt/hyperliquid.py,sha256=2daODw6WBKDTYcq4Kkk1rb98F_kjzMoHeFKYcRckPFY,144197
|
|
71
71
|
ccxt/idex.py,sha256=K6XyVeklJCeCu6MhSCnxwICOZyZitachIcSTqDsvtx0,76204
|
72
72
|
ccxt/independentreserve.py,sha256=4kg2DbElwd39vDP_39tIjRMj4uT2E7Rm6HIxnTfcux0,43214
|
73
73
|
ccxt/indodax.py,sha256=mnOPkrLScNIQ9CFkFY126OHgnLf2pCdnxaILPvFiwPc,57739
|
74
|
-
ccxt/kraken.py,sha256=
|
74
|
+
ccxt/kraken.py,sha256=toNfdzB0wiqk1FhOxAK1sQMyrqBQResyyFUGAPgOrFU,144816
|
75
75
|
ccxt/krakenfutures.py,sha256=vI0pcbgOHX2CMsk2Ck2jxvEBO4uqD2lrFfts1ACwDfo,123139
|
76
76
|
ccxt/kucoin.py,sha256=7L1xGNoYEmwoY46sCeg3az3KavKdHGn4qp3NMO3DyYo,232323
|
77
77
|
ccxt/kucoinfutures.py,sha256=j-jeCgH55jpAJPxKXSHLl7oDX1gQ4t3yXj0WvW_0dqQ,146173
|
@@ -92,7 +92,7 @@ ccxt/oxfun.py,sha256=XfF-kErOOwLBHVpqxpXngFj8EZmXqAGtpmGE_2Q5Ssg,127504
|
|
92
92
|
ccxt/p2b.py,sha256=2mkYFm3h_lFtgEu13F6sDgbj3UxYyTG-3R_l-w7NZiM,56725
|
93
93
|
ccxt/paradex.py,sha256=J1MISnRxvi8fzylL-n4IjGo7f8jEn_sMvy-N7ep_kqc,88918
|
94
94
|
ccxt/paymium.py,sha256=l6gBKUBEvfxgLzVZaaLq3-v_wD-I9S64Mdi_mf87_v4,26201
|
95
|
-
ccxt/phemex.py,sha256=
|
95
|
+
ccxt/phemex.py,sha256=TpmGuYGH-6uqkmfByC5q8cPQsMX-1XA7nI3ZW2P_vUk,241674
|
96
96
|
ccxt/poloniex.py,sha256=NgL7Qq8JxdTX4_EokfYrArgYCzQduoixnF0cTqQBAzQ,105238
|
97
97
|
ccxt/poloniexfutures.py,sha256=tiPISr3IPJkViGW3R19YqMYiK9I0_VR7cVtctJEBmvo,83197
|
98
98
|
ccxt/probit.py,sha256=dHWDuCGNnAUja1RYoXo1JRlEgFuWiQSmGUX6yrB_dmU,79412
|
@@ -102,7 +102,7 @@ ccxt/tradeogre.py,sha256=7gtluPlJzLiJA-donFu341mVC90cU__HQH7cGt0p6PA,26505
|
|
102
102
|
ccxt/upbit.py,sha256=vA65OOflcSpqV8RFPCjW5G_gwOSSZWheP_sneGDpjus,87996
|
103
103
|
ccxt/vertex.py,sha256=oHahmepx-A4Z_u8lYn3q_TaAvqbAK17DNY-vCqWEqCQ,129137
|
104
104
|
ccxt/wavesexchange.py,sha256=Syfi1W5yLpcu0Pe4MPhpJ9lWm1TRLfzUNdofTQDF7KA,119634
|
105
|
-
ccxt/whitebit.py,sha256=
|
105
|
+
ccxt/whitebit.py,sha256=F0kYEHvr58uiQD3sXt0u-N5w0YCekzGPKjPsXdP2CCo,124048
|
106
106
|
ccxt/woo.py,sha256=dQNBff6RfaZubKaY5RToI2gGs3kWcHH3RtPhDcTdzGs,159378
|
107
107
|
ccxt/woofipro.py,sha256=mbZLBhENAw7sXmbruZ3PzDgYR5EoinQPMLoFpDXU96w,120876
|
108
108
|
ccxt/xt.py,sha256=MRkoQWMGXp3P_FGaIxqzAmoda1u1Xl8Qp-BAplifJa8,212094
|
@@ -145,7 +145,7 @@ ccxt/abstract/btcalpha.py,sha256=sbF4SAkTJq01QPQw4D2GMkKrPhKfFIsG-PNtMAC9WwU,138
|
|
145
145
|
ccxt/abstract/btcbox.py,sha256=pifkHEayyfVN4lhO2s8oKg_wjQChwWo0g5-vw4rcm1s,931
|
146
146
|
ccxt/abstract/btcmarkets.py,sha256=dQ2yTZ_8T2TEeAYIuKE0ATImbOLDLGSK7HbbBd8XVJQ,3690
|
147
147
|
ccxt/abstract/btcturk.py,sha256=duM-QrB9MvGpopOtxkfbeYlY49bgvXQLiosRVmnQYFw,1777
|
148
|
-
ccxt/abstract/bybit.py,sha256=
|
148
|
+
ccxt/abstract/bybit.py,sha256=2CC-aQ3Sw3px_6hC2LHBO2WVxIuhYEzmu4t05tGEuj0,50083
|
149
149
|
ccxt/abstract/cex.py,sha256=59oASCpeYdLPKnhD6Ih62I5FhjgwZDcU9BiHewUDoew,3600
|
150
150
|
ccxt/abstract/coinbase.py,sha256=GFXDh_Bf65Gsx_DmgOrRG2jpM3IdITE3Agqz_LZTJfo,15507
|
151
151
|
ccxt/abstract/coinbaseadvanced.py,sha256=GFXDh_Bf65Gsx_DmgOrRG2jpM3IdITE3Agqz_LZTJfo,15507
|
@@ -220,7 +220,7 @@ ccxt/abstract/xt.py,sha256=p0fG3O8kIeMYIvMlqxrhpXeo7lraee6lIlu9yqu6f10,27340
|
|
220
220
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
221
221
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
222
222
|
ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
|
223
|
-
ccxt/async_support/__init__.py,sha256=
|
223
|
+
ccxt/async_support/__init__.py,sha256=__8Wn36RI8e4yqX9ru9xjNiaU2iWge7DEBRyqgBYQxc,16504
|
224
224
|
ccxt/async_support/ace.py,sha256=BCcZ8TexOxR93v8dEICqhRlDvvzJPiLz999kp58GzwM,44976
|
225
225
|
ccxt/async_support/alpaca.py,sha256=VHP3C7c3jIefKBSleXbTWjnY6RQnBGRNYe5HgrG0PVg,78874
|
226
226
|
ccxt/async_support/ascendex.py,sha256=7t8avcGu6O-buamW81K7JTV5wctKC0qypg0yYMvKs7Y,156805
|
@@ -230,7 +230,7 @@ ccxt/async_support/binance.py,sha256=_E-4Xh0tr1Nelnh0NpQhsa2zLgktI4JkBK2yUWVJ0GQ
|
|
230
230
|
ccxt/async_support/binancecoinm.py,sha256=1NC5yuHlkNgXH5mEz20lU7O7u3pODa6fluSmHO7W5Lc,1758
|
231
231
|
ccxt/async_support/binanceus.py,sha256=fD4Rm2iJZ6YZuJAbRt5TPh2p8dIyN8yQkovnSWKF6F8,9514
|
232
232
|
ccxt/async_support/binanceusdm.py,sha256=7SvgLSpu0-VWHDP_WH8Zo-SEORsyF-tuHhWdQnFMf80,2688
|
233
|
-
ccxt/async_support/bingx.py,sha256=
|
233
|
+
ccxt/async_support/bingx.py,sha256=s5L1kpt0ollqtSl4J3AE_ah62w7C3tOaIMexvJ_rPfA,274893
|
234
234
|
ccxt/async_support/bit2c.py,sha256=iIOBj76HMlV1iCqUGnWZje_MOwZeVIa1e8Yj6S6IvQA,39683
|
235
235
|
ccxt/async_support/bitbank.py,sha256=xi8LvBORSMhn5jQk8AlPG6-F_PDXDE4mMzyR1FybQ1I,46546
|
236
236
|
ccxt/async_support/bitbns.py,sha256=L2_GDjTTycASkstkfizQ7pcBVzOWYvC7CoBk1nt4h-4,51157
|
@@ -256,7 +256,7 @@ ccxt/async_support/btcalpha.py,sha256=KXc-Xl6ZeSwYkYYXPPMSQalbY-XwFCOvNCcVx9_qCZ
|
|
256
256
|
ccxt/async_support/btcbox.py,sha256=bY4LZaCVh2eEyrHF0rRc65D8ws53oAcC0MqbJyU_odE,30258
|
257
257
|
ccxt/async_support/btcmarkets.py,sha256=ByaubB2c6aGB5BQGi6mZq65EYHAWEEu7Tuoj9Kauucw,56179
|
258
258
|
ccxt/async_support/btcturk.py,sha256=ox_4BvoFHyn8BJJTmJMX5-UB8tZt03KGAMMCqe8yUhE,39700
|
259
|
-
ccxt/async_support/bybit.py,sha256=
|
259
|
+
ccxt/async_support/bybit.py,sha256=7lJUc31VyIPUU_Ihtmn-1VKrnQFCxkMBobKlWEI7T7k,438536
|
260
260
|
ccxt/async_support/cex.py,sha256=dRHz1f0pW0JtjL7mMhU9TjrxJK-ttnAPa1B-tbpRBZM,72814
|
261
261
|
ccxt/async_support/coinbase.py,sha256=iuA6M_QL2blA2TqZwCTl8n3fBLicJgqWZHIHhtTQTHI,231188
|
262
262
|
ccxt/async_support/coinbaseadvanced.py,sha256=TnsUS2r5fvHIEfQmJh7J6Muyg8tPqDJphKYmK7gUQGE,591
|
@@ -293,7 +293,7 @@ ccxt/async_support/hyperliquid.py,sha256=ylliYL2bkThKRGfFvYMz9Wtp8XlvZsP_C88C5Ep
|
|
293
293
|
ccxt/async_support/idex.py,sha256=qIgNayuCWXCggvnVDhVOCUOYknMmgwMjqXhEJWXzrqs,76680
|
294
294
|
ccxt/async_support/independentreserve.py,sha256=HvAj_2WG3lKNy5R2vDmV32frQbsOb3TSvg7QHZ8E8So,43512
|
295
295
|
ccxt/async_support/indodax.py,sha256=JssbOrL5Xy5MVgwtv9nbKPelmgOS9IMAniyZ5D5d6Lc,58047
|
296
|
-
ccxt/async_support/kraken.py,sha256=
|
296
|
+
ccxt/async_support/kraken.py,sha256=3tBpkyGJteKTajzftWcZogQkAOUxE2P2pckQgAoSXh4,145472
|
297
297
|
ccxt/async_support/krakenfutures.py,sha256=qaYYyYI6jgBsKbZsmz00g9621iLQv5zWJBNjeUvXm5c,123627
|
298
298
|
ccxt/async_support/kucoin.py,sha256=CMrygTtwyj3u4N5WkRxKK1wI5Rde3X5t427YQHEsWLc,233473
|
299
299
|
ccxt/async_support/kucoinfutures.py,sha256=ydEifQNl2sIY-HGxtzjc49KgQQulxNrJRgKI-OeS1Wg,146961
|
@@ -314,7 +314,7 @@ ccxt/async_support/oxfun.py,sha256=Hd4A3Ym0UCoxINhjMuD_d19MP8K1Kkk7K6plK114e5k,1
|
|
314
314
|
ccxt/async_support/p2b.py,sha256=A_RPhOvbOMozI8Ypvw_Qzon5c6609l-fle3hYMT4j4w,56967
|
315
315
|
ccxt/async_support/paradex.py,sha256=cNoBbTa3qFCQg5Avg0NpQJ1b3Lz-VQBMBhAfO9DjUP0,89526
|
316
316
|
ccxt/async_support/paymium.py,sha256=RvV30CGIfKRRsttmdjRgbpNX0l92M8YzPkctlFqGs-M,26389
|
317
|
-
ccxt/async_support/phemex.py,sha256=
|
317
|
+
ccxt/async_support/phemex.py,sha256=sUSRLfkCfuStex1OAGNMNh1vEKARG7uDbYSdsffLPd0,242564
|
318
318
|
ccxt/async_support/poloniex.py,sha256=AFBTA2jZtJs78WWOUFPAyo_K6DUlbxwF2pyhLzfGkzA,105786
|
319
319
|
ccxt/async_support/poloniexfutures.py,sha256=5VlGcB2YgXLQ8ddHw82NIw1gGdHFm28q4zxwvlpCMHY,83595
|
320
320
|
ccxt/async_support/probit.py,sha256=nhYNevIgOXHg4moxHfVCqcoVXgZ9ddKloqtaFgqIKP0,79804
|
@@ -324,7 +324,7 @@ ccxt/async_support/tradeogre.py,sha256=2DsBbVrnIxYSsL5MZ6pDjghSVYSYqg0S-iz_fCyMA
|
|
324
324
|
ccxt/async_support/upbit.py,sha256=S_4lEXo77uutBFBCT8n7EuDMqurdIeM3N7gemofIs_I,88478
|
325
325
|
ccxt/async_support/vertex.py,sha256=dPUSGt4yDaRzbQ7gkIr937c3sRJ5r_K9xg8BrDOlWhQ,129655
|
326
326
|
ccxt/async_support/wavesexchange.py,sha256=hUuCCBhpBraqWxFXmTfhjV51oUSRQQ0W4dR6xUNleKw,120184
|
327
|
-
ccxt/async_support/whitebit.py,sha256=
|
327
|
+
ccxt/async_support/whitebit.py,sha256=vghijBayx7PSx6MqEH1tHJknaTMSZcXUgNu2nEJuEgI,124710
|
328
328
|
ccxt/async_support/woo.py,sha256=JwbO4M0lBIjRMAFOWMtyqCFtlA-QdNjlqSso63GXfjw,160364
|
329
329
|
ccxt/async_support/woofipro.py,sha256=524-cOCsrsiMNooBgqZFVZG4I4SD_UOrTbDpOgYSGJM,121568
|
330
330
|
ccxt/async_support/xt.py,sha256=BJBfzPa_vMZkPCe7VNYSqHgsIJch4ZJTFvzKyFYH10k,213284
|
@@ -332,7 +332,7 @@ ccxt/async_support/yobit.py,sha256=rv_uIgrPq53wmRQh80anwi1lv6ZUXl4QIDSvNSWA-Ro,5
|
|
332
332
|
ccxt/async_support/zaif.py,sha256=jZZv3ZjGQgkPNRfY5B5p5DNMvanHWTTS8m6BLBWm9tA,31357
|
333
333
|
ccxt/async_support/zonda.py,sha256=2QL_B9CmBu4SU4K-Y8segpj57vzAd4aUT2H2cD3b07g,85320
|
334
334
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
335
|
-
ccxt/async_support/base/exchange.py,sha256=
|
335
|
+
ccxt/async_support/base/exchange.py,sha256=QoC819PZA1k2arUBCGIHiSF4UQgEBZNCHfulDKRFthw,116963
|
336
336
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
337
337
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
338
338
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=Y5HxAVXyyYduj6b6SbbUZETlq3GrVMzrkW1r-TMgpb8,6329
|
@@ -346,14 +346,14 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
|
|
346
346
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
347
347
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
348
348
|
ccxt/base/errors.py,sha256=MvCrL_sAM3de616T6RE0PSxiF2xV6Qqz5b1y1ghidbk,4888
|
349
|
-
ccxt/base/exchange.py,sha256=
|
349
|
+
ccxt/base/exchange.py,sha256=rLSE2UpoAac08V1FRS_cf27_aClUBpbF9R5aU3htPJs,319813
|
350
350
|
ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
351
351
|
ccxt/base/types.py,sha256=asavKC4Fpuz9MGv1tJBld0j8CeojiP7nBj04Abusst4,10766
|
352
|
-
ccxt/pro/__init__.py,sha256=
|
352
|
+
ccxt/pro/__init__.py,sha256=JqEGX4I-mlddCSkVDbPQ25e7JU0-iipxhHqpKVbX5hA,8023
|
353
353
|
ccxt/pro/alpaca.py,sha256=_WEorh5thYhvhn7R8hBvHW2m1P2foIbp8URjIt_9vcg,27623
|
354
354
|
ccxt/pro/ascendex.py,sha256=P6a81iK_T6uyEK6JHcNQbjJwLvurrUeQVoQqvp2_IU8,37512
|
355
355
|
ccxt/pro/bequant.py,sha256=reG2yXBhxn_TuOIg4J2BiLxl8Lw5Lag3IBMGBkiQCd0,1591
|
356
|
-
ccxt/pro/binance.py,sha256=
|
356
|
+
ccxt/pro/binance.py,sha256=Jb1cCvhBJK8wjtx9VcIbhg8Y6iKkjcUlLwi9wYV6idM,201239
|
357
357
|
ccxt/pro/binancecoinm.py,sha256=AfOWR--71YCCYSUsX50G4sW2OxvLKJX00XcpItnfG7o,1075
|
358
358
|
ccxt/pro/binanceus.py,sha256=PMx1G5RD-whXM02hRF8A6aW_-4-LJqPbx9o63nBp_8o,2034
|
359
359
|
ccxt/pro/binanceusdm.py,sha256=n01dbMu25CEcaJXNve--Ngf2Toqg3yWHstqTz4vtOUU,1551
|
@@ -403,10 +403,10 @@ ccxt/pro/kraken.py,sha256=GdcrqW_aWbvXRnXKH99EbjIvrMwDuyz-iZHnXY7o3Ls,66474
|
|
403
403
|
ccxt/pro/krakenfutures.py,sha256=8kx9kb5ATFTszgWDjb8u4sAVSj2-gy3AExeTTwP7FRg,63913
|
404
404
|
ccxt/pro/kucoin.py,sha256=aXBSfhUVZEyGLwoJJSi9MIOxyWWmnd_FRf38R6fAuV4,60753
|
405
405
|
ccxt/pro/kucoinfutures.py,sha256=9EbEi4vCwLl9evPlJLX7tQTk18mPz87piKnH6GZbMvo,56070
|
406
|
-
ccxt/pro/lbank.py,sha256=
|
406
|
+
ccxt/pro/lbank.py,sha256=CyrosUibFTA_CwCamYoWtrOzg_scpR79GvO4p5wu7Tg,35582
|
407
407
|
ccxt/pro/luno.py,sha256=QWGa52-wDisT3QGT-ZiEuqdvUxzTDbIR4ijr94PihIY,12392
|
408
408
|
ccxt/pro/mexc.py,sha256=ADmJF3_ATP-QAV8vTt6XG8YDUDLYwRcg5OWmWWSF4HA,56498
|
409
|
-
ccxt/pro/myokx.py,sha256=
|
409
|
+
ccxt/pro/myokx.py,sha256=iSdyUUOmRA8QdJNJSn-DoLJb-fw88ReQxAs6nithKVQ,1237
|
410
410
|
ccxt/pro/ndax.py,sha256=3cTUYVycEVaw2a13pScrQgbDWYM_JQAxZJ2LIe1q9pw,22975
|
411
411
|
ccxt/pro/okcoin.py,sha256=KADyAILCS5_Nab5yDp4ALe5OP29euKXfWrX_ohPwUPM,31036
|
412
412
|
ccxt/pro/okx.py,sha256=a_rGQl2A3ehjmqvAOMLGcRdHaFHNFOC-FKe5h00gaHc,104637
|
@@ -654,10 +654,10 @@ ccxt/static_dependencies/typing_inspect/typing_inspect.py,sha256=5gIWomLPfuDpgd3
|
|
654
654
|
ccxt/test/__init__.py,sha256=GKPbEcj0Rrz5HG-GUm-iY1IHhDYmlvcBXZAGk6-m2CI,141
|
655
655
|
ccxt/test/tests_async.py,sha256=50VEDk5smqAlKOVzBJiAAXvwaVnJ3DjAqlx0oQGM694,90044
|
656
656
|
ccxt/test/tests_helpers.py,sha256=egM69A2ZFYeVF5hwC1Qt-c5DOeClY5bv4jowmceeFV8,9736
|
657
|
-
ccxt/test/tests_init.py,sha256=
|
657
|
+
ccxt/test/tests_init.py,sha256=qM0-Gb0h0p6CANWTkyYZI7wl-iYOcrPur7aj_OKh7m0,1212
|
658
658
|
ccxt/test/tests_sync.py,sha256=7e4M2yPC35AltBIMXnqnBss7T8VQttP51GTveG6E7Mg,89070
|
659
|
-
ccxt-4.4.
|
660
|
-
ccxt-4.4.
|
661
|
-
ccxt-4.4.
|
662
|
-
ccxt-4.4.
|
663
|
-
ccxt-4.4.
|
659
|
+
ccxt-4.4.62.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
660
|
+
ccxt-4.4.62.dist-info/METADATA,sha256=b0wAxAfRrn_nhjWA8AoyABeDH7WGqyBxfMYrKEBGa1Q,130334
|
661
|
+
ccxt-4.4.62.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
|
662
|
+
ccxt-4.4.62.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
663
|
+
ccxt-4.4.62.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|