ccxt 4.4.22__py2.py3-none-any.whl → 4.4.24__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/binance.py +64 -43
- ccxt/abstract/binancecoinm.py +64 -43
- ccxt/abstract/binanceus.py +64 -43
- ccxt/abstract/binanceusdm.py +64 -43
- ccxt/abstract/coincatch.py +94 -0
- ccxt/abstract/kucoin.py +1 -0
- ccxt/abstract/kucoinfutures.py +1 -0
- ccxt/async_support/__init__.py +3 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/binance.py +87 -62
- ccxt/async_support/bitfinex.py +4 -0
- ccxt/async_support/bitflyer.py +1 -0
- ccxt/async_support/bitrue.py +3 -0
- ccxt/async_support/bybit.py +39 -6
- ccxt/async_support/cex.py +4 -0
- ccxt/async_support/coinbase.py +1 -1
- ccxt/async_support/coinbaseexchange.py +3 -0
- ccxt/async_support/coincatch.py +4955 -0
- ccxt/async_support/coinex.py +60 -1
- ccxt/async_support/gate.py +177 -59
- ccxt/async_support/hyperliquid.py +1 -1
- ccxt/async_support/kucoin.py +15 -8
- ccxt/async_support/latoken.py +6 -0
- ccxt/async_support/mexc.py +1 -1
- ccxt/async_support/oceanex.py +2 -0
- ccxt/async_support/okcoin.py +1 -0
- ccxt/async_support/poloniex.py +5 -0
- ccxt/async_support/yobit.py +1 -1
- ccxt/base/exchange.py +5 -4
- ccxt/binance.py +87 -62
- ccxt/bitfinex.py +4 -0
- ccxt/bitflyer.py +1 -0
- ccxt/bitrue.py +3 -0
- ccxt/bybit.py +39 -6
- ccxt/cex.py +4 -0
- ccxt/coinbase.py +1 -1
- ccxt/coinbaseexchange.py +3 -0
- ccxt/coincatch.py +4955 -0
- ccxt/coinex.py +60 -1
- ccxt/gate.py +177 -59
- ccxt/hyperliquid.py +1 -1
- ccxt/kucoin.py +15 -8
- ccxt/latoken.py +6 -0
- ccxt/mexc.py +1 -1
- ccxt/oceanex.py +2 -0
- ccxt/okcoin.py +1 -0
- ccxt/poloniex.py +5 -0
- ccxt/pro/__init__.py +3 -1
- ccxt/pro/coincatch.py +1429 -0
- ccxt/pro/kucoin.py +2 -1
- ccxt/pro/onetrading.py +2 -1
- ccxt/test/tests_async.py +29 -6
- ccxt/test/tests_sync.py +29 -6
- ccxt/yobit.py +1 -1
- {ccxt-4.4.22.dist-info → ccxt-4.4.24.dist-info}/METADATA +7 -6
- {ccxt-4.4.22.dist-info → ccxt-4.4.24.dist-info}/RECORD +60 -56
- {ccxt-4.4.22.dist-info → ccxt-4.4.24.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.4.22.dist-info → ccxt-4.4.24.dist-info}/WHEEL +0 -0
- {ccxt-4.4.22.dist-info → ccxt-4.4.24.dist-info}/top_level.txt +0 -0
ccxt/pro/kucoin.py
CHANGED
@@ -1088,7 +1088,8 @@ class kucoin(ccxt.async_support.kucoin):
|
|
1088
1088
|
self.myTrades = ArrayCacheBySymbolById(limit)
|
1089
1089
|
data = self.safe_dict(message, 'data')
|
1090
1090
|
parsed = self.parse_ws_trade(data)
|
1091
|
-
self.myTrades
|
1091
|
+
myTrades = self.myTrades
|
1092
|
+
myTrades.append(parsed)
|
1092
1093
|
messageHash = 'myTrades'
|
1093
1094
|
client.resolve(self.myTrades, messageHash)
|
1094
1095
|
symbolSpecificMessageHash = messageHash + ':' + parsed['symbol']
|
ccxt/pro/onetrading.py
CHANGED
@@ -965,7 +965,8 @@ class onetrading(ccxt.async_support.onetrading):
|
|
965
965
|
if updateType == 'TRADE_SETTLED':
|
966
966
|
parsed = self.parse_trade(update)
|
967
967
|
symbol = self.safe_string(parsed, 'symbol', '')
|
968
|
-
self.myTrades
|
968
|
+
myTrades = self.myTrades
|
969
|
+
myTrades.append(parsed)
|
969
970
|
client.resolve(self.myTrades, 'myTrades:' + symbol)
|
970
971
|
client.resolve(self.myTrades, 'myTrades')
|
971
972
|
|
ccxt/test/tests_async.py
CHANGED
@@ -639,9 +639,10 @@ class testMainClass:
|
|
639
639
|
# -----------------------------------------------------------------------------
|
640
640
|
calculated_string = json_stringify(calculated_output)
|
641
641
|
stored_string = json_stringify(stored_output)
|
642
|
-
error_message = message
|
642
|
+
error_message = message
|
643
643
|
if key is not None:
|
644
|
-
error_message = '
|
644
|
+
error_message = '[' + key + ']'
|
645
|
+
error_message += ' computed: ' + stored_string + ' stored: ' + calculated_string
|
645
646
|
assert cond, error_message
|
646
647
|
|
647
648
|
def load_markets_from_file(self, id):
|
@@ -752,9 +753,17 @@ class testMainClass:
|
|
752
753
|
# when comparing the response we want to allow some flexibility, because a 50.0 can be equal to 50 after saving it to the json file
|
753
754
|
self.assert_static_error(sanitized_new_output == sanitized_stored_output, message_error, stored_output, new_output, asserting_key)
|
754
755
|
else:
|
755
|
-
|
756
|
-
|
757
|
-
|
756
|
+
is_computed_bool = (isinstance(sanitized_new_output, bool))
|
757
|
+
is_stored_bool = (isinstance(sanitized_stored_output, bool))
|
758
|
+
is_computed_string = (isinstance(sanitized_new_output, str))
|
759
|
+
is_stored_string = (isinstance(sanitized_stored_output, str))
|
760
|
+
is_computed_undefined = (sanitized_new_output is None)
|
761
|
+
is_stored_undefined = (sanitized_stored_output is None)
|
762
|
+
should_be_same = (is_computed_bool == is_stored_bool) and (is_computed_string == is_stored_string) and (is_computed_undefined == is_stored_undefined)
|
763
|
+
self.assert_static_error(should_be_same, 'output type mismatch', stored_output, new_output, asserting_key)
|
764
|
+
is_boolean = is_computed_bool or is_stored_bool
|
765
|
+
is_string = is_computed_string or is_stored_string
|
766
|
+
is_undefined = is_computed_undefined or is_stored_undefined # undefined is a perfetly valid value
|
758
767
|
if is_boolean or is_string or is_undefined:
|
759
768
|
if self.lang == 'C#':
|
760
769
|
# tmp c# number comparsion
|
@@ -1071,7 +1080,7 @@ class testMainClass:
|
|
1071
1080
|
# -----------------------------------------------------------------------------
|
1072
1081
|
# --- Init of brokerId tests functions-----------------------------------------
|
1073
1082
|
# -----------------------------------------------------------------------------
|
1074
|
-
promises = [self.test_binance(), self.test_okx(), self.test_cryptocom(), self.test_bybit(), self.test_kucoin(), self.test_kucoinfutures(), self.test_bitget(), self.test_mexc(), self.test_htx(), self.test_woo(), self.test_bitmart(), self.test_coinex(), self.test_bingx(), self.test_phemex(), self.test_blofin(), self.test_hyperliquid(), self.test_coinbaseinternational(), self.test_coinbase_advanced(), self.test_woofi_pro(), self.test_oxfun(), self.test_xt(), self.test_vertex(), self.test_paradex(), self.test_hashkey()]
|
1083
|
+
promises = [self.test_binance(), self.test_okx(), self.test_cryptocom(), self.test_bybit(), self.test_kucoin(), self.test_kucoinfutures(), self.test_bitget(), self.test_mexc(), self.test_htx(), self.test_woo(), self.test_bitmart(), self.test_coinex(), self.test_bingx(), self.test_phemex(), self.test_blofin(), self.test_hyperliquid(), self.test_coinbaseinternational(), self.test_coinbase_advanced(), self.test_woofi_pro(), self.test_oxfun(), self.test_xt(), self.test_vertex(), self.test_paradex(), self.test_hashkey(), self.test_coincatch()]
|
1075
1084
|
await asyncio.gather(*promises)
|
1076
1085
|
success_message = '[' + self.lang + '][TEST_SUCCESS] brokerId tests passed.'
|
1077
1086
|
dump('[INFO]' + success_message)
|
@@ -1533,3 +1542,17 @@ class testMainClass:
|
|
1533
1542
|
if not is_sync():
|
1534
1543
|
await close(exchange)
|
1535
1544
|
return True
|
1545
|
+
|
1546
|
+
async def test_coincatch(self):
|
1547
|
+
exchange = self.init_offline_exchange('coincatch')
|
1548
|
+
req_headers = None
|
1549
|
+
id = '47cfy'
|
1550
|
+
try:
|
1551
|
+
await exchange.create_order('BTC/USDT', 'limit', 'buy', 1, 20000)
|
1552
|
+
except Exception as e:
|
1553
|
+
# we expect an error here, we're only interested in the headers
|
1554
|
+
req_headers = exchange.last_request_headers
|
1555
|
+
assert req_headers['X-CHANNEL-API-CODE'] == id, 'coincatch - id: ' + id + ' not in headers.'
|
1556
|
+
if not is_sync():
|
1557
|
+
await close(exchange)
|
1558
|
+
return True
|
ccxt/test/tests_sync.py
CHANGED
@@ -636,9 +636,10 @@ class testMainClass:
|
|
636
636
|
# -----------------------------------------------------------------------------
|
637
637
|
calculated_string = json_stringify(calculated_output)
|
638
638
|
stored_string = json_stringify(stored_output)
|
639
|
-
error_message = message
|
639
|
+
error_message = message
|
640
640
|
if key is not None:
|
641
|
-
error_message = '
|
641
|
+
error_message = '[' + key + ']'
|
642
|
+
error_message += ' computed: ' + stored_string + ' stored: ' + calculated_string
|
642
643
|
assert cond, error_message
|
643
644
|
|
644
645
|
def load_markets_from_file(self, id):
|
@@ -749,9 +750,17 @@ class testMainClass:
|
|
749
750
|
# when comparing the response we want to allow some flexibility, because a 50.0 can be equal to 50 after saving it to the json file
|
750
751
|
self.assert_static_error(sanitized_new_output == sanitized_stored_output, message_error, stored_output, new_output, asserting_key)
|
751
752
|
else:
|
752
|
-
|
753
|
-
|
754
|
-
|
753
|
+
is_computed_bool = (isinstance(sanitized_new_output, bool))
|
754
|
+
is_stored_bool = (isinstance(sanitized_stored_output, bool))
|
755
|
+
is_computed_string = (isinstance(sanitized_new_output, str))
|
756
|
+
is_stored_string = (isinstance(sanitized_stored_output, str))
|
757
|
+
is_computed_undefined = (sanitized_new_output is None)
|
758
|
+
is_stored_undefined = (sanitized_stored_output is None)
|
759
|
+
should_be_same = (is_computed_bool == is_stored_bool) and (is_computed_string == is_stored_string) and (is_computed_undefined == is_stored_undefined)
|
760
|
+
self.assert_static_error(should_be_same, 'output type mismatch', stored_output, new_output, asserting_key)
|
761
|
+
is_boolean = is_computed_bool or is_stored_bool
|
762
|
+
is_string = is_computed_string or is_stored_string
|
763
|
+
is_undefined = is_computed_undefined or is_stored_undefined # undefined is a perfetly valid value
|
755
764
|
if is_boolean or is_string or is_undefined:
|
756
765
|
if self.lang == 'C#':
|
757
766
|
# tmp c# number comparsion
|
@@ -1068,7 +1077,7 @@ class testMainClass:
|
|
1068
1077
|
# -----------------------------------------------------------------------------
|
1069
1078
|
# --- Init of brokerId tests functions-----------------------------------------
|
1070
1079
|
# -----------------------------------------------------------------------------
|
1071
|
-
promises = [self.test_binance(), self.test_okx(), self.test_cryptocom(), self.test_bybit(), self.test_kucoin(), self.test_kucoinfutures(), self.test_bitget(), self.test_mexc(), self.test_htx(), self.test_woo(), self.test_bitmart(), self.test_coinex(), self.test_bingx(), self.test_phemex(), self.test_blofin(), self.test_hyperliquid(), self.test_coinbaseinternational(), self.test_coinbase_advanced(), self.test_woofi_pro(), self.test_oxfun(), self.test_xt(), self.test_vertex(), self.test_paradex(), self.test_hashkey()]
|
1080
|
+
promises = [self.test_binance(), self.test_okx(), self.test_cryptocom(), self.test_bybit(), self.test_kucoin(), self.test_kucoinfutures(), self.test_bitget(), self.test_mexc(), self.test_htx(), self.test_woo(), self.test_bitmart(), self.test_coinex(), self.test_bingx(), self.test_phemex(), self.test_blofin(), self.test_hyperliquid(), self.test_coinbaseinternational(), self.test_coinbase_advanced(), self.test_woofi_pro(), self.test_oxfun(), self.test_xt(), self.test_vertex(), self.test_paradex(), self.test_hashkey(), self.test_coincatch()]
|
1072
1081
|
(promises)
|
1073
1082
|
success_message = '[' + self.lang + '][TEST_SUCCESS] brokerId tests passed.'
|
1074
1083
|
dump('[INFO]' + success_message)
|
@@ -1530,3 +1539,17 @@ class testMainClass:
|
|
1530
1539
|
if not is_sync():
|
1531
1540
|
close(exchange)
|
1532
1541
|
return True
|
1542
|
+
|
1543
|
+
def test_coincatch(self):
|
1544
|
+
exchange = self.init_offline_exchange('coincatch')
|
1545
|
+
req_headers = None
|
1546
|
+
id = '47cfy'
|
1547
|
+
try:
|
1548
|
+
exchange.create_order('BTC/USDT', 'limit', 'buy', 1, 20000)
|
1549
|
+
except Exception as e:
|
1550
|
+
# we expect an error here, we're only interested in the headers
|
1551
|
+
req_headers = exchange.last_request_headers
|
1552
|
+
assert req_headers['X-CHANNEL-API-CODE'] == id, 'coincatch - id: ' + id + ' not in headers.'
|
1553
|
+
if not is_sync():
|
1554
|
+
close(exchange)
|
1555
|
+
return True
|
ccxt/yobit.py
CHANGED
@@ -1124,7 +1124,7 @@ class yobit(Exchange, ImplicitAPI):
|
|
1124
1124
|
ids = list(trades.keys())
|
1125
1125
|
result = []
|
1126
1126
|
for i in range(0, len(ids)):
|
1127
|
-
id = ids
|
1127
|
+
id = self.safe_string(ids, i)
|
1128
1128
|
trade = self.parse_trade(self.extend(trades[id], {
|
1129
1129
|
'trade_id': id,
|
1130
1130
|
}), market)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.4.
|
3
|
+
Version: 4.4.24
|
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
|
|
@@ -107,7 +107,7 @@ Current feature list:
|
|
107
107
|
|
108
108
|
## Supported Cryptocurrency Exchanges
|
109
109
|
|
110
|
-
The CCXT library currently supports the following
|
110
|
+
The CCXT library currently supports the following 104 cryptocurrency exchange markets and trading APIs:
|
111
111
|
|
112
112
|
| logo | id | name | ver | type | certified | pro |
|
113
113
|
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------|----------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------:|------|-----------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
|
@@ -149,6 +149,7 @@ The CCXT library currently supports the following 103 cryptocurrency exchange ma
|
|
149
149
|
| [](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | coinbase | [Coinbase Advanced](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | [](https://developers.coinbase.com/api/v2) | cex | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
150
150
|
| [](https://coinbase.com/) | coinbaseexchange | [Coinbase Exchange](https://coinbase.com/) | [](https://docs.cloud.coinbase.com/exchange/docs/) | cex | | [](https://ccxt.pro) |
|
151
151
|
| [](https://international.coinbase.com) | coinbaseinternational | [Coinbase International](https://international.coinbase.com) | [](https://docs.cloud.coinbase.com/intx/docs) | cex | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
152
|
+
| [](https://partner.coincatch.cc/bg/92hy70391729607848548) | coincatch | [CoinCatch](https://partner.coincatch.cc/bg/92hy70391729607848548) | [](https://coincatch.github.io/github.io/en/) | cex | | [](https://ccxt.pro) |
|
152
153
|
| [](https://coincheck.com) | coincheck | [coincheck](https://coincheck.com) | [](https://coincheck.com/documents/exchange/api) | cex | | |
|
153
154
|
| [](https://www.coinex.com/register?refer_code=yw5fz) | coinex | [CoinEx](https://www.coinex.com/register?refer_code=yw5fz) | [](https://docs.coinex.com/api/v2) | cex | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
154
155
|
| [](https://coinlist.co) | coinlist | [Coinlist](https://coinlist.co) | [](https://trade-docs.coinlist.co) | cex | | |
|
@@ -271,13 +272,13 @@ console.log(version, Object.keys(exchanges));
|
|
271
272
|
|
272
273
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
273
274
|
|
274
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
275
|
-
* unpkg: https://unpkg.com/ccxt@4.4.
|
275
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.24/dist/ccxt.browser.min.js
|
276
|
+
* unpkg: https://unpkg.com/ccxt@4.4.24/dist/ccxt.browser.min.js
|
276
277
|
|
277
278
|
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.
|
278
279
|
|
279
280
|
```HTML
|
280
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
281
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.24/dist/ccxt.browser.min.js"></script>
|
281
282
|
```
|
282
283
|
|
283
284
|
Creates a global `ccxt` object:
|
@@ -1,10 +1,10 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=AwzuzA-BWZMfP_1GZKRdQl54hzYjk_kMph58lO8Jxlg,16586
|
2
2
|
ccxt/ace.py,sha256=3KFlbRm6N9hXsKUsgZbQCFPZT5WGLm4HOjR19Q3uPts,42419
|
3
3
|
ccxt/alpaca.py,sha256=yGBD1qwBx2lFjj_0D_4Fz9bjfmIWwGHnoApMhwaA1hc,47554
|
4
4
|
ccxt/ascendex.py,sha256=aJ5_UysmRijYUvjenq5EDLldl2JUO6lXGofJ_NqPvJU,151676
|
5
5
|
ccxt/bequant.py,sha256=RBiAmaTbL35DgiV3Hl6uchLUd78V0z1T9riTlNsrpdc,1174
|
6
6
|
ccxt/bigone.py,sha256=CoJwptGvb8j7GYeVh0F7rQoe4zW6nPealduMpSgkHQU,91389
|
7
|
-
ccxt/binance.py,sha256=
|
7
|
+
ccxt/binance.py,sha256=3Qh0ufQ1_7JwJ6KrbRkMH-MGCZQtepqe_1OhQbAKdJE,661611
|
8
8
|
ccxt/binancecoinm.py,sha256=arFnEh8mErSyi23eVPWE4iwoT7PWQyxGGVJCKCy6UJY,1702
|
9
9
|
ccxt/binanceus.py,sha256=HRsk0fIoi8AAFdzRCUMkkXUGLqBrf0guUOfUxupHFeY,9202
|
10
10
|
ccxt/binanceusdm.py,sha256=bAPcJj5HLxoCdPolriM8sJpoTBwbV78vBTbKRmWhNP4,2632
|
@@ -14,16 +14,16 @@ ccxt/bitbank.py,sha256=npoyV3c8uJ36nKofSzpMri590Yj_DIH0FAZg8o2EW6Y,43709
|
|
14
14
|
ccxt/bitbay.py,sha256=xAIjzGRDVGwoy-Gygd99H0YN4wiaz_0lR0Z14oxaaxc,478
|
15
15
|
ccxt/bitbns.py,sha256=RE1-Smi0SftcjVXgK8JS8TPz94pfeFJmvW4qfy1WUsQ,48408
|
16
16
|
ccxt/bitcoincom.py,sha256=PyWIl4nC4jp5Uba2lI1At0N_hhNyWD0DoZC_MSyL_s4,502
|
17
|
-
ccxt/bitfinex.py,sha256=
|
17
|
+
ccxt/bitfinex.py,sha256=Ng1gTExHtNTfoxzaZ-Wv_X8JcDhyPNfzaO3XaXDqLeQ,73935
|
18
18
|
ccxt/bitfinex2.py,sha256=9ad6ebvgThHIBhFmfp0MZIhyYkGBoIrudoLyyiz8cQ4,160817
|
19
|
-
ccxt/bitflyer.py,sha256=
|
19
|
+
ccxt/bitflyer.py,sha256=3IuU4cwj1e9kP_9gln3JM1q3a4UR6OsryLn0wH8hqwg,43961
|
20
20
|
ccxt/bitget.py,sha256=qt8nxlCd4u6aIuTKPCY0gZL1s5yUjGlihBCAdJOs7jk,432060
|
21
21
|
ccxt/bithumb.py,sha256=8oTnFWi8Ai9fnm5FPXvNmaUAVJEOqYi-18VC23cWmXY,47935
|
22
22
|
ccxt/bitmart.py,sha256=8D8pFVsaEMJZ5PQuheTigQ_-BEfHyvieIxwlM9o1-Yw,222097
|
23
23
|
ccxt/bitmex.py,sha256=w87ovaOQNJxtycsW4N7dpDzyh5AAPo5qnNS3TyBjppk,127407
|
24
24
|
ccxt/bitopro.py,sha256=XV878befM45AOnlSRpMYTnaBol342JAYWbFshvJ9fvs,69358
|
25
25
|
ccxt/bitpanda.py,sha256=aiwPkx9lKbVzt4ggoYdq_mIbMGtg5ZtGl2yRHO5xyz8,471
|
26
|
-
ccxt/bitrue.py,sha256=
|
26
|
+
ccxt/bitrue.py,sha256=N2rwD5efFrmeZXlkWuR8uRRudSH2Nhs3MU6JL-zWXls,136526
|
27
27
|
ccxt/bitso.py,sha256=QCYRoP9heyMzlV7qDDC_I2ipO86_ZNr7sg9259h2kpg,71756
|
28
28
|
ccxt/bitstamp.py,sha256=W9stgPLf-N5utFoYWdaTzzqBPtzAZWN5u2nMwogzdRY,93437
|
29
29
|
ccxt/bitteam.py,sha256=S5gDVlmAqoK_bOuCUmfyStFAApq2kDxQaUHHDf4byQM,102264
|
@@ -35,14 +35,15 @@ ccxt/btcalpha.py,sha256=plU5SSsJn0ZMLW7I8sXb_L0Woc3-kamGMSlqPGujUzE,36751
|
|
35
35
|
ccxt/btcbox.py,sha256=lvY7cgoe4tglaQiTJZ4vILmzvoEjAWxgswRuB2iYzmE,27780
|
36
36
|
ccxt/btcmarkets.py,sha256=WDDbtbUQ9I0odVZp8nJdIjc4-zv4li49EDSt8EqQbRU,52733
|
37
37
|
ccxt/btcturk.py,sha256=jSA4UnD1GiJu24gXNkfb94f-zXifP5By_Ptery_cMnY,37024
|
38
|
-
ccxt/bybit.py,sha256=
|
39
|
-
ccxt/cex.py,sha256=
|
40
|
-
ccxt/coinbase.py,sha256=
|
38
|
+
ccxt/bybit.py,sha256=vTLb0e2oqYsOORnY0Svk23zAAtGdg6H4UU1T6iJ3H2E,449275
|
39
|
+
ccxt/cex.py,sha256=pNMha3wHu4-7YSUrCvPNUCfetO1ebHSI7bOxeVR5E1g,67926
|
40
|
+
ccxt/coinbase.py,sha256=5zhr6gj4q6vHzlsEzUj1mDlMCZt4R7QVkAIxLfQDJ9o,218725
|
41
41
|
ccxt/coinbaseadvanced.py,sha256=d5g6nRx-NCcCwZDdtp8FsI2D-pRjSvnAP9ISSKY_nCQ,538
|
42
|
-
ccxt/coinbaseexchange.py,sha256=
|
42
|
+
ccxt/coinbaseexchange.py,sha256=QWSx0JYePSrLUk-4I7IsJW9qUl83XAbzpK0vwqRcdOw,79171
|
43
43
|
ccxt/coinbaseinternational.py,sha256=-hCiM3wE4_V0GHuNZimHx9SSV0ozBj4zkUZEAh0UxFg,97509
|
44
|
+
ccxt/coincatch.py,sha256=Yov8rP-7mFShwgBW1GjIXmdClgCPB4B_gRaPQ34oYcc,240865
|
44
45
|
ccxt/coincheck.py,sha256=SeNvZm_3p01IsW8y6b3rw67qiMu29S59HHPG6Jma_T4,35942
|
45
|
-
ccxt/coinex.py,sha256=
|
46
|
+
ccxt/coinex.py,sha256=QIrA7TNmMChDnqzRIjC-o3HS3CDjWPLlWr5i3ZzwQwk,261606
|
46
47
|
ccxt/coinlist.py,sha256=KI49yKisargPm5nApMMfWfFs3e0Uxbx9yMRibY9n7Tw,104273
|
47
48
|
ccxt/coinmate.py,sha256=BkPcT92OQFeUQtnLDIkl-Sg0PcLrQ87RfHMFIybJoWk,46190
|
48
49
|
ccxt/coinmetro.py,sha256=sVDcyA3ZC3MBEvslnkOepbYGlnonbf8K5MRoLIIQ2-k,80647
|
@@ -56,7 +57,7 @@ ccxt/deribit.py,sha256=x1TVHGfPxm9jL1Woxb-sLWZ-UdeGMiuVy4bdQGNRBO8,161694
|
|
56
57
|
ccxt/digifinex.py,sha256=HUxkYS2UbrAqiPuzPPMBMFLEahiIuiOElGDxRt4Gk7o,171005
|
57
58
|
ccxt/exmo.py,sha256=uCv9bsFzelhAHi_tIQe75X30csJvYizuCK09vU3NC4g,114777
|
58
59
|
ccxt/fmfwio.py,sha256=RbVLvzPwnqfDsE7Ea-N13ISCC82eJVPsXYjrleASmew,1236
|
59
|
-
ccxt/gate.py,sha256=
|
60
|
+
ccxt/gate.py,sha256=crxDxniIDQBPdLwAuK4g6KYohhNEBtTPx6NCb8320gg,342636
|
60
61
|
ccxt/gateio.py,sha256=86AETJWODl_vA5VNeQRHZprmpNIY1HAxCddKZcnKSi8,445
|
61
62
|
ccxt/gemini.py,sha256=cFAHx-qA26A9WMJ3i6f_uQH83Q4k6UDwS8zBQcLI5Fs,81056
|
62
63
|
ccxt/hashkey.py,sha256=LMV9wPTn2_qT2om74OdF-IfHreaySxNHOilsNDrgB7Q,192148
|
@@ -66,25 +67,25 @@ ccxt/hollaex.py,sha256=bGaqSEwR42i1etwXgSYbluStoyKcIbuj4Qx-YQkVUhM,76255
|
|
66
67
|
ccxt/htx.py,sha256=dYbPoyLBhXd_VcR8H-e-0THSP05GRAEoNNpt40trjDI,435943
|
67
68
|
ccxt/huobi.py,sha256=4vaG7IRN7fyjaJ_ac6S-njlHOfSEN5de7aq0noznxYw,438
|
68
69
|
ccxt/huobijp.py,sha256=Kw1HQhoox1qp-bEiGpCcJSg1UAhPVLRRi-BRbQLMljI,89741
|
69
|
-
ccxt/hyperliquid.py,sha256=
|
70
|
+
ccxt/hyperliquid.py,sha256=xE3XrBbLedqE8gxvKkv10-b_-yHAlfLktwkQvJ0fdPo,123439
|
70
71
|
ccxt/idex.py,sha256=2yiYt-w39o3gQs3-byp83GQYSD4DSlZTN1Ixieettt0,73307
|
71
72
|
ccxt/independentreserve.py,sha256=q8wUCbDnhxc_JiOTS7xcGsLp_EdmZTMe3QvLVB6oB-0,37899
|
72
73
|
ccxt/indodax.py,sha256=QPH7sQzhqOFwq6g_xCAMcgnrpVVRl49zf_uolywxuX8,54798
|
73
74
|
ccxt/kraken.py,sha256=qOJz1jNl7wKqvonYdPCqWIbj7uKfsPY1qSVXllc5w6Y,135904
|
74
75
|
ccxt/krakenfutures.py,sha256=dbreVGrjMD7AY6xai0eazuvnUpTXTD7wLDVT9VDD5Qk,119839
|
75
|
-
ccxt/kucoin.py,sha256=
|
76
|
+
ccxt/kucoin.py,sha256=bt3VQTwcruBqCBxOZ-M31bNRpWjQrQ8hv9WnF_xQssQ,229583
|
76
77
|
ccxt/kucoinfutures.py,sha256=I6cladqgxS2lUfcxBPgt8wrbzF7DQjAFnTJJVe4eIFM,139433
|
77
78
|
ccxt/kuna.py,sha256=wL4QciCkKXgOSnmMP2mkSq9HlL7Gsz-c2s75rH5YZkA,96074
|
78
|
-
ccxt/latoken.py,sha256=
|
79
|
+
ccxt/latoken.py,sha256=eeP45sF6BlPWSrevhkZP5xd4g4Qz0XUCrNlGXtocVHA,79794
|
79
80
|
ccxt/lbank.py,sha256=zFByIRV1v23oknBPkLIN0ZGaewr-siQzv84aoQRFRNA,116266
|
80
81
|
ccxt/luno.py,sha256=P3cZ_CnVyjMjDFn5e7jaev-pqs_rgmWQTsiJThRtffE,46353
|
81
82
|
ccxt/lykke.py,sha256=3la3ckeV8v_i7UdspYRJRwQ9ZzyHph88JK01kgXOeX8,51550
|
82
83
|
ccxt/mercado.py,sha256=LWCh89IzXu-yhPGqhkdPW6wqOqfO8nmbSQhAyYiSH8U,35710
|
83
|
-
ccxt/mexc.py,sha256=
|
84
|
+
ccxt/mexc.py,sha256=poGQA_Lcid82t3zIeO6U8lgHiR8pqSU2k2mK89hP6D8,252989
|
84
85
|
ccxt/ndax.py,sha256=EHlxGEi6RKnz2IDLdEGj8V4yVt8exliTJiP46J40a_8,110430
|
85
86
|
ccxt/novadax.py,sha256=_xFkuZ72vHhpJb1N9h_MQHRD05GDWlqUeLQQcOp43BM,64436
|
86
|
-
ccxt/oceanex.py,sha256=
|
87
|
-
ccxt/okcoin.py,sha256=
|
87
|
+
ccxt/oceanex.py,sha256=5uI56KYeTfih5N5qOLQNut-H_t8gFGyXIxzfdWwifLw,41272
|
88
|
+
ccxt/okcoin.py,sha256=1U92vIJCoSLKxHSgnalUkPG-kOwqT7FH4CBO6kA47x8,151351
|
88
89
|
ccxt/okx.py,sha256=wRAuk6UeqO3pS3vNjFyuGp2IuDlFqPXutngWtpetYMw,387914
|
89
90
|
ccxt/onetrading.py,sha256=0yQ1MNVcTrHlWYVU_D3FmeHkK1FT35zFans6e9KeRxA,88480
|
90
91
|
ccxt/oxfun.py,sha256=uFrS6oO6rvyXmocqPwAxVzczg0IG-BZeqRmNcNcTTig,124875
|
@@ -92,7 +93,7 @@ ccxt/p2b.py,sha256=iPzHv663K8F1F0uTWEYpfQBcaqowY8MQ5tZt2ZNpoQE,54290
|
|
92
93
|
ccxt/paradex.py,sha256=srDConLWOPbnIi6k8_3g232vyhfnVOn5hAE_A7Z6scE,85667
|
93
94
|
ccxt/paymium.py,sha256=1vS0eW96jgFDrl5BUvubqMNWwywcswUxzzYsZW3NciI,24552
|
94
95
|
ccxt/phemex.py,sha256=9tfTblQaQrJ3YsogfSZoBrXQiCrKCqCTpr9vP9lRdkk,226899
|
95
|
-
ccxt/poloniex.py,sha256
|
96
|
+
ccxt/poloniex.py,sha256=0fzqdEVKf-mZOmb1JY2pQi68FKijUZqyZ9ryZH7t2OY,102739
|
96
97
|
ccxt/poloniexfutures.py,sha256=pPAI2e0rGI6D7ESB8zVEb0faswQI1PKSESXBqZwcADs,80045
|
97
98
|
ccxt/probit.py,sha256=NsGAJu5c3Ey7ebhEMkwGqVMgIDIAOTFL4cjQLJ1-kPs,76334
|
98
99
|
ccxt/timex.py,sha256=UapOuKChUDl8rQuA2lteGvHzVGUI7_LSP8MCPyKdv0U,72010
|
@@ -106,7 +107,7 @@ ccxt/whitebit.py,sha256=tVkwl5cP52l8CFldvaGaFGE112fZzqdQ4vyDpYQgiwA,119576
|
|
106
107
|
ccxt/woo.py,sha256=X0gUhdBqJuybSqR7zk3iOdkK_O_Amp1iRNJvuYQ0zAc,155418
|
107
108
|
ccxt/woofipro.py,sha256=s1eZMa-1R80apoUTHt4_vQmgOfWCfcX6-HsO-ZGA6Rc,117101
|
108
109
|
ccxt/xt.py,sha256=AmV7j7kCLX0EF_4RKAd3Fks9r8GZZsGiXxtJcLmsgME,203849
|
109
|
-
ccxt/yobit.py,sha256=
|
110
|
+
ccxt/yobit.py,sha256=YJIyUGQ4qK1tpoTZ1aKKU8K85Vgqp3BmdbqqeiblL3Y,55374
|
110
111
|
ccxt/zaif.py,sha256=LgeOsvAo4ShQW1s-RidgUYK4DnRU-Dk0eJG0Ca6M_9U,28862
|
111
112
|
ccxt/zonda.py,sha256=clgLxb-WvsvbpB4hseo3X87blzI6TNrfG9hBAVJBlJ0,82800
|
112
113
|
ccxt/abstract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -115,10 +116,10 @@ ccxt/abstract/alpaca.py,sha256=vgzqnRTvEnAbLYgfDzGpmVUZxRLWC8BWA6nQ16m-xXY,10382
|
|
115
116
|
ccxt/abstract/ascendex.py,sha256=5A8Zgq77jsdHlEzlTW_2nDybUUVfNVVOu6BgY3TWqRM,11394
|
116
117
|
ccxt/abstract/bequant.py,sha256=OTBtNu3DQeAqAC_Lbi0NePUs-ZQQllcLrVDI2G04nwQ,15601
|
117
118
|
ccxt/abstract/bigone.py,sha256=ChHXrnz1zHqLHJn162SxjfgbO8ocQppy7lXWGsHEtcI,4887
|
118
|
-
ccxt/abstract/binance.py,sha256=
|
119
|
-
ccxt/abstract/binancecoinm.py,sha256=
|
120
|
-
ccxt/abstract/binanceus.py,sha256=
|
121
|
-
ccxt/abstract/binanceusdm.py,sha256=
|
119
|
+
ccxt/abstract/binance.py,sha256=ODgrj2iZZ8tYwBViqU07Yp921Feror77DliMdU3NLg0,96980
|
120
|
+
ccxt/abstract/binancecoinm.py,sha256=ODgrj2iZZ8tYwBViqU07Yp921Feror77DliMdU3NLg0,96980
|
121
|
+
ccxt/abstract/binanceus.py,sha256=kRrVTJ-GeDuFiMWvxsDy-pzsUyTzTSlt3F0SY2mF71Q,103642
|
122
|
+
ccxt/abstract/binanceusdm.py,sha256=ODgrj2iZZ8tYwBViqU07Yp921Feror77DliMdU3NLg0,96980
|
122
123
|
ccxt/abstract/bingx.py,sha256=Rb93j2sCYAi0egAE4TAAOG7XuC5XdHQaGQZC9V-meqQ,20662
|
123
124
|
ccxt/abstract/bit2c.py,sha256=np6i756kSB5dO3Nj6POLKxkWkpYcsGg-4LS8BwPrizI,2830
|
124
125
|
ccxt/abstract/bitbank.py,sha256=hrHsD7Uvtyy2o2lzCHau3-eNq16pnZ3-YDQ6Tq_sxYU,2735
|
@@ -151,6 +152,7 @@ ccxt/abstract/coinbase.py,sha256=GFXDh_Bf65Gsx_DmgOrRG2jpM3IdITE3Agqz_LZTJfo,155
|
|
151
152
|
ccxt/abstract/coinbaseadvanced.py,sha256=GFXDh_Bf65Gsx_DmgOrRG2jpM3IdITE3Agqz_LZTJfo,15507
|
152
153
|
ccxt/abstract/coinbaseexchange.py,sha256=eQMtsIw94xJqQO_xXmrrHdc_YFmhVZNW4OXCWv4Nx1w,7162
|
153
154
|
ccxt/abstract/coinbaseinternational.py,sha256=ic3EjzSwsOAZpMQQk2yVO8iO8_ZfkGysaiglH9sUfMc,4861
|
155
|
+
ccxt/abstract/coincatch.py,sha256=mCUMZarGuKB1EfwWeXQkRclHiye9wUIXxjghcRGQu5A,14248
|
154
156
|
ccxt/abstract/coincheck.py,sha256=3IIVmryXmzxXqi6IleUmfDZIUMOn_L_4G9Iw8BuEEGo,3417
|
155
157
|
ccxt/abstract/coinex.py,sha256=4TRXtWgONqkm3eSL55Y5T7Q4QxJrnOTuhP0ugsKHAWo,34856
|
156
158
|
ccxt/abstract/coinlist.py,sha256=t4Xc9xyWNHgHAz7nyplj8PmgrX4knA3cnk2uEJCvkQk,6538
|
@@ -181,8 +183,8 @@ ccxt/abstract/independentreserve.py,sha256=Cue0hud5acRs2Q6oSvQ7Rx-YWS_fuACs6uV3a
|
|
181
183
|
ccxt/abstract/indodax.py,sha256=E16v8W6Ac9kmV9hFEqf_kwV6VQmK74lc1LEUEkuDpYg,2488
|
182
184
|
ccxt/abstract/kraken.py,sha256=AUpdQHWHZFXseHNx1-cuLqRutYwYEUVqQ7mjc0TQR_s,5883
|
183
185
|
ccxt/abstract/krakenfutures.py,sha256=pu81cKhQgBkQd8F9-Ly3b7xQD-qQ8WLi8EUMfmAUJcM,4080
|
184
|
-
ccxt/abstract/kucoin.py,sha256=
|
185
|
-
ccxt/abstract/kucoinfutures.py,sha256=
|
186
|
+
ccxt/abstract/kucoin.py,sha256=kVrVEXiigc36arfbSS8lDUMnG7uFdKgUKHIhVb0Am_8,28626
|
187
|
+
ccxt/abstract/kucoinfutures.py,sha256=W6PBPwLtaFPMjWjTWmrmhnj348iBJywJxr-_a_YJY28,32531
|
186
188
|
ccxt/abstract/kuna.py,sha256=IsaLq8A4DUOlQ8Esyk0WqBU6hHm5Q4sIqhgnMIvDGX0,24579
|
187
189
|
ccxt/abstract/latoken.py,sha256=1GqE9WxrubgZILnYvg7W_dGyui-FKeIv0bU4z1dQj1k,7168
|
188
190
|
ccxt/abstract/lbank.py,sha256=pdut_cIcwcUhN_ZCyWJxixBc4dgeQqvENYqFCrUYrvA,8675
|
@@ -218,13 +220,13 @@ ccxt/abstract/xt.py,sha256=JkWvsic3L2O968BCr9H5Wd5NIbRE9aTT2A-9WbAtl0c,27146
|
|
218
220
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
219
221
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
220
222
|
ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
|
221
|
-
ccxt/async_support/__init__.py,sha256=
|
223
|
+
ccxt/async_support/__init__.py,sha256=V__594frlZDkcYGolWMx-vM8d_LT2NVDpzG3hVqhblU,16399
|
222
224
|
ccxt/async_support/ace.py,sha256=ucCkKaWRkILAIK9g4iEi1Q_-zmn0V89-rX8Al4WdK8s,42643
|
223
225
|
ccxt/async_support/alpaca.py,sha256=lwaRgyLZH82z1SeIF43OePicJ2v9i6a75iK7ZXb-0YE,47766
|
224
226
|
ccxt/async_support/ascendex.py,sha256=YcGVveIDir8A1rDak-DdS_qVO1yPwAUX9sRDwCVNX80,152489
|
225
227
|
ccxt/async_support/bequant.py,sha256=1hTwHovo1bW1XTIc8ZKjvJ-Xg6LfmpGdzT7TepykaVM,1188
|
226
228
|
ccxt/async_support/bigone.py,sha256=SWWpvqPTsY-eS4VTULnCLoiC2Ig2tIfG5k-7Kfbw48A,91843
|
227
|
-
ccxt/async_support/binance.py,sha256=
|
229
|
+
ccxt/async_support/binance.py,sha256=Dhr28lO2DuR2AnJD6OJYar792EpSmz2vuFBOXkwQgw4,664464
|
228
230
|
ccxt/async_support/binancecoinm.py,sha256=yeE73xG5UXD_X3VPul6DMGnV_mgJfWYskpas1BUDdCU,1740
|
229
231
|
ccxt/async_support/binanceus.py,sha256=ZkGgQGB0bWYZTz7PqBCgw22yyOZbvd7GuJAJzzgDTCA,9216
|
230
232
|
ccxt/async_support/binanceusdm.py,sha256=8ugRkx7vyYmn67wdkEEf2f-DFMGAoC4t09usKlPVNyw,2670
|
@@ -234,16 +236,16 @@ ccxt/async_support/bitbank.py,sha256=DOBazUZetD7gxURy42C3m-T-YK-zvYIkcUjHqJggkGU
|
|
234
236
|
ccxt/async_support/bitbay.py,sha256=jcaEXi2IhYTva8ezO_SfJhwxEZk7HST4J3NaxD16BQA,492
|
235
237
|
ccxt/async_support/bitbns.py,sha256=MXJsHpdjm--s_PJsaFc63ol9ybcJ7L330ED5w1bzARY,48662
|
236
238
|
ccxt/async_support/bitcoincom.py,sha256=RiqwhK3RfxQ_PXTa860fphDCvwA8dalL-_rXlK85-8A,516
|
237
|
-
ccxt/async_support/bitfinex.py,sha256=
|
239
|
+
ccxt/async_support/bitfinex.py,sha256=N5z-3DyN5OQEUdXcbDMAAhznpUTYqaOS4dQFtwmGDa8,74401
|
238
240
|
ccxt/async_support/bitfinex2.py,sha256=QSp4PkXhNkTMHEILoQH8UipJ4EgPzNSHiDfI9y5QH7w,161559
|
239
|
-
ccxt/async_support/bitflyer.py,sha256=
|
241
|
+
ccxt/async_support/bitflyer.py,sha256=Mog9b-SSkZ-MEnIIO5kgxiIFJ4BVsBupHTIZwJyCi2c,44287
|
240
242
|
ccxt/async_support/bitget.py,sha256=gmXaxFdSmxmiBje_y5B7_Rr5NYonPIrW8BGUbBfAmw0,433732
|
241
243
|
ccxt/async_support/bithumb.py,sha256=Q0Cx_cRKZRfdpBAhQyINm63Qw3M6BRYQRiF0UqYzfis,48214
|
242
244
|
ccxt/async_support/bitmart.py,sha256=WNfWDZvw8lgzC8WGvuR67-07uqtt_woyfVPeua3IhXQ,223089
|
243
245
|
ccxt/async_support/bitmex.py,sha256=j9ohrBbNDcfR67QnPuuqrqz3pxEHpVtb0WhRKPPCYQ8,127985
|
244
246
|
ccxt/async_support/bitopro.py,sha256=uWrH_HdRkf0UCs-N_JE1hCN6eWYWwXpc8VXMb0niM78,69762
|
245
247
|
ccxt/async_support/bitpanda.py,sha256=2k3URBWrpnh2xHa7JiYenI7_4MW5UeOPGzetlmRkR4U,485
|
246
|
-
ccxt/async_support/bitrue.py,sha256=
|
248
|
+
ccxt/async_support/bitrue.py,sha256=ymqJnYEAEkAiRZW4ZOBVJRGLyQz-7nsjoV7IHSRvqlk,137184
|
247
249
|
ccxt/async_support/bitso.py,sha256=tOH9mzu5fh-eI1D5p4hFRGXcKH2sHDNt1kdzcbFngKk,72142
|
248
250
|
ccxt/async_support/bitstamp.py,sha256=zDgKXyHsLLPYg7SlKrpxs6BNjPgM5QtUo38Yuyp1txQ,93937
|
249
251
|
ccxt/async_support/bitteam.py,sha256=vPMTVr0bDCd5okV_tFA9gVVW4a5NmsabvEplOm2-uOo,102596
|
@@ -255,14 +257,15 @@ ccxt/async_support/btcalpha.py,sha256=8OefA3GsJ27eAL44yQQcRNOruHXAwTemjTPkpLKwjE
|
|
255
257
|
ccxt/async_support/btcbox.py,sha256=rBXxuvdQaku5QYseQ4XSvMrCkohDefYmf-rGeS9W0IU,28004
|
256
258
|
ccxt/async_support/btcmarkets.py,sha256=fTf_MDIM7NMwpbv6X5lYPLNg8tFKcviNiUB7N3yO6FI,53083
|
257
259
|
ccxt/async_support/btcturk.py,sha256=Uq9rXMoDkXIy0nw1rzmw2e8eeRepcNtXKNYuw-02tkM,37242
|
258
|
-
ccxt/async_support/bybit.py,sha256=
|
259
|
-
ccxt/async_support/cex.py,sha256=
|
260
|
-
ccxt/async_support/coinbase.py,sha256=
|
260
|
+
ccxt/async_support/bybit.py,sha256=bNtMVKetaJRbRKxN0nUN5pbhsjfjFhULZaiwvOF7GqU,451347
|
261
|
+
ccxt/async_support/cex.py,sha256=drh5l7Am4uhEmgkffSIUmcWEVo_fOFg2ZejO_yBuYnI,68362
|
262
|
+
ccxt/async_support/coinbase.py,sha256=jBw648koFnfmvb9y1CKrAp9I9ZFD8mBk7MJ6ojBw9i4,219879
|
261
263
|
ccxt/async_support/coinbaseadvanced.py,sha256=Kupwnuxiu_qTjwCNV2asacoDUNFQvcaHNAznUJPhdQs,552
|
262
|
-
ccxt/async_support/coinbaseexchange.py,sha256=
|
264
|
+
ccxt/async_support/coinbaseexchange.py,sha256=LgswQGPBKM2FZ3qeQCXxf4_88mp_r90rGwh4RZEdOJs,79677
|
263
265
|
ccxt/async_support/coinbaseinternational.py,sha256=lkBNMcyDi6V_ilZ3co-33wTHVsyn87XDdXiW8ItUKZw,98123
|
266
|
+
ccxt/async_support/coincatch.py,sha256=p3UWNXDSQpBVB8yfGQXx3E4nkDcNz4eMPolrh6WdKYM,241923
|
264
267
|
ccxt/async_support/coincheck.py,sha256=N_0cDMAiFRC4G--QgOmSH8esKDr_lEVZUpukc4QoHk8,36148
|
265
|
-
ccxt/async_support/coinex.py,sha256=
|
268
|
+
ccxt/async_support/coinex.py,sha256=U9nRX2ZsvQRqV7I5b-jyintNy5pA2Bad8lOokXt0l-M,262894
|
266
269
|
ccxt/async_support/coinlist.py,sha256=VOqcXFP1fpK5vXKALS8GcioZhb1o-VvhpOUym594xl8,104761
|
267
270
|
ccxt/async_support/coinmate.py,sha256=NI58zYMkuOL9lB3UFzyjUNbuFZGrtjZbb4PBFTOsbz4,46456
|
268
271
|
ccxt/async_support/coinmetro.py,sha256=7Ao4bkTg4xR1vD9EB9y9oI65_s5fXPB6u9k2wP9gSwo,80967
|
@@ -276,7 +279,7 @@ ccxt/async_support/deribit.py,sha256=HEqDGpYgre-vZyb5wr1RzjiZ_ZSeY29geRMWSxga9dw
|
|
276
279
|
ccxt/async_support/digifinex.py,sha256=RaYiL8nPU0HkyJ0XxkZBBTJ36JBGRmmjcFvHxlKN7ug,171987
|
277
280
|
ccxt/async_support/exmo.py,sha256=HNrYN1fOnvhB26u-epXzK2xs3AqPUAgTmdRTtFu-dzw,115409
|
278
281
|
ccxt/async_support/fmfwio.py,sha256=lzfSnPrB2ARcC3EIqAuBM4vyg6LJ6n8RE71Zvt3ez1s,1250
|
279
|
-
ccxt/async_support/gate.py,sha256=
|
282
|
+
ccxt/async_support/gate.py,sha256=ZCArwuNHQdZ3yWCVRgRl-6RD0mQ0ou_Qwb6UsVZ1d60,344553
|
280
283
|
ccxt/async_support/gateio.py,sha256=6_t032F9p9x5KGTjtSuqGXITzFOx-XAQBYLpsuQjzxw,459
|
281
284
|
ccxt/async_support/gemini.py,sha256=gy0ALSeHrenXa2aJoAW1alVOgF6rUNxUoydX5Degikc,81580
|
282
285
|
ccxt/async_support/hashkey.py,sha256=XaSBqm0eh3R_2HCbOCZWaLuqJwVg5DJbttvfFYJpNZA,192990
|
@@ -286,25 +289,25 @@ ccxt/async_support/hollaex.py,sha256=k_KeUA5jEiyA7ypOAZsYL4RBonNG6dYxb50mpvWw_qQ
|
|
286
289
|
ccxt/async_support/htx.py,sha256=0zrK5pkUnMUSfCoZcsEH2pparnzjHgeBCHedmChPPsg,438335
|
287
290
|
ccxt/async_support/huobi.py,sha256=fup0j6wQ1khAtfbb1H4CSyJAOzhxuoHMmrM6sgTuhr8,452
|
288
291
|
ccxt/async_support/huobijp.py,sha256=4Pj8qPn2xzzyvdsy08gnbiF-eSKXQNT0p6VIOVkpisM,90241
|
289
|
-
ccxt/async_support/hyperliquid.py,sha256=
|
292
|
+
ccxt/async_support/hyperliquid.py,sha256=kHceKSc0j6BqTjhENg1RKFHvp9YtJdqMOhZBaS2qmVU,124103
|
290
293
|
ccxt/async_support/idex.py,sha256=kZiSqurgNeXRJC5CQmc_wyIMXn-6c1oL4lJL1PW1l8U,73783
|
291
294
|
ccxt/async_support/independentreserve.py,sha256=3gzNdxXGdCm5JqGjE1vG6kTSsW2PWvCPE2xBgvqPW6s,38197
|
292
295
|
ccxt/async_support/indodax.py,sha256=_7AbcJJmBSPMQ1E-mqOoQJXTjIXldItRMDFCdwhvFuA,55106
|
293
296
|
ccxt/async_support/kraken.py,sha256=F1NRf8PFqrzM-XQzf81sjpAER8mz1aYIgP4M5kO_DfQ,136560
|
294
297
|
ccxt/async_support/krakenfutures.py,sha256=Wcry7ar4Esbi_3Urp8LcnzPMsThN6KcdU6QN5YMxDCk,120327
|
295
|
-
ccxt/async_support/kucoin.py,sha256=
|
298
|
+
ccxt/async_support/kucoin.py,sha256=2DTXzqD1CiOe6dHVnlSrOo7ac--0c5sRhcTQBSfibmM,230744
|
296
299
|
ccxt/async_support/kucoinfutures.py,sha256=nFgYl7bvdmlFW8KYwD1sR6pOVDQSUMwc1hjkR3R4qVI,140215
|
297
300
|
ccxt/async_support/kuna.py,sha256=_8S74LqI1c5zbCbaSfJgUsVyqus9gB2OV9s3UMXkzYQ,96490
|
298
|
-
ccxt/async_support/latoken.py,sha256
|
301
|
+
ccxt/async_support/latoken.py,sha256=-68CNWWPJlSG52d62wQdK7x2wE7lv1mB4PUGqQnKlw8,80270
|
299
302
|
ccxt/async_support/lbank.py,sha256=Xc-lvLvb1VRCMOZefhegLOKXal_EDNo90ed7RKNC8Is,116978
|
300
303
|
ccxt/async_support/luno.py,sha256=WRQ5uH3Wr1HHZa9ZtcWCYdrmz-Y8proS5XOGZpBtiZo,46691
|
301
304
|
ccxt/async_support/lykke.py,sha256=E5n93dUuUShGO8wXogPMQkotguYpJFWM12aT_lTwEoM,51864
|
302
305
|
ccxt/async_support/mercado.py,sha256=mb7ULqvEr9PQ7jBOpQxiufgYzwTeAfr0G2NZmrUeUgs,35952
|
303
|
-
ccxt/async_support/mexc.py,sha256=
|
306
|
+
ccxt/async_support/mexc.py,sha256=HD_byINap75p-qovQ0lKO7FEj417e3T6-aFyJS5TZVY,254253
|
304
307
|
ccxt/async_support/ndax.py,sha256=V157f9E_-NzmEwRxCpxN9Th_9TIlU9EJOgRYxLfss9E,110954
|
305
308
|
ccxt/async_support/novadax.py,sha256=YNKUM1CGFK7lpBwbxSSL1IAEJCRVsNxeITkwtw6VWCM,64804
|
306
|
-
ccxt/async_support/oceanex.py,sha256=
|
307
|
-
ccxt/async_support/okcoin.py,sha256=
|
309
|
+
ccxt/async_support/oceanex.py,sha256=14GTNBSfg7e04hn4noXy23x-rSiTt5bstAZE0kJTPLk,41610
|
310
|
+
ccxt/async_support/okcoin.py,sha256=PQ1M5Xqg5QI1aYszo-_8k7hn1wHLL_aVYoU8lVgiqho,151875
|
308
311
|
ccxt/async_support/okx.py,sha256=OuPpE9w8MX4kG36hje5P-Ny1pfqbvkIcvixZCtsTnfw,389573
|
309
312
|
ccxt/async_support/onetrading.py,sha256=FNOJlpBOGHu51EKhdFJPxNNHWPTIw_OcVzBf83UlR-w,88932
|
310
313
|
ccxt/async_support/oxfun.py,sha256=26g7I24m8le35qcEqFVZGfiEv3sP3pOIu53724Bz5k0,125419
|
@@ -312,7 +315,7 @@ ccxt/async_support/p2b.py,sha256=VKUX8u7gtHkKDwBjAyskScm2FEs6xxDuKLXE-jSHXwY,545
|
|
312
315
|
ccxt/async_support/paradex.py,sha256=e46UVIJU0WlwE1sPb6rvs0f60S6vjcdnNXhG2locNUY,86275
|
313
316
|
ccxt/async_support/paymium.py,sha256=f-MjNo1HrLTMaMk7CcRGEzj-94ynqeNvIVMNjKbwqtI,24740
|
314
317
|
ccxt/async_support/phemex.py,sha256=iXDeZa2LgnGcURLrj-RVTwUv1IBYDKJUD4pv1S8nhbs,227735
|
315
|
-
ccxt/async_support/poloniex.py,sha256=
|
318
|
+
ccxt/async_support/poloniex.py,sha256=ROCIp3S8AS2-2LXjMfe1qOX8LfnZoiLs0wawqu4erkU,103287
|
316
319
|
ccxt/async_support/poloniexfutures.py,sha256=g3UO7uueR0KtJbkG3O88UsSTsU2IqwTqlIdzo9wY6mM,80443
|
317
320
|
ccxt/async_support/probit.py,sha256=UruCE3NPDPXM2VoWa8Rk6vy5wEPM9wauOLd3RvGGmk8,76726
|
318
321
|
ccxt/async_support/timex.py,sha256=qDoEICGWZ7sGFtjXBEJnTDUuEMdZz7seUkQ9_tsyr90,72372
|
@@ -326,11 +329,11 @@ ccxt/async_support/whitebit.py,sha256=Qoh7p4WO6f3nmBRi6-MCDrfVeAyd82mfWTAmCaMD2m
|
|
326
329
|
ccxt/async_support/woo.py,sha256=XnCo3jreMU5V1h5m67eggf_2YLpo0WNlJxDA5Mk60TI,156398
|
327
330
|
ccxt/async_support/woofipro.py,sha256=1E3qKrbpJGevjTx8dMij3C3e_-jvRu53_uVl9j5O9Fg,117793
|
328
331
|
ccxt/async_support/xt.py,sha256=Ycs3FYlXFYZEHZ3XEidri6G29n7aRqKiwhn8YjttfG8,205015
|
329
|
-
ccxt/async_support/yobit.py,sha256=
|
332
|
+
ccxt/async_support/yobit.py,sha256=gMA6Fy7hbcF6ztNBbuow_pW6cwui5n2TWE8RRKMmls0,55702
|
330
333
|
ccxt/async_support/zaif.py,sha256=-ZTr8M2JaIRCL90VrbCDXBMAsZwbiwsFChSQ2rWODuQ,29044
|
331
334
|
ccxt/async_support/zonda.py,sha256=Z4gA6o0bF_4MarQ5KiR2Zwi2wpmOuZTHS1JChAtNWjo,83114
|
332
335
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
333
|
-
ccxt/async_support/base/exchange.py,sha256=
|
336
|
+
ccxt/async_support/base/exchange.py,sha256=4jvFhAYNDbGPAZLf1d7BEOFtRfSWaozZ1bpmwfcj8Eg,114218
|
334
337
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
335
338
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
336
339
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
|
@@ -344,10 +347,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
|
|
344
347
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
345
348
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
346
349
|
ccxt/base/errors.py,sha256=Pad-6ugvGUwhoYuKUliX-N7FTrcnKCQGFjsaq2tMn0I,4610
|
347
|
-
ccxt/base/exchange.py,sha256=
|
350
|
+
ccxt/base/exchange.py,sha256=ZszPexbujHFZXAmpU1-XrFrO7fGYmfOvgdo20QYRCu0,303646
|
348
351
|
ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
349
352
|
ccxt/base/types.py,sha256=5VRXAPPjQe2D7wjlzklrE8eGwAhllB-KXehglgHeu7s,10199
|
350
|
-
ccxt/pro/__init__.py,sha256=
|
353
|
+
ccxt/pro/__init__.py,sha256=0wG2YXnft4UMa77buzSXW8cJjFbe6vTIv-sIelGN21s,7925
|
351
354
|
ccxt/pro/alpaca.py,sha256=xh1yg1Ok-Zh_Mfx-MBjNrfJDs6MUU0exFfEj3GuQPC4,27631
|
352
355
|
ccxt/pro/ascendex.py,sha256=QueLgISoIxgGSOta2W7En4pwAsEXbTP5q5ef4UjpTQQ,37524
|
353
356
|
ccxt/pro/bequant.py,sha256=33OEUWBi4D9-2w8CmkwN3aF1qS-AlLqX3pxrWwNbXPY,1552
|
@@ -376,6 +379,7 @@ ccxt/pro/coinbase.py,sha256=hwd8lUuaW8WyQQOh9WvBVuiuOJTpmlCXU0hL3UE8UFQ,31411
|
|
376
379
|
ccxt/pro/coinbaseadvanced.py,sha256=Ohg1LAJbfQ7Df7cazejupZ6QeOs5eddvNolAD6ssKIA,474
|
377
380
|
ccxt/pro/coinbaseexchange.py,sha256=eoDBwYvGK__zGtC0yNRk2evWwQAD6XpjMHcpubjBt2U,39027
|
378
381
|
ccxt/pro/coinbaseinternational.py,sha256=1ykwnp6XaOqvH0HILlZvrJdgvscF2lnZfIyn5U9tqWY,32250
|
382
|
+
ccxt/pro/coincatch.py,sha256=P8N7DA6ZULo6uKrL7acrbawCyr_WqXJWCnaDMr4K-oA,62149
|
379
383
|
ccxt/pro/coincheck.py,sha256=zzZcPmL4Vibh_Sjont-3D8z-E11ugVQVqPakHQxpgKs,7851
|
380
384
|
ccxt/pro/coinex.py,sha256=oONeBMtz9ylneI3vxrbf6Wt00JGey2nV1Q64O9FRHbU,56380
|
381
385
|
ccxt/pro/coinone.py,sha256=XxJeMDbg3tSDoC3H8p9y7MB_yBR3ZN6PiQyEGaziAZs,15734
|
@@ -397,7 +401,7 @@ ccxt/pro/idex.py,sha256=WAY58yMHFUPoqZUGFvzxqcKizvMuFXqdZ6BD0WgstQA,28361
|
|
397
401
|
ccxt/pro/independentreserve.py,sha256=JWMjJ0FUs4LhybAZ4rjHMQIWeOu5Njaj8aVimA7kf30,11356
|
398
402
|
ccxt/pro/kraken.py,sha256=alloCzXC0EvYoAWLf0osOAcDOHAYA1uRM2f5k-wap9k,66576
|
399
403
|
ccxt/pro/krakenfutures.py,sha256=XHIOW-xXi5ROvSArUxTmTXsUGNiRjm2oCwf5OAMY7bk,64158
|
400
|
-
ccxt/pro/kucoin.py,sha256=
|
404
|
+
ccxt/pro/kucoin.py,sha256=X-QRc5OMKiL0t6d97PISPEell1DbZJyYPPK6Hr4bvb8,61066
|
401
405
|
ccxt/pro/kucoinfutures.py,sha256=DU5vLB0Oufffcn1Rv-aYqpV9Mx7gGlRdi7YC9hNO8sw,56277
|
402
406
|
ccxt/pro/lbank.py,sha256=p6Ynjmud9B3Yw1SGTPdTB36AW4KtyR1JOotqFBdyyxs,35083
|
403
407
|
ccxt/pro/luno.py,sha256=ThXkXNrLvp9BW8XXxRcbpRaw9QcLCS2f2tCqbF6qpEU,12384
|
@@ -405,7 +409,7 @@ ccxt/pro/mexc.py,sha256=kVw1d5lOJlvU9lyo3545EM3j1sck3Gr5A3qznBH04Dk,50361
|
|
405
409
|
ccxt/pro/ndax.py,sha256=De7ohX5Dp2PSfFmt50mGH9cB9Me53Wb-B8S6N4_Flvk,22979
|
406
410
|
ccxt/pro/okcoin.py,sha256=h8niyeq67h-oBmxiMMy2JdNgOI0fBQuEC3QdUW4-NFs,31048
|
407
411
|
ccxt/pro/okx.py,sha256=oyxKHLODZk80HBFEr5oKkIP4XI6XEeaHeIu4EqZHwTo,104042
|
408
|
-
ccxt/pro/onetrading.py,sha256=
|
412
|
+
ccxt/pro/onetrading.py,sha256=JC3sm44r8XCciKg4CcnTrlhKbZAGiOqxO-5PEcSQPTk,54849
|
409
413
|
ccxt/pro/oxfun.py,sha256=-O1xdbfnF5Q3lC16vxc4J2NnYMhAGbafiOZTn0yEsVE,46741
|
410
414
|
ccxt/pro/p2b.py,sha256=S-gzeaSOW_WBZdsllE75RuxCi9KGnJ25trlCt1OG0Z8,20919
|
411
415
|
ccxt/pro/paradex.py,sha256=3YzYqrGXHvaRBA_r2zwUHVKyFI3CV_ZhCekca_K1jyw,14431
|
@@ -647,12 +651,12 @@ ccxt/static_dependencies/toolz/curried/operator.py,sha256=ML92mknkAwzBl2NCm-4wer
|
|
647
651
|
ccxt/static_dependencies/typing_inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
648
652
|
ccxt/static_dependencies/typing_inspect/typing_inspect.py,sha256=5gIWomLPfuDpgd3gX1GlnX0MuXM3VorR4j2W2qXORiQ,28269
|
649
653
|
ccxt/test/__init__.py,sha256=GKPbEcj0Rrz5HG-GUm-iY1IHhDYmlvcBXZAGk6-m2CI,141
|
650
|
-
ccxt/test/tests_async.py,sha256=
|
654
|
+
ccxt/test/tests_async.py,sha256=8TdpWiswLAVMF85CVBfMRqt8lFByr1Su7w5IgZ_w72w,86205
|
651
655
|
ccxt/test/tests_helpers.py,sha256=z5TiaK0WyUCmM_uGTFz7cgMNqNwG_SMI9qk7yec5ces,9693
|
652
656
|
ccxt/test/tests_init.py,sha256=GodMIrJue4KBHHqD4vSPZxokPWpxbZIuEp19UdxlFAg,1166
|
653
|
-
ccxt/test/tests_sync.py,sha256=
|
654
|
-
ccxt-4.4.
|
655
|
-
ccxt-4.4.
|
656
|
-
ccxt-4.4.
|
657
|
-
ccxt-4.4.
|
658
|
-
ccxt-4.4.
|
657
|
+
ccxt/test/tests_sync.py,sha256=EEc20Cjl7u-EJ6S-lR0VXJmjpX1ew-oRS7uYceVxQ4A,85249
|
658
|
+
ccxt-4.4.24.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
659
|
+
ccxt-4.4.24.dist-info/METADATA,sha256=5O7vAb3_nD2kh72Ux81-HYev9XqoXhDh6NJJG1DPbnU,115162
|
660
|
+
ccxt-4.4.24.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
661
|
+
ccxt-4.4.24.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
662
|
+
ccxt-4.4.24.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|