ccxt 4.3.51__py2.py3-none-any.whl → 4.3.53__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 +3 -1
- ccxt/abstract/okx.py +1 -0
- 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 +3 -3
- ccxt/async_support/bitget.py +1 -1
- ccxt/async_support/bitmart.py +1 -1
- ccxt/async_support/bybit.py +5 -0
- ccxt/async_support/coinex.py +1 -1
- ccxt/async_support/htx.py +1 -1
- ccxt/async_support/hyperliquid.py +27 -25
- ccxt/async_support/krakenfutures.py +1 -0
- ccxt/async_support/okx.py +1 -0
- ccxt/async_support/probit.py +9 -5
- ccxt/async_support/vertex.py +2811 -0
- ccxt/base/exchange.py +2 -2
- ccxt/base/precise.py +10 -0
- ccxt/binance.py +3 -3
- ccxt/bitget.py +1 -1
- ccxt/bitmart.py +1 -1
- ccxt/bybit.py +5 -0
- ccxt/coinex.py +1 -1
- ccxt/htx.py +1 -1
- ccxt/hyperliquid.py +27 -25
- ccxt/krakenfutures.py +1 -0
- ccxt/okx.py +1 -0
- ccxt/pro/__init__.py +3 -1
- ccxt/pro/okx.py +1 -1
- 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-4.3.53.dist-info/LICENSE.txt +21 -0
- {ccxt-4.3.51.dist-info → ccxt-4.3.53.dist-info}/METADATA +19 -17
- {ccxt-4.3.51.dist-info → ccxt-4.3.53.dist-info}/RECORD +41 -36
- {ccxt-4.3.51.dist-info → ccxt-4.3.53.dist-info}/WHEEL +1 -1
- {ccxt-4.3.51.dist-info → ccxt-4.3.53.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright © 2024 Igor Kroitor
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.53
|
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
|
@@ -33,23 +33,24 @@ Classifier: Programming Language :: PHP
|
|
33
33
|
Classifier: Operating System :: OS Independent
|
34
34
|
Classifier: Environment :: Console
|
35
35
|
Description-Content-Type: text/markdown
|
36
|
-
|
37
|
-
Requires-Dist:
|
38
|
-
Requires-Dist:
|
39
|
-
Requires-Dist:
|
40
|
-
Requires-Dist:
|
41
|
-
Requires-Dist:
|
42
|
-
Requires-Dist:
|
43
|
-
Requires-Dist:
|
36
|
+
License-File: LICENSE.txt
|
37
|
+
Requires-Dist: setuptools (>=60.9.0)
|
38
|
+
Requires-Dist: certifi (>=2018.1.18)
|
39
|
+
Requires-Dist: requests (>=2.18.4)
|
40
|
+
Requires-Dist: cryptography (>=2.6.1)
|
41
|
+
Requires-Dist: typing-extensions (>=4.4.0)
|
42
|
+
Requires-Dist: aiohttp (>=3.8) ; python_version>="3.5.2"
|
43
|
+
Requires-Dist: aiodns (>=1.1.1) ; python_version>="3.5.2"
|
44
|
+
Requires-Dist: yarl (>=1.7.2) ; python_version>="3.5.2"
|
44
45
|
Provides-Extra: qa
|
45
|
-
Requires-Dist: ruff ==0.0.292 ; extra == 'qa'
|
46
|
-
Requires-Dist: tox >=4.8.0 ; extra == 'qa'
|
46
|
+
Requires-Dist: ruff (==0.0.292) ; extra == 'qa'
|
47
|
+
Requires-Dist: tox (>=4.8.0) ; extra == 'qa'
|
47
48
|
Provides-Extra: type
|
48
|
-
Requires-Dist: mypy ==1.6.1 ; extra == 'type'
|
49
|
+
Requires-Dist: mypy (==1.6.1) ; extra == 'type'
|
49
50
|
|
50
51
|
# CCXT – CryptoCurrency eXchange Trading Library
|
51
52
|
|
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://discord.gg/ccxt) [](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [](https://twitter.com/ccxt_official)
|
53
54
|
|
54
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.
|
55
56
|
|
@@ -107,7 +108,7 @@ Current feature list:
|
|
107
108
|
|
108
109
|
## Supported Cryptocurrency Exchanges
|
109
110
|
|
110
|
-
The CCXT library currently supports the following
|
111
|
+
The CCXT library currently supports the following 101 cryptocurrency exchange markets and trading APIs:
|
111
112
|
|
112
113
|
| logo | id | name | ver | type | certified | pro |
|
113
114
|
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------|-------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------:|------|-----------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
|
@@ -202,6 +203,7 @@ The CCXT library currently supports the following 100 cryptocurrency exchange ma
|
|
202
203
|
| [](https://tokocrypto.com) | tokocrypto | [Tokocrypto](https://tokocrypto.com) | [](https://www.tokocrypto.com/apidocs/) | cex | | |
|
203
204
|
| [](https://tradeogre.com) | tradeogre | [tradeogre](https://tradeogre.com) | [](https://tradeogre.com/help/api) | cex | | |
|
204
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) |
|
205
207
|
| [](https://wx.network) | wavesexchange | [Waves.Exchange](https://wx.network) | [](https://docs.wx.network) | dex | | |
|
206
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) |
|
207
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) |
|
@@ -268,13 +270,13 @@ console.log(version, Object.keys(exchanges));
|
|
268
270
|
|
269
271
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
270
272
|
|
271
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
272
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
273
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.53/dist/ccxt.browser.min.js
|
274
|
+
* unpkg: https://unpkg.com/ccxt@4.3.53/dist/ccxt.browser.min.js
|
273
275
|
|
274
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.
|
275
277
|
|
276
278
|
```HTML
|
277
|
-
<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.53/dist/ccxt.browser.min.js"></script>
|
278
280
|
```
|
279
281
|
|
280
282
|
Creates a global `ccxt` object:
|
@@ -1,10 +1,10 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=nFNCXWG4WScfRlxKMcxVN70zBc-zFjF5imMhhkbj6HA,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
|
@@ -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
|
@@ -35,14 +35,14 @@ ccxt/btcalpha.py,sha256=LyqEmXi-h6pz6MaVcBLWGBDGMuDiu2cXbwk35jXb1_k,36967
|
|
35
35
|
ccxt/btcbox.py,sha256=1Vs2A4jOe5Wc4qgOblDBrIyRmp0m_aQZCk9-R7DvSqs,23588
|
36
36
|
ccxt/btcmarkets.py,sha256=hHxrZSgrjdgvaXEJkDGPQbKxlwT8Dz1XN3UwhvYqmys,52632
|
37
37
|
ccxt/btcturk.py,sha256=IqUB3IL4pJlIWEMfD50FNH7gcycC6Q9rLdRe7RZaUro,36993
|
38
|
-
ccxt/bybit.py,sha256=
|
38
|
+
ccxt/bybit.py,sha256=bu-CVliRpm13oiKgtaCa1DwRWPM6463Lobfelhqks_A,414954
|
39
39
|
ccxt/cex.py,sha256=IUb295DSS6H3SsPbCjvBKPzzNpQYvBXaRqFF-T450wM,70086
|
40
40
|
ccxt/coinbase.py,sha256=jTQ91In82SqxfgMJ7kyHD2b8NqW_vOWchmTm825ADac,217233
|
41
41
|
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,15 +62,15 @@ 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
|
72
72
|
ccxt/kraken.py,sha256=nWFjVkMF6MwXmr5PbCOVcvQScOSM67LZPuLU_tgV2q0,129156
|
73
|
-
ccxt/krakenfutures.py,sha256=
|
73
|
+
ccxt/krakenfutures.py,sha256=2K40RYEqHB2kgo9715eXc8O2SKcZpAb26iRdC70ftts,119521
|
74
74
|
ccxt/kucoin.py,sha256=Uo7k07ytA-UZ241kcN-tcJ4388NcHDpBFQO4Jr86Udc,221593
|
75
75
|
ccxt/kucoinfutures.py,sha256=lhfjKUQcSRPDltONm0t_PVnewWlwrvP97RnzTD1oSh4,124564
|
76
76
|
ccxt/kuna.py,sha256=C0TwihuJzJ1qHOC7TEiwmcLi40ohMU7SjnDucyMur0k,96188
|
@@ -84,7 +84,7 @@ ccxt/ndax.py,sha256=mLQTCivf3KcSy2UPQq0ah7W6lkZlTR_Dl1LiTxNYHbc,108948
|
|
84
84
|
ccxt/novadax.py,sha256=wbDaAYYvn3Xo4MG7uOIzkzc9hOjeymZbFzmdacup-SA,64437
|
85
85
|
ccxt/oceanex.py,sha256=FqoJb_yUOwMqS2wJLZsSy-SOtlKgZhW5xn6ZYMBvs0U,38022
|
86
86
|
ccxt/okcoin.py,sha256=ZgcUzRfL5UnquTqze3WOkQttZF-Fcq-9p13YiNHYixg,151402
|
87
|
-
ccxt/okx.py,sha256=
|
87
|
+
ccxt/okx.py,sha256=7y_FbFqUpB3d6rAQn0b6YiZiF7ihnAu1qwWYb598bUI,378487
|
88
88
|
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
|
@@ -92,11 +92,12 @@ ccxt/paymium.py,sha256=9TfMe2ViBYYodGcbVTPm6QOyuIxI6vmbl46xa5bl8D8,24420
|
|
92
92
|
ccxt/phemex.py,sha256=L060JAxQ1wwtNo8JyUZ7fPMyAkmPkmPhHhWr5gWrJgM,222503
|
93
93
|
ccxt/poloniex.py,sha256=qctzvVpjtLq_mDr5d1kf0447wkp-Y_aYrCy6QubIAvU,102242
|
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
|
@@ -192,7 +193,7 @@ ccxt/abstract/ndax.py,sha256=M98Ys406KT6T19Y98dXriD6YjzfglHHbnfQw-PDYWtM,11878
|
|
192
193
|
ccxt/abstract/novadax.py,sha256=IvQFP_v2Q-Sx0tK2bXx4oY81rtNwC7gkc75p_E2jhKw,3093
|
193
194
|
ccxt/abstract/oceanex.py,sha256=a0xAelMYDY_J3QwwLyIX2tGQcv4z2gmX_yJyC6FqoFg,1721
|
194
195
|
ccxt/abstract/okcoin.py,sha256=3NmYh-68W_4AXmkqjkf9dRaJcPgNYQG5mKZssJKT4gs,9414
|
195
|
-
ccxt/abstract/okx.py,sha256=
|
196
|
+
ccxt/abstract/okx.py,sha256=wc6HcjsIZNH9fn5xDt-u1kW2VXO16GiWsUyTRjsdvSo,48438
|
196
197
|
ccxt/abstract/onetrading.py,sha256=TtJq4d44lrutV8wcK0lX4v0EfQ72ly6fxR-zB7-FSuI,3859
|
197
198
|
ccxt/abstract/oxfun.py,sha256=bv4FJPe1H5ouMT_gRHVQtvV0MrMZhc3US-DMwnDM4Js,3457
|
198
199
|
ccxt/abstract/p2b.py,sha256=XwaH1hLIi2T6RHltUwFj28Y5fbo6dc0jbjI01sVeOJw,2054
|
@@ -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,13 +216,13 @@ 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=28XcZzCiEl9jLE5lVpmRtBfivEG7C3dAkPS5TYy4fWI,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
|
@@ -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
|
@@ -251,14 +253,14 @@ ccxt/async_support/btcalpha.py,sha256=SYmpEot6Knp0B0FAZ5-0r_w5SuQqEhQYFwLnTekyiA
|
|
251
253
|
ccxt/async_support/btcbox.py,sha256=ML57vDSZC7UJfl5MvNKytPtvyR_rOnIoBOZRhGPxWwE,23782
|
252
254
|
ccxt/async_support/btcmarkets.py,sha256=KX4Vwn4LCAJqx2TgsevAAdF9gFTpUPRrEqp3CYizsnw,52982
|
253
255
|
ccxt/async_support/btcturk.py,sha256=wWelnADTNhrGGVH0qjuDaOPZ5xkMblggHUDFGQBMG20,37211
|
254
|
-
ccxt/async_support/bybit.py,sha256=
|
256
|
+
ccxt/async_support/bybit.py,sha256=js_KXjP6svEuAY8vtpx8qDh3yPhaZrK2NNu0AGz9iwE,416782
|
255
257
|
ccxt/async_support/cex.py,sha256=8XcqkxF2fSzLnenfkyvXxHmnWgUvrifaBAI-HiJLIZY,70436
|
256
258
|
ccxt/async_support/coinbase.py,sha256=oZCypjcCiAPf5dIZqbmu_ZcGjunkkPg4wLtqw1KUHfs,218387
|
257
259
|
ccxt/async_support/coinbaseadvanced.py,sha256=Kupwnuxiu_qTjwCNV2asacoDUNFQvcaHNAznUJPhdQs,552
|
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,15 +280,15 @@ 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
|
288
290
|
ccxt/async_support/kraken.py,sha256=0sXD-eK2QOwWFSHkM0M5RY_XJhMMaGEtI0noLNzqwAo,129794
|
289
|
-
ccxt/async_support/krakenfutures.py,sha256=
|
291
|
+
ccxt/async_support/krakenfutures.py,sha256=2r88_rC1cY7t4s8dgeqRUlwNC2NVaagS9wPAEonLAQs,120009
|
290
292
|
ccxt/async_support/kucoin.py,sha256=PHzGCCpUcEAtm1DZvB7nx9V4Tw9M6wH2ZUhfg31sdW8,222665
|
291
293
|
ccxt/async_support/kucoinfutures.py,sha256=aMyOm5zghYkt8KbQMXeMjQDOC9K5hXcQ95ACeKMolPw,125202
|
292
294
|
ccxt/async_support/kuna.py,sha256=4a1hsvp1wzvpbFJun2qkqSNXwKiyXpskjNwuHhw0jeE,96604
|
@@ -300,7 +302,7 @@ ccxt/async_support/ndax.py,sha256=Zpn8MHDZhYl9yg193AxbSt-yI8uGFRizQ8PoiEXnPpI,10
|
|
300
302
|
ccxt/async_support/novadax.py,sha256=7hgBWCcuZRDRSD79-Wel4cesQuyQjo_CP-MK2S7IKOw,64805
|
301
303
|
ccxt/async_support/oceanex.py,sha256=GdudBIC9hCuwI7vE3Mmrw8qvlQmuKclCGTyhuFjorOU,38342
|
302
304
|
ccxt/async_support/okcoin.py,sha256=3l0dRwsxG9u5hyFYxlHRFfKJ4gzvcXOQ3FTTAkHHwx4,151926
|
303
|
-
ccxt/async_support/okx.py,sha256=
|
305
|
+
ccxt/async_support/okx.py,sha256=wygEFiUZONtEsvpoUAZqyy_f8YQ1yQeW9_95xs70qzw,380074
|
304
306
|
ccxt/async_support/onetrading.py,sha256=u6Y7zWjfVBVBl9RLIUfwAneZzE4fOENx7Y11zE7MChM,88792
|
305
307
|
ccxt/async_support/oxfun.py,sha256=a_xP9hsjcsooDGO7fLmZPvW-Rlyfis6JRKmsnF0w-hk,125197
|
306
308
|
ccxt/async_support/p2b.py,sha256=vwavNnMyU7tJF1FIIBhZe4az58clzptk0bEuIDPmOAA,54576
|
@@ -308,11 +310,12 @@ ccxt/async_support/paymium.py,sha256=WKPElafAfmg06ATcLLIS0V09kZIGlSbn0L7Z3rcLvQA
|
|
308
310
|
ccxt/async_support/phemex.py,sha256=a9ROQZNJhnggj7GJWNqC1IcvYnWesrgxTkxpDU9P_CU,223321
|
309
311
|
ccxt/async_support/poloniex.py,sha256=ReU0bRFEkEvQ3TdQ7SPYWE0uuecIL6AQdkSq34yJ9UQ,102790
|
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
|
@@ -323,11 +326,11 @@ ccxt/async_support/yobit.py,sha256=KQcu9nXJPDlAodZyxOXKIn6eTSLmlvUlgRFE6EBLfug,5
|
|
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=bQ7I5KZCMQQds0PSJbjZ0Ds0PTogCIeaQ8cx3d6VlFo,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,10 +340,10 @@ 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=kGC3_LVu_1566Va2FCqwoZhnh2wbOnE_6vTxIIthCsg,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=tdxzluaG_RAvKOTCO9CC9QfGVL8HxQ0Kk6JhkcC1LX4,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
|
@@ -394,15 +397,16 @@ ccxt/pro/luno.py,sha256=AzLK0_C0Hu25ukMNkMLP_sY3D4UG9FT38oawpo4jzTg,12336
|
|
394
397
|
ccxt/pro/mexc.py,sha256=yWXvZX0fbsAUPmQS48skPOSDcqGBlYofzgANTutrP4g,43266
|
395
398
|
ccxt/pro/ndax.py,sha256=fQsoYtrTEsCZB3hl-pavQytwQAaiMAiTyaCiOy1sVTg,22715
|
396
399
|
ccxt/pro/okcoin.py,sha256=M9x9p9umvIdP13uw_Wyx-TCg7QLMI7ov5DnukCXTBNE,30421
|
397
|
-
ccxt/pro/okx.py,sha256=
|
400
|
+
ccxt/pro/okx.py,sha256=K1f0t31BC7FB5qUnNE1x2Z6_--hLfavcP9OIjXF3I34,83790
|
398
401
|
ccxt/pro/onetrading.py,sha256=lovj_9_bhEASahK2bREMHEjRNUjgl8G51ciuxFIsALM,54712
|
399
402
|
ccxt/pro/oxfun.py,sha256=4jXAlyrMboAqWgA5AeIPaay4QHMpz-hT2IQzjRE3x2c,43933
|
400
403
|
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=E1wweCWWqzADttnsCzCrkgTOmEyFZOAFHXO2UAxdW-A,40493
|
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,7 +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.53.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
550
|
+
ccxt-4.3.53.dist-info/METADATA,sha256=V9JVZv-PrUkfdP8EgFUfhr7uC9NXlqtYc8-HRFzTiJw,115971
|
551
|
+
ccxt-4.3.53.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
552
|
+
ccxt-4.3.53.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
553
|
+
ccxt-4.3.53.dist-info/RECORD,,
|
File without changes
|