ccxt 4.3.52__py2.py3-none-any.whl → 4.3.54__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 +3 -1
- ccxt/abstract/vertex.py +19 -0
- ccxt/async_support/__init__.py +3 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/base/ws/cache.py +2 -2
- ccxt/async_support/binance.py +1 -1
- ccxt/async_support/bingx.py +1 -1
- ccxt/async_support/bitget.py +1 -1
- ccxt/async_support/bitmart.py +1 -1
- ccxt/async_support/coinex.py +1 -1
- ccxt/async_support/htx.py +1 -1
- ccxt/async_support/hyperliquid.py +27 -25
- ccxt/async_support/phemex.py +28 -1
- ccxt/async_support/poloniex.py +2 -1
- ccxt/async_support/probit.py +9 -5
- ccxt/async_support/vertex.py +2811 -0
- ccxt/async_support/woo.py +26 -18
- ccxt/base/exchange.py +2 -2
- ccxt/base/precise.py +10 -0
- ccxt/binance.py +1 -1
- ccxt/bingx.py +1 -1
- ccxt/bitget.py +1 -1
- ccxt/bitmart.py +1 -1
- ccxt/coinex.py +1 -1
- ccxt/htx.py +1 -1
- ccxt/hyperliquid.py +27 -25
- ccxt/phemex.py +28 -1
- ccxt/poloniex.py +2 -1
- ccxt/pro/__init__.py +3 -1
- ccxt/pro/binance.py +1 -1
- ccxt/pro/bybit.py +18 -12
- ccxt/pro/kucoin.py +63 -26
- ccxt/pro/probit.py +6 -4
- ccxt/pro/vertex.py +916 -0
- ccxt/probit.py +9 -5
- ccxt/test/test_async.py +37 -3
- ccxt/test/test_sync.py +37 -3
- ccxt/vertex.py +2811 -0
- ccxt/woo.py +26 -18
- {ccxt-4.3.52.dist-info → ccxt-4.3.54.dist-info}/METADATA +7 -6
- {ccxt-4.3.52.dist-info → ccxt-4.3.54.dist-info}/RECORD +44 -40
- {ccxt-4.3.52.dist-info → ccxt-4.3.54.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.3.52.dist-info → ccxt-4.3.54.dist-info}/WHEEL +0 -0
- {ccxt-4.3.52.dist-info → ccxt-4.3.54.dist-info}/top_level.txt +0 -0
ccxt/woo.py
CHANGED
@@ -52,7 +52,7 @@ class woo(Exchange, ImplicitAPI):
|
|
52
52
|
'createMarketBuyOrderWithCost': True,
|
53
53
|
'createMarketOrder': False,
|
54
54
|
'createMarketOrderWithCost': False,
|
55
|
-
'createMarketSellOrderWithCost':
|
55
|
+
'createMarketSellOrderWithCost': True,
|
56
56
|
'createOrder': True,
|
57
57
|
'createOrderWithTakeProfitAndStopLoss': True,
|
58
58
|
'createReduceOnlyOrder': True,
|
@@ -832,8 +832,22 @@ class woo(Exchange, ImplicitAPI):
|
|
832
832
|
market = self.market(symbol)
|
833
833
|
if not market['spot']:
|
834
834
|
raise NotSupported(self.id + ' createMarketBuyOrderWithCost() supports spot orders only')
|
835
|
-
|
836
|
-
|
835
|
+
return self.create_order(symbol, 'market', 'buy', cost, 1, params)
|
836
|
+
|
837
|
+
def create_market_sell_order_with_cost(self, symbol: str, cost: float, params={}):
|
838
|
+
"""
|
839
|
+
create a market sell order by providing the symbol and cost
|
840
|
+
:see: https://docs.woo.org/#send-order
|
841
|
+
:param str symbol: unified symbol of the market to create an order in
|
842
|
+
:param float cost: how much you want to trade in units of the quote currency
|
843
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
844
|
+
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
845
|
+
"""
|
846
|
+
self.load_markets()
|
847
|
+
market = self.market(symbol)
|
848
|
+
if not market['spot']:
|
849
|
+
raise NotSupported(self.id + ' createMarketSellOrderWithCost() supports spot orders only')
|
850
|
+
return self.create_order(symbol, 'market', 'sell', cost, 1, params)
|
837
851
|
|
838
852
|
def create_trailing_amount_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, trailingAmount=None, trailingTriggerPrice=None, params={}) -> Order:
|
839
853
|
"""
|
@@ -941,28 +955,22 @@ class woo(Exchange, ImplicitAPI):
|
|
941
955
|
request['order_type'] = 'IOC'
|
942
956
|
if reduceOnly:
|
943
957
|
request[reduceOnlyKey] = reduceOnly
|
944
|
-
if price is not None:
|
958
|
+
if not isMarket and price is not None:
|
945
959
|
request[priceKey] = self.price_to_precision(symbol, price)
|
946
960
|
if isMarket and not isStop:
|
947
961
|
# for market buy it requires the amount of quote currency to spend
|
948
|
-
|
962
|
+
cost = self.safe_string_2(params, 'cost', 'order_amount')
|
963
|
+
params = self.omit(params, ['cost', 'order_amount'])
|
964
|
+
isPriceProvided = price is not None
|
965
|
+
if market['spot'] and (isPriceProvided or (cost is not None)):
|
949
966
|
quoteAmount = None
|
950
|
-
createMarketBuyOrderRequiresPrice = True
|
951
|
-
createMarketBuyOrderRequiresPrice, params = self.handle_option_and_params(params, 'createOrder', 'createMarketBuyOrderRequiresPrice', True)
|
952
|
-
cost = self.safe_number_2(params, 'cost', 'order_amount')
|
953
|
-
params = self.omit(params, ['cost', 'order_amount'])
|
954
967
|
if cost is not None:
|
955
968
|
quoteAmount = self.cost_to_precision(symbol, cost)
|
956
|
-
elif createMarketBuyOrderRequiresPrice:
|
957
|
-
if price is None:
|
958
|
-
raise InvalidOrder(self.id + ' createOrder() requires the price argument for market buy orders to calculate the total cost to spend(amount * price), alternatively set the createMarketBuyOrderRequiresPrice option or param to False and pass the cost to spend(quote quantity) in the amount argument')
|
959
|
-
else:
|
960
|
-
amountString = self.number_to_string(amount)
|
961
|
-
priceString = self.number_to_string(price)
|
962
|
-
costRequest = Precise.string_mul(amountString, priceString)
|
963
|
-
quoteAmount = self.cost_to_precision(symbol, costRequest)
|
964
969
|
else:
|
965
|
-
|
970
|
+
amountString = self.number_to_string(amount)
|
971
|
+
priceString = self.number_to_string(price)
|
972
|
+
costRequest = Precise.string_mul(amountString, priceString)
|
973
|
+
quoteAmount = self.cost_to_precision(symbol, costRequest)
|
966
974
|
request['order_amount'] = quoteAmount
|
967
975
|
else:
|
968
976
|
request['order_quantity'] = self.amount_to_precision(symbol, amount)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.54
|
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
|
@@ -50,7 +50,7 @@ Requires-Dist: mypy (==1.6.1) ; extra == 'type'
|
|
50
50
|
|
51
51
|
# CCXT – CryptoCurrency eXchange Trading Library
|
52
52
|
|
53
|
-
[](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://discord.gg/ccxt) [](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [](https://twitter.com/ccxt_official)
|
54
54
|
|
55
55
|
A JavaScript / Python / PHP / C# library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs.
|
56
56
|
|
@@ -108,7 +108,7 @@ Current feature list:
|
|
108
108
|
|
109
109
|
## Supported Cryptocurrency Exchanges
|
110
110
|
|
111
|
-
The CCXT library currently supports the following
|
111
|
+
The CCXT library currently supports the following 101 cryptocurrency exchange markets and trading APIs:
|
112
112
|
|
113
113
|
| logo | id | name | ver | type | certified | pro |
|
114
114
|
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------|-------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------:|------|-----------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
|
@@ -203,6 +203,7 @@ The CCXT library currently supports the following 100 cryptocurrency exchange ma
|
|
203
203
|
| [](https://tokocrypto.com) | tokocrypto | [Tokocrypto](https://tokocrypto.com) | [](https://www.tokocrypto.com/apidocs/) | cex | | |
|
204
204
|
| [](https://tradeogre.com) | tradeogre | [tradeogre](https://tradeogre.com) | [](https://tradeogre.com/help/api) | cex | | |
|
205
205
|
| [](https://upbit.com) | upbit | [Upbit](https://upbit.com) | [](https://docs.upbit.com/docs/%EC%9A%94%EC%B2%AD-%EC%88%98-%EC%A0%9C%ED%95%9C) | cex | | [](https://ccxt.pro) |
|
206
|
+
| [](https://app.vertexprotocol.com?referrer=0xCfC9BaB96a2eA3d3c3F031c005e82E1D9F295aC1) | vertex | [Vertex](https://app.vertexprotocol.com?referrer=0xCfC9BaB96a2eA3d3c3F031c005e82E1D9F295aC1) | [](https://docs.vertexprotocol.com/) | dex | | [](https://ccxt.pro) |
|
206
207
|
| [](https://wx.network) | wavesexchange | [Waves.Exchange](https://wx.network) | [](https://docs.wx.network) | dex | | |
|
207
208
|
| [](https://wazirx.com/invite/k7rrnks5) | wazirx | [WazirX](https://wazirx.com/invite/k7rrnks5) | [](https://docs.wazirx.com/#public-rest-api-for-wazirx) | cex | | [](https://ccxt.pro) |
|
208
209
|
| [](https://whitebit.com/referral/d9bdf40e-28f2-4b52-b2f9-cd1415d82963) | whitebit | [WhiteBit](https://whitebit.com/referral/d9bdf40e-28f2-4b52-b2f9-cd1415d82963) | [](https://github.com/whitebit-exchange/api-docs) | cex | | [](https://ccxt.pro) |
|
@@ -269,13 +270,13 @@ console.log(version, Object.keys(exchanges));
|
|
269
270
|
|
270
271
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
271
272
|
|
272
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
273
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
273
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.54/dist/ccxt.browser.min.js
|
274
|
+
* unpkg: https://unpkg.com/ccxt@4.3.54/dist/ccxt.browser.min.js
|
274
275
|
|
275
276
|
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.
|
276
277
|
|
277
278
|
```HTML
|
278
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
279
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.54/dist/ccxt.browser.min.js"></script>
|
279
280
|
```
|
280
281
|
|
281
282
|
Creates a global `ccxt` object:
|
@@ -1,14 +1,14 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=sGJGLlNmnszjgoZCRPGuhCXTJxBTQK5N9dqM43kTbqg,16236
|
2
2
|
ccxt/ace.py,sha256=RC6jY5dSbiE4cI_MS0thZbDArWn3Drl8Vm1NFzTTQaI,41675
|
3
3
|
ccxt/alpaca.py,sha256=EZ7uF3XI8EXXIsCZ-UVpruBXS96Kps6WOOukmdcgCn0,47326
|
4
4
|
ccxt/ascendex.py,sha256=rUUU3n4j8QrMrJCk4pVwVastIYzS3eDTUAL9R2ePErk,151832
|
5
5
|
ccxt/bequant.py,sha256=RBiAmaTbL35DgiV3Hl6uchLUd78V0z1T9riTlNsrpdc,1174
|
6
6
|
ccxt/bigone.py,sha256=5GC1EYr5JbS9utI01_tzFvr41zcf3Q6zxECqV7LbaJE,92435
|
7
|
-
ccxt/binance.py,sha256=
|
7
|
+
ccxt/binance.py,sha256=m_RMYP-HttHnP8ziEF49YwjElAuLi1LiRmKgX2WDOyg,629410
|
8
8
|
ccxt/binancecoinm.py,sha256=arFnEh8mErSyi23eVPWE4iwoT7PWQyxGGVJCKCy6UJY,1702
|
9
9
|
ccxt/binanceus.py,sha256=hdcT4OnadcdFFFjF3GtM0nWv90jqojqwdVS3xWGuW40,9163
|
10
10
|
ccxt/binanceusdm.py,sha256=bAPcJj5HLxoCdPolriM8sJpoTBwbV78vBTbKRmWhNP4,2632
|
11
|
-
ccxt/bingx.py,sha256=
|
11
|
+
ccxt/bingx.py,sha256=biXpvytbEnU9o7p7Xvbabu3LDP8o6kjAMO0coPxN8QA,188744
|
12
12
|
ccxt/bit2c.py,sha256=un1ZuLNvEt7bkceNeue3UctEoFA-xpoKQlnq4bX5Slc,37062
|
13
13
|
ccxt/bitbank.py,sha256=yxS-W5FeA2Kqp7VbdNt6960GjuMflKVqUlTbtKPgqUY,43535
|
14
14
|
ccxt/bitbay.py,sha256=xAIjzGRDVGwoy-Gygd99H0YN4wiaz_0lR0Z14oxaaxc,478
|
@@ -17,9 +17,9 @@ ccxt/bitcoincom.py,sha256=PyWIl4nC4jp5Uba2lI1At0N_hhNyWD0DoZC_MSyL_s4,502
|
|
17
17
|
ccxt/bitfinex.py,sha256=6O33NthP73Q-zobTf1hp8zFxJsDyAMEiOCCJn_o1iEQ,72450
|
18
18
|
ccxt/bitfinex2.py,sha256=4bYPjnLMj3v2CMuzmwdTOgF6iaUggyXtN92Lc3oqwOE,160637
|
19
19
|
ccxt/bitflyer.py,sha256=rvykeLLkDYVMEwXs4rInQClYwdXIXmj_7mxDpGT216I,41565
|
20
|
-
ccxt/bitget.py,sha256=
|
20
|
+
ccxt/bitget.py,sha256=UR-8jHMnPDAySguyYtfDON476rXh876-mDAaX8h5JZE,423552
|
21
21
|
ccxt/bithumb.py,sha256=CcL-Zy8LodvUmj9R_kDbgLg9T5_ZvCDOECY4xZFQwwY,45848
|
22
|
-
ccxt/bitmart.py,sha256=
|
22
|
+
ccxt/bitmart.py,sha256=qGfTIyE_ffVYupOvrbSEAVlF2gPVaZAMqLk_oSUFr50,208414
|
23
23
|
ccxt/bitmex.py,sha256=koETQgb-yVZ3ZfP6qIHyTMLTDk8eXTHauhwhaP79ZBQ,126862
|
24
24
|
ccxt/bitopro.py,sha256=kjGn1UOy6toGyEbpV_al50eGCjqI75GN4LXpGbmL4Tw,68743
|
25
25
|
ccxt/bitpanda.py,sha256=aiwPkx9lKbVzt4ggoYdq_mIbMGtg5ZtGl2yRHO5xyz8,471
|
@@ -42,7 +42,7 @@ ccxt/coinbaseadvanced.py,sha256=d5g6nRx-NCcCwZDdtp8FsI2D-pRjSvnAP9ISSKY_nCQ,538
|
|
42
42
|
ccxt/coinbaseexchange.py,sha256=pnS1O5ZkUIY3QQ8IotdWgvJDo0qB0NS6RJZPrPOvwd4,78908
|
43
43
|
ccxt/coinbaseinternational.py,sha256=cGMA-DukMh64r0zd-Z5Ussyo7kYiItXV8YWnU5myAF4,87472
|
44
44
|
ccxt/coincheck.py,sha256=-9MS_DPgSfyPplgvjFzRfaQ3YSHW_WDxP3WnTAiICws,35943
|
45
|
-
ccxt/coinex.py,sha256=
|
45
|
+
ccxt/coinex.py,sha256=UIMaZKXIVBGtVx27FrZCiLAnAMeDjR_yXudiw_eWL6s,257436
|
46
46
|
ccxt/coinlist.py,sha256=t7kt8PMQkHNzf5ucxyqkRVYbsv4pLPm36wZeug6omk4,104138
|
47
47
|
ccxt/coinmate.py,sha256=NMyJizoysljIrERSSAtcqssv3iDlZwhtM3LUOEx-4_c,46533
|
48
48
|
ccxt/coinmetro.py,sha256=YdBw0siOIkZUVR6El3Qu3O_FO3q4S8sEly11JmVtQr8,80592
|
@@ -62,10 +62,10 @@ ccxt/gemini.py,sha256=5eIia9wC4amH1e2kuVZh69mQ8y43TRZu4JizH_w8ogc,80838
|
|
62
62
|
ccxt/hitbtc.py,sha256=8lOcpnAHF4Ip08z8FGk9PDAI2q3ax0LDcdDCp4wD6fo,153399
|
63
63
|
ccxt/hitbtc3.py,sha256=qRAr4Zvaju9IQWRZUohdoN7xRnzIMPq8AyYb3gPv-Is,455
|
64
64
|
ccxt/hollaex.py,sha256=e7irunlbzhM1BSvv9kyaccHdUF0cRjnJkIbMMQhe5PA,76141
|
65
|
-
ccxt/htx.py,sha256=
|
65
|
+
ccxt/htx.py,sha256=LCPtFtq3FMXXVWiQjbaLzszGoe3EsM2q0ph2YWea8Jk,425186
|
66
66
|
ccxt/huobi.py,sha256=4vaG7IRN7fyjaJ_ac6S-njlHOfSEN5de7aq0noznxYw,438
|
67
67
|
ccxt/huobijp.py,sha256=wWCz1hRTJP8KRqfhsfml8h4d3Zz1ChAgqdYDl0OiDAo,88183
|
68
|
-
ccxt/hyperliquid.py,sha256=
|
68
|
+
ccxt/hyperliquid.py,sha256=kkwcL4EjeydJWsoRCTsHmJCAUuBYkwhAisxTVI3sfKc,102638
|
69
69
|
ccxt/idex.py,sha256=wbxMuH-D06NblL5gZj5--P6MLm2lMF2PObYhDNcE78U,73256
|
70
70
|
ccxt/independentreserve.py,sha256=JKXu3cYYAe7XW_wANllTYAQa3uH_xsNFdT2a-Y1rI98,33490
|
71
71
|
ccxt/indodax.py,sha256=nNQuN0EKOppv9KtpkyrWAXAHFY6k5a0wnxNZ55h_dXs,53432
|
@@ -89,18 +89,19 @@ ccxt/onetrading.py,sha256=2nSe_Z_Jy7O4rPggwbY17M6oimu-t0PkeTejTu26XcA,88340
|
|
89
89
|
ccxt/oxfun.py,sha256=k_0Wixo0hQt6MVHR4g61IgWG5qJazAoYoZ3ux2EtD4Y,124653
|
90
90
|
ccxt/p2b.py,sha256=_kQjmJ1O9sgb5HnNsefD0Jy-DejW4chndqraV5jV3ak,54334
|
91
91
|
ccxt/paymium.py,sha256=9TfMe2ViBYYodGcbVTPm6QOyuIxI6vmbl46xa5bl8D8,24420
|
92
|
-
ccxt/phemex.py,sha256=
|
93
|
-
ccxt/poloniex.py,sha256=
|
92
|
+
ccxt/phemex.py,sha256=kT95mRifeiJEPjbdeQd1fPYWbP5k2y7MgIovIaL60yE,223120
|
93
|
+
ccxt/poloniex.py,sha256=QqpVP0SDTGgtp-BIom4uBlmrRt_xMnHprb_-g1YhTKs,102268
|
94
94
|
ccxt/poloniexfutures.py,sha256=cPMhbame1K_I1d8JgI2GzFQ8bFh54O0WfA0UTGmqSjg,78106
|
95
|
-
ccxt/probit.py,sha256=
|
95
|
+
ccxt/probit.py,sha256=DqmkL7v9K6TsY0OwlyNxgOjU7OvpcThApyBOXOQi4Zg,76166
|
96
96
|
ccxt/timex.py,sha256=jTXj6mGZcmsfmDFHbJyWiScLK-vdY7AYsD5gUyk1x0s,71451
|
97
97
|
ccxt/tokocrypto.py,sha256=rNtgbaYWZzervosI7gnseAQ9zlstR0_9jwPQ65tLWfM,123193
|
98
98
|
ccxt/tradeogre.py,sha256=Rg5j165OAwYuOFgYwXtKEb8Tdbv1BzFVj6mvgDS6qJg,24212
|
99
99
|
ccxt/upbit.py,sha256=6uYO8pFI_lYx6UU0ELcvc82F6xEJK9GPIxgUQiTDq10,82011
|
100
|
+
ccxt/vertex.py,sha256=oUeywsZNJFFg0Amd-yeYfZmmUuVfsJrpNvUhK7JdJ-I,121429
|
100
101
|
ccxt/wavesexchange.py,sha256=7vQjJl7C5uT1tDh-oRewkpqeqM9w3vWYEaTSpLL7rIo,114826
|
101
102
|
ccxt/wazirx.py,sha256=_JRQvSh0XLPKjE-0Fi_YqYyz38GObXkyXLM1Pg3hipI,52406
|
102
103
|
ccxt/whitebit.py,sha256=xENpt5u6txhUlLfc4IR_FHCAJMw3u1nj17voGoq0zus,118756
|
103
|
-
ccxt/woo.py,sha256=
|
104
|
+
ccxt/woo.py,sha256=8BhndXS-XONYFCxKPfzwLUTgGoLveD0NK5EKK_Bsu4s,140143
|
104
105
|
ccxt/woofipro.py,sha256=jAvxPnpn6ib0e8x0iYqHLg7X7aD_8iTzGAJvnw72HrU,115353
|
105
106
|
ccxt/xt.py,sha256=LIV1YnyhpM2lfPYvEfMg5H2aMP-wkeikm1CxdqgSsPY,200367
|
106
107
|
ccxt/yobit.py,sha256=MFrd_ZvzSPP0T8RWrC3aLNrQN2rDZz3m2cbCnOqXr6s,53372
|
@@ -205,6 +206,7 @@ ccxt/abstract/timex.py,sha256=9b0CDsyjm8XrYZmhUMB1dTHUmyE9YrsZTCZrz1UTt6E,5875
|
|
205
206
|
ccxt/abstract/tokocrypto.py,sha256=OF5UW4ch_Lf3-avOPgd4AD4CVrOUDUfUpSMCmxhNHlk,4094
|
206
207
|
ccxt/abstract/tradeogre.py,sha256=sIdA_22RHztwsIeznysBPtvta5V_mQwUXeYK6OyUJqQ,1372
|
207
208
|
ccxt/abstract/upbit.py,sha256=fPIEwrzoNk01aQbxhuRveTFHHKGBfAweOn4Uv8Ru0UM,3576
|
209
|
+
ccxt/abstract/vertex.py,sha256=56BbU9WF32wLTypOHrhV47betqBYTQvpOJjAzGclYGA,1622
|
208
210
|
ccxt/abstract/wavesexchange.py,sha256=8LIgZiPixoaUFPKGSWJpjI1BYXVqeQh9NLcjfXciZMc,19631
|
209
211
|
ccxt/abstract/wazirx.py,sha256=UfQvsyKwf4kImpkPlxdnoWDq0iUT5t1kSa2iDr_XkDw,2782
|
210
212
|
ccxt/abstract/whitebit.py,sha256=V38LGKYq3LYYVw4Cwr-eJjhzTBOtrklCbLTAID4tths,12194
|
@@ -214,17 +216,17 @@ ccxt/abstract/xt.py,sha256=xHHv2viFGK0_iPZ4gu6Wb0aOrpcKhr9zoY-BIPWh5bs,27028
|
|
214
216
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
215
217
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
216
218
|
ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
|
217
|
-
ccxt/async_support/__init__.py,sha256=
|
219
|
+
ccxt/async_support/__init__.py,sha256=3XCOQxq-O9TY3MK4nbmAcDN_EqvcfgqExOf3efYhz5A,16039
|
218
220
|
ccxt/async_support/ace.py,sha256=ffpHbADxBOtT3QliUmoex2pTS7sSWB7CwO_SAPKJqDs,41899
|
219
221
|
ccxt/async_support/alpaca.py,sha256=3845DgojoA1p0pxrqnDIqHbbRcEwZhZIkE4aygD5ics,47538
|
220
222
|
ccxt/async_support/ascendex.py,sha256=7tZ4C7FfzmuB_ADYjl6IkyQQ5JG0Vt1AD_B3fTeY6V0,152620
|
221
223
|
ccxt/async_support/bequant.py,sha256=1hTwHovo1bW1XTIc8ZKjvJ-Xg6LfmpGdzT7TepykaVM,1188
|
222
224
|
ccxt/async_support/bigone.py,sha256=sjHT2w4iVYyNCELOhrgIxn3kDQsSfnl8l9HK73-RQrA,92889
|
223
|
-
ccxt/async_support/binance.py,sha256=
|
225
|
+
ccxt/async_support/binance.py,sha256=HgyAf1iI1fyxXjkbGPx1a69UB0Bt6z4YhlgC2MTNnpM,632126
|
224
226
|
ccxt/async_support/binancecoinm.py,sha256=yeE73xG5UXD_X3VPul6DMGnV_mgJfWYskpas1BUDdCU,1740
|
225
227
|
ccxt/async_support/binanceus.py,sha256=c-K3Tk7LaRJjmYdCx8vBOqsx01uXrtvt0PC2ekBiD0g,9177
|
226
228
|
ccxt/async_support/binanceusdm.py,sha256=8ugRkx7vyYmn67wdkEEf2f-DFMGAoC4t09usKlPVNyw,2670
|
227
|
-
ccxt/async_support/bingx.py,sha256=
|
229
|
+
ccxt/async_support/bingx.py,sha256=2H-kbaXPdUrv5p4RHjZwS2YAYi_mkQmeUKSCnMy7hx0,189780
|
228
230
|
ccxt/async_support/bit2c.py,sha256=5div5D1LV3QHZUqL3CDdKaBDATQ3c2Phglx9JpAb7fY,37274
|
229
231
|
ccxt/async_support/bitbank.py,sha256=47jVvH8--NkV11uL-1X22vEg0YMyLc--SVtVuTLrFCI,43795
|
230
232
|
ccxt/async_support/bitbay.py,sha256=jcaEXi2IhYTva8ezO_SfJhwxEZk7HST4J3NaxD16BQA,492
|
@@ -233,9 +235,9 @@ ccxt/async_support/bitcoincom.py,sha256=RiqwhK3RfxQ_PXTa860fphDCvwA8dalL-_rXlK85
|
|
233
235
|
ccxt/async_support/bitfinex.py,sha256=K-Lm2aIrw1a_H9rrSK_M-a_aZCc-9vfaSpCiMCGiHZY,72890
|
234
236
|
ccxt/async_support/bitfinex2.py,sha256=-RgXS7A6h27MOrLT7Xtmj_710ZcQKmCYLVqfYgx6xos,161371
|
235
237
|
ccxt/async_support/bitflyer.py,sha256=RWrRkrZJow4M5uwoqTCD0bcITItbC5WZ57Mcmv0_1nk,41873
|
236
|
-
ccxt/async_support/bitget.py,sha256=
|
238
|
+
ccxt/async_support/bitget.py,sha256=k89LRnBZb5DsATBdv-R5VQDFKGUY770n5CRXPetLH8I,425176
|
237
239
|
ccxt/async_support/bithumb.py,sha256=4XN45L8XmpxUAWiFZKzwSpeVLhlRZhQY4IZLyh-yjCc,46078
|
238
|
-
ccxt/async_support/bitmart.py,sha256=
|
240
|
+
ccxt/async_support/bitmart.py,sha256=YL-CIe-X1m-Cvw1FLyQiqYo6MjSAKgEuCm8TpT8v9Tk,209370
|
239
241
|
ccxt/async_support/bitmex.py,sha256=JCRSgTWNwB97A1vwvEpajD8VQ4AE8Qs5ZU1yd8KaiYc,127440
|
240
242
|
ccxt/async_support/bitopro.py,sha256=OWWNB_6Vpe10JG0P7dpmgerPEtmuxbx5_DLBFWnsL7w,69147
|
241
243
|
ccxt/async_support/bitpanda.py,sha256=2k3URBWrpnh2xHa7JiYenI7_4MW5UeOPGzetlmRkR4U,485
|
@@ -258,7 +260,7 @@ ccxt/async_support/coinbaseadvanced.py,sha256=Kupwnuxiu_qTjwCNV2asacoDUNFQvcaHNA
|
|
258
260
|
ccxt/async_support/coinbaseexchange.py,sha256=eDJIvxNNm-MvdFzCUlM0JQMwcSm1DBymXy4AaV2GKJc,79414
|
259
261
|
ccxt/async_support/coinbaseinternational.py,sha256=pIybc9DfEeUVVnorHAkAitibuHuEatQZ2MciwIW6WLA,88026
|
260
262
|
ccxt/async_support/coincheck.py,sha256=Vhnzmdr_N7fpSOIthoTE6HSqVA5xPF2bG6W5UleVdkk,36149
|
261
|
-
ccxt/async_support/coinex.py,sha256=
|
263
|
+
ccxt/async_support/coinex.py,sha256=PKf8K3ixWa-4ByDoB1ZCIb4yS0KZ_DOEL_uHcquFvfw,258694
|
262
264
|
ccxt/async_support/coinlist.py,sha256=MLkN9Z_7b1i0mBdjsbAcUmZrNuvHikcGOPESS--axRE,104626
|
263
265
|
ccxt/async_support/coinmate.py,sha256=8_Z-faTalZ_hbRTzOqJafsbh44ZnVZG84HdC3z8m7fw,46799
|
264
266
|
ccxt/async_support/coinmetro.py,sha256=LrzPvbOQc5xqKJWPNsKfGzo9bGM8RcEOSC9nxlIS3-w,80912
|
@@ -278,10 +280,10 @@ ccxt/async_support/gemini.py,sha256=cJjRW_O2uIKhi6tsClWr9Td8AGet_sXM2Lkj-i3MjRA,
|
|
278
280
|
ccxt/async_support/hitbtc.py,sha256=hjssPFXONM6S_-ZL8n6AqNS1wA-OmRe_t2ukj54EIxg,154445
|
279
281
|
ccxt/async_support/hitbtc3.py,sha256=dmSYoD2o4av_zzbZI8HNIoj8BWxA7QozsVpy8JaOXzU,469
|
280
282
|
ccxt/async_support/hollaex.py,sha256=b7nJAvL0dCfPwhjOCfoAn1Qd9msFvEIfYp-7EQ4QIwQ,76575
|
281
|
-
ccxt/async_support/htx.py,sha256=
|
283
|
+
ccxt/async_support/htx.py,sha256=vCqpCdZY7Vq0JLZB-pMBzZxM_OQmx1jWPID8BhRu4ME,427578
|
282
284
|
ccxt/async_support/huobi.py,sha256=fup0j6wQ1khAtfbb1H4CSyJAOzhxuoHMmrM6sgTuhr8,452
|
283
285
|
ccxt/async_support/huobijp.py,sha256=C8r2aXJ5D8vyS9hEA2FKBTufDKircXN9D2ypm720HeU,88683
|
284
|
-
ccxt/async_support/hyperliquid.py,sha256=
|
286
|
+
ccxt/async_support/hyperliquid.py,sha256=CM5UGL3fhN9oau7mOovRXT6C_OkF9OITy6S_4NQ43cQ,103158
|
285
287
|
ccxt/async_support/idex.py,sha256=UrSCUFhd5xmjHWs2zmTe-M_A7d1Pvt3QVDga9dKGcsM,73732
|
286
288
|
ccxt/async_support/independentreserve.py,sha256=DxoBIoijcViZGfOgItukkWvL2pKv-03ZsQQVG6dGFW0,33750
|
287
289
|
ccxt/async_support/indodax.py,sha256=GY3-cmbfhihBOgCtnJ_wqBCnk-mqQ64zDoNJ-3qy8tM,53740
|
@@ -305,29 +307,30 @@ ccxt/async_support/onetrading.py,sha256=u6Y7zWjfVBVBl9RLIUfwAneZzE4fOENx7Y11zE7M
|
|
305
307
|
ccxt/async_support/oxfun.py,sha256=a_xP9hsjcsooDGO7fLmZPvW-Rlyfis6JRKmsnF0w-hk,125197
|
306
308
|
ccxt/async_support/p2b.py,sha256=vwavNnMyU7tJF1FIIBhZe4az58clzptk0bEuIDPmOAA,54576
|
307
309
|
ccxt/async_support/paymium.py,sha256=WKPElafAfmg06ATcLLIS0V09kZIGlSbn0L7Z3rcLvQA,24608
|
308
|
-
ccxt/async_support/phemex.py,sha256=
|
309
|
-
ccxt/async_support/poloniex.py,sha256=
|
310
|
+
ccxt/async_support/phemex.py,sha256=r4qfgA2IXaNWvhTAzldvpwFueszroj-yJcSU1pc-ess,223938
|
311
|
+
ccxt/async_support/poloniex.py,sha256=DqZ9Kp9dOyaVVw0Nk_ayMuexiIiiEoXAau3S9h9YcaE,102816
|
310
312
|
ccxt/async_support/poloniexfutures.py,sha256=xNrXcZ8OjafniqtcJD8AhXq58GC3jKeMqNPJSEsFlJM,78492
|
311
|
-
ccxt/async_support/probit.py,sha256=
|
313
|
+
ccxt/async_support/probit.py,sha256=0W5NjycP_GYZO-FaL0wyId9ZGYvQSA3Wd1RXDneiQSU,76558
|
312
314
|
ccxt/async_support/timex.py,sha256=6_SBBYk3IW3iFFpHejYBPOTvmoOAFROygbh7TR0YvXM,71813
|
313
315
|
ccxt/async_support/tokocrypto.py,sha256=BJWVbn6oXdv0ESEPeSLAeW8fApO48GWh_b3znV9hsik,123555
|
314
316
|
ccxt/async_support/tradeogre.py,sha256=Nv6ifk1guxLlC7yAOdfneIJbYXqEBPDMqQKomMX_anM,24406
|
315
317
|
ccxt/async_support/upbit.py,sha256=IwpTyde1fOMEhq0D8yUnbWHNOZwof_yAoccOP2yh7wY,82493
|
318
|
+
ccxt/async_support/vertex.py,sha256=UGWLIXgptaVtDawWKCek4SaRlV-mGvox-uP_Pd9CkrE,121929
|
316
319
|
ccxt/async_support/wavesexchange.py,sha256=D12ssbQvRl4zkQLKwpELn5EYDHjfi-cp6zjXRAhqiI8,115376
|
317
320
|
ccxt/async_support/wazirx.py,sha256=C3Y4R4aMyj4404n5LtotvqlZDt5ILp_MvauyvL06e1k,52708
|
318
321
|
ccxt/async_support/whitebit.py,sha256=mwoolQKWL_9ZpC-zU5Ti4rM7QsK3Fmmo_MRUgj_Nno8,119406
|
319
|
-
ccxt/async_support/woo.py,sha256=
|
322
|
+
ccxt/async_support/woo.py,sha256=GUcZ7n4le5T3RJsjO00M9QSRQcWhdMAYGneco0JrFzM,141051
|
320
323
|
ccxt/async_support/woofipro.py,sha256=ePRdVtl3hUBXWfy1cMEPvJl1fzRGbe67sD_bl5_BIUY,116033
|
321
324
|
ccxt/async_support/xt.py,sha256=naduJ9l9TxQXFYGDOVrhIC-rX8CJhwrRyyR8Ps2cLPY,201521
|
322
325
|
ccxt/async_support/yobit.py,sha256=KQcu9nXJPDlAodZyxOXKIn6eTSLmlvUlgRFE6EBLfug,53656
|
323
326
|
ccxt/async_support/zaif.py,sha256=jTK5pLZSpKL1Pt0qAJTjN09TDS5AfhptGgGAqw7sNwE,29045
|
324
327
|
ccxt/async_support/zonda.py,sha256=skMMmUUjXJmnQpzlFrJfmg4-vEIOsTGz2zSW9nI4C90,81721
|
325
328
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
326
|
-
ccxt/async_support/base/exchange.py,sha256=
|
329
|
+
ccxt/async_support/base/exchange.py,sha256=KKwZWvW4HIuwEJY2soRNX1HuB-KJAU0VsbGzxQ8A2x8,109872
|
327
330
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
328
331
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
329
332
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
|
330
|
-
ccxt/async_support/base/ws/cache.py,sha256=
|
333
|
+
ccxt/async_support/base/ws/cache.py,sha256=jK1nzPIijhBZz9eXItbFULfZRv4uV2HGOmVwhHEyahg,8134
|
331
334
|
ccxt/async_support/base/ws/client.py,sha256=jTFg8KHw9_2vD9kJp1Pykw2KGXisFgGnRFir0V7bp_g,7289
|
332
335
|
ccxt/async_support/base/ws/fast_client.py,sha256=r5Ej3hjCY5k-e4D2gXbo5TE2EXCItVg8fJ8i3O3djsQ,3864
|
333
336
|
ccxt/async_support/base/ws/functions.py,sha256=qwvEnjtINWL5ZU-dbbeIunjyBxzFqbGWHfVhxqAcKug,1499
|
@@ -337,14 +340,14 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
|
|
337
340
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
338
341
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
339
342
|
ccxt/base/errors.py,sha256=FGdyULeNCNcl52gA_CNhe2dZmat9GJGkTdlIyDXAF_A,4213
|
340
|
-
ccxt/base/exchange.py,sha256
|
341
|
-
ccxt/base/precise.py,sha256=
|
343
|
+
ccxt/base/exchange.py,sha256=-gJA5hHpo_qToi34mBLxJMdEv0sReafTCOhUtNpfWaE,280900
|
344
|
+
ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
342
345
|
ccxt/base/types.py,sha256=RGGcbz86cVtrmU602zoFO5gSWrv_J7IHxQkPnzmNirs,9247
|
343
|
-
ccxt/pro/__init__.py,sha256=
|
346
|
+
ccxt/pro/__init__.py,sha256=I0o_74-e5Mzo6Bqz9Ik_6uvq_hNPRJZte2A9d-OJHZQ,7308
|
344
347
|
ccxt/pro/alpaca.py,sha256=QA_Dmxu1ockCSYJMbOodbNke3t1tAl0hFL-q56UMQWE,27224
|
345
348
|
ccxt/pro/ascendex.py,sha256=181FIeztchLqGmgecRJEN8F8xEM45D5aMKhC-5nuNfU,35467
|
346
349
|
ccxt/pro/bequant.py,sha256=5zbsP8BHQTUZ8ZNL6uaACxDbUClgkOV4SYfXT_LfQVg,1351
|
347
|
-
ccxt/pro/binance.py,sha256=
|
350
|
+
ccxt/pro/binance.py,sha256=dS62U05hIgXqw66c170o5NPIP7JRuyYCdjB0ao9T-rI,171501
|
348
351
|
ccxt/pro/binancecoinm.py,sha256=LlgF4rXHHrsQMaklhTEzSiE6U9V25AjHHg_DRat7Mf0,1036
|
349
352
|
ccxt/pro/binanceus.py,sha256=_IXpS_wyH0nEtsLR7cJLtrUlsNQoG0MSUVo3PV0RDDc,1946
|
350
353
|
ccxt/pro/binanceusdm.py,sha256=lLdOv0d-lM-1wfCc_y_POb6GdmVIiX7PFzmKTWsVyNw,1512
|
@@ -362,7 +365,7 @@ ccxt/pro/bitrue.py,sha256=aDbPloGgsEN_DnoAJCkM0Y4MJ1r57OvoKpinynhRNrA,16463
|
|
362
365
|
ccxt/pro/bitstamp.py,sha256=P8Td5HqWiO6GMdLj-cKqPTZD28fltWlZQ7Z-omDbO60,20916
|
363
366
|
ccxt/pro/bitvavo.py,sha256=vn70dtyWs2TSZieCevvwKliRInmvvzMrvTyGq0fTIYM,56229
|
364
367
|
ccxt/pro/blockchaincom.py,sha256=LtCL3habcuB2IRXXK_oeqdzqpnkj01Gr79X82nK8Mnk,29600
|
365
|
-
ccxt/pro/bybit.py,sha256=
|
368
|
+
ccxt/pro/bybit.py,sha256=drnZo2-cL5qXzcxl2T2Ow57qwMnHCN0_sznmPhnM6LU,89272
|
366
369
|
ccxt/pro/cex.py,sha256=ri0fnWYa4tFeeuJ_edqUziI5VJ921rRjIapion9Emug,58495
|
367
370
|
ccxt/pro/coinbase.py,sha256=q5PQ--k9q50UrgWCPYV0y2tx5hQ32nmWXBp4nvJsQag,30628
|
368
371
|
ccxt/pro/coinbaseexchange.py,sha256=taV-mCliIcc6XQjxSl2HmYHpBkOIDkxUxF2LrBSXfCc,39035
|
@@ -387,7 +390,7 @@ ccxt/pro/idex.py,sha256=WAY58yMHFUPoqZUGFvzxqcKizvMuFXqdZ6BD0WgstQA,28361
|
|
387
390
|
ccxt/pro/independentreserve.py,sha256=1RDkNQ0IKyC84GQRmgl-Mvo0qoOXD3-sxX6zecGbGvU,11214
|
388
391
|
ccxt/pro/kraken.py,sha256=zzDhQN3h80gZu_JNTOx1jsIKMH4oHpzbA-_Mx7cmM5s,60920
|
389
392
|
ccxt/pro/krakenfutures.py,sha256=3qn_aDwiDtgSz31-J9dzLYNaVywhSksz39hhl0v9DoM,63989
|
390
|
-
ccxt/pro/kucoin.py,sha256=
|
393
|
+
ccxt/pro/kucoin.py,sha256=FASilISOBbj0bCxyAr0Jgpnz7riNkboWH14q1gvhwkE,52871
|
391
394
|
ccxt/pro/kucoinfutures.py,sha256=NSd0cxEGoO_yytG0KRgZUOoCvjj5UjjXD8m_tlp3pIo,50319
|
392
395
|
ccxt/pro/lbank.py,sha256=ip7zjZFvGKufpu30WN2_lFQ-ODcJVNkcJQHbz-uLfHo,35203
|
393
396
|
ccxt/pro/luno.py,sha256=AzLK0_C0Hu25ukMNkMLP_sY3D4UG9FT38oawpo4jzTg,12336
|
@@ -401,8 +404,9 @@ ccxt/pro/p2b.py,sha256=Vdm2wc4RF3IDMKivSlNyWjrh9IR0c-Zm5lDjY4AIass,17889
|
|
401
404
|
ccxt/pro/phemex.py,sha256=jwNOvJf3FcJAqsPzZDSGLWJ8ukjJyugVgCZzSPimhZ8,61074
|
402
405
|
ccxt/pro/poloniex.py,sha256=XlnwsZYmA6p93T2C_ZE_wfWUUwujBpwWvCrkl0uDQdA,51289
|
403
406
|
ccxt/pro/poloniexfutures.py,sha256=iyA57Gre_58DaAUnWLGdnBEue2xSWznCuQ6c1qxTH3c,41719
|
404
|
-
ccxt/pro/probit.py,sha256=
|
407
|
+
ccxt/pro/probit.py,sha256=ngY30aRwNClc_q_Pirajg4-K-mJ3bvipgD2-jBuPs6g,23110
|
405
408
|
ccxt/pro/upbit.py,sha256=jxL1twQsfh0pQ_HcmPbevAcl4WdLZk7_Pg-jhapmGUs,22098
|
409
|
+
ccxt/pro/vertex.py,sha256=rY_KF5iSlL6V4BlDgCNJ3lEROa6Rfqh11PiGt5JDFLI,40481
|
406
410
|
ccxt/pro/wazirx.py,sha256=LXpotTduk3fhtcJP2TWpssiOOAZGxhou5_MTK-0G7n0,30082
|
407
411
|
ccxt/pro/whitebit.py,sha256=ZoWKxOYFG3flOYHosUo6LGRs83PVgCC3trLxJbbFLpk,35069
|
408
412
|
ccxt/pro/woo.py,sha256=8TtJpGJxo1zMF5DRKyhS4L4fT4i7S1dvAgJgheU_Dhc,43677
|
@@ -505,8 +509,8 @@ ccxt/static_dependencies/toolz/curried/__init__.py,sha256=iOuFY4c1kixe_h8lxuWIW5
|
|
505
509
|
ccxt/static_dependencies/toolz/curried/exceptions.py,sha256=gKFOHDIayAWnX2uC8Z2KrUwpP-UpoqI5Tx1a859QdVY,344
|
506
510
|
ccxt/static_dependencies/toolz/curried/operator.py,sha256=ML92mknkAwzBl2NCm-4werSUmJEtSHNY9NSzhseNM9s,525
|
507
511
|
ccxt/test/__init__.py,sha256=GKPbEcj0Rrz5HG-GUm-iY1IHhDYmlvcBXZAGk6-m2CI,141
|
508
|
-
ccxt/test/test_async.py,sha256=
|
509
|
-
ccxt/test/test_sync.py,sha256=
|
512
|
+
ccxt/test/test_async.py,sha256=suOYZqYKWyvnVT96Ww4KYapoQhKsTJzkj3q3zarRaPE,88485
|
513
|
+
ccxt/test/test_sync.py,sha256=kwSQzJtIXHuS5J71P4rB9REqTdA2eXOAs1Bn5lZTP3Q,87376
|
510
514
|
ccxt/test/base/__init__.py,sha256=Q57E2qUN0bRKaZvLeKEMWB23jJGWUDgqbAxvRh0896U,1962
|
511
515
|
ccxt/test/base/test_account.py,sha256=lxwZXsY8qZgomBoEiomUmWcseSp--orJx-xmm3E1vYs,978
|
512
516
|
ccxt/test/base/test_balance.py,sha256=W-IcVRiJNLtdKEWEEhmhWjtFRuHFtoywNiGQNtYSuc0,2931
|
@@ -542,8 +546,8 @@ ccxt/test/base/test_ticker.py,sha256=cMTIMb1oySNORUCmqI5ZzMswlEyCF6gJMah3vfvo8wQ
|
|
542
546
|
ccxt/test/base/test_trade.py,sha256=PMtmB8V38dpaP-eb8h488xYMlR6D69yCOhsA1RuWrUA,2336
|
543
547
|
ccxt/test/base/test_trading_fee.py,sha256=2aDCNJtqBkTC_AieO0l1HYGq5hz5qkWlkWb9Nv_fcwk,1066
|
544
548
|
ccxt/test/base/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
|
545
|
-
ccxt-4.3.
|
546
|
-
ccxt-4.3.
|
547
|
-
ccxt-4.3.
|
548
|
-
ccxt-4.3.
|
549
|
-
ccxt-4.3.
|
549
|
+
ccxt-4.3.54.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
550
|
+
ccxt-4.3.54.dist-info/METADATA,sha256=syeixMSx3faA9AqJ64WZbu2P0LRRVLBkl6GQqUCot-E,115971
|
551
|
+
ccxt-4.3.54.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
552
|
+
ccxt-4.3.54.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
553
|
+
ccxt-4.3.54.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|