ccxt 4.3.41__py2.py3-none-any.whl → 4.3.43__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ccxt might be problematic. Click here for more details.

ccxt/pro/upbit.py CHANGED
@@ -223,17 +223,21 @@ class upbit(ccxt.async_support.upbit):
223
223
 
224
224
  async def authenticate(self, params={}):
225
225
  self.check_required_credentials()
226
- authenticated = self.options['ws']['token']
226
+ wsOptions: dict = self.safe_dict(self.options, 'ws', {})
227
+ authenticated = self.safe_string(wsOptions, 'token')
227
228
  if authenticated is None:
228
229
  auth: dict = {
229
230
  'access_key': self.apiKey,
230
231
  'nonce': self.uuid(),
231
232
  }
232
233
  token = self.jwt(auth, self.encode(self.secret), 'sha256', False)
233
- self.options['ws']['token'] = token
234
- self.options['ws']['options']['headers'] = {
235
- 'authorization': 'Bearer ' + token,
234
+ wsOptions['token'] = token
235
+ wsOptions['options'] = {
236
+ 'headers': {
237
+ 'authorization': 'Bearer ' + token,
238
+ },
236
239
  }
240
+ self.options['ws'] = wsOptions
237
241
  url = self.urls['api']['ws'] + '/private'
238
242
  client = self.client(url)
239
243
  return client
ccxt/pro/woo.py CHANGED
@@ -582,7 +582,7 @@ class woo(ccxt.async_support.woo):
582
582
  :param int [limit]: the maximum number of order structures to retrieve
583
583
  :param dict [params]: extra parameters specific to the exchange API endpoint
584
584
  :param bool [params.trigger]: True if trigger order
585
- :returns dict[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
585
+ :returns dict[]: a list of `trade structures <https://docs.ccxt.com/#/?id=trade-structure>`
586
586
  """
587
587
  await self.load_markets()
588
588
  trigger = self.safe_bool_2(params, 'stop', 'trigger', False)
ccxt/tradeogre.py CHANGED
@@ -9,6 +9,7 @@ from ccxt.base.types import IndexType, Int, Market, Num, Order, OrderSide, Order
9
9
  from typing import List
10
10
  from ccxt.base.errors import ExchangeError
11
11
  from ccxt.base.errors import AuthenticationError
12
+ from ccxt.base.errors import ArgumentsRequired
12
13
  from ccxt.base.errors import BadRequest
13
14
  from ccxt.base.errors import InsufficientFunds
14
15
  from ccxt.base.decimal_to_precision import TICK_SIZE
@@ -441,7 +442,7 @@ class tradeogre(Exchange, ImplicitAPI):
441
442
  """
442
443
  create a trade order
443
444
  :param str symbol: unified symbol of the market to create an order in
444
- :param str type: not used by tradeogre
445
+ :param str type: must be 'limit'
445
446
  :param str side: 'buy' or 'sell'
446
447
  :param float amount: how much of currency you want to trade in units of base currency
447
448
  :param float price: the price at which the order is to be fullfilled, in units of the quote currency
@@ -450,13 +451,15 @@ class tradeogre(Exchange, ImplicitAPI):
450
451
  """
451
452
  self.load_markets()
452
453
  market = self.market(symbol)
454
+ if type == 'market':
455
+ raise BadRequest(self.id + ' createOrder does not support market orders')
456
+ if price is None:
457
+ raise ArgumentsRequired(self.id + ' createOrder requires a limit parameter')
453
458
  request: dict = {
454
459
  'market': market['id'],
455
460
  'quantity': self.parse_to_numeric(self.amount_to_precision(symbol, amount)),
456
461
  'price': self.parse_to_numeric(self.price_to_precision(symbol, price)),
457
462
  }
458
- if type == 'market':
459
- raise BadRequest(self.id + ' createOrder does not support market orders')
460
463
  response = None
461
464
  if side == 'buy':
462
465
  response = self.privatePostOrderBuy(self.extend(request, params))
@@ -487,7 +490,10 @@ class tradeogre(Exchange, ImplicitAPI):
487
490
  :returns dict[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
488
491
  """
489
492
  self.load_markets()
490
- return self.cancel_order('all', symbol, params)
493
+ response = self.cancel_order('all', symbol, params)
494
+ return [
495
+ response,
496
+ ]
491
497
 
492
498
  def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
493
499
  """
ccxt/wavesexchange.py CHANGED
@@ -1421,7 +1421,7 @@ class wavesexchange(Exchange, ImplicitAPI):
1421
1421
  firstMessage = self.safe_value(message, 0)
1422
1422
  firstOrder = self.safe_value(firstMessage, 0)
1423
1423
  returnedId = self.safe_string(firstOrder, 'orderId')
1424
- return {
1424
+ return self.safe_order({
1425
1425
  'info': response,
1426
1426
  'id': returnedId,
1427
1427
  'clientOrderId': None,
@@ -1440,7 +1440,7 @@ class wavesexchange(Exchange, ImplicitAPI):
1440
1440
  'status': None,
1441
1441
  'fee': None,
1442
1442
  'trades': None,
1443
- }
1443
+ })
1444
1444
 
1445
1445
  def fetch_order(self, id: str, symbol: Str = None, params={}):
1446
1446
  """
ccxt/wazirx.py CHANGED
@@ -763,7 +763,26 @@ class wazirx(Exchange, ImplicitAPI):
763
763
  request: dict = {
764
764
  'symbol': market['id'],
765
765
  }
766
- return self.privateDeleteOpenOrders(self.extend(request, params))
766
+ response = self.privateDeleteOpenOrders(self.extend(request, params))
767
+ #
768
+ # [
769
+ # {
770
+ # id: "4565421197",
771
+ # symbol: "adausdt",
772
+ # type: "limit",
773
+ # side: "buy",
774
+ # status: "wait",
775
+ # price: "0.41",
776
+ # origQty: "11.00",
777
+ # executedQty: "0.00",
778
+ # avgPrice: "0.00",
779
+ # createdTime: "1718089507000",
780
+ # updatedTime: "1718089507000",
781
+ # clientOrderId: "93d2a838-e272-405d-91e7-3a7bc6d3a003"
782
+ # }
783
+ # ]
784
+ #
785
+ return self.parse_orders(response)
767
786
 
768
787
  def cancel_order(self, id: str, symbol: Str = None, params={}):
769
788
  """
@@ -831,18 +850,22 @@ class wazirx(Exchange, ImplicitAPI):
831
850
  return self.parse_order(response, market)
832
851
 
833
852
  def parse_order(self, order: dict, market: Market = None) -> Order:
834
- # {
835
- # "id":1949417813,
836
- # "symbol":"ltcusdt",
837
- # "type":"limit",
838
- # "side":"sell",
839
- # "status":"done",
840
- # "price":"146.2",
841
- # "origQty":"0.05",
842
- # "executedQty":"0.05",
843
- # "createdTime":1641252564000,
844
- # "updatedTime":1641252564000
845
- # },
853
+ #
854
+ # {
855
+ # "id": 1949417813,
856
+ # "symbol": "ltcusdt",
857
+ # "type": "limit",
858
+ # "side": "sell",
859
+ # "status": "done",
860
+ # "price": "146.2",
861
+ # "origQty": "0.05",
862
+ # "executedQty": "0.05",
863
+ # "avgPrice": "0.00",
864
+ # "createdTime": 1641252564000,
865
+ # "updatedTime": 1641252564000
866
+ # "clientOrderId": "93d2a838-e272-405d-91e7-3a7bc6d3a003"
867
+ # }
868
+ #
846
869
  created = self.safe_integer(order, 'createdTime')
847
870
  updated = self.safe_integer(order, 'updatedTime')
848
871
  marketId = self.safe_string(order, 'symbol')
@@ -857,7 +880,7 @@ class wazirx(Exchange, ImplicitAPI):
857
880
  return self.safe_order({
858
881
  'info': order,
859
882
  'id': id,
860
- 'clientOrderId': None,
883
+ 'clientOrderId': self.safe_string(order, 'clientOrderId'),
861
884
  'timestamp': created,
862
885
  'datetime': self.iso8601(created),
863
886
  'lastTradeTimestamp': updated,
@@ -873,7 +896,7 @@ class wazirx(Exchange, ImplicitAPI):
873
896
  'remaining': None,
874
897
  'cost': None,
875
898
  'fee': None,
876
- 'average': None,
899
+ 'average': self.safe_string(order, 'avgPrice'),
877
900
  'trades': [],
878
901
  }, market)
879
902
 
ccxt/zonda.py CHANGED
@@ -449,6 +449,13 @@ class zonda(Exchange, ImplicitAPI):
449
449
  # "secondBalanceId": "ab43023b-4079-414c-b340-056e3430a3af"
450
450
  # }
451
451
  #
452
+ # cancelOrder
453
+ #
454
+ # {
455
+ # status: "Ok",
456
+ # errors: []
457
+ # }
458
+ #
452
459
  marketId = self.safe_string(order, 'market')
453
460
  symbol = self.safe_symbol(marketId, market, '-')
454
461
  timestamp = self.safe_integer(order, 'time')
@@ -1455,9 +1462,10 @@ class zonda(Exchange, ImplicitAPI):
1455
1462
  'side': side,
1456
1463
  'price': price,
1457
1464
  }
1465
+ response = self.v1_01PrivateDeleteTradingOfferSymbolIdSidePrice(self.extend(request, params))
1458
1466
  # {status: "Fail", errors: ["NOT_RECOGNIZED_OFFER_TYPE"]} -- if required params are missing
1459
1467
  # {status: "Ok", errors: []}
1460
- return self.v1_01PrivateDeleteTradingOfferSymbolIdSidePrice(self.extend(request, params))
1468
+ return self.parse_order(response)
1461
1469
 
1462
1470
  def is_fiat(self, currency):
1463
1471
  fiatCurrencies: dict = {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ccxt
3
- Version: 4.3.41
3
+ Version: 4.3.43
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
@@ -94,7 +94,7 @@ Current feature list:
94
94
  | [![bybit](https://user-images.githubusercontent.com/51840849/76547799-daff5b80-649e-11ea-87fb-3be9bac08954.jpg)](https://www.bybit.com/register?affiliate_id=35953) | bybit | [Bybit](https://www.bybit.com/register?affiliate_id=35953) | [![API Version 5](https://img.shields.io/badge/5-lightgray)](https://bybit-exchange.github.io/docs/inverse/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
95
95
  | [![coinbase](https://user-images.githubusercontent.com/1294454/40811661-b6eceae2-653a-11e8-829e-10bfadb078cf.jpg)](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | coinbase | [Coinbase Advanced](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://developers.coinbase.com/api/v2) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
96
96
  | [![coinbaseinternational](https://github.com/ccxt/ccxt/assets/43336371/866ae638-6ab5-4ebf-ab2c-cdcce9545625)](https://international.coinbase.com) | coinbaseinternational | [Coinbase International](https://international.coinbase.com) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.cloud.coinbase.com/intx/docs) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
97
- | [![coinex](https://user-images.githubusercontent.com/51840849/87182089-1e05fa00-c2ec-11ea-8da9-cc73b45abbbc.jpg)](https://www.coinex.com/register?refer_code=yw5fz) | coinex | [CoinEx](https://www.coinex.com/register?refer_code=yw5fz) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.coinex.com/api/v2) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
97
+ | [![coinex](https://user-images.githubusercontent.com/51840849/87182089-1e05fa00-c2ec-11ea-8da9-cc73b45abbbc.jpg)](https://www.coinex.com/register?refer_code=yw5fz) | coinex | [CoinEx](https://www.coinex.com/register?refer_code=yw5fz) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://docs.coinex.com/api/v2) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
98
98
  | [![cryptocom](https://user-images.githubusercontent.com/1294454/147792121-38ed5e36-c229-48d6-b49a-48d05fc19ed4.jpeg)](https://crypto.com/exch/kdacthrnxt) | cryptocom | [Crypto.com](https://crypto.com/exch/kdacthrnxt) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with Crypto.com using CCXT's referral link for a 15% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d15%25&color=orange)](https://crypto.com/exch/kdacthrnxt) |
99
99
  | [![gate](https://user-images.githubusercontent.com/1294454/31784029-0313c702-b509-11e7-9ccc-bc0da6a0e435.jpg)](https://www.gate.io/signup/2436035) | gate | [Gate.io](https://www.gate.io/signup/2436035) | [![API Version 4](https://img.shields.io/badge/4-lightgray)](https://www.gate.io/docs/developers/apiv4/en/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with Gate.io using CCXT's referral link for a 20% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d20%25&color=orange)](https://www.gate.io/signup/2436035) |
100
100
  | [![htx](https://user-images.githubusercontent.com/1294454/76137448-22748a80-604e-11ea-8069-6e389271911d.jpg)](https://www.huobi.com/en-us/v/register/double-invite/?inviter_id=11343840&invite_code=6rmm2223) | htx | [HTX](https://www.huobi.com/en-us/v/register/double-invite/?inviter_id=11343840&invite_code=6rmm2223) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://huobiapi.github.io/docs/spot/v1/en/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with HTX using CCXT's referral link for a 15% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d15%25&color=orange)](https://www.huobi.com/en-us/v/register/double-invite/?inviter_id=11343840&invite_code=6rmm2223) |
@@ -150,7 +150,7 @@ The CCXT library currently supports the following 98 cryptocurrency exchange mar
150
150
  | [![coinbaseexchange](https://github.com/ccxt/ccxt/assets/43336371/34a65553-88aa-4a38-a714-064bd228b97e)](https://coinbase.com/) | coinbaseexchange | [Coinbase Exchange](https://coinbase.com/) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://docs.cloud.coinbase.com/exchange/docs/) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
151
151
  | [![coinbaseinternational](https://github.com/ccxt/ccxt/assets/43336371/866ae638-6ab5-4ebf-ab2c-cdcce9545625)](https://international.coinbase.com) | coinbaseinternational | [Coinbase International](https://international.coinbase.com) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.cloud.coinbase.com/intx/docs) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
152
152
  | [![coincheck](https://user-images.githubusercontent.com/51840849/87182088-1d6d6380-c2ec-11ea-9c64-8ab9f9b289f5.jpg)](https://coincheck.com) | coincheck | [coincheck](https://coincheck.com) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://coincheck.com/documents/exchange/api) | | |
153
- | [![coinex](https://user-images.githubusercontent.com/51840849/87182089-1e05fa00-c2ec-11ea-8da9-cc73b45abbbc.jpg)](https://www.coinex.com/register?refer_code=yw5fz) | coinex | [CoinEx](https://www.coinex.com/register?refer_code=yw5fz) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.coinex.com/api/v2) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
153
+ | [![coinex](https://user-images.githubusercontent.com/51840849/87182089-1e05fa00-c2ec-11ea-8da9-cc73b45abbbc.jpg)](https://www.coinex.com/register?refer_code=yw5fz) | coinex | [CoinEx](https://www.coinex.com/register?refer_code=yw5fz) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://docs.coinex.com/api/v2) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
154
154
  | [![coinlist](https://github-production-user-asset-6210df.s3.amazonaws.com/1294454/281108917-eff2ae1d-ce8a-4b2a-950d-8678b12da965.jpg)](https://coinlist.co) | coinlist | [Coinlist](https://coinlist.co) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://trade-docs.coinlist.co) | | |
155
155
  | [![coinmate](https://user-images.githubusercontent.com/51840849/87460806-1c9f3f00-c616-11ea-8c46-a77018a8f3f4.jpg)](https://coinmate.io?referral=YTFkM1RsOWFObVpmY1ZjMGREQmpTRnBsWjJJNVp3PT0) | coinmate | [CoinMate](https://coinmate.io?referral=YTFkM1RsOWFObVpmY1ZjMGREQmpTRnBsWjJJNVp3PT0) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://coinmate.docs.apiary.io) | | |
156
156
  | [![coinmetro](https://github.com/ccxt/ccxt/assets/43336371/e86f87ec-6ba3-4410-962b-f7988c5db539)](https://go.coinmetro.com/?ref=crypto24) | coinmetro | [Coinmetro](https://go.coinmetro.com/?ref=crypto24) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://documenter.getpostman.com/view/3653795/SVfWN6KS) | | |
@@ -266,13 +266,13 @@ console.log(version, Object.keys(exchanges));
266
266
 
267
267
  All-in-one browser bundle (dependencies included), served from a CDN of your choice:
268
268
 
269
- * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.41/dist/ccxt.browser.min.js
270
- * unpkg: https://unpkg.com/ccxt@4.3.41/dist/ccxt.browser.min.js
269
+ * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.43/dist/ccxt.browser.min.js
270
+ * unpkg: https://unpkg.com/ccxt@4.3.43/dist/ccxt.browser.min.js
271
271
 
272
272
  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.
273
273
 
274
274
  ```HTML
275
- <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.41/dist/ccxt.browser.min.js"></script>
275
+ <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.43/dist/ccxt.browser.min.js"></script>
276
276
  ```
277
277
 
278
278
  Creates a global `ccxt` object:
@@ -1,10 +1,10 @@
1
- ccxt/__init__.py,sha256=4w0zRXKJqYItcY0JdfDXSprYPcqtnBq0VIgdGkb5gvY,15950
1
+ ccxt/__init__.py,sha256=C58Ozd78NpFlwyla5tn2fJjeH47PVR4-G9Odk1GZlL0,15950
2
2
  ccxt/ace.py,sha256=6x4vkcS2lGSkAQuzS-AAgYJLPDNNfNo9NMIdAoXzs18,41776
3
3
  ccxt/alpaca.py,sha256=EZ7uF3XI8EXXIsCZ-UVpruBXS96Kps6WOOukmdcgCn0,47326
4
4
  ccxt/ascendex.py,sha256=rUUU3n4j8QrMrJCk4pVwVastIYzS3eDTUAL9R2ePErk,151832
5
5
  ccxt/bequant.py,sha256=RBiAmaTbL35DgiV3Hl6uchLUd78V0z1T9riTlNsrpdc,1174
6
6
  ccxt/bigone.py,sha256=HKnpiDzs_hu09Lc6lnxGk1_1EOvxgrPqwr5dsApuj88,92436
7
- ccxt/binance.py,sha256=Fo2N4ud1QCy1W5Hz0qtB0iWOpEfGrF47oc3TGOIaEs8,618979
7
+ ccxt/binance.py,sha256=Pgid1ty7HLd87ErGp36YmiPJ7sk_YqBn-9figJCp15A,626531
8
8
  ccxt/binancecoinm.py,sha256=pncdw6Xw2X1Po-vEvAB4nL37scoS_axGAVxetPy1YQs,1645
9
9
  ccxt/binanceus.py,sha256=hdcT4OnadcdFFFjF3GtM0nWv90jqojqwdVS3xWGuW40,9163
10
10
  ccxt/binanceusdm.py,sha256=KPQGlCalQ0eGlPCs2tSanOxaP8O0zFRQjGntA16Yprw,2480
@@ -19,7 +19,7 @@ ccxt/bitfinex2.py,sha256=4bYPjnLMj3v2CMuzmwdTOgF6iaUggyXtN92Lc3oqwOE,160637
19
19
  ccxt/bitflyer.py,sha256=rvykeLLkDYVMEwXs4rInQClYwdXIXmj_7mxDpGT216I,41565
20
20
  ccxt/bitget.py,sha256=7ETvr_9MSWv0KlbdmVxBMd-K7z_2EAdTq1Xaj_Gi6nE,423496
21
21
  ccxt/bithumb.py,sha256=CcL-Zy8LodvUmj9R_kDbgLg9T5_ZvCDOECY4xZFQwwY,45848
22
- ccxt/bitmart.py,sha256=I21OAvRJASy0tQk-l0NfBP4BmMyUxbryx3mUmW7tE6U,204434
22
+ ccxt/bitmart.py,sha256=s8geDDkyq-UoXCwOOy6f_2ZIu2KERyiZ1qalRf12mGQ,208174
23
23
  ccxt/bitmex.py,sha256=koETQgb-yVZ3ZfP6qIHyTMLTDk8eXTHauhwhaP79ZBQ,126862
24
24
  ccxt/bitopro.py,sha256=kjGn1UOy6toGyEbpV_al50eGCjqI75GN4LXpGbmL4Tw,68743
25
25
  ccxt/bitpanda.py,sha256=aiwPkx9lKbVzt4ggoYdq_mIbMGtg5ZtGl2yRHO5xyz8,471
@@ -29,11 +29,11 @@ ccxt/bitstamp.py,sha256=prb35Cd9_XFXp5u9cvOUJRsAdi7kaenHqro3gTTBeR4,93516
29
29
  ccxt/bitteam.py,sha256=Nh6KvtzPFmBuEgNRN8riiIKCyHsxi86sf0pe-XVc7NY,102223
30
30
  ccxt/bitvavo.py,sha256=gLqkdE4_XwKKAer78KOT_D8L5NlbNfFCGAnBSNje9r8,91774
31
31
  ccxt/bl3p.py,sha256=ao8c2nrO4nlDyICLZma8tiJsRgM-3chRlooi_Hu7Zxg,20649
32
- ccxt/blockchaincom.py,sha256=Snf5tclR2T_qQD_eS6cQbeONpBrub6irhRAK6Y00BgM,48974
32
+ ccxt/blockchaincom.py,sha256=sq-pSuoq78mzxp0MONByMr_zEZDuxghZzpXTLgxR730,49035
33
33
  ccxt/blofin.py,sha256=LrKelmUtqUes41vHsKEVclYTyCClA88NHfh8nbrRA7g,99500
34
34
  ccxt/btcalpha.py,sha256=LyqEmXi-h6pz6MaVcBLWGBDGMuDiu2cXbwk35jXb1_k,36967
35
35
  ccxt/btcbox.py,sha256=1Vs2A4jOe5Wc4qgOblDBrIyRmp0m_aQZCk9-R7DvSqs,23588
36
- ccxt/btcmarkets.py,sha256=mSK14nf9EPwKtdd9vZAAQe4LCWWE9B8atZLANAOGnVs,51654
36
+ ccxt/btcmarkets.py,sha256=hHxrZSgrjdgvaXEJkDGPQbKxlwT8Dz1XN3UwhvYqmys,52632
37
37
  ccxt/btcturk.py,sha256=IqUB3IL4pJlIWEMfD50FNH7gcycC6Q9rLdRe7RZaUro,36993
38
38
  ccxt/bybit.py,sha256=QOdG3Z17PYdUoXYG33UY0JvSZRhWJrNC2eihI8eMOr4,413194
39
39
  ccxt/cex.py,sha256=IUb295DSS6H3SsPbCjvBKPzzNpQYvBXaRqFF-T450wM,70086
@@ -42,7 +42,7 @@ ccxt/coinbaseadvanced.py,sha256=d5g6nRx-NCcCwZDdtp8FsI2D-pRjSvnAP9ISSKY_nCQ,538
42
42
  ccxt/coinbaseexchange.py,sha256=pnS1O5ZkUIY3QQ8IotdWgvJDo0qB0NS6RJZPrPOvwd4,78908
43
43
  ccxt/coinbaseinternational.py,sha256=cGMA-DukMh64r0zd-Z5Ussyo7kYiItXV8YWnU5myAF4,87472
44
44
  ccxt/coincheck.py,sha256=-9MS_DPgSfyPplgvjFzRfaQ3YSHW_WDxP3WnTAiICws,35943
45
- ccxt/coinex.py,sha256=xS7McsQM9YLWhYg10hFp_oj_ABE5Q3eaUHiekDVsVGU,258057
45
+ ccxt/coinex.py,sha256=QjifMNgO6KtFxc2mr9eQ_z0Y-q_3gDwvKj7x-ec22kI,257430
46
46
  ccxt/coinlist.py,sha256=t7kt8PMQkHNzf5ucxyqkRVYbsv4pLPm36wZeug6omk4,104138
47
47
  ccxt/coinmate.py,sha256=NMyJizoysljIrERSSAtcqssv3iDlZwhtM3LUOEx-4_c,46533
48
48
  ccxt/coinmetro.py,sha256=QMbKRQQ3w6kvvMKZ71WCpFeoVDLn_iFL3O-3ihwErqs,80869
@@ -69,9 +69,9 @@ ccxt/hyperliquid.py,sha256=535pxGdgEFjP03WtB3ck6Nz0PwD7HqsTOoW-6qwxAYM,101079
69
69
  ccxt/idex.py,sha256=7f5GA9z-Mui7YOmSxPRbHIWATSU8DVXUNYPlgw34iMw,73231
70
70
  ccxt/independentreserve.py,sha256=JKXu3cYYAe7XW_wANllTYAQa3uH_xsNFdT2a-Y1rI98,33490
71
71
  ccxt/indodax.py,sha256=nNQuN0EKOppv9KtpkyrWAXAHFY6k5a0wnxNZ55h_dXs,53432
72
- ccxt/kraken.py,sha256=WjB-3YdDAnW-rdNTVumLK_2ok3NafWG9K6BTIUBWRWc,128473
73
- ccxt/krakenfutures.py,sha256=1xUvIzuDUevPngvmaODrZZ4LDYoojY7pzM5GbeobJKI,117101
74
- ccxt/kucoin.py,sha256=DLUGLWdfTjxH9gna_jnlncz_wg38MhtYr_0Y0TF6-fA,218298
72
+ ccxt/kraken.py,sha256=aNqujL0xGkHP5qIcmRYMw_GCti7eB7UE5GN2W3xw6Zk,129061
73
+ ccxt/krakenfutures.py,sha256=W2TRXbarf-oXsKnae2eVz9y9Y7NAOtLNi58bcZRDPiA,119219
74
+ ccxt/kucoin.py,sha256=ZZW2IM5jm_TPy1FnrKPXbi3tdTR0znlPqtkxKaFCxQw,220357
75
75
  ccxt/kucoinfutures.py,sha256=x9TacKIoBZ_WnA4nljaAH9TwMvTDkU_E-GtqbK5S8F4,124565
76
76
  ccxt/kuna.py,sha256=C0TwihuJzJ1qHOC7TEiwmcLi40ohMU7SjnDucyMur0k,96188
77
77
  ccxt/latoken.py,sha256=Yydly2IL9gdoqN6O-bJNBbVb3R7FtBwzBGZYhbX8aSc,79393
@@ -88,22 +88,22 @@ ccxt/okx.py,sha256=TFruIMwZDQY6jjhJqBKoiHiAVDEcKZaj918IZshmpRc,378341
88
88
  ccxt/onetrading.py,sha256=2nSe_Z_Jy7O4rPggwbY17M6oimu-t0PkeTejTu26XcA,88340
89
89
  ccxt/p2b.py,sha256=_kQjmJ1O9sgb5HnNsefD0Jy-DejW4chndqraV5jV3ak,54334
90
90
  ccxt/paymium.py,sha256=9TfMe2ViBYYodGcbVTPm6QOyuIxI6vmbl46xa5bl8D8,24420
91
- ccxt/phemex.py,sha256=lr-zTRi0HKRUjC4OVv5lOQXOealRZp9hLKTPlxUcQA0,222642
91
+ ccxt/phemex.py,sha256=L060JAxQ1wwtNo8JyUZ7fPMyAkmPkmPhHhWr5gWrJgM,222503
92
92
  ccxt/poloniex.py,sha256=qctzvVpjtLq_mDr5d1kf0447wkp-Y_aYrCy6QubIAvU,102242
93
93
  ccxt/poloniexfutures.py,sha256=m7Fci8BYti6ijrcNrYlrojiSH-jL5kbV-ZpTXkwzAvg,78089
94
94
  ccxt/probit.py,sha256=2A2vpmqS4__0A6d-gj7WASMaO2wT4NqbIitOF8uUD08,75891
95
95
  ccxt/timex.py,sha256=jTXj6mGZcmsfmDFHbJyWiScLK-vdY7AYsD5gUyk1x0s,71451
96
96
  ccxt/tokocrypto.py,sha256=qnOKHtNR6r8lezOYPrNRP1YeAFgANYgrOU9IPU5tr6k,123199
97
- ccxt/tradeogre.py,sha256=-uAY4HkEPHjRkUmPKJBjrY79Y5DjhF5RrfZRMYk6kNQ,24003
97
+ ccxt/tradeogre.py,sha256=Rg5j165OAwYuOFgYwXtKEb8Tdbv1BzFVj6mvgDS6qJg,24212
98
98
  ccxt/upbit.py,sha256=6uYO8pFI_lYx6UU0ELcvc82F6xEJK9GPIxgUQiTDq10,82011
99
- ccxt/wavesexchange.py,sha256=BgqApypcGzFw4rlKR4LW2YUW7CkK2h1ICmtsYIcgZqQ,113831
100
- ccxt/wazirx.py,sha256=leNH1FwG_45Sim2Adx5bZc2u6zz8zqx5AUymiDxFJ54,51509
99
+ ccxt/wavesexchange.py,sha256=IkffKIP7T38BpDvmF9wbg8ZW0v05Koz3Qik9tEhjRmM,113848
100
+ ccxt/wazirx.py,sha256=_JRQvSh0XLPKjE-0Fi_YqYyz38GObXkyXLM1Pg3hipI,52406
101
101
  ccxt/whitebit.py,sha256=xENpt5u6txhUlLfc4IR_FHCAJMw3u1nj17voGoq0zus,118756
102
102
  ccxt/woo.py,sha256=QNwAUc2-SoFO2czTXTqmNFDK2vLZTFZMjetAI7sxDEE,139894
103
103
  ccxt/woofipro.py,sha256=V4p2ZjTpMejpwWOsWtTzMDX7K76gLk3e7IXXhb6Jy18,115328
104
104
  ccxt/yobit.py,sha256=MFrd_ZvzSPP0T8RWrC3aLNrQN2rDZz3m2cbCnOqXr6s,53372
105
105
  ccxt/zaif.py,sha256=zq592UTcuXvzR2qVkSNhXwBPxJm5JE4sKbDyrImyuHU,28863
106
- ccxt/zonda.py,sha256=mP8o4UQgLZq1-gak8BAn4hH17BCDeztHhe34Itlf7V0,81230
106
+ ccxt/zonda.py,sha256=jYinwb54y_2I4OGkQ271oq0SwhxXzyKRtOe_oaEnJMw,81407
107
107
  ccxt/abstract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
108
  ccxt/abstract/ace.py,sha256=2-jmtQUedebJ-M88oI3WhmenPElcRlOQHe-gfHjL5BQ,1448
109
109
  ccxt/abstract/alpaca.py,sha256=vgzqnRTvEnAbLYgfDzGpmVUZxRLWC8BWA6nQ16m-xXY,10382
@@ -148,7 +148,7 @@ ccxt/abstract/coinbaseadvanced.py,sha256=GFXDh_Bf65Gsx_DmgOrRG2jpM3IdITE3Agqz_LZ
148
148
  ccxt/abstract/coinbaseexchange.py,sha256=eQMtsIw94xJqQO_xXmrrHdc_YFmhVZNW4OXCWv4Nx1w,7162
149
149
  ccxt/abstract/coinbaseinternational.py,sha256=wf1fF31fQ1TAVSk1X4ju6LYQc7tHI1lN5nxRnhnzsbk,4770
150
150
  ccxt/abstract/coincheck.py,sha256=3IIVmryXmzxXqi6IleUmfDZIUMOn_L_4G9Iw8BuEEGo,3417
151
- ccxt/abstract/coinex.py,sha256=xPxsdMIhrtHfZO7w5cW-1RpR12H20u1tTPNFaNaeXOU,34678
151
+ ccxt/abstract/coinex.py,sha256=4TRXtWgONqkm3eSL55Y5T7Q4QxJrnOTuhP0ugsKHAWo,34856
152
152
  ccxt/abstract/coinlist.py,sha256=t4Xc9xyWNHgHAz7nyplj8PmgrX4knA3cnk2uEJCvkQk,6538
153
153
  ccxt/abstract/coinmate.py,sha256=LYCJZIWe3sidZUozM7jBTB-AiN3cMElFhYqO9d1QvfI,6842
154
154
  ccxt/abstract/coinmetro.py,sha256=W2eAbFInYZMm1BgfZMRuCX7i201hT4q6QCtie30-_AQ,3975
@@ -210,13 +210,13 @@ ccxt/abstract/woofipro.py,sha256=El50vWGAV-4QPIDhgSnd4egfvk246NB6vTC-8h722vs,160
210
210
  ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
211
211
  ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
212
212
  ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
213
- ccxt/async_support/__init__.py,sha256=2zIDrQvgZznXbaMVPkbA5mfsP2ow1u_OnUaLO4FjR4Q,15723
213
+ ccxt/async_support/__init__.py,sha256=84ptUMHo6mjo25H_wbQgH4RDe5aBmsbV_1Flv4jBJb4,15723
214
214
  ccxt/async_support/ace.py,sha256=tsRgs_o4Iq7q8IkD83FUdC-2ztylhgO4cp2hww3rlqQ,42000
215
215
  ccxt/async_support/alpaca.py,sha256=3845DgojoA1p0pxrqnDIqHbbRcEwZhZIkE4aygD5ics,47538
216
216
  ccxt/async_support/ascendex.py,sha256=7tZ4C7FfzmuB_ADYjl6IkyQQ5JG0Vt1AD_B3fTeY6V0,152620
217
217
  ccxt/async_support/bequant.py,sha256=1hTwHovo1bW1XTIc8ZKjvJ-Xg6LfmpGdzT7TepykaVM,1188
218
218
  ccxt/async_support/bigone.py,sha256=z4KbPCAlByhfUDmywRespbTtPTm7yIxDhX-OeMkcQek,92890
219
- ccxt/async_support/binance.py,sha256=AAn5p-nomNsv-cXV6wxThT-QBukFb_CzVLZePsfXJO8,621689
219
+ ccxt/async_support/binance.py,sha256=V8-g-qAWch5roQTV0OC1FHiJkoiGeUPRtNGqhCWghOM,629247
220
220
  ccxt/async_support/binancecoinm.py,sha256=IY3RLZptQA2nmZaUYRGfTa5ZY4VMWBpFYfwHc8zTHw0,1683
221
221
  ccxt/async_support/binanceus.py,sha256=c-K3Tk7LaRJjmYdCx8vBOqsx01uXrtvt0PC2ekBiD0g,9177
222
222
  ccxt/async_support/binanceusdm.py,sha256=-1r4A4tmV2pCiLGO80hzq7MIIj4MTzOD7buZGv6JauA,2518
@@ -231,7 +231,7 @@ ccxt/async_support/bitfinex2.py,sha256=-RgXS7A6h27MOrLT7Xtmj_710ZcQKmCYLVqfYgx6x
231
231
  ccxt/async_support/bitflyer.py,sha256=RWrRkrZJow4M5uwoqTCD0bcITItbC5WZ57Mcmv0_1nk,41873
232
232
  ccxt/async_support/bitget.py,sha256=BLMe-ofDnsehCgJSJZkKK2JN7NbsBFZGop_cuM57cyU,425120
233
233
  ccxt/async_support/bithumb.py,sha256=4XN45L8XmpxUAWiFZKzwSpeVLhlRZhQY4IZLyh-yjCc,46078
234
- ccxt/async_support/bitmart.py,sha256=F1LeYW_ExcJ1SKRABq_LqH5dq6Q145HanIvG40RPRsc,205390
234
+ ccxt/async_support/bitmart.py,sha256=uk2BlYykgS4ooEgrww7wHAxR-rBaEpeQkpxLG-8JVfc,209130
235
235
  ccxt/async_support/bitmex.py,sha256=JCRSgTWNwB97A1vwvEpajD8VQ4AE8Qs5ZU1yd8KaiYc,127440
236
236
  ccxt/async_support/bitopro.py,sha256=OWWNB_6Vpe10JG0P7dpmgerPEtmuxbx5_DLBFWnsL7w,69147
237
237
  ccxt/async_support/bitpanda.py,sha256=2k3URBWrpnh2xHa7JiYenI7_4MW5UeOPGzetlmRkR4U,485
@@ -241,11 +241,11 @@ ccxt/async_support/bitstamp.py,sha256=fTgV3LM7_3Y5Ly98l2NFqhjuQoldIIzNB1SidK6lgm
241
241
  ccxt/async_support/bitteam.py,sha256=7qkGnxmLhFIu8WOvVmRFE0wV9HKNmJk-yHrqJ43ksuk,102555
242
242
  ccxt/async_support/bitvavo.py,sha256=kSonShw7cz-0n1cvjc5z7k5Vnbe1Q9AgCQHWpZchUv0,92208
243
243
  ccxt/async_support/bl3p.py,sha256=hEZ7xEtj7MDkHJ8nZjJN4VZLmAMVzljBpqsi9YBQ3YM,20777
244
- ccxt/async_support/blockchaincom.py,sha256=P_edztJfehnxSbWAnEGGzUgp3YNQ3cgtSUFgXpyzK_8,49366
244
+ ccxt/async_support/blockchaincom.py,sha256=6Pu5h_JR53cSc20GyURUs543tB4q7GjE1LT2VK5a2Js,49427
245
245
  ccxt/async_support/blofin.py,sha256=lCzCaKe2caQj1XFUIZ8zXj5WBWxDGFjg_SNykxbnHYc,100084
246
246
  ccxt/async_support/btcalpha.py,sha256=SYmpEot6Knp0B0FAZ5-0r_w5SuQqEhQYFwLnTekyiAM,37245
247
247
  ccxt/async_support/btcbox.py,sha256=ML57vDSZC7UJfl5MvNKytPtvyR_rOnIoBOZRhGPxWwE,23782
248
- ccxt/async_support/btcmarkets.py,sha256=l_nhiwG3VEJw2SJc2z53B5tyPSMkrNSowu9TmfLIgp0,52004
248
+ ccxt/async_support/btcmarkets.py,sha256=KX4Vwn4LCAJqx2TgsevAAdF9gFTpUPRrEqp3CYizsnw,52982
249
249
  ccxt/async_support/btcturk.py,sha256=wWelnADTNhrGGVH0qjuDaOPZ5xkMblggHUDFGQBMG20,37211
250
250
  ccxt/async_support/bybit.py,sha256=0FOxbry0iP0nK24xlMKBpBAYgMWrAvp2TtIUowaJgyQ,414998
251
251
  ccxt/async_support/cex.py,sha256=8XcqkxF2fSzLnenfkyvXxHmnWgUvrifaBAI-HiJLIZY,70436
@@ -254,7 +254,7 @@ ccxt/async_support/coinbaseadvanced.py,sha256=Kupwnuxiu_qTjwCNV2asacoDUNFQvcaHNA
254
254
  ccxt/async_support/coinbaseexchange.py,sha256=eDJIvxNNm-MvdFzCUlM0JQMwcSm1DBymXy4AaV2GKJc,79414
255
255
  ccxt/async_support/coinbaseinternational.py,sha256=pIybc9DfEeUVVnorHAkAitibuHuEatQZ2MciwIW6WLA,88026
256
256
  ccxt/async_support/coincheck.py,sha256=Vhnzmdr_N7fpSOIthoTE6HSqVA5xPF2bG6W5UleVdkk,36149
257
- ccxt/async_support/coinex.py,sha256=_TNVuWDPgU9KUSJEN_T-IXWgOH234TTz4ZUfdtLWqRA,259315
257
+ ccxt/async_support/coinex.py,sha256=7wZz1WQaWYHGj4V2WZ1DG8kZkqYvWH6oOQ03IqSPmVc,258688
258
258
  ccxt/async_support/coinlist.py,sha256=MLkN9Z_7b1i0mBdjsbAcUmZrNuvHikcGOPESS--axRE,104626
259
259
  ccxt/async_support/coinmate.py,sha256=8_Z-faTalZ_hbRTzOqJafsbh44ZnVZG84HdC3z8m7fw,46799
260
260
  ccxt/async_support/coinmetro.py,sha256=RFOMp1sxrk3jsM_5M0sLou1q79y9kz32pWPkJOcNPTQ,81189
@@ -281,9 +281,9 @@ ccxt/async_support/hyperliquid.py,sha256=xy4GMllF4APqWrHjWmI7hUQRJtsMY-7k_2moNVP
281
281
  ccxt/async_support/idex.py,sha256=f5CvLsX4ECEr-spmDP2a26Ge2AmbWMip1o0usOmbvAE,73707
282
282
  ccxt/async_support/independentreserve.py,sha256=DxoBIoijcViZGfOgItukkWvL2pKv-03ZsQQVG6dGFW0,33750
283
283
  ccxt/async_support/indodax.py,sha256=GY3-cmbfhihBOgCtnJ_wqBCnk-mqQ64zDoNJ-3qy8tM,53740
284
- ccxt/async_support/kraken.py,sha256=Wi-bG5ftU0DNDkT05mu-BylIdliwsLcDGQvLy0bPxbQ,129111
285
- ccxt/async_support/krakenfutures.py,sha256=G5lWWvUyyl64laoN-i08k3S8fyOGKfx-2Vbkn42D6tE,117589
286
- ccxt/async_support/kucoin.py,sha256=xcBYK19XTgiAWViYprAhJb8dHrgEKyOQcV2ODX2a5dw,219370
284
+ ccxt/async_support/kraken.py,sha256=0KSIQe-6cDALKcWNPFO0n6wpNimqnAVNyL3-Tr2wyTE,129699
285
+ ccxt/async_support/krakenfutures.py,sha256=uHYGPOVKZuYQreL02vVS5g6fGFCOP8XU57qm61nQf_g,119707
286
+ ccxt/async_support/kucoin.py,sha256=XLRTx8gtWB4MOvsuyV3vKlnD5IyDS5KR6bmAWmtuENw,221429
287
287
  ccxt/async_support/kucoinfutures.py,sha256=19pp3iLxyGxqNvFLZ3W_Ov6gqUAwQE5oTvp9DezKmG8,125203
288
288
  ccxt/async_support/kuna.py,sha256=4a1hsvp1wzvpbFJun2qkqSNXwKiyXpskjNwuHhw0jeE,96604
289
289
  ccxt/async_support/latoken.py,sha256=3whvcGw1JgH-2-KlgkPWy7fNt1PJVy8m8TnAwuBP3U4,79869
@@ -300,24 +300,24 @@ ccxt/async_support/okx.py,sha256=LdL59JNSX1Eyeuovkju-zFtyy9CA8hbQAcGwmIHs5_0,379
300
300
  ccxt/async_support/onetrading.py,sha256=u6Y7zWjfVBVBl9RLIUfwAneZzE4fOENx7Y11zE7MChM,88792
301
301
  ccxt/async_support/p2b.py,sha256=vwavNnMyU7tJF1FIIBhZe4az58clzptk0bEuIDPmOAA,54576
302
302
  ccxt/async_support/paymium.py,sha256=WKPElafAfmg06ATcLLIS0V09kZIGlSbn0L7Z3rcLvQA,24608
303
- ccxt/async_support/phemex.py,sha256=aXT0fIm-9maFccEGpDn4vVRHy8YEi053yChAtncZtpE,223454
303
+ ccxt/async_support/phemex.py,sha256=a9ROQZNJhnggj7GJWNqC1IcvYnWesrgxTkxpDU9P_CU,223321
304
304
  ccxt/async_support/poloniex.py,sha256=ReU0bRFEkEvQ3TdQ7SPYWE0uuecIL6AQdkSq34yJ9UQ,102790
305
305
  ccxt/async_support/poloniexfutures.py,sha256=Hetf5NbSAQg66xBsSnmrp5m25pmnEzz4OOt2h21aiM8,78475
306
306
  ccxt/async_support/probit.py,sha256=x3pLThDvlmaIdj7-0PlkgolrfsXN1YkeVVd0BBdtpvg,76283
307
307
  ccxt/async_support/timex.py,sha256=6_SBBYk3IW3iFFpHejYBPOTvmoOAFROygbh7TR0YvXM,71813
308
308
  ccxt/async_support/tokocrypto.py,sha256=KriZFm9ihljhmNvS5K24cOOrMf_giCtoJPhIP9WKg4k,123561
309
- ccxt/async_support/tradeogre.py,sha256=9TvqQ6OzxajkIC_6eMzuUs8pfHQiiyEHTR7uky5FZXM,24197
309
+ ccxt/async_support/tradeogre.py,sha256=Nv6ifk1guxLlC7yAOdfneIJbYXqEBPDMqQKomMX_anM,24406
310
310
  ccxt/async_support/upbit.py,sha256=IwpTyde1fOMEhq0D8yUnbWHNOZwof_yAoccOP2yh7wY,82493
311
- ccxt/async_support/wavesexchange.py,sha256=iLrg2z3npMfiUUcaqVgDJZsi2EVstwgTRThWTyeLxmQ,114381
312
- ccxt/async_support/wazirx.py,sha256=FOv4rrTDhhuFVnCYS47EqgtyPEqCO0gJIJKcWA2FMTE,51811
311
+ ccxt/async_support/wavesexchange.py,sha256=E4RQ3b0U8CyGOy0opEBV0yM9F2w5MqTgLPBanrntMQU,114398
312
+ ccxt/async_support/wazirx.py,sha256=C3Y4R4aMyj4404n5LtotvqlZDt5ILp_MvauyvL06e1k,52708
313
313
  ccxt/async_support/whitebit.py,sha256=mwoolQKWL_9ZpC-zU5Ti4rM7QsK3Fmmo_MRUgj_Nno8,119406
314
314
  ccxt/async_support/woo.py,sha256=xJbeEaR96J1jlUOPqJefkZaQHHOwJWGP9i_H2FpalGM,140784
315
315
  ccxt/async_support/woofipro.py,sha256=TpqpecKLLbv-Nfs5wiJerhqOxlTbTELDFkXcaZNKreU,116008
316
316
  ccxt/async_support/yobit.py,sha256=KQcu9nXJPDlAodZyxOXKIn6eTSLmlvUlgRFE6EBLfug,53656
317
317
  ccxt/async_support/zaif.py,sha256=jTK5pLZSpKL1Pt0qAJTjN09TDS5AfhptGgGAqw7sNwE,29045
318
- ccxt/async_support/zonda.py,sha256=e5sSXcFM7NZSyCGPoKmeyNe5wLIxJZJhDAetMknwAYo,81544
318
+ ccxt/async_support/zonda.py,sha256=skMMmUUjXJmnQpzlFrJfmg4-vEIOsTGz2zSW9nI4C90,81721
319
319
  ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
320
- ccxt/async_support/base/exchange.py,sha256=mgoSZ5FEO9w77am57-BREXiYzeOutllfSC2gz9ADpvI,109872
320
+ ccxt/async_support/base/exchange.py,sha256=taHvhZFSueJLB4TIEjC87RDN7frXnplzvsxrfgGyLVM,109872
321
321
  ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
322
322
  ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
323
323
  ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
@@ -331,10 +331,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
331
331
  ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
332
332
  ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
333
333
  ccxt/base/errors.py,sha256=FGdyULeNCNcl52gA_CNhe2dZmat9GJGkTdlIyDXAF_A,4213
334
- ccxt/base/exchange.py,sha256=fwrnBVspS_YoI00LbOQHk7EcG7_DU01iIPgFGc5OBYo,280871
334
+ ccxt/base/exchange.py,sha256=wiTid9UfVN11HRIUD20NMYFeXP2E4RMTRGDbLrsAGaE,280871
335
335
  ccxt/base/precise.py,sha256=_xfu54sV0vWNnOfGTKRFykeuWP8mn4K1m9lk1tcllX4,8565
336
336
  ccxt/base/types.py,sha256=RGGcbz86cVtrmU602zoFO5gSWrv_J7IHxQkPnzmNirs,9247
337
- ccxt/pro/__init__.py,sha256=CPAYFP-1Pkzq3oNYtuAFsTz0TuMFEQqOYdxiLHcAjAE,7107
337
+ ccxt/pro/__init__.py,sha256=V85rb4hLAXwd5ORhGEBPyf3rAm3SL8jxIDP2vu9pnCU,7107
338
338
  ccxt/pro/alpaca.py,sha256=QA_Dmxu1ockCSYJMbOodbNke3t1tAl0hFL-q56UMQWE,27224
339
339
  ccxt/pro/ascendex.py,sha256=181FIeztchLqGmgecRJEN8F8xEM45D5aMKhC-5nuNfU,35467
340
340
  ccxt/pro/bequant.py,sha256=5zbsP8BHQTUZ8ZNL6uaACxDbUClgkOV4SYfXT_LfQVg,1351
@@ -346,7 +346,7 @@ ccxt/pro/bingx.py,sha256=B5Tte6TYvv2S-hxbpJVsWa0qQjEulW1aoPBpiRLKtig,53806
346
346
  ccxt/pro/bitcoincom.py,sha256=zAX6hiz4hS6Un8dSGp88rpnvItxQHfNmsfF0IZ2xIVA,1181
347
347
  ccxt/pro/bitfinex.py,sha256=55-BovgmV3cHjys5GSRk36RiNQtGgW4NWPI1goRrDic,24890
348
348
  ccxt/pro/bitfinex2.py,sha256=u9utq8U4s1l77uFB-b1AXfKqHGMaShg_f8699stsMQw,42923
349
- ccxt/pro/bitget.py,sha256=yEHlUFWgJVZDYzF6F7NExqlaSpaQBbWgdke_bIhYelE,73918
349
+ ccxt/pro/bitget.py,sha256=isLDhNseVcix0YjXVafTq1W18hhaloPPRdhyusAlY5k,74629
350
350
  ccxt/pro/bithumb.py,sha256=dqYKWebxFg4rsP7jg3oBnCUBcpZAoqAmZsozAU9pYds,16835
351
351
  ccxt/pro/bitmart.py,sha256=LEL8l7AYRzmxilMiVRUW6JuEY7La1CYxlbQbYHnPfmc,62426
352
352
  ccxt/pro/bitmex.py,sha256=37rOYjBoNMAG_idlVu8wP1FQ5QpqF2z616xrsXiqPxk,73691
@@ -356,7 +356,7 @@ ccxt/pro/bitrue.py,sha256=aDbPloGgsEN_DnoAJCkM0Y4MJ1r57OvoKpinynhRNrA,16463
356
356
  ccxt/pro/bitstamp.py,sha256=P8Td5HqWiO6GMdLj-cKqPTZD28fltWlZQ7Z-omDbO60,20916
357
357
  ccxt/pro/bitvavo.py,sha256=vn70dtyWs2TSZieCevvwKliRInmvvzMrvTyGq0fTIYM,56229
358
358
  ccxt/pro/blockchaincom.py,sha256=LtCL3habcuB2IRXXK_oeqdzqpnkj01Gr79X82nK8Mnk,29600
359
- ccxt/pro/bybit.py,sha256=JmqA7Le1Pcdgr5TElu_kFAHHu0-tLQDsqamjfJoaKz4,88926
359
+ ccxt/pro/bybit.py,sha256=tyMTGFtBbQ2ncwBxjpW3yWKT1xeqT7CXDHgzBaD8neg,88926
360
360
  ccxt/pro/cex.py,sha256=ri0fnWYa4tFeeuJ_edqUziI5VJ921rRjIapion9Emug,58495
361
361
  ccxt/pro/coinbase.py,sha256=q5PQ--k9q50UrgWCPYV0y2tx5hQ32nmWXBp4nvJsQag,30628
362
362
  ccxt/pro/coinbaseexchange.py,sha256=taV-mCliIcc6XQjxSl2HmYHpBkOIDkxUxF2LrBSXfCc,39035
@@ -385,7 +385,7 @@ ccxt/pro/kucoin.py,sha256=XoH3kW-5pCf-8672tSP-ijpINm7T5sZcBRyHVIrKjiQ,50777
385
385
  ccxt/pro/kucoinfutures.py,sha256=NSd0cxEGoO_yytG0KRgZUOoCvjj5UjjXD8m_tlp3pIo,50319
386
386
  ccxt/pro/lbank.py,sha256=ip7zjZFvGKufpu30WN2_lFQ-ODcJVNkcJQHbz-uLfHo,35203
387
387
  ccxt/pro/luno.py,sha256=AzLK0_C0Hu25ukMNkMLP_sY3D4UG9FT38oawpo4jzTg,12336
388
- ccxt/pro/mexc.py,sha256=F33IK9npVfdTkp0i7OX9UqJYoVrFhsX_JXmm2vHvs2E,43265
388
+ ccxt/pro/mexc.py,sha256=yWXvZX0fbsAUPmQS48skPOSDcqGBlYofzgANTutrP4g,43266
389
389
  ccxt/pro/ndax.py,sha256=fQsoYtrTEsCZB3hl-pavQytwQAaiMAiTyaCiOy1sVTg,22715
390
390
  ccxt/pro/okcoin.py,sha256=M9x9p9umvIdP13uw_Wyx-TCg7QLMI7ov5DnukCXTBNE,30421
391
391
  ccxt/pro/okx.py,sha256=wDGxy_IoM9XYMySAhtoYuOFGeyGWqEP3lOjorjVw3Lo,83790
@@ -395,10 +395,10 @@ ccxt/pro/phemex.py,sha256=jwNOvJf3FcJAqsPzZDSGLWJ8ukjJyugVgCZzSPimhZ8,61074
395
395
  ccxt/pro/poloniex.py,sha256=XlnwsZYmA6p93T2C_ZE_wfWUUwujBpwWvCrkl0uDQdA,51289
396
396
  ccxt/pro/poloniexfutures.py,sha256=iyA57Gre_58DaAUnWLGdnBEue2xSWznCuQ6c1qxTH3c,41719
397
397
  ccxt/pro/probit.py,sha256=8M2F0wn58oQlAh7d6MsCnXXQaraFpN5ImeQBhnsHo0M,22896
398
- ccxt/pro/upbit.py,sha256=0_mlrSTxm_BvSglxcN5e_QKEGtv1iiV0pMRhHtkZNyI,21958
398
+ ccxt/pro/upbit.py,sha256=jxL1twQsfh0pQ_HcmPbevAcl4WdLZk7_Pg-jhapmGUs,22098
399
399
  ccxt/pro/wazirx.py,sha256=LXpotTduk3fhtcJP2TWpssiOOAZGxhou5_MTK-0G7n0,30082
400
400
  ccxt/pro/whitebit.py,sha256=ZoWKxOYFG3flOYHosUo6LGRs83PVgCC3trLxJbbFLpk,35069
401
- ccxt/pro/woo.py,sha256=rxos2u5iRIJrhQTPRy_pmsNnI4ooleBagstVwLYX-H8,43678
401
+ ccxt/pro/woo.py,sha256=tUNliITNgTqSnc598jW9xTRXzzvkWtRw4dzY220T0ow,43678
402
402
  ccxt/pro/woofipro.py,sha256=rWsxJxQsJEpLmu-W-rLwc3OO2b_Uq-dxaJ_8sZ_Q4aM,48976
403
403
  ccxt/static_dependencies/__init__.py,sha256=GpOAh5lJ5Kyk1K1lWf9DzDZeZ-prHXXK38dVpW5GPfc,84
404
404
  ccxt/static_dependencies/ecdsa/__init__.py,sha256=Xaj0G79BLtBt2YZcOOMV8qOlQZ7fIJznNiHhiEEZfQA,594
@@ -535,7 +535,7 @@ ccxt/test/base/test_ticker.py,sha256=cMTIMb1oySNORUCmqI5ZzMswlEyCF6gJMah3vfvo8wQ
535
535
  ccxt/test/base/test_trade.py,sha256=PMtmB8V38dpaP-eb8h488xYMlR6D69yCOhsA1RuWrUA,2336
536
536
  ccxt/test/base/test_trading_fee.py,sha256=2aDCNJtqBkTC_AieO0l1HYGq5hz5qkWlkWb9Nv_fcwk,1066
537
537
  ccxt/test/base/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
538
- ccxt-4.3.41.dist-info/METADATA,sha256=I43awCHZM6Bb2-u2y_8EN9bWfc6gikMQxx-1zItsW-Y,112977
539
- ccxt-4.3.41.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
540
- ccxt-4.3.41.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
541
- ccxt-4.3.41.dist-info/RECORD,,
538
+ ccxt-4.3.43.dist-info/METADATA,sha256=h2zRk9OIcNgKUoBUjEZ7JgoFpnhTTrDWBkoOEjLbDqs,112977
539
+ ccxt-4.3.43.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
540
+ ccxt-4.3.43.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
541
+ ccxt-4.3.43.dist-info/RECORD,,
File without changes