ccxt 4.3.75__py2.py3-none-any.whl → 4.3.77__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/abstract/bitmart.py +2 -0
- ccxt/abstract/gemini.py +1 -0
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/base/exchange.py +2 -2
- ccxt/async_support/binance.py +2 -2
- ccxt/async_support/bithumb.py +14 -14
- ccxt/async_support/bitmart.py +146 -82
- ccxt/async_support/bybit.py +4 -1
- ccxt/async_support/coinbase.py +8 -4
- ccxt/async_support/gemini.py +1 -0
- ccxt/async_support/htx.py +4 -0
- ccxt/async_support/kraken.py +2 -0
- ccxt/base/exchange.py +11 -2
- ccxt/binance.py +2 -2
- ccxt/bithumb.py +14 -14
- ccxt/bitmart.py +146 -82
- ccxt/bybit.py +4 -1
- ccxt/coinbase.py +8 -4
- ccxt/gemini.py +1 -0
- ccxt/htx.py +4 -0
- ccxt/kraken.py +2 -0
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/binance.py +24 -0
- ccxt/pro/bitmart.py +9 -8
- ccxt/pro/bybit.py +21 -2
- ccxt/pro/woo.py +1 -1
- ccxt/static_dependencies/starkware/crypto/utils.py +6 -1
- {ccxt-4.3.75.dist-info → ccxt-4.3.77.dist-info}/METADATA +4 -4
- {ccxt-4.3.75.dist-info → ccxt-4.3.77.dist-info}/RECORD +33 -35
- ccxt/static_dependencies/typing_extensions/__init__.py +0 -0
- ccxt/static_dependencies/typing_extensions/typing_extensions.py +0 -3839
- {ccxt-4.3.75.dist-info → ccxt-4.3.77.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.3.75.dist-info → ccxt-4.3.77.dist-info}/WHEEL +0 -0
- {ccxt-4.3.75.dist-info → ccxt-4.3.77.dist-info}/top_level.txt +0 -0
ccxt/pro/bitmart.py
CHANGED
@@ -48,8 +48,8 @@ class bitmart(ccxt.async_support.bitmart):
|
|
48
48
|
'private': 'wss://ws-manager-compress.{hostname}/user?protocol=1.1',
|
49
49
|
},
|
50
50
|
'swap': {
|
51
|
-
'public': 'wss://openapi-ws.{hostname}/api?protocol=1.1',
|
52
|
-
'private': 'wss://openapi-ws.{hostname}/user?protocol=1.1',
|
51
|
+
'public': 'wss://openapi-ws-v2.{hostname}/api?protocol=1.1',
|
52
|
+
'private': 'wss://openapi-ws-v2.{hostname}/user?protocol=1.1',
|
53
53
|
},
|
54
54
|
},
|
55
55
|
},
|
@@ -137,7 +137,7 @@ class bitmart(ccxt.async_support.bitmart):
|
|
137
137
|
async def watch_balance(self, params={}) -> Balances:
|
138
138
|
"""
|
139
139
|
:see: https://developer-pro.bitmart.com/en/spot/#private-balance-change
|
140
|
-
:see: https://developer-pro.bitmart.com/en/
|
140
|
+
:see: https://developer-pro.bitmart.com/en/futuresv2/#private-assets-channel
|
141
141
|
watch balance and get the amount of funds available for trading or funds locked in orders
|
142
142
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
143
143
|
:returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
|
@@ -257,7 +257,7 @@ class bitmart(ccxt.async_support.bitmart):
|
|
257
257
|
async def watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
258
258
|
"""
|
259
259
|
:see: https://developer-pro.bitmart.com/en/spot/#public-trade-channel
|
260
|
-
:see: https://developer-pro.bitmart.com/en/
|
260
|
+
:see: https://developer-pro.bitmart.com/en/futuresv2/#public-trade-channel
|
261
261
|
get the list of most recent trades for a particular symbol
|
262
262
|
:param str symbol: unified symbol of the market to fetch trades for
|
263
263
|
:param int [since]: timestamp in ms of the earliest trade to fetch
|
@@ -301,6 +301,7 @@ class bitmart(ccxt.async_support.bitmart):
|
|
301
301
|
async def watch_ticker(self, symbol: str, params={}) -> Ticker:
|
302
302
|
"""
|
303
303
|
:see: https://developer-pro.bitmart.com/en/spot/#public-ticker-channel
|
304
|
+
:see: https://developer-pro.bitmart.com/en/futuresv2/#public-ticker-channel
|
304
305
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
305
306
|
:param str symbol: unified symbol of the market to fetch the ticker for
|
306
307
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -313,7 +314,7 @@ class bitmart(ccxt.async_support.bitmart):
|
|
313
314
|
|
314
315
|
async def watch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
315
316
|
"""
|
316
|
-
:see: https://developer-pro.bitmart.com/en/
|
317
|
+
:see: https://developer-pro.bitmart.com/en/futuresv2/#public-ticker-channel
|
317
318
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for all markets of a specific list
|
318
319
|
:param str[] symbols: unified symbol of the market to fetch the ticker for
|
319
320
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -334,7 +335,7 @@ class bitmart(ccxt.async_support.bitmart):
|
|
334
335
|
"""
|
335
336
|
watches information on multiple orders made by the user
|
336
337
|
:see: https://developer-pro.bitmart.com/en/spot/#private-order-progress
|
337
|
-
:see: https://developer-pro.bitmart.com/en/
|
338
|
+
:see: https://developer-pro.bitmart.com/en/futuresv2/#private-order-channel
|
338
339
|
:param str symbol: unified market symbol of the market orders were made in
|
339
340
|
:param int [since]: the earliest time in ms to fetch orders for
|
340
341
|
:param int [limit]: the maximum number of order structures to retrieve
|
@@ -933,7 +934,7 @@ class bitmart(ccxt.async_support.bitmart):
|
|
933
934
|
async def watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
|
934
935
|
"""
|
935
936
|
:see: https://developer-pro.bitmart.com/en/spot/#public-kline-channel
|
936
|
-
:see: https://developer-pro.bitmart.com/en/
|
937
|
+
:see: https://developer-pro.bitmart.com/en/futuresv2/#public-klinebin-channel
|
937
938
|
watches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
938
939
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
939
940
|
:param str timeframe: the length of time each candle represents
|
@@ -1049,7 +1050,7 @@ class bitmart(ccxt.async_support.bitmart):
|
|
1049
1050
|
"""
|
1050
1051
|
:see: https://developer-pro.bitmart.com/en/spot/#public-depth-all-channel
|
1051
1052
|
:see: https://developer-pro.bitmart.com/en/spot/#public-depth-increase-channel
|
1052
|
-
:see: https://developer-pro.bitmart.com/en/
|
1053
|
+
:see: https://developer-pro.bitmart.com/en/futuresv2/#public-depth-channel
|
1053
1054
|
watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
1054
1055
|
:param str symbol: unified symbol of the market to fetch the order book for
|
1055
1056
|
:param int [limit]: the maximum amount of order book entries to return
|
ccxt/pro/bybit.py
CHANGED
@@ -87,6 +87,25 @@ class bybit(ccxt.async_support.bybit):
|
|
87
87
|
},
|
88
88
|
},
|
89
89
|
},
|
90
|
+
'demotrading': {
|
91
|
+
'ws': {
|
92
|
+
'public': {
|
93
|
+
'spot': 'wss://stream.{hostname}/v5/public/spot',
|
94
|
+
'inverse': 'wss://stream.{hostname}/v5/public/inverse',
|
95
|
+
'option': 'wss://stream.{hostname}/v5/public/option',
|
96
|
+
'linear': 'wss://stream.{hostname}/v5/public/linear',
|
97
|
+
},
|
98
|
+
'private': {
|
99
|
+
'spot': {
|
100
|
+
'unified': 'wss://stream-demo.{hostname}/v5/private',
|
101
|
+
'nonUnified': 'wss://stream-demo.{hostname}/spot/private/v3',
|
102
|
+
},
|
103
|
+
'contract': 'wss://stream-demo.{hostname}/v5/private',
|
104
|
+
'usdc': 'wss://stream-demo.{hostname}/trade/option/usdc/private/v1',
|
105
|
+
'trade': 'wss://stream-demo.bybit.com/v5/trade',
|
106
|
+
},
|
107
|
+
},
|
108
|
+
},
|
90
109
|
},
|
91
110
|
'options': {
|
92
111
|
'watchTicker': {
|
@@ -170,7 +189,7 @@ class bybit(ccxt.async_support.bybit):
|
|
170
189
|
else:
|
171
190
|
if isSpot:
|
172
191
|
url = url[accessibility]['spot']
|
173
|
-
elif type == 'swap':
|
192
|
+
elif (type == 'swap') or (type == 'future'):
|
174
193
|
subType = None
|
175
194
|
subType, params = self.handle_sub_type_and_params(method, market, params, 'linear')
|
176
195
|
url = url[accessibility][subType]
|
@@ -1923,7 +1942,7 @@ class bybit(ccxt.async_support.bybit):
|
|
1923
1942
|
if event == 'sub':
|
1924
1943
|
self.handle_subscription_status(client, message)
|
1925
1944
|
return
|
1926
|
-
topic = self.safe_string_2(message, 'topic', 'op')
|
1945
|
+
topic = self.safe_string_2(message, 'topic', 'op', '')
|
1927
1946
|
methods: dict = {
|
1928
1947
|
'orderbook': self.handle_order_book,
|
1929
1948
|
'kline': self.handle_ohlcv,
|
ccxt/pro/woo.py
CHANGED
@@ -611,7 +611,7 @@ class woo(ccxt.async_support.woo):
|
|
611
611
|
},
|
612
612
|
}
|
613
613
|
message = self.extend(request, params)
|
614
|
-
self.watch(url, messageHash, message, messageHash)
|
614
|
+
self.watch(url, messageHash, message, messageHash, message)
|
615
615
|
return await future
|
616
616
|
|
617
617
|
async def watch_private(self, messageHash, message, params={}):
|
@@ -4,7 +4,12 @@ from typing import (
|
|
4
4
|
TypeVar,
|
5
5
|
)
|
6
6
|
|
7
|
-
|
7
|
+
import sys
|
8
|
+
|
9
|
+
if sys.version_info.minor >= 11:
|
10
|
+
from typing import Literal, ParamSpec
|
11
|
+
else:
|
12
|
+
from typing_extensions import Literal, ParamSpec
|
8
13
|
|
9
14
|
T = TypeVar("T")
|
10
15
|
P = ParamSpec("P")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.77
|
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
|
@@ -270,13 +270,13 @@ console.log(version, Object.keys(exchanges));
|
|
270
270
|
|
271
271
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
272
272
|
|
273
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
274
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
273
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.77/dist/ccxt.browser.min.js
|
274
|
+
* unpkg: https://unpkg.com/ccxt@4.3.77/dist/ccxt.browser.min.js
|
275
275
|
|
276
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.
|
277
277
|
|
278
278
|
```HTML
|
279
|
-
<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.77/dist/ccxt.browser.min.js"></script>
|
280
280
|
```
|
281
281
|
|
282
282
|
Creates a global `ccxt` object:
|
@@ -1,10 +1,10 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=Y3UuPrkMOnSk2fY4JB8Tkpv5UqfX0HPi5TT21-zOCMI,16417
|
2
2
|
ccxt/ace.py,sha256=Gee4ymA83iAuBFm3J8NaTb7qmu9buV2trA676KCtSVg,42383
|
3
3
|
ccxt/alpaca.py,sha256=HQuhQZSFGRlT-BaCUSEZmxpzYp6tll2zn63qn3gTmoU,47470
|
4
4
|
ccxt/ascendex.py,sha256=4aEwibO_me6khr66z8JFqDBxe2gtFOWIFBE7ulBEJPs,151933
|
5
5
|
ccxt/bequant.py,sha256=RBiAmaTbL35DgiV3Hl6uchLUd78V0z1T9riTlNsrpdc,1174
|
6
6
|
ccxt/bigone.py,sha256=PBciIENMufQQ6cxukdze5hhQ5vFOqBtMHDfTwT4nUuY,93086
|
7
|
-
ccxt/binance.py,sha256=
|
7
|
+
ccxt/binance.py,sha256=nLrtlBJqMwFmXrRE7GqEHVdV8G0tCdQR7xsQLiTrGP4,641536
|
8
8
|
ccxt/binancecoinm.py,sha256=arFnEh8mErSyi23eVPWE4iwoT7PWQyxGGVJCKCy6UJY,1702
|
9
9
|
ccxt/binanceus.py,sha256=hdcT4OnadcdFFFjF3GtM0nWv90jqojqwdVS3xWGuW40,9163
|
10
10
|
ccxt/binanceusdm.py,sha256=bAPcJj5HLxoCdPolriM8sJpoTBwbV78vBTbKRmWhNP4,2632
|
@@ -18,8 +18,8 @@ ccxt/bitfinex.py,sha256=8GoogNrMLM0UZoWkrxXehN8AN77DHxdD3p1aVarLlp4,73440
|
|
18
18
|
ccxt/bitfinex2.py,sha256=m1PXKkM7tDf-ud-dmyqqYMF942IO3U0Du7AS3iVx-GU,160641
|
19
19
|
ccxt/bitflyer.py,sha256=biQ8-J_HSb9_S6HE1LBDd6BGpIZSMxK5JyTZ3Xg1SdI,41683
|
20
20
|
ccxt/bitget.py,sha256=PmxXOKJA_fc_IehPm0cNa-fwCSdz1PnH6SHZm7BMgxk,424558
|
21
|
-
ccxt/bithumb.py,sha256=
|
22
|
-
ccxt/bitmart.py,sha256=
|
21
|
+
ccxt/bithumb.py,sha256=8oTnFWi8Ai9fnm5FPXvNmaUAVJEOqYi-18VC23cWmXY,47935
|
22
|
+
ccxt/bitmart.py,sha256=ZSy0ua1ymOfwrMLkWNrn6elI1c8RhMtTvKfENm_0VwA,211961
|
23
23
|
ccxt/bitmex.py,sha256=oOFatIOxvXIPOdOeeVau-IdryOeYpdCtTPGxX05HA9A,126861
|
24
24
|
ccxt/bitopro.py,sha256=0m104rrKQXuXa3dThHGgqq0leIIcdN_nQTR3a9YJLLM,69322
|
25
25
|
ccxt/bitpanda.py,sha256=aiwPkx9lKbVzt4ggoYdq_mIbMGtg5ZtGl2yRHO5xyz8,471
|
@@ -35,9 +35,9 @@ ccxt/btcalpha.py,sha256=UcCCDZ_7EM-Q2tHU1IQPEA2DErFsLhrSfX-Oy-Q2uL4,36715
|
|
35
35
|
ccxt/btcbox.py,sha256=9-P15L-OiZRzz0ZOtgO3bf73kuHro9u3NYf3QjeYv4k,27744
|
36
36
|
ccxt/btcmarkets.py,sha256=0gMC0vvmuDJwcnllHMUZsQRV6QWA1-Cbq1N1F9rIUW8,52697
|
37
37
|
ccxt/btcturk.py,sha256=bQ8sJq5iEj9oq2R17uDadPWKcnIQG8id5UmdlpHfFy8,36992
|
38
|
-
ccxt/bybit.py,sha256=
|
38
|
+
ccxt/bybit.py,sha256=hAAoPAcxo6xBUygcQOjre7Z0EHyC3XlMB99K8WYgot4,417341
|
39
39
|
ccxt/cex.py,sha256=YQtARIBP7cY3y-AqRarEH_mVh7_ftt18jLebhpL3hxQ,70084
|
40
|
-
ccxt/coinbase.py,sha256=
|
40
|
+
ccxt/coinbase.py,sha256=3L5CDWhg4MQlDkdZnuJxxOjmsWEh-gnqcV4R6nCq7rg,217483
|
41
41
|
ccxt/coinbaseadvanced.py,sha256=d5g6nRx-NCcCwZDdtp8FsI2D-pRjSvnAP9ISSKY_nCQ,538
|
42
42
|
ccxt/coinbaseexchange.py,sha256=DK8GJ5Xb6G6Hf-UkxG1j09RMeQRqeZlXIMwTum-Xu4w,78907
|
43
43
|
ccxt/coinbaseinternational.py,sha256=86zQOXD8CLDI3MpBtmpbQsmtUzk-pBdrg8HM_NCCer4,97440
|
@@ -58,18 +58,18 @@ ccxt/exmo.py,sha256=KlQqGZey31br-SVwhQg6mWIESyeM_wiIKRDOzIekuSs,114638
|
|
58
58
|
ccxt/fmfwio.py,sha256=RbVLvzPwnqfDsE7Ea-N13ISCC82eJVPsXYjrleASmew,1236
|
59
59
|
ccxt/gate.py,sha256=1giHmuVDpdpS6wGMVjIoeRnrSO4Ay4CIXdny5VyyEcM,327567
|
60
60
|
ccxt/gateio.py,sha256=86AETJWODl_vA5VNeQRHZprmpNIY1HAxCddKZcnKSi8,445
|
61
|
-
ccxt/gemini.py,sha256=
|
61
|
+
ccxt/gemini.py,sha256=ddoOnPZzu-l899JGVw4b9wwT9HI20mVqLz7iihhZxng,80876
|
62
62
|
ccxt/hitbtc.py,sha256=iqyd0otbWmIHUJiJ6gzIfe34IOa8PCEeS8nG6s6Ogc0,153398
|
63
63
|
ccxt/hitbtc3.py,sha256=qRAr4Zvaju9IQWRZUohdoN7xRnzIMPq8AyYb3gPv-Is,455
|
64
64
|
ccxt/hollaex.py,sha256=2KIbenZ3vcBDN_rs2CxG5_foKLaYxJd73vVV7M8n_8E,76140
|
65
|
-
ccxt/htx.py,sha256=
|
65
|
+
ccxt/htx.py,sha256=X4A5SVzO1wPzbxK5OHG_u67ewOqj-xtb5YIkl1tSG_c,427883
|
66
66
|
ccxt/huobi.py,sha256=4vaG7IRN7fyjaJ_ac6S-njlHOfSEN5de7aq0noznxYw,438
|
67
67
|
ccxt/huobijp.py,sha256=DPg9DkSTrsFZt8bCnGcodfPPCWMKRAFyh6ti9iNU3VE,90183
|
68
68
|
ccxt/hyperliquid.py,sha256=r_xDktfiSdLDbxwkN_vCKSAu4n9uPyKVlWio-ligUms,109612
|
69
69
|
ccxt/idex.py,sha256=P2jNsxiwIlMgrfPKbtmjLJQrzFcWp_TjgJaLq793oco,73255
|
70
70
|
ccxt/independentreserve.py,sha256=ChkSnahGsn0aN_cfaAonSk-V2Aa1UB-0cPTa1d3AdI4,37713
|
71
71
|
ccxt/indodax.py,sha256=rFfAwlYalCXdHQvhjmb7Zt4fGYqjoPv_koL21CBv-O8,53431
|
72
|
-
ccxt/kraken.py,sha256=
|
72
|
+
ccxt/kraken.py,sha256=guJXyTbgL1DDzun1FbtIRgHPPCthpwbusy5ZJGtbydY,130222
|
73
73
|
ccxt/krakenfutures.py,sha256=2K40RYEqHB2kgo9715eXc8O2SKcZpAb26iRdC70ftts,119521
|
74
74
|
ccxt/kucoin.py,sha256=rwv5bdlaeFAMbo2vYpT3_mX_keeJmz5Nk5HF26Br3vA,226576
|
75
75
|
ccxt/kucoinfutures.py,sha256=Mn9eflwmD_FmTCHYkRvyfxG3SU3Pgv9Hpj-6umYT3h8,124558
|
@@ -129,7 +129,7 @@ ccxt/abstract/bitfinex2.py,sha256=82sdkbjDb6D2JePGAa2yYwApDwdeF9Tvlo-hWB2ZUBs,19
|
|
129
129
|
ccxt/abstract/bitflyer.py,sha256=3ngG1GJJCNMzYMWoNXCEEgLxmTl7eRf7_JU4M0P2rqo,3576
|
130
130
|
ccxt/abstract/bitget.py,sha256=ELBdc4MCJ1eOLDQKFCXhGlogRO_RgYU2YDS87Flv-5k,90490
|
131
131
|
ccxt/abstract/bithumb.py,sha256=GR7QJ6CwTBne59SaGRVj9Rdz_zecG-8imRWX7oe6MoQ,3443
|
132
|
-
ccxt/abstract/bitmart.py,sha256=
|
132
|
+
ccxt/abstract/bitmart.py,sha256=ZeIWkTJro16K4p2ECafShr347hbg5-FvjHFx3b2DiNY,14820
|
133
133
|
ccxt/abstract/bitmex.py,sha256=v15OP-vSO_eotD6KVf1BgKrbPxCPl2eXXYIuzWF1dl4,10774
|
134
134
|
ccxt/abstract/bitopro.py,sha256=KCWuN9bc4W2fWIbWL_OboHc5DtbCjXXLnd23gYl9r3s,3295
|
135
135
|
ccxt/abstract/bitpanda.py,sha256=TtJq4d44lrutV8wcK0lX4v0EfQ72ly6fxR-zB7-FSuI,3859
|
@@ -168,7 +168,7 @@ ccxt/abstract/exmo.py,sha256=yq9zis5G9Qjsecs-YSHAghDjad6y52jFteWSBJZFg8o,6177
|
|
168
168
|
ccxt/abstract/fmfwio.py,sha256=OTBtNu3DQeAqAC_Lbi0NePUs-ZQQllcLrVDI2G04nwQ,15601
|
169
169
|
ccxt/abstract/gate.py,sha256=IbxOrYOb0dwsh4itELNcJXaF0jrwyPRcC3VX-BYmMjA,41994
|
170
170
|
ccxt/abstract/gateio.py,sha256=IbxOrYOb0dwsh4itELNcJXaF0jrwyPRcC3VX-BYmMjA,41994
|
171
|
-
ccxt/abstract/gemini.py,sha256=
|
171
|
+
ccxt/abstract/gemini.py,sha256=xmvbbzRylYVFn6B7EvSAm5cO75IFRCHQI5v9jGyhgoM,7014
|
172
172
|
ccxt/abstract/hitbtc.py,sha256=OTBtNu3DQeAqAC_Lbi0NePUs-ZQQllcLrVDI2G04nwQ,15601
|
173
173
|
ccxt/abstract/hitbtc3.py,sha256=OTBtNu3DQeAqAC_Lbi0NePUs-ZQQllcLrVDI2G04nwQ,15601
|
174
174
|
ccxt/abstract/hollaex.py,sha256=-X4QUFc6t9jRO1ahUJGCwEkslYzLqHlnotK0oHNmjgQ,2906
|
@@ -218,13 +218,13 @@ ccxt/abstract/xt.py,sha256=JkWvsic3L2O968BCr9H5Wd5NIbRE9aTT2A-9WbAtl0c,27146
|
|
218
218
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
219
219
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
220
220
|
ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
|
221
|
-
ccxt/async_support/__init__.py,sha256=
|
221
|
+
ccxt/async_support/__init__.py,sha256=omcQOOAT6PGan98OiYKqoPq7a5lP8v9ECXWenoOpCgg,16230
|
222
222
|
ccxt/async_support/ace.py,sha256=zBmLUKH691a2BH1sPzlJPg-uO7lD6Ys92Rv8WSzNtoo,42607
|
223
223
|
ccxt/async_support/alpaca.py,sha256=495vDvdF1IWlsh9QhUnMtkMuINdD0EzeFGlUVqCf8TE,47682
|
224
224
|
ccxt/async_support/ascendex.py,sha256=LK259BdUqU0_STGRH6DmTgaR-7lXqFpZHFVACf2um5c,152721
|
225
225
|
ccxt/async_support/bequant.py,sha256=1hTwHovo1bW1XTIc8ZKjvJ-Xg6LfmpGdzT7TepykaVM,1188
|
226
226
|
ccxt/async_support/bigone.py,sha256=PZcs9u6FI6uAyJKiiNGIGDA-uainz4aKEOrC1Q6KIk4,93540
|
227
|
-
ccxt/async_support/binance.py,sha256=
|
227
|
+
ccxt/async_support/binance.py,sha256=TG-2Cq3DF93VXoeXV3d_j2lgAW00eyHfXrCOgwb077U,644258
|
228
228
|
ccxt/async_support/binancecoinm.py,sha256=yeE73xG5UXD_X3VPul6DMGnV_mgJfWYskpas1BUDdCU,1740
|
229
229
|
ccxt/async_support/binanceus.py,sha256=c-K3Tk7LaRJjmYdCx8vBOqsx01uXrtvt0PC2ekBiD0g,9177
|
230
230
|
ccxt/async_support/binanceusdm.py,sha256=8ugRkx7vyYmn67wdkEEf2f-DFMGAoC4t09usKlPVNyw,2670
|
@@ -238,8 +238,8 @@ ccxt/async_support/bitfinex.py,sha256=gypR-TDeWWlamJIjEYwbsEhMQYgu9kqAVvuNxOVWVT
|
|
238
238
|
ccxt/async_support/bitfinex2.py,sha256=vTO61ELmw5d8A7xvmINff17pCWpoiIrVnc_RJzVic3M,161375
|
239
239
|
ccxt/async_support/bitflyer.py,sha256=hIrGMxaM78V1i-gHN2FRFAhI2aaLR21mPAoIE33fW70,41991
|
240
240
|
ccxt/async_support/bitget.py,sha256=BT4wkYizx3UF5m0wRv0f0QVqrle2y5JXLPQD73uSjc8,426182
|
241
|
-
ccxt/async_support/bithumb.py,sha256=
|
242
|
-
ccxt/async_support/bitmart.py,sha256=
|
241
|
+
ccxt/async_support/bithumb.py,sha256=Q0Cx_cRKZRfdpBAhQyINm63Qw3M6BRYQRiF0UqYzfis,48214
|
242
|
+
ccxt/async_support/bitmart.py,sha256=sNb0CAnVrxrlO2Htg4DCYJ12ti1eRjqtLczEj-fKM_g,212917
|
243
243
|
ccxt/async_support/bitmex.py,sha256=qSKH_dXDtpY5BUrLUbESI3a3WQhBFrc1ucv1N5GDuIU,127439
|
244
244
|
ccxt/async_support/bitopro.py,sha256=HHESL0hiE0Rc0GRhFeIKnTs-eBzHEtOqqECANTSp0e0,69726
|
245
245
|
ccxt/async_support/bitpanda.py,sha256=2k3URBWrpnh2xHa7JiYenI7_4MW5UeOPGzetlmRkR4U,485
|
@@ -255,9 +255,9 @@ ccxt/async_support/btcalpha.py,sha256=DgzrJ6cczUCDZr-QLUxMpazeudEFdQ_OzXiQiJM4Hb
|
|
255
255
|
ccxt/async_support/btcbox.py,sha256=FGIj8il6VZL56_dDYsAMwp4DpdKNt_vbMXV6VZ2boCI,27968
|
256
256
|
ccxt/async_support/btcmarkets.py,sha256=x1-s5uVioHyvNJoBxhxP8eUUslTDwQnZMU0FWfu1Fd4,53047
|
257
257
|
ccxt/async_support/btcturk.py,sha256=P3bg0XG0sAi-8ge9ZFzQqZHsoGOGfxBjkhIDo4VPSK4,37210
|
258
|
-
ccxt/async_support/bybit.py,sha256=
|
258
|
+
ccxt/async_support/bybit.py,sha256=hb6SpCChGiPdASz9BRXMXpoh5CfYe3tJ0-DW0jqyjDc,419211
|
259
259
|
ccxt/async_support/cex.py,sha256=5KZ9qt4WsUAkH2rkHn7zW7SwlB9FumruLELdKF4LFoE,70434
|
260
|
-
ccxt/async_support/coinbase.py,sha256=
|
260
|
+
ccxt/async_support/coinbase.py,sha256=Ch_hFo2zj0qp4kuDUnebGD16pUeKs6h3HJxs5Fdpkco,218637
|
261
261
|
ccxt/async_support/coinbaseadvanced.py,sha256=Kupwnuxiu_qTjwCNV2asacoDUNFQvcaHNAznUJPhdQs,552
|
262
262
|
ccxt/async_support/coinbaseexchange.py,sha256=oJKFrv_bwjwyOGnTprrOoTsUToavrH4f0sTwQlEqZgc,79413
|
263
263
|
ccxt/async_support/coinbaseinternational.py,sha256=d_xWWicD-Zya2BT0YaKmr9Nrl4XbUfWOUe1FWUIXnQo,98054
|
@@ -278,18 +278,18 @@ ccxt/async_support/exmo.py,sha256=uVJsy3mfNLpfbY0ndl2EF9hipUylEw8J58J3wCGyyA0,11
|
|
278
278
|
ccxt/async_support/fmfwio.py,sha256=lzfSnPrB2ARcC3EIqAuBM4vyg6LJ6n8RE71Zvt3ez1s,1250
|
279
279
|
ccxt/async_support/gate.py,sha256=3yuiDnxSW2zjMTIaIkvJsM-uVbUsOWV4JK6yQggSNEM,329287
|
280
280
|
ccxt/async_support/gateio.py,sha256=6_t032F9p9x5KGTjtSuqGXITzFOx-XAQBYLpsuQjzxw,459
|
281
|
-
ccxt/async_support/gemini.py,sha256=
|
281
|
+
ccxt/async_support/gemini.py,sha256=7X5-PE3rPrPycUVXu3FtAcDFjNR3QUwYd6lPRQYQeEw,81389
|
282
282
|
ccxt/async_support/hitbtc.py,sha256=jWmyRAy_wkpEidgjCxU0gWur99YJjYHPjD9CN4vJbUE,154444
|
283
283
|
ccxt/async_support/hitbtc3.py,sha256=dmSYoD2o4av_zzbZI8HNIoj8BWxA7QozsVpy8JaOXzU,469
|
284
284
|
ccxt/async_support/hollaex.py,sha256=msUnnbWLNeCxFW77BnfLoFWBdvQIDwV7Rtbi9TA4TYY,76574
|
285
|
-
ccxt/async_support/htx.py,sha256=
|
285
|
+
ccxt/async_support/htx.py,sha256=pPdetpi1Y2bHxNIXrFO9VDgMOra0v8Y2hggVbe2Qzdk,430275
|
286
286
|
ccxt/async_support/huobi.py,sha256=fup0j6wQ1khAtfbb1H4CSyJAOzhxuoHMmrM6sgTuhr8,452
|
287
287
|
ccxt/async_support/huobijp.py,sha256=e4vfgX8c9eTLZk6bOrB8_Upq13PLDjTLiR109Pj4phM,90683
|
288
288
|
ccxt/async_support/hyperliquid.py,sha256=wFj9yXEojlPWK4JT6aOWFI08P9EwkWT9m7FurqiusqQ,110168
|
289
289
|
ccxt/async_support/idex.py,sha256=UcAvdMc2CP_6E8lET4rmQiIP-RaUfZHSo6pQeA17v-g,73731
|
290
290
|
ccxt/async_support/independentreserve.py,sha256=fCTAQ1U74KOZHIoYbDxzEly1xSgykcYcdpeiJiCEXkU,37991
|
291
291
|
ccxt/async_support/indodax.py,sha256=m6F8bSiEz9c6UQuadeOfC40rnmlAVKkj94C1uvsc9k0,53739
|
292
|
-
ccxt/async_support/kraken.py,sha256=
|
292
|
+
ccxt/async_support/kraken.py,sha256=G5lTh1l1LNZcuPz4TphP3Hzg1t5lbRDkJ2sipUDz_8w,130872
|
293
293
|
ccxt/async_support/krakenfutures.py,sha256=2r88_rC1cY7t4s8dgeqRUlwNC2NVaagS9wPAEonLAQs,120009
|
294
294
|
ccxt/async_support/kucoin.py,sha256=XAOfLEyRUeHfS3pB5elec6F1M_ryPyaEKZle2rPFZDM,227677
|
295
295
|
ccxt/async_support/kucoinfutures.py,sha256=uy8gNsJOI6SggxhYMH1TSTFM6rlzWvLknZL_KgCDLBE,125196
|
@@ -329,7 +329,7 @@ ccxt/async_support/yobit.py,sha256=JuH_yClCl_cd5L-BMTt3MPAvIF61Wpqc3W7H-fno6Hs,5
|
|
329
329
|
ccxt/async_support/zaif.py,sha256=-ZTr8M2JaIRCL90VrbCDXBMAsZwbiwsFChSQ2rWODuQ,29044
|
330
330
|
ccxt/async_support/zonda.py,sha256=jncr6Wg12S72CTpu6mCKCse1pm1f8oefVQurQSrFvP0,81733
|
331
331
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
332
|
-
ccxt/async_support/base/exchange.py,sha256=
|
332
|
+
ccxt/async_support/base/exchange.py,sha256=7m37IiRUXsANAZdHbrx2q-yTCGZ7AdZxnvxj7QUGH7Y,110799
|
333
333
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
334
334
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
335
335
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
|
@@ -343,14 +343,14 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
|
|
343
343
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
344
344
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
345
345
|
ccxt/base/errors.py,sha256=tosnf1tDaBn4YMCbWVNWyDYzqft-ImVtyjqJb6q83Y4,4369
|
346
|
-
ccxt/base/exchange.py,sha256=
|
346
|
+
ccxt/base/exchange.py,sha256=vidnImmlGXI_sK7tV5aXs7czc2CHUB1D5XbiQpllKFg,294641
|
347
347
|
ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
348
348
|
ccxt/base/types.py,sha256=TaP_RElKjGEZWuzyp4o4u2YhREyTG3rUeVT6gDffY9A,9613
|
349
|
-
ccxt/pro/__init__.py,sha256=
|
349
|
+
ccxt/pro/__init__.py,sha256=NQB5OueFgi7sup0cZXXfAI3OkvwDIg11MZ_pC4B2Acc,7608
|
350
350
|
ccxt/pro/alpaca.py,sha256=xh1yg1Ok-Zh_Mfx-MBjNrfJDs6MUU0exFfEj3GuQPC4,27631
|
351
351
|
ccxt/pro/ascendex.py,sha256=181FIeztchLqGmgecRJEN8F8xEM45D5aMKhC-5nuNfU,35467
|
352
352
|
ccxt/pro/bequant.py,sha256=33OEUWBi4D9-2w8CmkwN3aF1qS-AlLqX3pxrWwNbXPY,1552
|
353
|
-
ccxt/pro/binance.py,sha256=
|
353
|
+
ccxt/pro/binance.py,sha256=9wZoA6DZ50oLbKEiTGN3mhJkiVbh0DFVvsZiBxQ1rrE,177352
|
354
354
|
ccxt/pro/binancecoinm.py,sha256=LlgF4rXHHrsQMaklhTEzSiE6U9V25AjHHg_DRat7Mf0,1036
|
355
355
|
ccxt/pro/binanceus.py,sha256=_IXpS_wyH0nEtsLR7cJLtrUlsNQoG0MSUVo3PV0RDDc,1946
|
356
356
|
ccxt/pro/binanceusdm.py,sha256=lLdOv0d-lM-1wfCc_y_POb6GdmVIiX7PFzmKTWsVyNw,1512
|
@@ -360,7 +360,7 @@ ccxt/pro/bitfinex.py,sha256=m4ERTUt7QIZhAYu8NP818wOHSLRi2vK-_Z5-LXD8zjA,25257
|
|
360
360
|
ccxt/pro/bitfinex2.py,sha256=kZVHZwfu1_E27p9Cx55uDVGcEPA6Oy-BQk8t2fbwOmg,43058
|
361
361
|
ccxt/pro/bitget.py,sha256=15JcegpMeu1HROmDtuTP3WmUw3lEoV4TYjBfWAWnCkk,74754
|
362
362
|
ccxt/pro/bithumb.py,sha256=dqYKWebxFg4rsP7jg3oBnCUBcpZAoqAmZsozAU9pYds,16835
|
363
|
-
ccxt/pro/bitmart.py,sha256=
|
363
|
+
ccxt/pro/bitmart.py,sha256=LxcP6aiCdwN-euseCMhsXZkhqesPJM-eLh549sGHHfo,62556
|
364
364
|
ccxt/pro/bitmex.py,sha256=dNQf2EAim7kxgCM6I1TgFDl-e2zrXa2veicTEqu8WbQ,73949
|
365
365
|
ccxt/pro/bitopro.py,sha256=2pCutMnav21uVEkqjUhrI80opxW5NWUkn2IK9-Y2hNQ,18750
|
366
366
|
ccxt/pro/bitpanda.py,sha256=ELrhfFKN9YJJdmm9wBf-vpk6WsXGWGf-SyJdqm-E_Lg,415
|
@@ -369,7 +369,7 @@ ccxt/pro/bitstamp.py,sha256=P8Td5HqWiO6GMdLj-cKqPTZD28fltWlZQ7Z-omDbO60,20916
|
|
369
369
|
ccxt/pro/bitvavo.py,sha256=POivGXYmz8GqYc_uErpS6BdG2Gv087BStiJ3lQwod-A,56219
|
370
370
|
ccxt/pro/blockchaincom.py,sha256=LtCL3habcuB2IRXXK_oeqdzqpnkj01Gr79X82nK8Mnk,29600
|
371
371
|
ccxt/pro/blofin.py,sha256=Wjw0coQ4TO1qdVVnBGSdRDVtADsl-t-hkOo-uEDZTbc,28659
|
372
|
-
ccxt/pro/bybit.py,sha256=
|
372
|
+
ccxt/pro/bybit.py,sha256=WNwgz1KwN11yQw6TzaNYvIfUg5aUOE1dHGEzpZ95xWs,92050
|
373
373
|
ccxt/pro/cex.py,sha256=SFgOQmXEfuKodIzN_dISZ_iqU46B2TbVPFSXNbO7cY4,58493
|
374
374
|
ccxt/pro/coinbase.py,sha256=hwd8lUuaW8WyQQOh9WvBVuiuOJTpmlCXU0hL3UE8UFQ,31411
|
375
375
|
ccxt/pro/coinbaseexchange.py,sha256=eoDBwYvGK__zGtC0yNRk2evWwQAD6XpjMHcpubjBt2U,39027
|
@@ -414,7 +414,7 @@ ccxt/pro/upbit.py,sha256=M3RwAXlK7Mbu8zduZK7eprLOfNgJax_xSPUhzXQ2zfY,22094
|
|
414
414
|
ccxt/pro/vertex.py,sha256=kE4UZNKB2zXTt3eVOXwtM5Z4F1LfcP1cfDC4_xMncPM,40528
|
415
415
|
ccxt/pro/wazirx.py,sha256=LXpotTduk3fhtcJP2TWpssiOOAZGxhou5_MTK-0G7n0,30082
|
416
416
|
ccxt/pro/whitebit.py,sha256=lpIDFgmVXtL77680Rz9hVTEXd3M6TsizhlFb0ruKfEM,35073
|
417
|
-
ccxt/pro/woo.py,sha256=
|
417
|
+
ccxt/pro/woo.py,sha256=EkcUrQBTGFrVjULdrcfcLcpa48qnfjwMaAurXnM0YSg,48793
|
418
418
|
ccxt/pro/woofipro.py,sha256=pwVXMDrl3zFZrEJJkk9_PEil9uTTtrV9TEvbCRFaNUM,49050
|
419
419
|
ccxt/pro/xt.py,sha256=USN0l6AOLiKgT9Sfz0QX93yFXv-hnU2VEV_mzkSFuyQ,48369
|
420
420
|
ccxt/static_dependencies/__init__.py,sha256=tzFje8cloqmiIE6kola3EaYC0SnD1izWnri69hzHsSw,168
|
@@ -620,7 +620,7 @@ ccxt/static_dependencies/starkware/crypto/__init__.py,sha256=47DEQpj8HBSa-_TImW-
|
|
620
620
|
ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py,sha256=69IypXuwIbBnpGdsYbwU-t9U96V7SoHwissaPdo7fKA,2032
|
621
621
|
ccxt/static_dependencies/starkware/crypto/math_utils.py,sha256=Mx3R_UqUTmpeL7vRmNrN59CUdXGK2u_WEGXRRav1i50,3145
|
622
622
|
ccxt/static_dependencies/starkware/crypto/signature.py,sha256=Q4fnm-St_nyW_jeHBFEVBRQ7kWkQ_wvO3qt6xkHu65U,112683
|
623
|
-
ccxt/static_dependencies/starkware/crypto/utils.py,sha256=
|
623
|
+
ccxt/static_dependencies/starkware/crypto/utils.py,sha256=lSLXMW4VCy7RkobrDR-HonGoHmI4lReVwvgnHDxR_SE,1600
|
624
624
|
ccxt/static_dependencies/sympy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
625
625
|
ccxt/static_dependencies/sympy/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
626
626
|
ccxt/static_dependencies/sympy/core/intfunc.py,sha256=dnMzhDBVtVOHeIHVNll-5Ek6si7c1uH-Gpdet86DrVE,844
|
@@ -641,8 +641,6 @@ ccxt/static_dependencies/toolz/utils.py,sha256=JLlXt8x_JqSVevmLZPnt5bZJsdKMBJgJb
|
|
641
641
|
ccxt/static_dependencies/toolz/curried/__init__.py,sha256=iOuFY4c1kixe_h8lxuWIW5Az-cXRvOWJ5xuTfFficeE,2226
|
642
642
|
ccxt/static_dependencies/toolz/curried/exceptions.py,sha256=gKFOHDIayAWnX2uC8Z2KrUwpP-UpoqI5Tx1a859QdVY,344
|
643
643
|
ccxt/static_dependencies/toolz/curried/operator.py,sha256=ML92mknkAwzBl2NCm-4werSUmJEtSHNY9NSzhseNM9s,525
|
644
|
-
ccxt/static_dependencies/typing_extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
645
|
-
ccxt/static_dependencies/typing_extensions/typing_extensions.py,sha256=P042Op4VQDL9iAxAsc_Zie7u6pba9V7Ej9E_RLwgVHo,141867
|
646
644
|
ccxt/static_dependencies/typing_inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
647
645
|
ccxt/static_dependencies/typing_inspect/typing_inspect.py,sha256=5gIWomLPfuDpgd3gX1GlnX0MuXM3VorR4j2W2qXORiQ,28269
|
648
646
|
ccxt/test/__init__.py,sha256=GKPbEcj0Rrz5HG-GUm-iY1IHhDYmlvcBXZAGk6-m2CI,141
|
@@ -650,8 +648,8 @@ ccxt/test/tests_async.py,sha256=NShOLO2-HzYsh07U7aiUGssiv-AZ_p88h-NuQub9OKU,8468
|
|
650
648
|
ccxt/test/tests_helpers.py,sha256=xhOILoZ_x3RSfQjtKt6AQlkp9DkOtpTQe8GAUUZoM6s,10069
|
651
649
|
ccxt/test/tests_init.py,sha256=eVwwUHujX9t4rjgo4TqEeg7DDhR1Hb_e2SJN8NVGyl0,998
|
652
650
|
ccxt/test/tests_sync.py,sha256=6Arr2TcJpNg9eEpH_JQeBbLzaMPlb94J1P11HGlbpPg,83761
|
653
|
-
ccxt-4.3.
|
654
|
-
ccxt-4.3.
|
655
|
-
ccxt-4.3.
|
656
|
-
ccxt-4.3.
|
657
|
-
ccxt-4.3.
|
651
|
+
ccxt-4.3.77.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
652
|
+
ccxt-4.3.77.dist-info/METADATA,sha256=ghxfsenNNpj_8pLfM-5-ZLJfuhHHzMc7JZiN7N84PMM,116642
|
653
|
+
ccxt-4.3.77.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
654
|
+
ccxt-4.3.77.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
655
|
+
ccxt-4.3.77.dist-info/RECORD,,
|
File without changes
|