ccxt 4.3.74__py2.py3-none-any.whl → 4.3.76__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 +1 -1
- ccxt/abstract/bitmart.py +2 -0
- ccxt/abstract/bybit.py +1 -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 +1 -1
- ccxt/async_support/bitmart.py +143 -82
- ccxt/async_support/bybit.py +30 -5
- ccxt/async_support/coinbase.py +8 -4
- ccxt/async_support/gemini.py +1 -0
- ccxt/async_support/htx.py +4 -0
- ccxt/async_support/mexc.py +1 -1
- ccxt/async_support/whitebit.py +17 -2
- ccxt/base/exchange.py +2 -1
- ccxt/binance.py +1 -1
- ccxt/bitmart.py +143 -82
- ccxt/bybit.py +30 -5
- ccxt/coinbase.py +8 -4
- ccxt/gemini.py +1 -0
- ccxt/htx.py +4 -0
- ccxt/mexc.py +1 -1
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/binance.py +24 -0
- ccxt/pro/bitmart.py +9 -8
- ccxt/pro/bybit.py +2 -2
- ccxt/whitebit.py +17 -2
- {ccxt-4.3.74.dist-info → ccxt-4.3.76.dist-info}/METADATA +4 -4
- {ccxt-4.3.74.dist-info → ccxt-4.3.76.dist-info}/RECORD +32 -32
- {ccxt-4.3.74.dist-info → ccxt-4.3.76.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.3.74.dist-info → ccxt-4.3.76.dist-info}/WHEEL +0 -0
- {ccxt-4.3.74.dist-info → ccxt-4.3.76.dist-info}/top_level.txt +0 -0
ccxt/coinbase.py
CHANGED
@@ -277,8 +277,8 @@ class coinbase(Exchange, ImplicitAPI):
|
|
277
277
|
},
|
278
278
|
'fees': {
|
279
279
|
'trading': {
|
280
|
-
'taker': self.parse_number('0.
|
281
|
-
'maker': self.parse_number('0.
|
280
|
+
'taker': self.parse_number('0.012'),
|
281
|
+
'maker': self.parse_number('0.006'), # {"pricing_tier":"Advanced 1","usd_from":"0","usd_to":"1000","taker_fee_rate":"0.012","maker_fee_rate":"0.006","aop_from":"","aop_to":""}
|
282
282
|
'tierBased': True,
|
283
283
|
'percentage': True,
|
284
284
|
'tiers': {
|
@@ -1326,6 +1326,10 @@ class coinbase(Exchange, ImplicitAPI):
|
|
1326
1326
|
marketType = self.safe_string_lower(market, 'product_type')
|
1327
1327
|
tradingDisabled = self.safe_bool(market, 'trading_disabled')
|
1328
1328
|
stablePairs = self.safe_list(self.options, 'stablePairs', [])
|
1329
|
+
defaultTakerFee = self.safe_number(self.fees['trading'], 'taker')
|
1330
|
+
defaultMakerFee = self.safe_number(self.fees['trading'], 'maker')
|
1331
|
+
takerFee = 0.00001 if self.in_array(id, stablePairs) else self.safe_number(feeTier, 'taker_fee_rate', defaultTakerFee)
|
1332
|
+
makerFee = 0.0 if self.in_array(id, stablePairs) else self.safe_number(feeTier, 'maker_fee_rate', defaultMakerFee)
|
1329
1333
|
return self.safe_market_structure({
|
1330
1334
|
'id': id,
|
1331
1335
|
'symbol': base + '/' + quote,
|
@@ -1345,8 +1349,8 @@ class coinbase(Exchange, ImplicitAPI):
|
|
1345
1349
|
'contract': False,
|
1346
1350
|
'linear': None,
|
1347
1351
|
'inverse': None,
|
1348
|
-
'taker':
|
1349
|
-
'maker':
|
1352
|
+
'taker': takerFee,
|
1353
|
+
'maker': makerFee,
|
1350
1354
|
'contractSize': None,
|
1351
1355
|
'expiry': None,
|
1352
1356
|
'expiryDatetime': None,
|
ccxt/gemini.py
CHANGED
ccxt/htx.py
CHANGED
@@ -5750,6 +5750,7 @@ class htx(Exchange, ImplicitAPI):
|
|
5750
5750
|
|
5751
5751
|
def fetch_deposit_addresses_by_network(self, code: str, params={}):
|
5752
5752
|
"""
|
5753
|
+
:see: https://www.htx.com/en-us/opend/newApiPages/?id=7ec50029-7773-11ed-9966-0242ac110003
|
5753
5754
|
fetch a dictionary of addresses for a currency, indexed by network
|
5754
5755
|
:param str code: unified currency code of the currency for the deposit address
|
5755
5756
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -5780,6 +5781,7 @@ class htx(Exchange, ImplicitAPI):
|
|
5780
5781
|
|
5781
5782
|
def fetch_deposit_address(self, code: str, params={}):
|
5782
5783
|
"""
|
5784
|
+
:see: https://www.htx.com/en-us/opend/newApiPages/?id=7ec50029-7773-11ed-9966-0242ac110003
|
5783
5785
|
fetch the deposit address for a currency associated with self account
|
5784
5786
|
:param str code: unified currency code
|
5785
5787
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -5826,6 +5828,7 @@ class htx(Exchange, ImplicitAPI):
|
|
5826
5828
|
|
5827
5829
|
def fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
|
5828
5830
|
"""
|
5831
|
+
:see: https://www.htx.com/en-us/opend/newApiPages/?id=7ec4f050-7773-11ed-9966-0242ac110003
|
5829
5832
|
fetch all deposits made to an account
|
5830
5833
|
:param str code: unified currency code
|
5831
5834
|
:param int [since]: the earliest time in ms to fetch deposits for
|
@@ -6045,6 +6048,7 @@ class htx(Exchange, ImplicitAPI):
|
|
6045
6048
|
|
6046
6049
|
def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
6047
6050
|
"""
|
6051
|
+
:see: https://www.htx.com/en-us/opend/newApiPages/?id=7ec4cc41-7773-11ed-9966-0242ac110003
|
6048
6052
|
make a withdrawal
|
6049
6053
|
:param str code: unified currency code
|
6050
6054
|
:param float amount: the amount to withdraw
|
ccxt/mexc.py
CHANGED
@@ -4908,7 +4908,7 @@ class mexc(Exchange, ImplicitAPI):
|
|
4908
4908
|
networks = self.safe_dict(self.options, 'networks', {})
|
4909
4909
|
network = self.safe_string_2(params, 'network', 'netWork') # self line allows the user to specify either ERC20 or ETH
|
4910
4910
|
network = self.safe_string(networks, network, network) # handle ETH > ERC-20 alias
|
4911
|
-
network = self.
|
4911
|
+
network = self.network_id_to_code(network)
|
4912
4912
|
self.check_address(address)
|
4913
4913
|
self.load_markets()
|
4914
4914
|
currency = self.currency(code)
|
ccxt/pro/__init__.py
CHANGED
ccxt/pro/binance.py
CHANGED
@@ -513,6 +513,12 @@ class binance(ccxt.async_support.binance):
|
|
513
513
|
|
514
514
|
async def watch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
515
515
|
"""
|
516
|
+
:see: https://binance-docs.github.io/apidocs/spot/en/#partial-book-depth-streams
|
517
|
+
:see: https://binance-docs.github.io/apidocs/spot/en/#diff-depth-stream
|
518
|
+
:see: https://binance-docs.github.io/apidocs/futures/en/#partial-book-depth-streams
|
519
|
+
:see: https://binance-docs.github.io/apidocs/futures/en/#diff-book-depth-streams
|
520
|
+
:see: https://binance-docs.github.io/apidocs/delivery/en/#partial-book-depth-streams
|
521
|
+
:see: https://binance-docs.github.io/apidocs/delivery/en/#diff-book-depth-streams
|
516
522
|
watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
517
523
|
:param str symbol: unified symbol of the market to fetch the order book for
|
518
524
|
:param int [limit]: the maximum amount of order book entries to return
|
@@ -560,6 +566,12 @@ class binance(ccxt.async_support.binance):
|
|
560
566
|
|
561
567
|
async def watch_order_book_for_symbols(self, symbols: List[str], limit: Int = None, params={}) -> OrderBook:
|
562
568
|
"""
|
569
|
+
:see: https://binance-docs.github.io/apidocs/spot/en/#partial-book-depth-streams
|
570
|
+
:see: https://binance-docs.github.io/apidocs/spot/en/#diff-depth-stream
|
571
|
+
:see: https://binance-docs.github.io/apidocs/futures/en/#partial-book-depth-streams
|
572
|
+
:see: https://binance-docs.github.io/apidocs/futures/en/#diff-book-depth-streams
|
573
|
+
:see: https://binance-docs.github.io/apidocs/delivery/en/#partial-book-depth-streams
|
574
|
+
:see: https://binance-docs.github.io/apidocs/delivery/en/#diff-book-depth-streams
|
563
575
|
watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
564
576
|
:param str[] symbols: unified array of symbols
|
565
577
|
:param int [limit]: the maximum amount of order book entries to return
|
@@ -1373,6 +1385,12 @@ class binance(ccxt.async_support.binance):
|
|
1373
1385
|
|
1374
1386
|
async def watch_ticker(self, symbol: str, params={}) -> Ticker:
|
1375
1387
|
"""
|
1388
|
+
:see: https://binance-docs.github.io/apidocs/spot/en/#individual-symbol-mini-ticker-stream
|
1389
|
+
:see: https://binance-docs.github.io/apidocs/spot/en/#individual-symbol-ticker-streams
|
1390
|
+
:see: https://binance-docs.github.io/apidocs/futures/en/#all-market-mini-tickers-stream
|
1391
|
+
:see: https://binance-docs.github.io/apidocs/futures/en/#individual-symbol-ticker-streams
|
1392
|
+
:see: https://binance-docs.github.io/apidocs/delivery/en/#all-market-mini-tickers-stream
|
1393
|
+
:see: https://binance-docs.github.io/apidocs/delivery/en/#individual-symbol-ticker-streams
|
1376
1394
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
1377
1395
|
:param str symbol: unified symbol of the market to fetch the ticker for
|
1378
1396
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1386,6 +1404,12 @@ class binance(ccxt.async_support.binance):
|
|
1386
1404
|
|
1387
1405
|
async def watch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
1388
1406
|
"""
|
1407
|
+
:see: https://binance-docs.github.io/apidocs/spot/en/#individual-symbol-mini-ticker-stream
|
1408
|
+
:see: https://binance-docs.github.io/apidocs/spot/en/#individual-symbol-ticker-streams
|
1409
|
+
:see: https://binance-docs.github.io/apidocs/futures/en/#all-market-mini-tickers-stream
|
1410
|
+
:see: https://binance-docs.github.io/apidocs/futures/en/#individual-symbol-ticker-streams
|
1411
|
+
:see: https://binance-docs.github.io/apidocs/delivery/en/#all-market-mini-tickers-stream
|
1412
|
+
:see: https://binance-docs.github.io/apidocs/delivery/en/#individual-symbol-ticker-streams
|
1389
1413
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for all markets of a specific list
|
1390
1414
|
:param str[] symbols: unified symbol of the market to fetch the ticker for
|
1391
1415
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
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
@@ -170,7 +170,7 @@ class bybit(ccxt.async_support.bybit):
|
|
170
170
|
else:
|
171
171
|
if isSpot:
|
172
172
|
url = url[accessibility]['spot']
|
173
|
-
elif type == 'swap':
|
173
|
+
elif (type == 'swap') or (type == 'future'):
|
174
174
|
subType = None
|
175
175
|
subType, params = self.handle_sub_type_and_params(method, market, params, 'linear')
|
176
176
|
url = url[accessibility][subType]
|
@@ -1923,7 +1923,7 @@ class bybit(ccxt.async_support.bybit):
|
|
1923
1923
|
if event == 'sub':
|
1924
1924
|
self.handle_subscription_status(client, message)
|
1925
1925
|
return
|
1926
|
-
topic = self.safe_string_2(message, 'topic', 'op')
|
1926
|
+
topic = self.safe_string_2(message, 'topic', 'op', '')
|
1927
1927
|
methods: dict = {
|
1928
1928
|
'orderbook': self.handle_order_book,
|
1929
1929
|
'kline': self.handle_ohlcv,
|
ccxt/whitebit.py
CHANGED
@@ -794,8 +794,23 @@ class whitebit(Exchange, ImplicitAPI):
|
|
794
794
|
# "change": "2.12" # in percent
|
795
795
|
# }
|
796
796
|
#
|
797
|
+
# WS market_update
|
798
|
+
#
|
799
|
+
# {
|
800
|
+
# "open": "52853.04",
|
801
|
+
# "close": "55913.88",
|
802
|
+
# "high": "56272",
|
803
|
+
# "low": "49549.67",
|
804
|
+
# "volume": "57331.067185",
|
805
|
+
# "deal": "3063860382.42985338",
|
806
|
+
# "last": "55913.88",
|
807
|
+
# "period": 86400
|
808
|
+
# }
|
797
809
|
market = self.safe_market(None, market)
|
798
|
-
last
|
810
|
+
# last price is provided as "last" or "last_price"
|
811
|
+
last = self.safe_string_2(ticker, 'last', 'last_price')
|
812
|
+
# if "close" is provided, use it, otherwise use <last>
|
813
|
+
close = self.safe_string(ticker, 'close', last)
|
799
814
|
return self.safe_ticker({
|
800
815
|
'symbol': market['symbol'],
|
801
816
|
'timestamp': None,
|
@@ -808,7 +823,7 @@ class whitebit(Exchange, ImplicitAPI):
|
|
808
823
|
'askVolume': None,
|
809
824
|
'vwap': None,
|
810
825
|
'open': self.safe_string(ticker, 'open'),
|
811
|
-
'close':
|
826
|
+
'close': close,
|
812
827
|
'last': last,
|
813
828
|
'previousClose': None,
|
814
829
|
'change': None,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.76
|
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.76/dist/ccxt.browser.min.js
|
274
|
+
* unpkg: https://unpkg.com/ccxt@4.3.76/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.76/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=7NXNU4aSYrtHN1SckR2b-jnBky-s37Nq8JIQMOkqwoU,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=0Sn_5ZK5sjG1CfGYB_lEWjCzDnkdVWz_Ij7DMSFBQSc,641507
|
8
8
|
ccxt/binancecoinm.py,sha256=arFnEh8mErSyi23eVPWE4iwoT7PWQyxGGVJCKCy6UJY,1702
|
9
9
|
ccxt/binanceus.py,sha256=hdcT4OnadcdFFFjF3GtM0nWv90jqojqwdVS3xWGuW40,9163
|
10
10
|
ccxt/binanceusdm.py,sha256=bAPcJj5HLxoCdPolriM8sJpoTBwbV78vBTbKRmWhNP4,2632
|
@@ -19,7 +19,7 @@ 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
21
|
ccxt/bithumb.py,sha256=RX86U1rLrNwziswg6yPjSPzsqLau3_BwmVJZLNxjFnE,47837
|
22
|
-
ccxt/bitmart.py,sha256=
|
22
|
+
ccxt/bitmart.py,sha256=585kWTjfMbRiIHGQGH7M4DH7qJCQ9MY9upbIvJs2b6Y,211736
|
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=zEJyvXcg9yzThLuLyDSX7A_mMB1Vp-jT59yo0hGOMyQ,417211
|
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,11 +58,11 @@ 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
|
@@ -79,7 +79,7 @@ ccxt/lbank.py,sha256=Glx9CN_jdQMiUngJLYioxzwDfgFTdusdOfK53_Bg6A8,116045
|
|
79
79
|
ccxt/luno.py,sha256=mJqzQFX-DneQ6Wo0Dqfc7sG0OVmaPSKAkmRs1pM7Yj8,46191
|
80
80
|
ccxt/lykke.py,sha256=RqjZ8TXHN_Bok2gXNsJX5jgMDb7GqMbpPPqBMHiLb0E,51408
|
81
81
|
ccxt/mercado.py,sha256=LWCh89IzXu-yhPGqhkdPW6wqOqfO8nmbSQhAyYiSH8U,35710
|
82
|
-
ccxt/mexc.py,sha256=
|
82
|
+
ccxt/mexc.py,sha256=JexIe_RjsbWtC7vfcgnIwHqniIL_OSbNSirk7od5C1Q,241442
|
83
83
|
ccxt/ndax.py,sha256=K4nlroc0lE0c3wETvYt_O5sfOrHmTiknpXfMIWdafzA,108947
|
84
84
|
ccxt/novadax.py,sha256=_xFkuZ72vHhpJb1N9h_MQHRD05GDWlqUeLQQcOp43BM,64436
|
85
85
|
ccxt/oceanex.py,sha256=DrsNIW-eXvaSHCB2l1valmiU9xMztxm1VNBJodMkWIY,38021
|
@@ -101,7 +101,7 @@ ccxt/upbit.py,sha256=W_W8aETJyopwhYfZd2tWvhPvi7BjQ4KSIOdn8nzyWv8,85413
|
|
101
101
|
ccxt/vertex.py,sha256=lHM2VbZCIYS4EeJ7Y9KoZcEepF7Cue7YITItyNXLiqk,121703
|
102
102
|
ccxt/wavesexchange.py,sha256=8KrV-euIdDeARQ-h-T-nTlFJ9hk6TLuwGl8U7Xr_Lgk,114825
|
103
103
|
ccxt/wazirx.py,sha256=LVHNdononi8FrZpT0pYiJoS-NrNi7_uIZ6Qbu8dJRPc,52405
|
104
|
-
ccxt/whitebit.py,sha256=
|
104
|
+
ccxt/whitebit.py,sha256=fkM0Clt74bSiOJ_L-CehR2Gkn3v3kZksCQT0JCCG5rs,119340
|
105
105
|
ccxt/woo.py,sha256=NJejIgZqXPsVM3pIffDXbYOeaLDzFnfxR3tO3Ksf9pM,153028
|
106
106
|
ccxt/woofipro.py,sha256=JQdGizBIOXPmCHnKZsH71CfzCum1_mNCpFymV-JaX-U,115350
|
107
107
|
ccxt/xt.py,sha256=esWHEOeI7Kbm53GsZB-7Ds34yvyoJjanL_MIBvADuIE,202646
|
@@ -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
|
@@ -145,7 +145,7 @@ ccxt/abstract/btcalpha.py,sha256=sbF4SAkTJq01QPQw4D2GMkKrPhKfFIsG-PNtMAC9WwU,138
|
|
145
145
|
ccxt/abstract/btcbox.py,sha256=pifkHEayyfVN4lhO2s8oKg_wjQChwWo0g5-vw4rcm1s,931
|
146
146
|
ccxt/abstract/btcmarkets.py,sha256=dQ2yTZ_8T2TEeAYIuKE0ATImbOLDLGSK7HbbBd8XVJQ,3690
|
147
147
|
ccxt/abstract/btcturk.py,sha256=duM-QrB9MvGpopOtxkfbeYlY49bgvXQLiosRVmnQYFw,1777
|
148
|
-
ccxt/abstract/bybit.py,sha256=
|
148
|
+
ccxt/abstract/bybit.py,sha256=d2Fx_iBoe7XXsCK8mxQubRqYSz_qaVneIfD31CqAoDA,49071
|
149
149
|
ccxt/abstract/cex.py,sha256=Q0NJeDuJ4Kn_mtokYqBenhXWvLIiMSVTqbgbfcLGgv4,3311
|
150
150
|
ccxt/abstract/coinbase.py,sha256=GFXDh_Bf65Gsx_DmgOrRG2jpM3IdITE3Agqz_LZTJfo,15507
|
151
151
|
ccxt/abstract/coinbaseadvanced.py,sha256=GFXDh_Bf65Gsx_DmgOrRG2jpM3IdITE3Agqz_LZTJfo,15507
|
@@ -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=iqOt4qXg8MxeMr-Kb1oiSNVw45qZT7jtOjkeTdxKVXs,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=Bf4rSLZ0sRLQKR4dbmR0Np6zgavp7Y7KxJbB4ZE1EWM,644229
|
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
|
@@ -239,7 +239,7 @@ ccxt/async_support/bitfinex2.py,sha256=vTO61ELmw5d8A7xvmINff17pCWpoiIrVnc_RJzVic
|
|
239
239
|
ccxt/async_support/bitflyer.py,sha256=hIrGMxaM78V1i-gHN2FRFAhI2aaLR21mPAoIE33fW70,41991
|
240
240
|
ccxt/async_support/bitget.py,sha256=BT4wkYizx3UF5m0wRv0f0QVqrle2y5JXLPQD73uSjc8,426182
|
241
241
|
ccxt/async_support/bithumb.py,sha256=fDOmllkudoQ0NzTQtxwObija7ptc49m19K_1KDN9HZk,48116
|
242
|
-
ccxt/async_support/bitmart.py,sha256=
|
242
|
+
ccxt/async_support/bitmart.py,sha256=WK1nKIApqc8qq6_80_gDywedQeuPqmgPr1G9j89Plx4,212692
|
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=mZrB9aMLE2FyWsVlVui0pBqRhm_lWXjNkYAYUBzhEoM,419081
|
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,11 +278,11 @@ 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
|
@@ -299,7 +299,7 @@ ccxt/async_support/lbank.py,sha256=MeqPjECSmsplCtatu7Ns6sHRwzAGP_6S5MwB2BomnXk,1
|
|
299
299
|
ccxt/async_support/luno.py,sha256=F4t6XgboOe688S6bZCEnaF_ZEh_6f1YTqV6wRaddWo0,46529
|
300
300
|
ccxt/async_support/lykke.py,sha256=UXQmNfWucuylickY0EBbrkahAoU-68B7k1B-EBNpC00,51722
|
301
301
|
ccxt/async_support/mercado.py,sha256=mb7ULqvEr9PQ7jBOpQxiufgYzwTeAfr0G2NZmrUeUgs,35952
|
302
|
-
ccxt/async_support/mexc.py,sha256=
|
302
|
+
ccxt/async_support/mexc.py,sha256=fmaaizeaOGz1Rt-ep1HOW4XyDrAIplmcOxR4Ksi1vbU,242620
|
303
303
|
ccxt/async_support/ndax.py,sha256=M_DtH6Rtzpc8p4nwOwBkxMIf0yQNoVvRkOexcvNUK6k,109471
|
304
304
|
ccxt/async_support/novadax.py,sha256=YNKUM1CGFK7lpBwbxSSL1IAEJCRVsNxeITkwtw6VWCM,64804
|
305
305
|
ccxt/async_support/oceanex.py,sha256=85IHjCWsBZZXntKHPeuUpFYP9FV0Ik93gJsTlrGzhVA,38341
|
@@ -321,7 +321,7 @@ ccxt/async_support/upbit.py,sha256=GmhV24xdjd5NSCronYkqLCM8rr_hNdpt4NEDA5jEkLw,8
|
|
321
321
|
ccxt/async_support/vertex.py,sha256=6eOWWpuDaGHhSMkOb1CR7ZhlnaMVNWVLoIKOK_W4mT4,122203
|
322
322
|
ccxt/async_support/wavesexchange.py,sha256=kdF7Nm5a34mtgIj2HWTLuV3plt4K3EBKMpLENIxtoMk,115375
|
323
323
|
ccxt/async_support/wazirx.py,sha256=bnUpw9be3o4l2Hxm3jcfNXn5bMyZlgqoG8BGPusuIzs,52707
|
324
|
-
ccxt/async_support/whitebit.py,sha256=
|
324
|
+
ccxt/async_support/whitebit.py,sha256=haF5nFYGuJzkplHBIyLLDJ6N3ThIDPpgjeI3S-TYs98,119990
|
325
325
|
ccxt/async_support/woo.py,sha256=JjarWyUMmZ2X2UaKFhHyo-SD_mk5kYIWkYoSUdIe3g0,153996
|
326
326
|
ccxt/async_support/woofipro.py,sha256=xXfZj56dOmUZ67z7tsRiHL-XVtFlst-UXRPh6qRvrE0,116030
|
327
327
|
ccxt/async_support/xt.py,sha256=9k__X07qzgB_NwSplLfJL4_4eKtHslL8Qlfv6xBwZKU,203800
|
@@ -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=rXmbC5kt6GClBLjjqze_Flox5FpnM4quLCY3eKlussc,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=lCrQq9-iW4vBPMUaPrp1G6uPt7Mpdqh7-m0LnaKARK4,294287
|
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=eRbQaVbyAcsfNMjkqPvFpIgYYZggjoVzwoGesDgb8i0,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=sfqwhwGzkD-Vw4Rd2Ci5vw5sEDORooFlRnkCQSs7BhA,90988
|
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
|
@@ -650,8 +650,8 @@ ccxt/test/tests_async.py,sha256=NShOLO2-HzYsh07U7aiUGssiv-AZ_p88h-NuQub9OKU,8468
|
|
650
650
|
ccxt/test/tests_helpers.py,sha256=xhOILoZ_x3RSfQjtKt6AQlkp9DkOtpTQe8GAUUZoM6s,10069
|
651
651
|
ccxt/test/tests_init.py,sha256=eVwwUHujX9t4rjgo4TqEeg7DDhR1Hb_e2SJN8NVGyl0,998
|
652
652
|
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.
|
653
|
+
ccxt-4.3.76.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
654
|
+
ccxt-4.3.76.dist-info/METADATA,sha256=s-ekwAwF9ub0CKDiJdxyGcFwWpjok5wiNe3qUhyUTFU,116642
|
655
|
+
ccxt-4.3.76.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
656
|
+
ccxt-4.3.76.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
657
|
+
ccxt-4.3.76.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|