ccxt 4.4.53__py2.py3-none-any.whl → 4.4.57__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 -3
- ccxt/async_support/__init__.py +1 -3
- ccxt/async_support/base/exchange.py +5 -5
- ccxt/async_support/binance.py +20 -6
- ccxt/async_support/bitget.py +1 -1
- ccxt/async_support/bybit.py +3 -1
- ccxt/async_support/coinbase.py +1 -1
- ccxt/async_support/coinbaseinternational.py +2 -2
- ccxt/async_support/coinex.py +1 -1
- ccxt/async_support/deribit.py +8 -25
- ccxt/async_support/exmo.py +1 -1
- ccxt/async_support/hyperliquid.py +3 -3
- ccxt/async_support/kraken.py +1 -1
- ccxt/async_support/woofipro.py +2 -2
- ccxt/base/exchange.py +5 -5
- ccxt/binance.py +20 -6
- ccxt/bitget.py +1 -1
- ccxt/bybit.py +3 -1
- ccxt/coinbase.py +1 -1
- ccxt/coinbaseinternational.py +2 -2
- ccxt/coinex.py +1 -1
- ccxt/deribit.py +8 -25
- ccxt/exmo.py +1 -1
- ccxt/hyperliquid.py +3 -3
- ccxt/kraken.py +1 -1
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/binance.py +2 -2
- ccxt/pro/bitget.py +3 -3
- ccxt/pro/bybit.py +7 -2
- ccxt/pro/cex.py +1 -1
- ccxt/pro/coincatch.py +3 -3
- ccxt/pro/mexc.py +3 -3
- ccxt/pro/okx.py +1 -1
- ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
- ccxt/static_dependencies/ethereum/account/py.typed +0 -0
- ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
- ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
- ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
- ccxt/static_dependencies/lark/py.typed +0 -0
- ccxt/static_dependencies/marshmallow/py.typed +0 -0
- ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
- ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
- ccxt/woofipro.py +2 -2
- {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/METADATA +9 -12
- {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/RECORD +48 -42
- ccxt/abstract/lykke.py +0 -29
- ccxt/async_support/lykke.py +0 -1374
- ccxt/lykke.py +0 -1374
- {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/WHEEL +0 -0
- {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/top_level.txt +0 -0
ccxt/pro/__init__.py
CHANGED
ccxt/pro/binance.py
CHANGED
@@ -247,7 +247,7 @@ class binance(ccxt.async_support.binance):
|
|
247
247
|
type = None
|
248
248
|
type, params = self.handle_market_type_and_params('watchLiquidationsForSymbols', firstMarket, params)
|
249
249
|
if type == 'spot':
|
250
|
-
raise BadRequest(self.id + 'watchLiquidationsForSymbols is not supported for spot symbols')
|
250
|
+
raise BadRequest(self.id + ' watchLiquidationsForSymbols is not supported for spot symbols')
|
251
251
|
subType = None
|
252
252
|
subType, params = self.handle_sub_type_and_params('watchLiquidationsForSymbols', firstMarket, params)
|
253
253
|
if self.isLinear(type, subType):
|
@@ -3705,7 +3705,7 @@ class binance(ccxt.async_support.binance):
|
|
3705
3705
|
payload['limit'] = limit
|
3706
3706
|
fromId = self.safe_integer(params, 'fromId')
|
3707
3707
|
if fromId is not None and since is not None:
|
3708
|
-
raise BadRequest(self.id + 'fetchMyTradesWs does not support fetching by both fromId and since parameters at the same time')
|
3708
|
+
raise BadRequest(self.id + ' fetchMyTradesWs does not support fetching by both fromId and since parameters at the same time')
|
3709
3709
|
message: dict = {
|
3710
3710
|
'id': messageHash,
|
3711
3711
|
'method': 'myTrades',
|
ccxt/pro/bitget.py
CHANGED
@@ -1916,7 +1916,7 @@ class bitget(ccxt.async_support.bitget):
|
|
1916
1916
|
del client.subscriptions[subMessageHash]
|
1917
1917
|
if messageHash in client.subscriptions:
|
1918
1918
|
del client.subscriptions[messageHash]
|
1919
|
-
error = UnsubscribeError(self.id + 'orderbook ' + symbol)
|
1919
|
+
error = UnsubscribeError(self.id + ' orderbook ' + symbol)
|
1920
1920
|
client.reject(error, subMessageHash)
|
1921
1921
|
client.resolve(True, messageHash)
|
1922
1922
|
|
@@ -1938,7 +1938,7 @@ class bitget(ccxt.async_support.bitget):
|
|
1938
1938
|
del client.subscriptions[subMessageHash]
|
1939
1939
|
if messageHash in client.subscriptions:
|
1940
1940
|
del client.subscriptions[messageHash]
|
1941
|
-
error = UnsubscribeError(self.id + 'trades ' + symbol)
|
1941
|
+
error = UnsubscribeError(self.id + ' trades ' + symbol)
|
1942
1942
|
client.reject(error, subMessageHash)
|
1943
1943
|
client.resolve(True, messageHash)
|
1944
1944
|
|
@@ -1960,7 +1960,7 @@ class bitget(ccxt.async_support.bitget):
|
|
1960
1960
|
del client.subscriptions[subMessageHash]
|
1961
1961
|
if messageHash in client.subscriptions:
|
1962
1962
|
del client.subscriptions[messageHash]
|
1963
|
-
error = UnsubscribeError(self.id + 'ticker ' + symbol)
|
1963
|
+
error = UnsubscribeError(self.id + ' ticker ' + symbol)
|
1964
1964
|
client.reject(error, subMessageHash)
|
1965
1965
|
client.resolve(True, messageHash)
|
1966
1966
|
|
ccxt/pro/bybit.py
CHANGED
@@ -833,10 +833,15 @@ class bybit(ccxt.async_support.bybit):
|
|
833
833
|
market = self.market(symbols[0])
|
834
834
|
if limit is None:
|
835
835
|
limit = 50 if (market['spot']) else 500
|
836
|
+
if market['option']:
|
837
|
+
limit = 100
|
836
838
|
else:
|
837
839
|
if not market['spot']:
|
838
|
-
|
839
|
-
|
840
|
+
if market['option']:
|
841
|
+
if (limit != 25) and (limit != 100):
|
842
|
+
raise BadRequest(self.id + ' watchOrderBookForSymbols() can only use limit 25 and 100 for option markets.')
|
843
|
+
elif (limit != 1) and (limit != 50) and (limit != 200) and (limit != 500):
|
844
|
+
# bybit only support limit 1, 50, 200, 500 for contract
|
840
845
|
raise BadRequest(self.id + ' watchOrderBookForSymbols() can only use limit 1, 50, 200 and 500.')
|
841
846
|
topics = []
|
842
847
|
messageHashes = []
|
ccxt/pro/cex.py
CHANGED
@@ -1188,7 +1188,7 @@ class cex(ccxt.async_support.cex):
|
|
1188
1188
|
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
1189
1189
|
"""
|
1190
1190
|
if symbol is None:
|
1191
|
-
raise ArgumentsRequired(self.id + 'fetchOpenOrdersWs requires a symbol.')
|
1191
|
+
raise ArgumentsRequired(self.id + ' fetchOpenOrdersWs requires a symbol.')
|
1192
1192
|
await self.load_markets()
|
1193
1193
|
await self.authenticate()
|
1194
1194
|
market = self.market(symbol)
|
ccxt/pro/coincatch.py
CHANGED
@@ -1403,7 +1403,7 @@ class coincatch(ccxt.async_support.coincatch):
|
|
1403
1403
|
del client.subscriptions[subMessageHash]
|
1404
1404
|
if messageHash in client.subscriptions:
|
1405
1405
|
del client.subscriptions[messageHash]
|
1406
|
-
error = UnsubscribeError(self.id + 'orderbook ' + symbol)
|
1406
|
+
error = UnsubscribeError(self.id + ' orderbook ' + symbol)
|
1407
1407
|
client.reject(error, subMessageHash)
|
1408
1408
|
client.resolve(True, messageHash)
|
1409
1409
|
|
@@ -1422,7 +1422,7 @@ class coincatch(ccxt.async_support.coincatch):
|
|
1422
1422
|
del client.subscriptions[subMessageHash]
|
1423
1423
|
if messageHash in client.subscriptions:
|
1424
1424
|
del client.subscriptions[messageHash]
|
1425
|
-
error = UnsubscribeError(self.id + 'trades ' + symbol)
|
1425
|
+
error = UnsubscribeError(self.id + ' trades ' + symbol)
|
1426
1426
|
client.reject(error, subMessageHash)
|
1427
1427
|
client.resolve(True, messageHash)
|
1428
1428
|
|
@@ -1441,7 +1441,7 @@ class coincatch(ccxt.async_support.coincatch):
|
|
1441
1441
|
del client.subscriptions[subMessageHash]
|
1442
1442
|
if messageHash in client.subscriptions:
|
1443
1443
|
del client.subscriptions[messageHash]
|
1444
|
-
error = UnsubscribeError(self.id + 'ticker ' + symbol)
|
1444
|
+
error = UnsubscribeError(self.id + ' ticker ' + symbol)
|
1445
1445
|
client.reject(error, subMessageHash)
|
1446
1446
|
client.resolve(True, messageHash)
|
1447
1447
|
|
ccxt/pro/mexc.py
CHANGED
@@ -225,7 +225,7 @@ class mexc(ccxt.async_support.mexc):
|
|
225
225
|
topics = []
|
226
226
|
if not miniTicker:
|
227
227
|
if symbols is None:
|
228
|
-
raise ArgumentsRequired(self.id + 'watchTickers required symbols argument for the bookTicker channel')
|
228
|
+
raise ArgumentsRequired(self.id + ' watchTickers required symbols argument for the bookTicker channel')
|
229
229
|
marketIds = self.market_ids(symbols)
|
230
230
|
for i in range(0, len(marketIds)):
|
231
231
|
marketId = marketIds[i]
|
@@ -406,12 +406,12 @@ class mexc(ccxt.async_support.mexc):
|
|
406
406
|
symbols = self.market_symbols(symbols, None, True, False, True)
|
407
407
|
marketType = None
|
408
408
|
if symbols is None:
|
409
|
-
raise ArgumentsRequired(self.id + 'watchBidsAsks required symbols argument')
|
409
|
+
raise ArgumentsRequired(self.id + ' watchBidsAsks required symbols argument')
|
410
410
|
markets = self.markets_for_symbols(symbols)
|
411
411
|
marketType, params = self.handle_market_type_and_params('watchBidsAsks', markets[0], params)
|
412
412
|
isSpot = marketType == 'spot'
|
413
413
|
if not isSpot:
|
414
|
-
raise NotSupported(self.id + 'watchBidsAsks only support spot market')
|
414
|
+
raise NotSupported(self.id + ' watchBidsAsks only support spot market')
|
415
415
|
messageHashes = []
|
416
416
|
topics = []
|
417
417
|
for i in range(0, len(symbols)):
|
ccxt/pro/okx.py
CHANGED
@@ -2076,7 +2076,7 @@ class okx(ccxt.async_support.okx):
|
|
2076
2076
|
await self.authenticate()
|
2077
2077
|
market = self.market(symbol)
|
2078
2078
|
if market['type'] != 'option':
|
2079
|
-
raise BadRequest(self.id + 'cancelAllOrdersWs is only applicable to Option in Portfolio Margin mode, and MMP privilege is required.')
|
2079
|
+
raise BadRequest(self.id + ' cancelAllOrdersWs is only applicable to Option in Portfolio Margin mode, and MMP privilege is required.')
|
2080
2080
|
url = self.get_url('private', 'private')
|
2081
2081
|
messageHash = self.request_id()
|
2082
2082
|
request: dict = {
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
ccxt/woofipro.py
CHANGED
@@ -1507,7 +1507,7 @@ class woofipro(Exchange, ImplicitAPI):
|
|
1507
1507
|
takeProfit = self.safe_value(orderParams, 'takeProfit')
|
1508
1508
|
isConditional = triggerPrice is not None or stopLoss is not None or takeProfit is not None or (self.safe_value(orderParams, 'childOrders') is not None)
|
1509
1509
|
if isConditional:
|
1510
|
-
raise NotSupported(self.id + 'createOrders() only support non-stop order')
|
1510
|
+
raise NotSupported(self.id + ' createOrders() only support non-stop order')
|
1511
1511
|
orderRequest = self.create_order_request(marketId, type, side, amount, price, orderParams)
|
1512
1512
|
ordersRequests.append(orderRequest)
|
1513
1513
|
request: dict = {
|
@@ -2355,7 +2355,7 @@ class woofipro(Exchange, ImplicitAPI):
|
|
2355
2355
|
if code is not None:
|
2356
2356
|
code = code.upper()
|
2357
2357
|
if code != 'USDC':
|
2358
|
-
raise NotSupported(self.id + 'withdraw() only support USDC')
|
2358
|
+
raise NotSupported(self.id + ' withdraw() only support USDC')
|
2359
2359
|
currency = self.currency(code)
|
2360
2360
|
verifyingContractAddress = self.safe_string(self.options, 'verifyingContractAddress')
|
2361
2361
|
chainId = self.safe_string(params, 'chainId')
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.4.
|
3
|
+
Version: 4.4.57
|
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
|
@@ -49,7 +49,7 @@ Requires-Dist: mypy==1.6.1; extra == "type"
|
|
49
49
|
|
50
50
|
# CCXT – CryptoCurrency eXchange Trading Library
|
51
51
|
|
52
|
-
[](https://travis-ci.com/ccxt/ccxt) [](https://npmjs.com/package/ccxt) [](https://pypi.python.org/pypi/ccxt) [](https://www.npmjs.com/package/ccxt) [](https://discord.gg/ccxt) [](https://travis-ci.com/ccxt/ccxt) [](https://npmjs.com/package/ccxt) [](https://pypi.python.org/pypi/ccxt) [](https://www.npmjs.com/package/ccxt) [](https://badge.fury.io/nu/ccxt) [](https://godoc.org/github.com/ccxt/ccxt/go/v4) [](https://discord.gg/ccxt) [](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [](https://twitter.com/ccxt_official)
|
53
53
|
|
54
54
|
A JavaScript / Python / PHP / C# / Go library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs.
|
55
55
|
|
@@ -110,7 +110,7 @@ Current feature list:
|
|
110
110
|
|
111
111
|
## Supported Cryptocurrency Exchanges
|
112
112
|
|
113
|
-
The CCXT library currently supports the following
|
113
|
+
The CCXT library currently supports the following 106 cryptocurrency exchange markets and trading APIs:
|
114
114
|
|
115
115
|
| logo | id | name | ver | type | certified | pro |
|
116
116
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------|----------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------:|--------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
|
@@ -189,7 +189,6 @@ The CCXT library currently supports the following 107 cryptocurrency exchange ma
|
|
189
189
|
| [](https://latoken.com/invite?r=mvgp2djk) | latoken | [Latoken](https://latoken.com/invite?r=mvgp2djk) | [](https://api.latoken.com) |  | | |
|
190
190
|
| [](https://www.lbank.com/login/?icode=7QCY) | lbank | [LBank](https://www.lbank.com/login/?icode=7QCY) | [](https://www.lbank.com/en-US/docs/index.html) |  | | [](https://ccxt.pro) |
|
191
191
|
| [](https://www.luno.com/invite/44893A) | luno | [luno](https://www.luno.com/invite/44893A) | [](https://www.luno.com/en/api) |  | | [](https://ccxt.pro) |
|
192
|
-
| [](https://www.lykke.com) | lykke | [Lykke](https://www.lykke.com) | [](https://hft-apiv2.lykke.com/swagger/ui/index.html) |  | | |
|
193
192
|
| [](https://www.mercadobitcoin.com.br) | mercado | [Mercado Bitcoin](https://www.mercadobitcoin.com.br) | [](https://www.mercadobitcoin.com.br/api-doc) |  | | |
|
194
193
|
| [](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | mexc | [MEXC Global](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | [](https://mexcdevelop.github.io/apidocs/) |  | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
195
194
|
| [](https://www.my.okx.com/join/CCXT2023) | myokx | [MyOKX (EEA)](https://www.my.okx.com/join/CCXT2023) | [](https://my.okx.com/docs-v5/en/#overview) |  | | [](https://ccxt.pro) |
|
@@ -236,7 +235,7 @@ The easiest way to install the CCXT library is to use a package manager:
|
|
236
235
|
- [ccxt in **PyPI**](https://pypi.python.org/pypi/ccxt) (Python 3.7.0+)
|
237
236
|
- [ccxt in **Packagist/Composer**](https://packagist.org/packages/ccxt/ccxt) (PHP 8.1+)
|
238
237
|
- [ccxt in **Nuget**](https://www.nuget.org/packages/ccxt) (netstandard 2.0)
|
239
|
-
- [ccxt in **GO**](https://pkg.go.dev/github.com/ccxt/ccxt)
|
238
|
+
- [ccxt in **GO**](https://pkg.go.dev/github.com/ccxt/ccxt/go/v4)
|
240
239
|
|
241
240
|
This library is shipped as an all-in-one module implementation with minimalistic dependencies and requirements:
|
242
241
|
|
@@ -281,13 +280,13 @@ console.log(version, Object.keys(exchanges));
|
|
281
280
|
|
282
281
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
283
282
|
|
284
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
285
|
-
* unpkg: https://unpkg.com/ccxt@4.4.
|
283
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.57/dist/ccxt.browser.min.js
|
284
|
+
* unpkg: https://unpkg.com/ccxt@4.4.57/dist/ccxt.browser.min.js
|
286
285
|
|
287
286
|
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.
|
288
287
|
|
289
288
|
```HTML
|
290
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
289
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.57/dist/ccxt.browser.min.js"></script>
|
291
290
|
```
|
292
291
|
|
293
292
|
Creates a global `ccxt` object:
|
@@ -350,12 +349,10 @@ Console.WriteLine(ccxt.Exchanges) // check this later
|
|
350
349
|
|
351
350
|
### Go
|
352
351
|
|
353
|
-
|
354
|
-
|
355
|
-
[ccxt in GO with] (https://pkg.go.dev/github.com/ccxt/ccxt)
|
352
|
+
[ccxt in GO with **PKG**](https://pkg.go.dev/github.com/ccxt/ccxt/go/v4)
|
356
353
|
|
357
354
|
```shell
|
358
|
-
go get github.com/ccxt/ccxt/go/v4
|
355
|
+
go get github.com/ccxt/ccxt/go/v4
|
359
356
|
```
|
360
357
|
|
361
358
|
```Go
|
@@ -1,10 +1,10 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=6nJVwy6W4TgujrabkNuo7IICki9pDRidqoRXwr9Uh_k,16778
|
2
2
|
ccxt/ace.py,sha256=-E6Xjjo6ErYeSVVeXQaJ6cTSWK1p0NmV8TpOse5VqsQ,44740
|
3
3
|
ccxt/alpaca.py,sha256=s_s2crjGgVil3v5PCqmYmgk9iKYmNs1adGaNjJxuYzY,78120
|
4
4
|
ccxt/ascendex.py,sha256=u60t8Iz0f0ngpUwBxgm9DUrnIqI7gY5MNYQdBTm27ms,155875
|
5
5
|
ccxt/bequant.py,sha256=XePxHZlKFJ-2FwVR9hIpdM-Ng9-ZnIhTjemMnap7H0Q,1154
|
6
6
|
ccxt/bigone.py,sha256=PYLUzSmQ5n5wZ_banvLHhZ5fDnPwaBkhO3AB1GaBD0U,95945
|
7
|
-
ccxt/binance.py,sha256=
|
7
|
+
ccxt/binance.py,sha256=vXWda3KuoIbCdVQLg1y_kHgz6hiQkJ04DRMgWANKEXE,681300
|
8
8
|
ccxt/binancecoinm.py,sha256=2nFh2PcLqhqQK1uuQjsZa0eFkP-ew3liJ01ctdHcCd4,1681
|
9
9
|
ccxt/binanceus.py,sha256=kZFEe-DUU6GS-YfeyriRwazqkg_D5PY0o9IUwuOwXrA,9461
|
10
10
|
ccxt/binanceusdm.py,sha256=yoCcFvGD4MFYkShMpArxk_eLm8RR2ugyYHLk5e2AV08,2611
|
@@ -16,7 +16,7 @@ ccxt/bitcoincom.py,sha256=PyWIl4nC4jp5Uba2lI1At0N_hhNyWD0DoZC_MSyL_s4,502
|
|
16
16
|
ccxt/bitfinex.py,sha256=lJ5wyqrTx9Ip2If4m7HB03uvMATwo_RfLBxveAOamPQ,166066
|
17
17
|
ccxt/bitfinex1.py,sha256=JVe1jaoXwkF7F9VTirTcispsjzsjQlsvuW0xsMUdlIU,74193
|
18
18
|
ccxt/bitflyer.py,sha256=OhUXONvkbcnGfCzQk5D13GzX1_l5SFnJf4LlmtUrx5M,46876
|
19
|
-
ccxt/bitget.py,sha256=
|
19
|
+
ccxt/bitget.py,sha256=ZhIeZBtDRoDk3FUCjnSAkrakCTGLWKvdByajxCyuYFM,444203
|
20
20
|
ccxt/bithumb.py,sha256=nsimBxm3a1BkcQ-rknrlDUAOPJrknUY2jUAUSKUez7E,50053
|
21
21
|
ccxt/bitmart.py,sha256=R9JIqUwZvRHn2MG1QlwblXKEFTpiiICA2WxkcGh4Wz8,238937
|
22
22
|
ccxt/bitmex.py,sha256=jssJlevxwqe7EFskuaXqVFMoRgQ1D0JDKQwfiKgRn80,131435
|
@@ -34,15 +34,15 @@ ccxt/btcalpha.py,sha256=SWGOyVgqw7yU8iGFcNnfu35tEEXHs9ZAYdGykM9qcvk,39692
|
|
34
34
|
ccxt/btcbox.py,sha256=Y5_HR0FECcDXgYU7QFbjqurV2Q0sagGpjw_54evy1mE,30022
|
35
35
|
ccxt/btcmarkets.py,sha256=jAgeCn7gZXCi447sHAb0Kie77IwnxHbczKZrcyFSm3Y,55810
|
36
36
|
ccxt/btcturk.py,sha256=9ZeTEKZ3DjfkT7lUHO9An9WkuGbXla5lYH1IeZcIZMM,39470
|
37
|
-
ccxt/bybit.py,sha256=
|
37
|
+
ccxt/bybit.py,sha256=WhQ5hY7mPZZlocAxzbYUjihWrV2S1Lw7J4TM3FgQSg0,431255
|
38
38
|
ccxt/cex.py,sha256=nyEFlhlpa5r7jmSYhRsr-daY4rP2z3IJfcmMxSl0-Eg,72323
|
39
|
-
ccxt/coinbase.py,sha256=
|
39
|
+
ccxt/coinbase.py,sha256=km-EkbfspMGj0acwiefkB2y75ePXieaoUzErrmq5rKg,229668
|
40
40
|
ccxt/coinbaseadvanced.py,sha256=d5g6nRx-NCcCwZDdtp8FsI2D-pRjSvnAP9ISSKY_nCQ,538
|
41
41
|
ccxt/coinbaseexchange.py,sha256=7yqiVOrP2X6hC7Fo2yyKnZffPRCRWoolYNNVMxQEEM8,82267
|
42
|
-
ccxt/coinbaseinternational.py,sha256=
|
42
|
+
ccxt/coinbaseinternational.py,sha256=Le1OuCLzZmeolbfkdMkw-iYddu9Ke_s9-c31koxkn8c,100752
|
43
43
|
ccxt/coincatch.py,sha256=QlPxdpsyQfXAoe0G2Gbv3nWsv2biBwY8XwhuwOZnZNk,244209
|
44
44
|
ccxt/coincheck.py,sha256=OUDktdfMxirYXMsiPwxd_HjfAZQhrgH-N3y9QtqUCF4,37999
|
45
|
-
ccxt/coinex.py,sha256
|
45
|
+
ccxt/coinex.py,sha256=-6CcBRZIeGfxq6GtlycA5m_p0JaW79n_F9BJb9cCL9E,267187
|
46
46
|
ccxt/coinlist.py,sha256=Aetc7JylZPtpSo0kQTpWysq_iWOZ7faybHb7ZfTd-P0,107427
|
47
47
|
ccxt/coinmate.py,sha256=sVUq7PF-ajJif6dRVbbSqxvfa9hke0021rYAqD2pmRU,48761
|
48
48
|
ccxt/coinmetro.py,sha256=KdkyQfAdhoIw1nWqCRApddpJyJwYm6Sq6ZBkfpY2Nok,84046
|
@@ -53,10 +53,10 @@ ccxt/cryptocom.py,sha256=en-p9nOKBMnQNs5p8F7MapV7v3zZOsBhQhW4MCbi9B8,140671
|
|
53
53
|
ccxt/currencycom.py,sha256=V595gaSDi3Ro740PmNur8ryGSsglmcI11zvPz726xv0,89981
|
54
54
|
ccxt/defx.py,sha256=2eKplgNYltkN8Jt0LaGRhX1AfU3VV9UiYaenvMrMaNU,85253
|
55
55
|
ccxt/delta.py,sha256=pGQyvfGnM0ocFwHIV-wah-2uYk9UjqyFG5MFsZb3Sw8,154836
|
56
|
-
ccxt/deribit.py,sha256=
|
56
|
+
ccxt/deribit.py,sha256=D2HSpnXxU_fBlI0H0NRkAjj8QslJvKnkTeB3Oi3_iCg,166023
|
57
57
|
ccxt/digifinex.py,sha256=LZIRsrBqLMRs08OvFp-kNRk8SCXAY6nikX-tK6-d2QE,177385
|
58
58
|
ccxt/ellipx.py,sha256=GMUbntTSLcNw8lcNwdwUlJyKK0ZDBsTeZ8siY6xOeHg,78959
|
59
|
-
ccxt/exmo.py,sha256=
|
59
|
+
ccxt/exmo.py,sha256=tVcgcsW18oM_Y43sF_G2lgRfpVwgoZlss3dEMWGc4ac,120592
|
60
60
|
ccxt/fmfwio.py,sha256=RbVLvzPwnqfDsE7Ea-N13ISCC82eJVPsXYjrleASmew,1236
|
61
61
|
ccxt/gate.py,sha256=PqavMqvRPhYT8lYrhfvROyGxO2HRk5DuPO-grjvje0A,349621
|
62
62
|
ccxt/gateio.py,sha256=86AETJWODl_vA5VNeQRHZprmpNIY1HAxCddKZcnKSi8,445
|
@@ -67,11 +67,11 @@ ccxt/hollaex.py,sha256=UPlRlBzIiyHsYUiyWy3qRV3L1HyX9fJtgO1cGB15iOc,79082
|
|
67
67
|
ccxt/htx.py,sha256=yCo57vL5dZZZPVsDaZBvNnYoiS7LThxldm8OGa5gnxE,443483
|
68
68
|
ccxt/huobi.py,sha256=4vaG7IRN7fyjaJ_ac6S-njlHOfSEN5de7aq0noznxYw,438
|
69
69
|
ccxt/huobijp.py,sha256=BgLImMV9k3K5JnU7YwxLuwYRoI8O-EqsC9tkR22ZNN0,92893
|
70
|
-
ccxt/hyperliquid.py,sha256=
|
70
|
+
ccxt/hyperliquid.py,sha256=_rj8q79jqzNhy_qkVMK_CvEYEce0obzmSx5spf7i_ho,140800
|
71
71
|
ccxt/idex.py,sha256=mXVs_jv63-GhFEnj9qmoFXZPRSxJdEg0tAGjZLIsH-I,76185
|
72
72
|
ccxt/independentreserve.py,sha256=EkwtNugJq1_uVptSiCjTOdZsOlGm4q82V95OHtmsh8k,43202
|
73
73
|
ccxt/indodax.py,sha256=PtHLukj6NYFfGKN4gDLwdSGdKXxng201PV89kMo4KmI,57720
|
74
|
-
ccxt/kraken.py,sha256=
|
74
|
+
ccxt/kraken.py,sha256=lDL-JsLVh1bWtR8xos9B789fviBTok9JBDfdjNOd0fU,144757
|
75
75
|
ccxt/krakenfutures.py,sha256=nwVzOuTa12j62gUiQGydf7fV9jmvbTiWbbzJut1UXak,123127
|
76
76
|
ccxt/kucoin.py,sha256=6KRJ5QniDdRdAnKDQPf6uxst2ly3FXcM-FwsLWHGDFQ,232304
|
77
77
|
ccxt/kucoinfutures.py,sha256=KGXCt_BQgWiLpI62PBKr5t1oarG3oxtHk9uV2aJ3gto,146154
|
@@ -79,7 +79,6 @@ ccxt/kuna.py,sha256=4xBi3hQo1uP6DZsSmaT1mpx-C2fxIDCy08v9Palb6wk,98249
|
|
79
79
|
ccxt/latoken.py,sha256=xKur7jjF_5y8NoZxyYLy8ee9Hn--nQvkaKEeQkjL48I,82315
|
80
80
|
ccxt/lbank.py,sha256=7KDRab3RCA5rnEPjQQHcIDZXrQg9SM-uQODuojGsNso,123580
|
81
81
|
ccxt/luno.py,sha256=vhyJQ_AtiTLH3k_RhSFjx7yKKdHUHPO9O-1Esz8VPpo,49370
|
82
|
-
ccxt/lykke.py,sha256=P6oGERhyutVxUNpNbbBS8JtN9ye-L4XCeJarav0U46E,54186
|
83
82
|
ccxt/mercado.py,sha256=ttUtkLGl73o1z1wTt5i7dEh3KQnf-vWrjkivXRy3AnE,38454
|
84
83
|
ccxt/mexc.py,sha256=HmmnheWSKWxCpbc4UdMD_OwaKLfpb6DFriWFZxkS-qE,259383
|
85
84
|
ccxt/myokx.py,sha256=C8tqBLBCwV_IhXqhgwCZop6GmqdVjU17EhP2z2eqO8k,1734
|
@@ -106,7 +105,7 @@ ccxt/wavesexchange.py,sha256=TyhSg-DWRXUnNcIzmpKpZguePRk8Z-k-4dkX2e7n3-0,119645
|
|
106
105
|
ccxt/wazirx.py,sha256=NdVFUggxeKlONatGhUm5gNivLzgAZk2cIv305XusbpQ,55603
|
107
106
|
ccxt/whitebit.py,sha256=cPHOerOkJbf_TnbGxTjv-9BQOkZxZHtbBDC4kOmKOiA,123829
|
108
107
|
ccxt/woo.py,sha256=AiTLaNbttVp4Z2SnCHlic2lS8j0Ybuj_2uLKWyiUZeU,159382
|
109
|
-
ccxt/woofipro.py,sha256=
|
108
|
+
ccxt/woofipro.py,sha256=9eZ9V8R7QCDauZyULjlgU7S-gaMGNqxVvuPuLZ9Vf3Y,120880
|
110
109
|
ccxt/xt.py,sha256=AZAhgBbbo0t3juGqFcLRet9uZp8_Ta5hf8hQF3OUTtI,209033
|
111
110
|
ccxt/yobit.py,sha256=j3juB8bk99Byl1EPkYEsZSqali-fH8GG4R9S42dkqo4,57691
|
112
111
|
ccxt/zaif.py,sha256=bYrv_ac9uE4x5_59YkOxB0m4vRe_fnCGT_3tGssUT0k,31163
|
@@ -192,7 +191,6 @@ ccxt/abstract/kuna.py,sha256=IsaLq8A4DUOlQ8Esyk0WqBU6hHm5Q4sIqhgnMIvDGX0,24579
|
|
192
191
|
ccxt/abstract/latoken.py,sha256=1GqE9WxrubgZILnYvg7W_dGyui-FKeIv0bU4z1dQj1k,7168
|
193
192
|
ccxt/abstract/lbank.py,sha256=pdut_cIcwcUhN_ZCyWJxixBc4dgeQqvENYqFCrUYrvA,8675
|
194
193
|
ccxt/abstract/luno.py,sha256=QUsEL2MMhv6qF-4pW0o0xs9lI8HsZtlrAp3sBskq7i4,3619
|
195
|
-
ccxt/abstract/lykke.py,sha256=PyLaU4RVPYTkPYsGgL2e2c9mtnz0xiy-LMOBSA4w_1g,2960
|
196
194
|
ccxt/abstract/mercado.py,sha256=qs3Fr6C_K8M-YIsGx-W9iUiFXcgQ0SA8uADvhV8mDQM,2357
|
197
195
|
ccxt/abstract/mexc.py,sha256=oyg0sZFYs1d77F-_9QAatqMSQJ8h-1u1wWb-d1DX2zQ,26434
|
198
196
|
ccxt/abstract/myokx.py,sha256=sB8xf-lxBV6fWGsB_E8rW1x6-ebKcpxuVJP4btFCvxk,50983
|
@@ -224,13 +222,13 @@ ccxt/abstract/xt.py,sha256=PwTBDqdI8Ka7i4EbwRwamii_LcaDmqu1_J96SefsbyA,27139
|
|
224
222
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
225
223
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
226
224
|
ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
|
227
|
-
ccxt/async_support/__init__.py,sha256=
|
225
|
+
ccxt/async_support/__init__.py,sha256=HwAATDVec-k9FoJcMF6N01D6e6qL7QalbPF9sNHRQ7Y,16611
|
228
226
|
ccxt/async_support/ace.py,sha256=MlBCerB-4LIMK1vWt-TpiWgGkjcVWSLZvLal_8YQcHk,44964
|
229
227
|
ccxt/async_support/alpaca.py,sha256=DWSgNF0oh2Czxpqk4F4u_gT5M6LrQl_HGcsJTEYXmfo,78566
|
230
228
|
ccxt/async_support/ascendex.py,sha256=VqWRvJRItbKmIM-1E7G2TkvEXoHyAm0XGWgcUX9w0HE,156688
|
231
229
|
ccxt/async_support/bequant.py,sha256=bSsnySbxWEjgt-yH1HtyLfky1ypFpb_xKHf52Ru9h5I,1168
|
232
230
|
ccxt/async_support/bigone.py,sha256=SAPsMrsK1-UlohzcCjJr6YbUGiT1enG1nYvO1U5z4uY,96399
|
233
|
-
ccxt/async_support/binance.py,sha256
|
231
|
+
ccxt/async_support/binance.py,sha256=-A07DoV2m4dtxTrM6ZZsTdG3rplLFdxAtNWqXGAG_Pk,684189
|
234
232
|
ccxt/async_support/binancecoinm.py,sha256=9ICnDf1wzSr_SN8HXdjIoheiNmP6isQ8yHT-8a4yQ3Y,1719
|
235
233
|
ccxt/async_support/binanceus.py,sha256=RGm226KVwPKO0svSWqhB4Sryj7yON2a78Y9AtjaeSvE,9475
|
236
234
|
ccxt/async_support/binanceusdm.py,sha256=dEN2QxzfmfrQELFE_B8E5sLywnpogUq3R73jENVQMu0,2649
|
@@ -242,7 +240,7 @@ ccxt/async_support/bitcoincom.py,sha256=RiqwhK3RfxQ_PXTa860fphDCvwA8dalL-_rXlK85
|
|
242
240
|
ccxt/async_support/bitfinex.py,sha256=ozw3QYRiEBIDhJFNKtwCdV_3Tw7_gdU74gcqazDJ_9Q,166826
|
243
241
|
ccxt/async_support/bitfinex1.py,sha256=cjipLhNInv1xSRpMq7vhML0U4Hi6oaxt0aiXeZ0qeGI,74659
|
244
242
|
ccxt/async_support/bitflyer.py,sha256=YypjpZ9yanLHByokGlFhYRSRY-_OX17u_9vmG5qykNQ,47202
|
245
|
-
ccxt/async_support/bitget.py,sha256=
|
243
|
+
ccxt/async_support/bitget.py,sha256=MRpetwqJRBiqEfc-LL8VNSfViMlMTZixRHw-zQirqqA,445893
|
246
244
|
ccxt/async_support/bithumb.py,sha256=p8CwCwMCA7hCAvl5vHPp62uyKFk8PsRnmLzvRlc0KI4,50332
|
247
245
|
ccxt/async_support/bitmart.py,sha256=nbdE58VESDkzmI8lPseGzYR3yfBu8g84ftvt7p9GYF4,239989
|
248
246
|
ccxt/async_support/bitmex.py,sha256=mTUkIhMn_gVm0zqxXQKBNieFsomP4jgyk0tXuA3rq5A,132013
|
@@ -260,15 +258,15 @@ ccxt/async_support/btcalpha.py,sha256=nC35p_DviLuLj7mKHCI__tCQaVSmcy7BfOoXNmQb_q
|
|
260
258
|
ccxt/async_support/btcbox.py,sha256=dl_6rXJ9rElfDJj3DCdG0nXqlQkboEPv16px74m2ENY,30246
|
261
259
|
ccxt/async_support/btcmarkets.py,sha256=w1Rwm7oXXr2wkpGJ0oElyk-6rJ1JpxJ9oMea5uu6aO8,56160
|
262
260
|
ccxt/async_support/btcturk.py,sha256=t2VmlZiQ4DcG3aPvXnMvclfwcyEF27YGHIFluy30zD0,39688
|
263
|
-
ccxt/async_support/bybit.py,sha256=
|
261
|
+
ccxt/async_support/bybit.py,sha256=c7lPs5mAo0IMH7KutJGYDk6vtaieAgcVT8Ik4WFFmHw,433039
|
264
262
|
ccxt/async_support/cex.py,sha256=BLGO3RFdqK4fLfDkVE0eBqac23QVPni5Dxm71oWKs00,72795
|
265
|
-
ccxt/async_support/coinbase.py,sha256=
|
263
|
+
ccxt/async_support/coinbase.py,sha256=UippDNh3H21oGhP6dsyOHORnD4zEbtSSv8RZ-otSIBM,230894
|
266
264
|
ccxt/async_support/coinbaseadvanced.py,sha256=Kupwnuxiu_qTjwCNV2asacoDUNFQvcaHNAznUJPhdQs,552
|
267
265
|
ccxt/async_support/coinbaseexchange.py,sha256=RjEcAzm_Rqi0OQobk2LbYdjzOgOfEMLVVSPiKZqrl20,82773
|
268
|
-
ccxt/async_support/coinbaseinternational.py,sha256=
|
266
|
+
ccxt/async_support/coinbaseinternational.py,sha256=NingLI0subUt6kbFTfZEK1LoFVvK3FrkxylXNTX2tCk,101366
|
269
267
|
ccxt/async_support/coincatch.py,sha256=N1FE0xgyNYW-zuiu4UGDObFIennvqLmmHtDHkbBaRT4,245267
|
270
268
|
ccxt/async_support/coincheck.py,sha256=hoeIGu-DMDJP1Xrk7vU3-25mNPa9JKybMbISq3V739g,38205
|
271
|
-
ccxt/async_support/coinex.py,sha256=
|
269
|
+
ccxt/async_support/coinex.py,sha256=dzHBF1SmRWZ0frqcS7uKMDCnFilH6TA9VE5qFvZ_cOE,268475
|
272
270
|
ccxt/async_support/coinlist.py,sha256=NjeF2kjXIoG6OtVEDF4c0YFfGiqwfZiLB3c_pMMkvbQ,107915
|
273
271
|
ccxt/async_support/coinmate.py,sha256=PneBRjxyyWaponirlxZLmPxnh60LORrRNTGI20zWYT0,49027
|
274
272
|
ccxt/async_support/coinmetro.py,sha256=dkig_pe0_i6Dmdl7K1rJ-jqXHZNn3MjhKgPYrr692Es,84366
|
@@ -279,10 +277,10 @@ ccxt/async_support/cryptocom.py,sha256=1YeDrqyLGj1CywOwx13ApN3vqeGc1kyCYcZ10gMgh
|
|
279
277
|
ccxt/async_support/currencycom.py,sha256=5ayW_sd7fnbI9q1XH1wgEDXPVTPsJU8F56_nPLjdj0Y,90403
|
280
278
|
ccxt/async_support/defx.py,sha256=upZs1o_te85RoeFINjaTxZ7hUIx1y9wdk96PITjcHgM,85755
|
281
279
|
ccxt/async_support/delta.py,sha256=BTFrqEeied7y8wVt9f-eViIxBMbdwinIoJ_Mz6T4mRE,155444
|
282
|
-
ccxt/async_support/deribit.py,sha256=
|
280
|
+
ccxt/async_support/deribit.py,sha256=aUeRilIkJ1noKcf4k0nd6uHZ_8DV3-7JIkRxivdJ6t8,166805
|
283
281
|
ccxt/async_support/digifinex.py,sha256=UOxyGmml75t6H6Pvd0iaHvW-kCmsJ3TYIYIuVu-rzpQ,178373
|
284
282
|
ccxt/async_support/ellipx.py,sha256=L3p1HWaNkYbJ4854f0T-7H1IOTqPIjCCHirUS9w8jWE,79267
|
285
|
-
ccxt/async_support/exmo.py,sha256
|
283
|
+
ccxt/async_support/exmo.py,sha256=-6RLZjpMdWgPS8KQKaq4woNP1a0DmX1b3grMWJCkqLA,121278
|
286
284
|
ccxt/async_support/fmfwio.py,sha256=lzfSnPrB2ARcC3EIqAuBM4vyg6LJ6n8RE71Zvt3ez1s,1250
|
287
285
|
ccxt/async_support/gate.py,sha256=DzT3RLJm3oP3rzGLoN1uf-2EF0Qc3ouRDUx12R8BCiI,351562
|
288
286
|
ccxt/async_support/gateio.py,sha256=6_t032F9p9x5KGTjtSuqGXITzFOx-XAQBYLpsuQjzxw,459
|
@@ -293,11 +291,11 @@ ccxt/async_support/hollaex.py,sha256=k8DO_G79ZOkZ0AIXpgeYMj3F2i2dr3hnyQ8Jsm_V8I8
|
|
293
291
|
ccxt/async_support/htx.py,sha256=YQJyRc-4-w8KSAahRA2ptRmCEX2H6OZo8t5rgZ0rid4,445893
|
294
292
|
ccxt/async_support/huobi.py,sha256=fup0j6wQ1khAtfbb1H4CSyJAOzhxuoHMmrM6sgTuhr8,452
|
295
293
|
ccxt/async_support/huobijp.py,sha256=Rau7GN5ZMZ5QvF2PzoSMteuu9T7RqlBqTligV61d_Vg,93393
|
296
|
-
ccxt/async_support/hyperliquid.py,sha256=
|
294
|
+
ccxt/async_support/hyperliquid.py,sha256=bM-Bk0VPuyzsOr0yiIziih4c68DqOaUCoiq8MHtNKUs,141524
|
297
295
|
ccxt/async_support/idex.py,sha256=nheFs6QBVYc9cYhYcZaYLYhB6Pa7URLAxeGC1d5DhxA,76661
|
298
296
|
ccxt/async_support/independentreserve.py,sha256=67BJO-ovfQ_eOlfQjXC2UL50moxkap8kHLhdf9t6CKE,43500
|
299
297
|
ccxt/async_support/indodax.py,sha256=3r9fuzOAVJ4siwY3X5apwBfaE9ipqpERXYjK2seKsQY,58028
|
300
|
-
ccxt/async_support/kraken.py,sha256=
|
298
|
+
ccxt/async_support/kraken.py,sha256=WwyUWwj_fF4Icy2Z0lh7HvHI51iYSs9Xs0CP4-uD0VA,145413
|
301
299
|
ccxt/async_support/krakenfutures.py,sha256=rtirZ-eXjzUG7dcCVggPAfoZgg7vSiAWm5MwJvRtK0E,123615
|
302
300
|
ccxt/async_support/kucoin.py,sha256=HUmfMUU5PmKa8CNICLsqbqL2wucXSaqTgVmL9AFer4E,233454
|
303
301
|
ccxt/async_support/kucoinfutures.py,sha256=aGZgDK3nidi0mtcPbMqsDJhPfVV1iUmPuk4lsBxufHM,146942
|
@@ -305,7 +303,6 @@ ccxt/async_support/kuna.py,sha256=th_opB2JULz3TFCJUHdFW-_C3biwJbOGA_fY8vJ5Xz4,98
|
|
305
303
|
ccxt/async_support/latoken.py,sha256=vTFU0IdFKPMdCIiRdfiG1BYGDchcA92zsg5s_EGOROY,82791
|
306
304
|
ccxt/async_support/lbank.py,sha256=dVD0NSVc-ZKvMyan2skurVSuQ7tYnz3MBjmU5jKQRU8,124328
|
307
305
|
ccxt/async_support/luno.py,sha256=WXbmPcwH2IdIhaH5ekumep5bXCY_8tIRVW-TTbn_IrM,49708
|
308
|
-
ccxt/async_support/lykke.py,sha256=DLAJ2NtHplN6y1Ij5CCYIh7yRFUc55LtaNjgHllT8bQ,54500
|
309
306
|
ccxt/async_support/mercado.py,sha256=DvmQmhjyyWxnOFK1fH31pFwhLARt-0-EexaUzVJdcaU,38696
|
310
307
|
ccxt/async_support/mexc.py,sha256=YrndQqwIy5b2jEWwNyx7xUbGeKDRlplFfI17OW9948I,260647
|
311
308
|
ccxt/async_support/myokx.py,sha256=Dqg4HBSJu_0RUKBBNQifgBxhdB8pEyIhlvcRo919_nY,1748
|
@@ -332,13 +329,13 @@ ccxt/async_support/wavesexchange.py,sha256=YawsjW6LBhDCbtoag56a84apSFzR7WRJX60sC
|
|
332
329
|
ccxt/async_support/wazirx.py,sha256=m8rbuLXaRPZxHS3W7kvQ8uPq5DSptngyJljkWxvs174,55905
|
333
330
|
ccxt/async_support/whitebit.py,sha256=j06ftbD247f44IXvImKyRwAzlZuZrN_pruE4dwKO6Uw,124491
|
334
331
|
ccxt/async_support/woo.py,sha256=n1pOkogDGBizTN48VGmmccXxUGJUVrZPrPcuRYRsryg,160368
|
335
|
-
ccxt/async_support/woofipro.py,sha256=
|
332
|
+
ccxt/async_support/woofipro.py,sha256=6aKdvTtNUb3xnIKD4S9r6BCzVfsY7rOhgFEeyRrAGfM,121572
|
336
333
|
ccxt/async_support/xt.py,sha256=TXzqyrxLJa7ywkdvkQaZpCxfXcNfip3YrL-C7p_AeyQ,210199
|
337
334
|
ccxt/async_support/yobit.py,sha256=D-OLJByl_jLXtYH3nI-wak0zEE4OHUNAQTiIsWJHTVk,58019
|
338
335
|
ccxt/async_support/zaif.py,sha256=HfZ8tdn7pcR_b3S3pgufO8fCWJYWNK1sqrm4sFZtFP4,31345
|
339
336
|
ccxt/async_support/zonda.py,sha256=8j7PghfQhzdbTlQKBu4hpxX8O-oxhOUdPwQwo76lfyU,85308
|
340
337
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
341
|
-
ccxt/async_support/base/exchange.py,sha256=
|
338
|
+
ccxt/async_support/base/exchange.py,sha256=kLFVY10ceo0Eql0wH5aq97LRwTlorjhnvZYngqCZaYY,116763
|
342
339
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
343
340
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
344
341
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=Y5HxAVXyyYduj6b6SbbUZETlq3GrVMzrkW1r-TMgpb8,6329
|
@@ -352,14 +349,14 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
|
|
352
349
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
353
350
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
354
351
|
ccxt/base/errors.py,sha256=MvCrL_sAM3de616T6RE0PSxiF2xV6Qqz5b1y1ghidbk,4888
|
355
|
-
ccxt/base/exchange.py,sha256=
|
352
|
+
ccxt/base/exchange.py,sha256=zkKVpw2vxDLTuw8a0Q06iCOcvI4XZi7J80zWyjobJCw,318756
|
356
353
|
ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
357
354
|
ccxt/base/types.py,sha256=asavKC4Fpuz9MGv1tJBld0j8CeojiP7nBj04Abusst4,10766
|
358
|
-
ccxt/pro/__init__.py,sha256=
|
355
|
+
ccxt/pro/__init__.py,sha256=Y2Qnj-DTCPZdhmWJK1fODsN8g2Vjs2vCfdPPaJ437Tw,8124
|
359
356
|
ccxt/pro/alpaca.py,sha256=Imdm0wlioL9MMI7ytu0l-wrTIBzNGnHOf8h8Ux2XpJg,27611
|
360
357
|
ccxt/pro/ascendex.py,sha256=BJh0w31wjTIZJriDqWWC1NbEgiW7X4VboYC3g61c4w4,37500
|
361
358
|
ccxt/pro/bequant.py,sha256=33OEUWBi4D9-2w8CmkwN3aF1qS-AlLqX3pxrWwNbXPY,1552
|
362
|
-
ccxt/pro/binance.py,sha256=
|
359
|
+
ccxt/pro/binance.py,sha256=i7zweG51siOZoIPXov1RgrzeGHStSrz-kc_-3a0y9QQ,200029
|
363
360
|
ccxt/pro/binancecoinm.py,sha256=LlgF4rXHHrsQMaklhTEzSiE6U9V25AjHHg_DRat7Mf0,1036
|
364
361
|
ccxt/pro/binanceus.py,sha256=lcRxvQSJ5sJCx1FqzDI9PVOg_vvpFwwlZs4_8QkoPJ0,1995
|
365
362
|
ccxt/pro/binanceusdm.py,sha256=lLdOv0d-lM-1wfCc_y_POb6GdmVIiX7PFzmKTWsVyNw,1512
|
@@ -367,7 +364,7 @@ ccxt/pro/bingx.py,sha256=HtwxLWBREQOE1vHxfojFdyqz8QLH0er0JybRXDelFhM,60570
|
|
367
364
|
ccxt/pro/bitcoincom.py,sha256=zAX6hiz4hS6Un8dSGp88rpnvItxQHfNmsfF0IZ2xIVA,1181
|
368
365
|
ccxt/pro/bitfinex.py,sha256=Bv--7UOEIQruxIK3nAQDjF8Njn6k8J6E54gQPi0O85A,43103
|
369
366
|
ccxt/pro/bitfinex1.py,sha256=GAbJE2kYsaI4Pnyo6Nw1LU3HsUAPrCCcIrtdpZlTn6I,25311
|
370
|
-
ccxt/pro/bitget.py,sha256=
|
367
|
+
ccxt/pro/bitget.py,sha256=Sn4q4OhCO9236mzzk-4Y0tHG7MSSitm7uAKe2BQ7I_g,88326
|
371
368
|
ccxt/pro/bithumb.py,sha256=L_iTRmX-8ggicrTRSBV6q5VHcF_aOzuuTwSbqnYgsIU,17395
|
372
369
|
ccxt/pro/bitmart.py,sha256=DXCuxsJrKdc35x_F2qmnI-Gatt-gnbI0XqP7scFF5Mw,66281
|
373
370
|
ccxt/pro/bitmex.py,sha256=fy0MrxoGCbFxAN1sk8xIrgQn6V2YaqNouFqwL9IMk3M,74640
|
@@ -378,13 +375,13 @@ ccxt/pro/bitstamp.py,sha256=tysJpRxfVnZKp-_xgfIhsOVh3ilnQQhXjV-grzqz3QM,20964
|
|
378
375
|
ccxt/pro/bitvavo.py,sha256=NJ19f3ZovARI1oHP3GJFq9B_jlFXyA5RL9QSDVv13lA,59854
|
379
376
|
ccxt/pro/blockchaincom.py,sha256=a5aWwcTaBlbs5V99-HKWAqC3p4lWn3WlG85K-m8uJg0,29624
|
380
377
|
ccxt/pro/blofin.py,sha256=GaxyJRH25Wc6X_zmedm7ybAIhvno-csYnbOJ3s4xqYk,31786
|
381
|
-
ccxt/pro/bybit.py,sha256=
|
382
|
-
ccxt/pro/cex.py,sha256=
|
378
|
+
ccxt/pro/bybit.py,sha256=aHP9FUuCh2RlzymFTIFIv7hm655GeXbV7fjhFdy1Ugg,109298
|
379
|
+
ccxt/pro/cex.py,sha256=zpJ3ZWQ9-ulFwWjxSaBQ6jJrv-4gJG7ZySaiPxtAgZQ,58514
|
383
380
|
ccxt/pro/coinbase.py,sha256=bqX60AkkasBh88juI5r_vjhvHru1DZTgaXph7-z6kX0,31490
|
384
381
|
ccxt/pro/coinbaseadvanced.py,sha256=Ohg1LAJbfQ7Df7cazejupZ6QeOs5eddvNolAD6ssKIA,474
|
385
382
|
ccxt/pro/coinbaseexchange.py,sha256=83_W18CA_SAlo_LYzWtH97ca4jA9LsQ0xKZQLnnepNo,39030
|
386
383
|
ccxt/pro/coinbaseinternational.py,sha256=VATk8AV9vtwSyjTrboHen_wahEom5bEnPeO8pGVHRpA,32137
|
387
|
-
ccxt/pro/coincatch.py,sha256=
|
384
|
+
ccxt/pro/coincatch.py,sha256=52nXVWJUh_ZKrP9mYA-_s4qb5ltT0_geqG7WWAAzHLA,62329
|
388
385
|
ccxt/pro/coincheck.py,sha256=akQBxGfLoBe9Sn4YW-rJq2C2LRD0R5EGdVkyKqxt_tE,7843
|
389
386
|
ccxt/pro/coinex.py,sha256=rNEfyyZRXW-u54L90M12t4anwcYrvrvrUJkseGiBUVM,56563
|
390
387
|
ccxt/pro/coinone.py,sha256=9sDWskmgCPE1OJNHjmzrgPrvv3tb81iUu7SquYSPCSk,15722
|
@@ -411,11 +408,11 @@ ccxt/pro/kucoin.py,sha256=Ni3fj2GiQjqz_8_oCaAaNjCQV0mcNuBLOE_uXnUNkEo,60764
|
|
411
408
|
ccxt/pro/kucoinfutures.py,sha256=w5TBymYaGNySHB13ZJ8L8snTkvB2NB5RUUyUL2seJaI,56081
|
412
409
|
ccxt/pro/lbank.py,sha256=EaQxku63N5WRrlS6D3TjgeV-h2s2DZW75e4Wp7coH10,35144
|
413
410
|
ccxt/pro/luno.py,sha256=gSt6LJKVpR39PYm50AfCZgvXu05IdkxV6VtJKqEmfz0,12380
|
414
|
-
ccxt/pro/mexc.py,sha256=
|
411
|
+
ccxt/pro/mexc.py,sha256=zqqwF8K_JRc8QckWd7BTUuRPD7kObhEFUR-eMi-gY-Q,56422
|
415
412
|
ccxt/pro/myokx.py,sha256=hF3qKH2xdMY_9SbaZ8Mf1yb5iCM4T5zkk8RDszvnQ3s,769
|
416
413
|
ccxt/pro/ndax.py,sha256=f2JfMhHkQQcEUnYuLv6uwholUno8VNCQHzZ_fuvrJ7E,22963
|
417
414
|
ccxt/pro/okcoin.py,sha256=w0Z527prDqmRvacdc1QGa2f9VUy31Wtm_SB4KJAWEFo,31024
|
418
|
-
ccxt/pro/okx.py,sha256=
|
415
|
+
ccxt/pro/okx.py,sha256=8JFNSQ07VKuY2kmzL1xgb9exF6mbH_X9nxdhS3naZ2M,104648
|
419
416
|
ccxt/pro/onetrading.py,sha256=U1t8dxk1QIslcr6_bgbEWt0WMI43RahJbENhJLhfJVY,54821
|
420
417
|
ccxt/pro/oxfun.py,sha256=LQqOEAMjxd2-gIrK1Ng2Ww22J1nrVYY89s0zhvZH9yI,46647
|
421
418
|
ccxt/pro/p2b.py,sha256=Rhg-9SzoiVYKvZ0V-a3yxvAkm9KJQClN_SRKVfCdbsQ,20857
|
@@ -453,6 +450,7 @@ ccxt/static_dependencies/ethereum/abi/encoding.py,sha256=dojX7qlUx_cnSIAXKcT4sU-
|
|
453
450
|
ccxt/static_dependencies/ethereum/abi/exceptions.py,sha256=Fn238lB98zQAMNTuHHgXC_iBGk7GRlh0_wCLDaa476s,2941
|
454
451
|
ccxt/static_dependencies/ethereum/abi/grammar.py,sha256=AJcaT5QzVNhOEGSc4heLOfH-RNT8j2KUUgzAQj5yf3E,12358
|
455
452
|
ccxt/static_dependencies/ethereum/abi/packed.py,sha256=I2eDuCdp1kXs2sIzJGbklDnb3ULx8EbKTa0uQJ-pLF0,387
|
453
|
+
ccxt/static_dependencies/ethereum/abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
456
454
|
ccxt/static_dependencies/ethereum/abi/registry.py,sha256=dKVlq25kZVHTjrjyUpwiVB9Pm4Kdj9JcHO4nSsletQI,19329
|
457
455
|
ccxt/static_dependencies/ethereum/abi/tools/__init__.py,sha256=qyxY82bT0HM8m9bqpo0IMFY_y4OM9C0YA4gUACnUWQg,65
|
458
456
|
ccxt/static_dependencies/ethereum/abi/tools/_strategies.py,sha256=nNREv0Fp5Ejmli-9mQFQRXGJMyK7iCTYk_bDdBPG0yQ,5742
|
@@ -462,12 +460,14 @@ ccxt/static_dependencies/ethereum/abi/utils/padding.py,sha256=Wg6ayuzr7V7SbWzNU3
|
|
462
460
|
ccxt/static_dependencies/ethereum/abi/utils/string.py,sha256=fjsAR2C7Xlu5bHomxx5l4rlADFtByzGTQfugMTo8TQk,436
|
463
461
|
ccxt/static_dependencies/ethereum/account/__init__.py,sha256=A7CnT-tudgrgtZwIHpAqMDBl7gXolw9f1xmLkATFhzM,48
|
464
462
|
ccxt/static_dependencies/ethereum/account/messages.py,sha256=SVON_N_s0fJFX4--xvcmw6rNP3A0RdaauUgrxRBJXas,10588
|
463
|
+
ccxt/static_dependencies/ethereum/account/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
465
464
|
ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py,sha256=Ibeat3YaJZHoEfwvW_cMdBX8n8nB8TAOx67YFoKfqcM,80
|
466
465
|
ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py,sha256=QtTlkSfHbz5kd9ybdBxpWlqG2ZTFSKbEcxRwgMMVLEY,7126
|
467
466
|
ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py,sha256=a4VbVz93mI2WmplYskI0ITTbUYjmv6MjWaMrQLZWTjU,982
|
468
467
|
ccxt/static_dependencies/ethereum/hexbytes/__init__.py,sha256=CTEC38p8BZiDRds2iANHMTjVspmjXOVzkvF68SPwKjA,60
|
469
468
|
ccxt/static_dependencies/ethereum/hexbytes/_utils.py,sha256=hUEDsNJ8WJqYBENOML0S1ni8Lnf2veYB0bCmjM1avCI,1687
|
470
469
|
ccxt/static_dependencies/ethereum/hexbytes/main.py,sha256=c1hO5-DoevsxQVcuN5H4pPBeWT2OG7JZk0Xq7IlT98g,1768
|
470
|
+
ccxt/static_dependencies/ethereum/hexbytes/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
471
471
|
ccxt/static_dependencies/ethereum/typing/__init__.py,sha256=4ifoznAfmAiUg64ikxGCQvM0bG0h6rmwBpWiBW4mFak,913
|
472
472
|
ccxt/static_dependencies/ethereum/typing/abi.py,sha256=kGqws8LwEauRbdgxonXq1xhw13Cr_nucn2msTPXfgk4,85
|
473
473
|
ccxt/static_dependencies/ethereum/typing/bls.py,sha256=SZ-rytl8G0Vkvwz_riZKBQ_DLv5ebbprJJNna12vnwQ,191
|
@@ -477,6 +477,7 @@ ccxt/static_dependencies/ethereum/typing/enums.py,sha256=Kb-GcYItS6FYGgG9mbqNFet
|
|
477
477
|
ccxt/static_dependencies/ethereum/typing/ethpm.py,sha256=ZXF2KA11CSsQBmLT4sZgcT-i7IQxUsI5MTHWyi1lEo8,173
|
478
478
|
ccxt/static_dependencies/ethereum/typing/evm.py,sha256=JShudaL4ebhdsMySfolxbHw17RiDehl1PRuZnYQbdLE,546
|
479
479
|
ccxt/static_dependencies/ethereum/typing/networks.py,sha256=mt30i92LjddDF0un8OggICEz9BO2M-kZVB0zRSMY_34,20845
|
480
|
+
ccxt/static_dependencies/ethereum/typing/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
480
481
|
ccxt/static_dependencies/ethereum/utils/__init__.py,sha256=Ol72mGtvYkM20t05XZc_4jNb3vUPEorT9RIGWh6D9q8,2162
|
481
482
|
ccxt/static_dependencies/ethereum/utils/abi.py,sha256=nVug_kOAvc1SU26SjWfRZsgTU6dtLsBNktFff07MFrA,2123
|
482
483
|
ccxt/static_dependencies/ethereum/utils/address.py,sha256=yUKkJyp-6k9TJyX_Xv3id4bewyCw2gEVVfme-Pem8oI,4364
|
@@ -493,6 +494,7 @@ ccxt/static_dependencies/ethereum/utils/humanize.py,sha256=2mt_w9pFKYd5_oGawXKtV
|
|
493
494
|
ccxt/static_dependencies/ethereum/utils/logging.py,sha256=aPsKtk9WlAqR0X85iXnGCYVT_nt_fFnQn0gBuxX1nb8,5155
|
494
495
|
ccxt/static_dependencies/ethereum/utils/module_loading.py,sha256=DCLM4dEh1gqr8Ny-FWwD-_pINqeHzbLSupz4ZIpCCAw,842
|
495
496
|
ccxt/static_dependencies/ethereum/utils/numeric.py,sha256=RrXdXI-bhhkEsz3aBtxHuGlc_2ZJvUGpvMc47wx408Y,1190
|
497
|
+
ccxt/static_dependencies/ethereum/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
496
498
|
ccxt/static_dependencies/ethereum/utils/toolz.py,sha256=8s0TUhNDiQ3MRRmPwH47ft8eNxfX050P-EWrUbiPX5E,1001
|
497
499
|
ccxt/static_dependencies/ethereum/utils/types.py,sha256=S6w22xzYXzyBEVVYRLiYYXd437Ot-puyqeb5FSVmGog,1074
|
498
500
|
ccxt/static_dependencies/ethereum/utils/units.py,sha256=jRo8p6trxwuISBnT8kfxTNVyd_TSd5vVY5aiKDefB1U,1757
|
@@ -512,6 +514,7 @@ ccxt/static_dependencies/lark/lexer.py,sha256=OwgQPCpQ-vUi-2aeZztsydd4DLkEgCbZeu
|
|
512
514
|
ccxt/static_dependencies/lark/load_grammar.py,sha256=WYZDxyO6omhA8NKyMjSckfAMwVKuIMF3liiYXE_-kHo,53946
|
513
515
|
ccxt/static_dependencies/lark/parse_tree_builder.py,sha256=jT_3gCEkBGZoTXAWSnhMn1kRuJILWB-E7XkUciYNHI4,14412
|
514
516
|
ccxt/static_dependencies/lark/parser_frontends.py,sha256=mxMXxux2hkfTfE859wuVp4-Fr1no6YVEUt8toDjEdPQ,10165
|
517
|
+
ccxt/static_dependencies/lark/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
515
518
|
ccxt/static_dependencies/lark/reconstruct.py,sha256=s7CevBXchUG_fe2otdAITxIaSXCEIiSjy4Sbh5QC0hs,3763
|
516
519
|
ccxt/static_dependencies/lark/tree.py,sha256=aWWHMazid8bbJanhmCjK9XK2jRFJ6N6WmlwXJGTsz28,8522
|
517
520
|
ccxt/static_dependencies/lark/tree_matcher.py,sha256=jHdZJggn405SXmPpGf9U9HLrrsfP4eNNZaj267UTB00,6003
|
@@ -544,6 +547,7 @@ ccxt/static_dependencies/marshmallow/error_store.py,sha256=Y1dJggsZ7t5E1hikM4FRS
|
|
544
547
|
ccxt/static_dependencies/marshmallow/exceptions.py,sha256=DuARdOcirCdJxmlp16V97hQKAXOokvdW12jXtYOlGyk,2326
|
545
548
|
ccxt/static_dependencies/marshmallow/fields.py,sha256=pHY5bqRVo0-_aaX-E54phTmO2onIONhnY8ebHutjga8,72898
|
546
549
|
ccxt/static_dependencies/marshmallow/orderedset.py,sha256=C2aAG6w1faIL1phinbAltbe3AUAnF5MN6n7fzESNDhI,2922
|
550
|
+
ccxt/static_dependencies/marshmallow/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
547
551
|
ccxt/static_dependencies/marshmallow/schema.py,sha256=Uh7iikJdreSnTudAJWYyToXI_a0rH5DQhO24PMA5Qc4,48832
|
548
552
|
ccxt/static_dependencies/marshmallow/types.py,sha256=eHMwQR8-ICX2RHf_i6bgjnhzdanbpBqXuzXuP6jHcNI,332
|
549
553
|
ccxt/static_dependencies/marshmallow/utils.py,sha256=9IEYfO17evHhcJ8tMqUx768J2udNphrSqg_LY3quWuQ,11853
|
@@ -553,10 +557,12 @@ ccxt/static_dependencies/marshmallow_dataclass/__init__.py,sha256=9vbR9DeSggTFJC
|
|
553
557
|
ccxt/static_dependencies/marshmallow_dataclass/collection_field.py,sha256=Nc1y1jThnhYDIBuPQZqpVatAVAIk3-KAFoNO9Arz_eE,1640
|
554
558
|
ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py,sha256=2fEF6NSdNYDAegxXkT0D2hjysRKlEXFSIH7eP0nurVE,1070
|
555
559
|
ccxt/static_dependencies/marshmallow_dataclass/mypy.py,sha256=Ek5j_gS0I83Oly6xpxWrR4obCDDDSHmjXhywsQlb2wQ,2034
|
560
|
+
ccxt/static_dependencies/marshmallow_dataclass/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
556
561
|
ccxt/static_dependencies/marshmallow_dataclass/typing.py,sha256=OqcSrGTwMWr4_Ct3hCHW9dWNiWpa1ViGsUgFOqSfvz4,269
|
557
562
|
ccxt/static_dependencies/marshmallow_dataclass/union_field.py,sha256=zi2-4NThvY---6gXBWyL_zUK3e7MVl5dY-ffY2vZPvc,2914
|
558
563
|
ccxt/static_dependencies/marshmallow_oneofschema/__init__.py,sha256=KQjXt0W26CH8CvBBTA0YFEMsIHwR9_oMfBGppTnoTlI,47
|
559
564
|
ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py,sha256=DXIK8-Py-EtnniDpGvwqjTbz9x3PrkgpHcqykvfEo0A,6714
|
565
|
+
ccxt/static_dependencies/marshmallow_oneofschema/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
560
566
|
ccxt/static_dependencies/msgpack/__init__.py,sha256=tMxCiw7hJRLJN3JgUmPXOo64qMaUAbKTCf44CvE2tg8,1077
|
561
567
|
ccxt/static_dependencies/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081
|
562
568
|
ccxt/static_dependencies/msgpack/ext.py,sha256=fKp00BqDLjUtZnPd70Llr138zk8JsCuSpJkkZ5S4dt8,5629
|
@@ -653,8 +659,8 @@ ccxt/test/tests_async.py,sha256=ZdM4VC9oTluH5CHv73shLK5U-nDDi_T1ZFLp1KJY5DE,8910
|
|
653
659
|
ccxt/test/tests_helpers.py,sha256=egM69A2ZFYeVF5hwC1Qt-c5DOeClY5bv4jowmceeFV8,9736
|
654
660
|
ccxt/test/tests_init.py,sha256=GodMIrJue4KBHHqD4vSPZxokPWpxbZIuEp19UdxlFAg,1166
|
655
661
|
ccxt/test/tests_sync.py,sha256=iJ7h9p7qovC3BZ07bsVlzlVB6GW2TsKXTIr3f6l3ABM,88134
|
656
|
-
ccxt-4.4.
|
657
|
-
ccxt-4.4.
|
658
|
-
ccxt-4.4.
|
659
|
-
ccxt-4.4.
|
660
|
-
ccxt-4.4.
|
662
|
+
ccxt-4.4.57.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
663
|
+
ccxt-4.4.57.dist-info/METADATA,sha256=mnblwMWbNAJqZuDMskZYlYCFR5FS2TCJs-cRN6n4lQU,133264
|
664
|
+
ccxt-4.4.57.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
|
665
|
+
ccxt-4.4.57.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
666
|
+
ccxt-4.4.57.dist-info/RECORD,,
|