ccxt 4.3.21__py2.py3-none-any.whl → 4.3.22__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.
Potentially problematic release.
This version of ccxt might be problematic. Click here for more details.
- ccxt/__init__.py +1 -1
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/coinex.py +1 -1
- ccxt/async_support/phemex.py +34 -4
- ccxt/base/exchange.py +1 -1
- ccxt/coinex.py +1 -1
- ccxt/phemex.py +34 -4
- ccxt/pro/__init__.py +1 -1
- {ccxt-4.3.21.dist-info → ccxt-4.3.22.dist-info}/METADATA +4 -4
- {ccxt-4.3.21.dist-info → ccxt-4.3.22.dist-info}/RECORD +13 -13
- {ccxt-4.3.21.dist-info → ccxt-4.3.22.dist-info}/WHEEL +0 -0
- {ccxt-4.3.21.dist-info → ccxt-4.3.22.dist-info}/top_level.txt +0 -0
ccxt/__init__.py
CHANGED
ccxt/async_support/__init__.py
CHANGED
ccxt/async_support/coinex.py
CHANGED
@@ -5550,7 +5550,7 @@ class coinex(Exchange, ImplicitAPI):
|
|
5550
5550
|
code = self.safe_string(response, 'code')
|
5551
5551
|
data = self.safe_value(response, 'data')
|
5552
5552
|
message = self.safe_string(response, 'message')
|
5553
|
-
if (code != '0') or ((message != 'Success') and (message != 'Succeeded') and (message != '
|
5553
|
+
if (code != '0') or ((message != 'Success') and (message != 'Succeeded') and (message.lower() != 'ok') and not data):
|
5554
5554
|
feedback = self.id + ' ' + message
|
5555
5555
|
self.throw_broadly_matched_exception(self.exceptions['broad'], message, feedback)
|
5556
5556
|
self.throw_exactly_matched_exception(self.exceptions['exact'], code, feedback)
|
ccxt/async_support/phemex.py
CHANGED
@@ -1658,6 +1658,26 @@ class phemex(Exchange, ImplicitAPI):
|
|
1658
1658
|
# "execId": "8718cae",
|
1659
1659
|
# "execStatus": 6
|
1660
1660
|
# }
|
1661
|
+
# spot with fees paid using PT token
|
1662
|
+
# "createdAt": "1714990724076",
|
1663
|
+
# "symbol": "BTCUSDT",
|
1664
|
+
# "currency": "USDT",
|
1665
|
+
# "action": "1",
|
1666
|
+
# "tradeType": "1",
|
1667
|
+
# "execQtyRq": "0.003",
|
1668
|
+
# "execPriceRp": "64935",
|
1669
|
+
# "side": "2",
|
1670
|
+
# "orderQtyRq": "0.003",
|
1671
|
+
# "priceRp": "51600",
|
1672
|
+
# "execValueRv": "194.805",
|
1673
|
+
# "feeRateRr": "0.000495",
|
1674
|
+
# "execFeeRv": "0",
|
1675
|
+
# "ordType": "3",
|
1676
|
+
# "execId": "XXXXXX",
|
1677
|
+
# "execStatus": "7",
|
1678
|
+
# "posSide": "1",
|
1679
|
+
# "ptFeeRv": "0.110012249248",
|
1680
|
+
# "ptPriceRp": "0.876524893"
|
1661
1681
|
#
|
1662
1682
|
priceString: Str
|
1663
1683
|
amountString: Str
|
@@ -1706,10 +1726,16 @@ class phemex(Exchange, ImplicitAPI):
|
|
1706
1726
|
priceString = self.safe_string(trade, 'execPriceRp')
|
1707
1727
|
amountString = self.safe_string(trade, 'execQtyRq')
|
1708
1728
|
costString = self.safe_string(trade, 'execValueRv')
|
1709
|
-
feeCostString = self.safe_string(trade, 'execFeeRv')
|
1729
|
+
feeCostString = self.omit_zero(self.safe_string(trade, 'execFeeRv'))
|
1710
1730
|
feeRateString = self.safe_string(trade, 'feeRateRr')
|
1711
|
-
|
1712
|
-
|
1731
|
+
if feeCostString is not None:
|
1732
|
+
currencyId = self.safe_string(trade, 'currency')
|
1733
|
+
feeCurrencyCode = self.safe_currency_code(currencyId)
|
1734
|
+
else:
|
1735
|
+
ptFeeRv = self.omit_zero(self.safe_string(trade, 'ptFeeRv'))
|
1736
|
+
if ptFeeRv is not None:
|
1737
|
+
feeCostString = ptFeeRv
|
1738
|
+
feeCurrencyCode = 'PT'
|
1713
1739
|
else:
|
1714
1740
|
side = self.safe_string_lower(trade, 'side')
|
1715
1741
|
type = self.parse_order_type(self.safe_string(trade, 'ordType'))
|
@@ -1720,7 +1746,7 @@ class phemex(Exchange, ImplicitAPI):
|
|
1720
1746
|
amountString = self.from_ev(self.safe_string(trade, 'execBaseQtyEv'), market)
|
1721
1747
|
amountString = self.safe_string(trade, 'execQty', amountString)
|
1722
1748
|
costString = self.from_er(self.safe_string_2(trade, 'execQuoteQtyEv', 'execValueEv'), market)
|
1723
|
-
feeCostString = self.from_er(self.safe_string(trade, 'execFeeEv'), market)
|
1749
|
+
feeCostString = self.from_er(self.omit_zero(self.safe_string(trade, 'execFeeEv')), market)
|
1724
1750
|
if feeCostString is not None:
|
1725
1751
|
feeRateString = self.from_er(self.safe_string(trade, 'feeRateEr'), market)
|
1726
1752
|
if market['spot']:
|
@@ -1730,6 +1756,10 @@ class phemex(Exchange, ImplicitAPI):
|
|
1730
1756
|
if info is not None:
|
1731
1757
|
settlementCurrencyId = self.safe_string(info, 'settlementCurrency')
|
1732
1758
|
feeCurrencyCode = self.safe_currency_code(settlementCurrencyId)
|
1759
|
+
else:
|
1760
|
+
feeCostString = self.safe_string(trade, 'ptFeeRv')
|
1761
|
+
if feeCostString is not None:
|
1762
|
+
feeCurrencyCode = 'PT'
|
1733
1763
|
fee = {
|
1734
1764
|
'cost': feeCostString,
|
1735
1765
|
'rate': feeRateString,
|
ccxt/base/exchange.py
CHANGED
ccxt/coinex.py
CHANGED
@@ -5549,7 +5549,7 @@ class coinex(Exchange, ImplicitAPI):
|
|
5549
5549
|
code = self.safe_string(response, 'code')
|
5550
5550
|
data = self.safe_value(response, 'data')
|
5551
5551
|
message = self.safe_string(response, 'message')
|
5552
|
-
if (code != '0') or ((message != 'Success') and (message != 'Succeeded') and (message != '
|
5552
|
+
if (code != '0') or ((message != 'Success') and (message != 'Succeeded') and (message.lower() != 'ok') and not data):
|
5553
5553
|
feedback = self.id + ' ' + message
|
5554
5554
|
self.throw_broadly_matched_exception(self.exceptions['broad'], message, feedback)
|
5555
5555
|
self.throw_exactly_matched_exception(self.exceptions['exact'], code, feedback)
|
ccxt/phemex.py
CHANGED
@@ -1658,6 +1658,26 @@ class phemex(Exchange, ImplicitAPI):
|
|
1658
1658
|
# "execId": "8718cae",
|
1659
1659
|
# "execStatus": 6
|
1660
1660
|
# }
|
1661
|
+
# spot with fees paid using PT token
|
1662
|
+
# "createdAt": "1714990724076",
|
1663
|
+
# "symbol": "BTCUSDT",
|
1664
|
+
# "currency": "USDT",
|
1665
|
+
# "action": "1",
|
1666
|
+
# "tradeType": "1",
|
1667
|
+
# "execQtyRq": "0.003",
|
1668
|
+
# "execPriceRp": "64935",
|
1669
|
+
# "side": "2",
|
1670
|
+
# "orderQtyRq": "0.003",
|
1671
|
+
# "priceRp": "51600",
|
1672
|
+
# "execValueRv": "194.805",
|
1673
|
+
# "feeRateRr": "0.000495",
|
1674
|
+
# "execFeeRv": "0",
|
1675
|
+
# "ordType": "3",
|
1676
|
+
# "execId": "XXXXXX",
|
1677
|
+
# "execStatus": "7",
|
1678
|
+
# "posSide": "1",
|
1679
|
+
# "ptFeeRv": "0.110012249248",
|
1680
|
+
# "ptPriceRp": "0.876524893"
|
1661
1681
|
#
|
1662
1682
|
priceString: Str
|
1663
1683
|
amountString: Str
|
@@ -1706,10 +1726,16 @@ class phemex(Exchange, ImplicitAPI):
|
|
1706
1726
|
priceString = self.safe_string(trade, 'execPriceRp')
|
1707
1727
|
amountString = self.safe_string(trade, 'execQtyRq')
|
1708
1728
|
costString = self.safe_string(trade, 'execValueRv')
|
1709
|
-
feeCostString = self.safe_string(trade, 'execFeeRv')
|
1729
|
+
feeCostString = self.omit_zero(self.safe_string(trade, 'execFeeRv'))
|
1710
1730
|
feeRateString = self.safe_string(trade, 'feeRateRr')
|
1711
|
-
|
1712
|
-
|
1731
|
+
if feeCostString is not None:
|
1732
|
+
currencyId = self.safe_string(trade, 'currency')
|
1733
|
+
feeCurrencyCode = self.safe_currency_code(currencyId)
|
1734
|
+
else:
|
1735
|
+
ptFeeRv = self.omit_zero(self.safe_string(trade, 'ptFeeRv'))
|
1736
|
+
if ptFeeRv is not None:
|
1737
|
+
feeCostString = ptFeeRv
|
1738
|
+
feeCurrencyCode = 'PT'
|
1713
1739
|
else:
|
1714
1740
|
side = self.safe_string_lower(trade, 'side')
|
1715
1741
|
type = self.parse_order_type(self.safe_string(trade, 'ordType'))
|
@@ -1720,7 +1746,7 @@ class phemex(Exchange, ImplicitAPI):
|
|
1720
1746
|
amountString = self.from_ev(self.safe_string(trade, 'execBaseQtyEv'), market)
|
1721
1747
|
amountString = self.safe_string(trade, 'execQty', amountString)
|
1722
1748
|
costString = self.from_er(self.safe_string_2(trade, 'execQuoteQtyEv', 'execValueEv'), market)
|
1723
|
-
feeCostString = self.from_er(self.safe_string(trade, 'execFeeEv'), market)
|
1749
|
+
feeCostString = self.from_er(self.omit_zero(self.safe_string(trade, 'execFeeEv')), market)
|
1724
1750
|
if feeCostString is not None:
|
1725
1751
|
feeRateString = self.from_er(self.safe_string(trade, 'feeRateEr'), market)
|
1726
1752
|
if market['spot']:
|
@@ -1730,6 +1756,10 @@ class phemex(Exchange, ImplicitAPI):
|
|
1730
1756
|
if info is not None:
|
1731
1757
|
settlementCurrencyId = self.safe_string(info, 'settlementCurrency')
|
1732
1758
|
feeCurrencyCode = self.safe_currency_code(settlementCurrencyId)
|
1759
|
+
else:
|
1760
|
+
feeCostString = self.safe_string(trade, 'ptFeeRv')
|
1761
|
+
if feeCostString is not None:
|
1762
|
+
feeCurrencyCode = 'PT'
|
1733
1763
|
fee = {
|
1734
1764
|
'cost': feeCostString,
|
1735
1765
|
'rate': feeRateString,
|
ccxt/pro/__init__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.22
|
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
|
@@ -264,13 +264,13 @@ console.log(version, Object.keys(exchanges));
|
|
264
264
|
|
265
265
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
266
266
|
|
267
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
268
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
267
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.22/dist/ccxt.browser.js
|
268
|
+
* unpkg: https://unpkg.com/ccxt@4.3.22/dist/ccxt.browser.js
|
269
269
|
|
270
270
|
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.
|
271
271
|
|
272
272
|
```HTML
|
273
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
273
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.22/dist/ccxt.browser.js"></script>
|
274
274
|
```
|
275
275
|
|
276
276
|
Creates a global `ccxt` object:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=M4A2Cqt4oS1NFyEcRHnzWX7tN9APstM4kHYSQ4Ge7Ig,15838
|
2
2
|
ccxt/ace.py,sha256=IAbVQ73OhU5xdTLO6dtedqa3bSuZ63Me55Se1zotYUY,41656
|
3
3
|
ccxt/alpaca.py,sha256=NadHil-XkNFteqE7GwzIhKCCRjQ7m0xBQBCUlKxS6Sc,47215
|
4
4
|
ccxt/ascendex.py,sha256=UjGRc4PgSi9ZNFl8greVZZZMTQxjEQRF8yF5SSUqeJM,151471
|
@@ -41,7 +41,7 @@ ccxt/coinbase.py,sha256=xZUHwSI_MTXGGzIlH1xFzD_G-Pcl4kaoX0BCcdhZjaQ,211999
|
|
41
41
|
ccxt/coinbaseinternational.py,sha256=wieWUwsLsBYAgNpvnnrKseqAE7aOw__apSP6MQK9u9E,87240
|
42
42
|
ccxt/coinbasepro.py,sha256=SFMlNzdnl_vbE_KqnopNmj-u8As_g2D9qFmrpicNsZw,78671
|
43
43
|
ccxt/coincheck.py,sha256=jg8KHt_XUMPlbG1BYUiSHu9-DDBWdnQwV15P9IzKqbY,35664
|
44
|
-
ccxt/coinex.py,sha256=
|
44
|
+
ccxt/coinex.py,sha256=tQJLIaUSjzYfQimyfkdz0mmQ3IhrdylTx3esKi9R1Rw,258783
|
45
45
|
ccxt/coinlist.py,sha256=EU4jtqWALdcLG5X3m2q4xPbQ3-h5-H63Eeb_R3wW-5s,103140
|
46
46
|
ccxt/coinmate.py,sha256=EsXu0mcAkVFwg2VOg47qr6g95a3bDPN2I9AuFQxgkQg,45946
|
47
47
|
ccxt/coinmetro.py,sha256=tZjLAz5XufybO3BU3QGXMrLzinoY4UBhn0JIyXivnys,80700
|
@@ -87,7 +87,7 @@ ccxt/okx.py,sha256=C-RC8I5teheFdZ54ny3hC9zmjcYRmkpClrQQ1kgQ07s,377057
|
|
87
87
|
ccxt/onetrading.py,sha256=MdzNJW9ViYhpx4S5cmoVu9SCX1nD3oZYfVfnPkhhfwE,88113
|
88
88
|
ccxt/p2b.py,sha256=FYxL36KwtaLIIQ793frJEtqtHyzm39hNK0mJEzAAH0U,54213
|
89
89
|
ccxt/paymium.py,sha256=kuMPTXyqU98kMpKeiSMicD51bSwprXHU0WrgLlAsxGY,24244
|
90
|
-
ccxt/phemex.py,sha256=
|
90
|
+
ccxt/phemex.py,sha256=oz-G8LbnP8op7NZgt5sC-NMdZmJfM3n1l6QQE6gawus,220593
|
91
91
|
ccxt/poloniex.py,sha256=WfJ93JWxt5BiIidD2aiC09GSZI-EFhwdeBbJYZ47v1E,101991
|
92
92
|
ccxt/poloniexfutures.py,sha256=3bxdkVWbe_T6r4IvekvM6x-Hd7cSng5SDaDjgPZSk8k,77799
|
93
93
|
ccxt/probit.py,sha256=0WNy6ZsZq9qz7tt_V_h8lxOgvM5-PwNSJSDb3G4RUZ0,76379
|
@@ -208,7 +208,7 @@ ccxt/abstract/woofipro.py,sha256=El50vWGAV-4QPIDhgSnd4egfvk246NB6vTC-8h722vs,160
|
|
208
208
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
209
209
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
210
210
|
ccxt/abstract/zonda.py,sha256=aSfewvRojzmuymX6QbOnDR8v9VFqWTULMHX9Y7kKD1M,5820
|
211
|
-
ccxt/async_support/__init__.py,sha256=
|
211
|
+
ccxt/async_support/__init__.py,sha256=d2w0vWwfOJx4NTDsVwCnNvPReHr9CLXP9_dBtV9VaI4,15601
|
212
212
|
ccxt/async_support/ace.py,sha256=xVxaTocpMapAIl4ApPApw69Rd-RDuU0_vleJnVt_qhI,41880
|
213
213
|
ccxt/async_support/alpaca.py,sha256=rjD8PdQr1B5e9hvaoTQBKVtWwHLs04e6_-gooXl4eEE,47427
|
214
214
|
ccxt/async_support/ascendex.py,sha256=w4GaR3Xm9fkIAdXostTsu0Pnw9VkRrT6ar57gU9HSHw,152259
|
@@ -251,7 +251,7 @@ ccxt/async_support/coinbase.py,sha256=vxeIN4tbnXWt6ihGSRhdwVmKtwmyI67Rk-nwoTGFUD
|
|
251
251
|
ccxt/async_support/coinbaseinternational.py,sha256=fuU-h5UpO_nVs1j8KA7oGsQlP0kQefuPycZrc8ph6OQ,87794
|
252
252
|
ccxt/async_support/coinbasepro.py,sha256=GnzjqgXso5wqAVZbkMcMjcpQ1BJ7um3BtBbhrM_X0rI,79177
|
253
253
|
ccxt/async_support/coincheck.py,sha256=ThRQX8E3NZrGc9Z__UIb7p0AtHgnq_DBhe9GzE9SlaQ,35870
|
254
|
-
ccxt/async_support/coinex.py,sha256=
|
254
|
+
ccxt/async_support/coinex.py,sha256=NIGxG0CxJ1wtBGIis8ZLkxFSVABWZHkP67zDrqCBGSE,260077
|
255
255
|
ccxt/async_support/coinlist.py,sha256=MKLhRyaw0DHkpRfR-Vj9NS0SwCpYUx8nOxZJ26swIMY,103628
|
256
256
|
ccxt/async_support/coinmate.py,sha256=lc8p0aQXu-oSf2whiqvm0QoBhDVx9wf50CcFeucdXcY,46212
|
257
257
|
ccxt/async_support/coinmetro.py,sha256=NLqNdcJ_zXcNqaxqkrloL9PqnogbQ6OzA5e_Gl4ACtk,81020
|
@@ -297,7 +297,7 @@ ccxt/async_support/okx.py,sha256=smCT2Harj61L4dxsra9SFA70IJydH4EbOgSbjCabevg,378
|
|
297
297
|
ccxt/async_support/onetrading.py,sha256=Px7iH4HjaGmAVMNjLwZdD8RJwspUleMdABCGQvmoNbA,88565
|
298
298
|
ccxt/async_support/p2b.py,sha256=KrNc3sLbHQCxbgShyqWytuQVaQfKa42Q6_HcUYNUaKI,54455
|
299
299
|
ccxt/async_support/paymium.py,sha256=_YfQn6Xwy0k9VMVOqmDGCfI8FhN_WKmyE7Eo9jR5u9I,24432
|
300
|
-
ccxt/async_support/phemex.py,sha256=
|
300
|
+
ccxt/async_support/phemex.py,sha256=GsBiRkNc72_j8pjzxjXI9V0RCQC8Yy7tZ2ypSqKCbUc,221405
|
301
301
|
ccxt/async_support/poloniex.py,sha256=tGl5AoEd2P0K0Af6twI2uwcNV81WDe2PCN4VAPkb3nQ,102539
|
302
302
|
ccxt/async_support/poloniexfutures.py,sha256=VL4oNy3YJXw-UsiixEsU7wzw4JTpICXu6GdFdpcAKrw,78185
|
303
303
|
ccxt/async_support/probit.py,sha256=oRpeioq1soJtild3vH6QE7ufX1RLfyQUBCsmyQW-j3w,76771
|
@@ -314,7 +314,7 @@ ccxt/async_support/yobit.py,sha256=kvMIVVjf8XxE7cKt51iHtqH7zgmFKc5ZVhk1dKDtlxE,5
|
|
314
314
|
ccxt/async_support/zaif.py,sha256=lzrmIYPlNJquYkK-fq9DjqS8EfiAtofXnPcTMf3XOMM,28161
|
315
315
|
ccxt/async_support/zonda.py,sha256=bS_Oq8FVjbLxnxFVVg-_5ZlNS0CH9QxSUVKL91IR9rc,80912
|
316
316
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
317
|
-
ccxt/async_support/base/exchange.py,sha256=
|
317
|
+
ccxt/async_support/base/exchange.py,sha256=zRA1jhYuRj3hJKrYd-lktrn6kpczkGEPFt4F8cBsMrI,108636
|
318
318
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
319
319
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
320
320
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=Ed1765emEde2Hj8Ys6f5EjS54ZI1wQ0qIhd04eB7yhU,5751
|
@@ -328,10 +328,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=Pxrq22nCODckJ6G1OXkYEmUunIu
|
|
328
328
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
329
329
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
330
330
|
ccxt/base/errors.py,sha256=FGdyULeNCNcl52gA_CNhe2dZmat9GJGkTdlIyDXAF_A,4213
|
331
|
-
ccxt/base/exchange.py,sha256=
|
331
|
+
ccxt/base/exchange.py,sha256=_nSr69S9bP_CSZzyzxcid4CAX84qlHW4QsHvTEhl1GY,278172
|
332
332
|
ccxt/base/precise.py,sha256=_xfu54sV0vWNnOfGTKRFykeuWP8mn4K1m9lk1tcllX4,8565
|
333
333
|
ccxt/base/types.py,sha256=3hBdiD2EO7W-pwmBrDeDYMEdFGcnT0QqQZa3l8ywTVM,9027
|
334
|
-
ccxt/pro/__init__.py,sha256=
|
334
|
+
ccxt/pro/__init__.py,sha256=yel7b2yG0qyDXvCO1G2Ducfj64vBqmID_13VrSwlsSI,7102
|
335
335
|
ccxt/pro/alpaca.py,sha256=7ePyWli0949ti5UheIn553xmnFpedrNc2W5CKauSZio,27167
|
336
336
|
ccxt/pro/ascendex.py,sha256=fCM3EujSfJvtvffqI56UAstTtwjXFIocwukm15cF8rE,35432
|
337
337
|
ccxt/pro/bequant.py,sha256=5zbsP8BHQTUZ8ZNL6uaACxDbUClgkOV4SYfXT_LfQVg,1351
|
@@ -531,7 +531,7 @@ ccxt/test/base/test_ticker.py,sha256=cMTIMb1oySNORUCmqI5ZzMswlEyCF6gJMah3vfvo8wQ
|
|
531
531
|
ccxt/test/base/test_trade.py,sha256=PMtmB8V38dpaP-eb8h488xYMlR6D69yCOhsA1RuWrUA,2336
|
532
532
|
ccxt/test/base/test_trading_fee.py,sha256=2aDCNJtqBkTC_AieO0l1HYGq5hz5qkWlkWb9Nv_fcwk,1066
|
533
533
|
ccxt/test/base/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
|
534
|
-
ccxt-4.3.
|
535
|
-
ccxt-4.3.
|
536
|
-
ccxt-4.3.
|
537
|
-
ccxt-4.3.
|
534
|
+
ccxt-4.3.22.dist-info/METADATA,sha256=yR1OdMeoCar2UcRV99DGbcB20iIp6gYg2WkpHoLFPng,112795
|
535
|
+
ccxt-4.3.22.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
|
536
|
+
ccxt-4.3.22.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
537
|
+
ccxt-4.3.22.dist-info/RECORD,,
|
File without changes
|
File without changes
|