ccxt 4.3.83__py2.py3-none-any.whl → 4.3.84__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 CHANGED
@@ -22,7 +22,7 @@
22
22
 
23
23
  # ----------------------------------------------------------------------------
24
24
 
25
- __version__ = '4.3.83'
25
+ __version__ = '4.3.84'
26
26
 
27
27
  # ----------------------------------------------------------------------------
28
28
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.3.83'
7
+ __version__ = '4.3.84'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # -----------------------------------------------------------------------------
4
4
 
5
- __version__ = '4.3.83'
5
+ __version__ = '4.3.84'
6
6
 
7
7
  # -----------------------------------------------------------------------------
8
8
 
@@ -10526,7 +10526,7 @@ class binance(Exchange, ImplicitAPI):
10526
10526
  extendedParams['recvWindow'] = recvWindow
10527
10527
  if (api == 'sapi') and (path == 'asset/dust'):
10528
10528
  query = self.urlencode_with_array_repeat(extendedParams)
10529
- elif (path == 'batchOrders') or (path.find('sub-account') >= 0) or (path == 'capital/withdraw/apply') or (path.find('staking') >= 0):
10529
+ elif (path == 'batchOrders') or (path.find('sub-account') >= 0) or (path == 'capital/withdraw/apply') or (path.find('staking') >= 0) or (path.find('simple-earn') >= 0):
10530
10530
  if (method == 'DELETE') and (path == 'batchOrders'):
10531
10531
  orderidlist = self.safe_list(extendedParams, 'orderidlist', [])
10532
10532
  origclientorderidlist = self.safe_list(extendedParams, 'origclientorderidlist', [])
@@ -354,9 +354,9 @@ class bitfinex2(Exchange, ImplicitAPI):
354
354
  # convert 'EXCHANGE LIMIT' to lowercase 'limit'
355
355
  # everything else remains uppercase
356
356
  'exchangeTypes': {
357
- # 'MARKET': None,
357
+ 'MARKET': 'market',
358
358
  'EXCHANGE MARKET': 'market',
359
- # 'LIMIT': None,
359
+ 'LIMIT': 'limit',
360
360
  'EXCHANGE LIMIT': 'limit',
361
361
  # 'STOP': None,
362
362
  'EXCHANGE STOP': 'market',
@@ -2367,13 +2367,11 @@ class kraken(Exchange, ImplicitAPI):
2367
2367
  :returns dict[]: a list of `transaction structures <https://docs.ccxt.com/#/?id=transaction-structure>`
2368
2368
  """
2369
2369
  # https://www.kraken.com/en-us/help/api#deposit-status
2370
- if code is None:
2371
- raise ArgumentsRequired(self.id + ' fetchDeposits() requires a currency code argument')
2372
2370
  await self.load_markets()
2373
- currency = self.currency(code)
2374
- request: dict = {
2375
- 'asset': currency['id'],
2376
- }
2371
+ request: dict = {}
2372
+ if code is not None:
2373
+ currency = self.currency(code)
2374
+ request['asset'] = currency['id']
2377
2375
  if since is not None:
2378
2376
  request['start'] = since
2379
2377
  response = await self.privatePostDepositStatus(self.extend(request, params))
ccxt/base/exchange.py CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.3.83'
7
+ __version__ = '4.3.84'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
ccxt/binance.py CHANGED
@@ -10525,7 +10525,7 @@ class binance(Exchange, ImplicitAPI):
10525
10525
  extendedParams['recvWindow'] = recvWindow
10526
10526
  if (api == 'sapi') and (path == 'asset/dust'):
10527
10527
  query = self.urlencode_with_array_repeat(extendedParams)
10528
- elif (path == 'batchOrders') or (path.find('sub-account') >= 0) or (path == 'capital/withdraw/apply') or (path.find('staking') >= 0):
10528
+ elif (path == 'batchOrders') or (path.find('sub-account') >= 0) or (path == 'capital/withdraw/apply') or (path.find('staking') >= 0) or (path.find('simple-earn') >= 0):
10529
10529
  if (method == 'DELETE') and (path == 'batchOrders'):
10530
10530
  orderidlist = self.safe_list(extendedParams, 'orderidlist', [])
10531
10531
  origclientorderidlist = self.safe_list(extendedParams, 'origclientorderidlist', [])
ccxt/bitfinex2.py CHANGED
@@ -354,9 +354,9 @@ class bitfinex2(Exchange, ImplicitAPI):
354
354
  # convert 'EXCHANGE LIMIT' to lowercase 'limit'
355
355
  # everything else remains uppercase
356
356
  'exchangeTypes': {
357
- # 'MARKET': None,
357
+ 'MARKET': 'market',
358
358
  'EXCHANGE MARKET': 'market',
359
- # 'LIMIT': None,
359
+ 'LIMIT': 'limit',
360
360
  'EXCHANGE LIMIT': 'limit',
361
361
  # 'STOP': None,
362
362
  'EXCHANGE STOP': 'market',
ccxt/kraken.py CHANGED
@@ -2367,13 +2367,11 @@ class kraken(Exchange, ImplicitAPI):
2367
2367
  :returns dict[]: a list of `transaction structures <https://docs.ccxt.com/#/?id=transaction-structure>`
2368
2368
  """
2369
2369
  # https://www.kraken.com/en-us/help/api#deposit-status
2370
- if code is None:
2371
- raise ArgumentsRequired(self.id + ' fetchDeposits() requires a currency code argument')
2372
2370
  self.load_markets()
2373
- currency = self.currency(code)
2374
- request: dict = {
2375
- 'asset': currency['id'],
2376
- }
2371
+ request: dict = {}
2372
+ if code is not None:
2373
+ currency = self.currency(code)
2374
+ request['asset'] = currency['id']
2377
2375
  if since is not None:
2378
2376
  request['start'] = since
2379
2377
  response = self.privatePostDepositStatus(self.extend(request, params))
ccxt/pro/__init__.py CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # ----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.3.83'
7
+ __version__ = '4.3.84'
8
8
 
9
9
  # ----------------------------------------------------------------------------
10
10
 
ccxt/pro/binance.py CHANGED
@@ -1133,6 +1133,9 @@ class binance(ccxt.async_support.binance):
1133
1133
  :param dict [params.timezone]: if provided, kline intervals are interpreted in that timezone instead of UTC, example '+08:00'
1134
1134
  :returns int[][]: A list of candles ordered, open, high, low, close, volume
1135
1135
  """
1136
+ await self.load_markets()
1137
+ market = self.market(symbol)
1138
+ symbol = market['symbol']
1136
1139
  params['callerMethodName'] = 'watchOHLCV'
1137
1140
  result = await self.watch_ohlcv_for_symbols([[symbol, timeframe]], since, limit, params)
1138
1141
  return result[symbol][timeframe]
@@ -1179,7 +1182,7 @@ class binance(ccxt.async_support.binance):
1179
1182
  suffix = '@+08:00'
1180
1183
  utcSuffix = suffix if shouldUseUTC8 else ''
1181
1184
  rawHashes.append(marketId + '@' + klineType + '_' + interval + utcSuffix)
1182
- messageHashes.append('ohlcv::' + symbolString + '::' + timeframeString)
1185
+ messageHashes.append('ohlcv::' + market['symbol'] + '::' + timeframeString)
1183
1186
  url = self.urls['api']['ws'][type] + '/' + self.stream(type, 'multipleOHLCV')
1184
1187
  requestId = self.request_id(url)
1185
1188
  request = {
@@ -1434,6 +1437,8 @@ class binance(ccxt.async_support.binance):
1434
1437
  :param dict [params]: extra parameters specific to the exchange API endpoint
1435
1438
  :returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
1436
1439
  """
1440
+ await self.load_markets()
1441
+ symbols = self.market_symbols(symbols, None, True, False, True)
1437
1442
  result = await self.watch_multi_ticker_helper('watchBidsAsks', 'bookTicker', symbols, params)
1438
1443
  if self.newUpdates:
1439
1444
  return result
ccxt/pro/bitrue.py CHANGED
@@ -401,13 +401,7 @@ class bitrue(ccxt.async_support.bitrue):
401
401
  async def authenticate(self, params={}):
402
402
  listenKey = self.safe_value(self.options, 'listenKey')
403
403
  if listenKey is None:
404
- response = None
405
- try:
406
- response = await self.openPrivatePostPoseidonApiV1ListenKey(params)
407
- except Exception as error:
408
- self.options['listenKey'] = None
409
- self.options['listenKeyUrl'] = None
410
- return None
404
+ response = await self.openPrivatePostPoseidonApiV1ListenKey(params)
411
405
  #
412
406
  # {
413
407
  # "msg": "succ",
ccxt/pro/gate.py CHANGED
@@ -1408,7 +1408,7 @@ class gate(ccxt.async_support.gate):
1408
1408
  errs = self.safe_dict(data, 'errs')
1409
1409
  error = self.safe_dict(message, 'error', errs)
1410
1410
  code = self.safe_string_2(error, 'code', 'label')
1411
- id = self.safe_string_2(message, 'id', 'requestId')
1411
+ id = self.safe_string_n(message, ['id', 'requestId', 'request_id'])
1412
1412
  if error is not None:
1413
1413
  messageHash = self.safe_string(client.subscriptions, id)
1414
1414
  try:
@@ -1421,7 +1421,7 @@ class gate(ccxt.async_support.gate):
1421
1421
  client.reject(e, messageHash)
1422
1422
  if (messageHash is not None) and (messageHash in client.subscriptions):
1423
1423
  del client.subscriptions[messageHash]
1424
- if id is not None:
1424
+ if (id is not None) and (id in client.subscriptions):
1425
1425
  del client.subscriptions[id]
1426
1426
  return True
1427
1427
  return False
@@ -1686,7 +1686,7 @@ class gate(ccxt.async_support.gate):
1686
1686
  'event': event,
1687
1687
  'payload': payload,
1688
1688
  }
1689
- return await self.watch(url, messageHash, request, messageHash)
1689
+ return await self.watch(url, messageHash, request, messageHash, requestId)
1690
1690
 
1691
1691
  async def subscribe_private(self, url, messageHash, payload, channel, params, requiresUid=False):
1692
1692
  self.check_required_credentials()
@@ -1724,4 +1724,4 @@ class gate(ccxt.async_support.gate):
1724
1724
  # in case of authenticationError we will throw
1725
1725
  client.subscriptions[tempSubscriptionHash] = messageHash
1726
1726
  message = self.extend(request, params)
1727
- return await self.watch(url, messageHash, message, messageHash)
1727
+ return await self.watch(url, messageHash, message, messageHash, messageHash)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ccxt
3
- Version: 4.3.83
3
+ Version: 4.3.84
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
@@ -269,13 +269,13 @@ console.log(version, Object.keys(exchanges));
269
269
 
270
270
  All-in-one browser bundle (dependencies included), served from a CDN of your choice:
271
271
 
272
- * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.83/dist/ccxt.browser.min.js
273
- * unpkg: https://unpkg.com/ccxt@4.3.83/dist/ccxt.browser.min.js
272
+ * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.84/dist/ccxt.browser.min.js
273
+ * unpkg: https://unpkg.com/ccxt@4.3.84/dist/ccxt.browser.min.js
274
274
 
275
275
  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.
276
276
 
277
277
  ```HTML
278
- <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.83/dist/ccxt.browser.min.js"></script>
278
+ <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.84/dist/ccxt.browser.min.js"></script>
279
279
  ```
280
280
 
281
281
  Creates a global `ccxt` object:
@@ -1,10 +1,10 @@
1
- ccxt/__init__.py,sha256=8tFXcexJq_6UZubNfQ3dRitGEVyHJ7TjevH7jIeUzzQ,16417
1
+ ccxt/__init__.py,sha256=xC-AxNjzbac79_XlYeB4TOvksN8yURGPaJPdT4Uqjxk,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=b-d3-S9ENpW8QCcHmyrOayAO6UqYnK9IRoCKg7uKKxY,641250
7
+ ccxt/binance.py,sha256=4Y-6ug_A4l-1zGNgD5XkN14CfvD-JT27oH_YT8PP0JY,641285
8
8
  ccxt/binancecoinm.py,sha256=arFnEh8mErSyi23eVPWE4iwoT7PWQyxGGVJCKCy6UJY,1702
9
9
  ccxt/binanceus.py,sha256=hdcT4OnadcdFFFjF3GtM0nWv90jqojqwdVS3xWGuW40,9163
10
10
  ccxt/binanceusdm.py,sha256=bAPcJj5HLxoCdPolriM8sJpoTBwbV78vBTbKRmWhNP4,2632
@@ -15,7 +15,7 @@ ccxt/bitbay.py,sha256=xAIjzGRDVGwoy-Gygd99H0YN4wiaz_0lR0Z14oxaaxc,478
15
15
  ccxt/bitbns.py,sha256=BxvljEPDCGPnaFGaWIIPF_xs079B2OnnbGWNfYlraHE,48269
16
16
  ccxt/bitcoincom.py,sha256=PyWIl4nC4jp5Uba2lI1At0N_hhNyWD0DoZC_MSyL_s4,502
17
17
  ccxt/bitfinex.py,sha256=8GoogNrMLM0UZoWkrxXehN8AN77DHxdD3p1aVarLlp4,73440
18
- ccxt/bitfinex2.py,sha256=m1PXKkM7tDf-ud-dmyqqYMF942IO3U0Du7AS3iVx-GU,160641
18
+ ccxt/bitfinex2.py,sha256=U1A_zTHPCh85eC69u3X6aHfQ4te68XA0KtM5Q-vbrWE,160644
19
19
  ccxt/bitflyer.py,sha256=biQ8-J_HSb9_S6HE1LBDd6BGpIZSMxK5JyTZ3Xg1SdI,41683
20
20
  ccxt/bitget.py,sha256=ZQvtdW3pnv-LVHG3a1UwR72b-K8Fq-BZ-tu_haz-v60,424620
21
21
  ccxt/bithumb.py,sha256=8oTnFWi8Ai9fnm5FPXvNmaUAVJEOqYi-18VC23cWmXY,47935
@@ -69,7 +69,7 @@ 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=Zv0sz1qtaKe8DlGQpTMdpjhc9Elk4I9ovu7CXFpUfqs,130282
72
+ ccxt/kraken.py,sha256=mn5wIpTR2TnoKFIm5A1N8AxZAE-Ck2hPsVSKJSOtJdE,130190
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
@@ -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=m_-Y9JVCtfU0Mxb5kSMaGiOwa0zNQg1PU0azwrhbWzk,16230
221
+ ccxt/async_support/__init__.py,sha256=aORcbHfP4KpEc5qfYT1R7RlyB5TqUoyD-w1OXyfFs1U,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=UmSmhtKJOpSzWDbZO-OnMYjoztbduzDN2hZcKrZ1a1k,643984
227
+ ccxt/async_support/binance.py,sha256=QLNndO20b-A6sjSoaFnkSDMT7xwNh3lD3pA57r-gHis,644019
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
@@ -235,7 +235,7 @@ ccxt/async_support/bitbay.py,sha256=jcaEXi2IhYTva8ezO_SfJhwxEZk7HST4J3NaxD16BQA,
235
235
  ccxt/async_support/bitbns.py,sha256=-z6MBwHpn0FXwfKffbOXSdZD2ZYEepMz1VU2ii84xN0,48523
236
236
  ccxt/async_support/bitcoincom.py,sha256=RiqwhK3RfxQ_PXTa860fphDCvwA8dalL-_rXlK85-8A,516
237
237
  ccxt/async_support/bitfinex.py,sha256=gypR-TDeWWlamJIjEYwbsEhMQYgu9kqAVvuNxOVWVTo,73880
238
- ccxt/async_support/bitfinex2.py,sha256=vTO61ELmw5d8A7xvmINff17pCWpoiIrVnc_RJzVic3M,161375
238
+ ccxt/async_support/bitfinex2.py,sha256=qMKpCv8q2VyssI6acoIKHjJrKBmyLGdK-oG7_a-mxzo,161378
239
239
  ccxt/async_support/bitflyer.py,sha256=hIrGMxaM78V1i-gHN2FRFAhI2aaLR21mPAoIE33fW70,41991
240
240
  ccxt/async_support/bitget.py,sha256=JloBQJwLONpLsNjzTxfabc-poDryi3xqwl66UNYi8DU,426244
241
241
  ccxt/async_support/bithumb.py,sha256=Q0Cx_cRKZRfdpBAhQyINm63Qw3M6BRYQRiF0UqYzfis,48214
@@ -289,7 +289,7 @@ ccxt/async_support/hyperliquid.py,sha256=wFj9yXEojlPWK4JT6aOWFI08P9EwkWT9m7Furqi
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=UUuukP50quWE_oK8AtN7XwTWrntNxumr-hL0JhBrrfw,130932
292
+ ccxt/async_support/kraken.py,sha256=7NcBanzzk-4vzZ6mMbQocLJM6NnIEddLqyPmfFDgOUg,130840
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=GQhvYrsGHQrVdTrNHQxx9isEGqUABexlllzao9HL3f8,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=eiFSxjEXpVJpvTiWiWLVzJcqY8l8XmSOx1-FXqT8BvE,110799
332
+ ccxt/async_support/base/exchange.py,sha256=2OWQI4yYKUSFlbMvsIC2P5VQsDw9az1g51QcxOoL3R4,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=jbPRXxH1ZpZALXu_XPg-v6IEzLrAhaDiG-oRfiUoVt0,295904
346
+ ccxt/base/exchange.py,sha256=noOssd9lkOx65w0VZTT28RhoaTYEAa11Q8qtZm-djh0,295904
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=Tpck3GHnu8DOL4i2mRnxwNBApGC4Ysth6ZHtFGiHxhw,7608
349
+ ccxt/pro/__init__.py,sha256=zJvE5fm49Ypdtd26y5jxcipKgh6nJZEulWqYFpO4IiQ,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=thzqKZtSq4V0-JujAUbD6hxM_Vy9siCxUXYywP0xgc8,177852
353
+ ccxt/pro/binance.py,sha256=pFuGKmbf2gi6cTtQOuEwOWtczOQW5K9SYOTxswNuDlU,178067
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
@@ -364,7 +364,7 @@ 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
367
- ccxt/pro/bitrue.py,sha256=aDbPloGgsEN_DnoAJCkM0Y4MJ1r57OvoKpinynhRNrA,16463
367
+ ccxt/pro/bitrue.py,sha256=0-aa3Q8oGLnq71fJQYLyy0jI3NHHTFJuMQAyM0XRLFY,16246
368
368
  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
@@ -381,7 +381,7 @@ ccxt/pro/cryptocom.py,sha256=Zrh6noBvrMIcSLgVUuzxW7SPcJzUQDlcqMFU4JsnwLE,43318
381
381
  ccxt/pro/currencycom.py,sha256=8B9pSuPyO0ROCWOROUFoNbJBeOU3bRmlKXSj1CBMkPI,22459
382
382
  ccxt/pro/deribit.py,sha256=DG3UJE8VWuydP64_CJzDqmRC0vqc9ViBvQr28gW_nhY,41094
383
383
  ccxt/pro/exmo.py,sha256=n44MqOwY-tSt0TFNhQKydjxRJoSbrMVBzL4NNswOZm4,24542
384
- ccxt/pro/gate.py,sha256=75uP48pcrhppAiSgrNiS7vQoTTraDj7qPzf8JZCXtgo,79247
384
+ ccxt/pro/gate.py,sha256=PhhmAgeY2IcSIpCdeQcZlhc19neXJkYrRL4W8Bocs84,79322
385
385
  ccxt/pro/gateio.py,sha256=_uBWXYQbmsHRivKnZOJDmxJ9tWLO_0HAxmOjAEUy9nE,391
386
386
  ccxt/pro/gemini.py,sha256=8B8dbYPbKbZb3lzhlt8-x0oybQxOHr8Q4R_f5edLwbU,36899
387
387
  ccxt/pro/hitbtc.py,sha256=hhzNO9qGnALrRlMc7Bw0acIGHhFXVA6sUsTRGrWwYkc,56889
@@ -648,8 +648,8 @@ ccxt/test/tests_async.py,sha256=NShOLO2-HzYsh07U7aiUGssiv-AZ_p88h-NuQub9OKU,8468
648
648
  ccxt/test/tests_helpers.py,sha256=xhOILoZ_x3RSfQjtKt6AQlkp9DkOtpTQe8GAUUZoM6s,10069
649
649
  ccxt/test/tests_init.py,sha256=eVwwUHujX9t4rjgo4TqEeg7DDhR1Hb_e2SJN8NVGyl0,998
650
650
  ccxt/test/tests_sync.py,sha256=6Arr2TcJpNg9eEpH_JQeBbLzaMPlb94J1P11HGlbpPg,83761
651
- ccxt-4.3.83.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
652
- ccxt-4.3.83.dist-info/METADATA,sha256=ZV0KJpl5E1uFTWNFh1V-1KxFfaOqM2o0672ozfs4zJ8,116492
653
- ccxt-4.3.83.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
654
- ccxt-4.3.83.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
655
- ccxt-4.3.83.dist-info/RECORD,,
651
+ ccxt-4.3.84.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
652
+ ccxt-4.3.84.dist-info/METADATA,sha256=pGkNPDyr3HOUr1NMfiFmukg_XRKm00rSb5i1URnR0bE,116492
653
+ ccxt-4.3.84.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
654
+ ccxt-4.3.84.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
655
+ ccxt-4.3.84.dist-info/RECORD,,
File without changes