ccxt 4.3.48__py2.py3-none-any.whl → 4.3.50__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.48'
25
+ __version__ = '4.3.50'
26
26
 
27
27
  # ----------------------------------------------------------------------------
28
28
 
ccxt/ace.py CHANGED
@@ -977,13 +977,11 @@ class ace(Exchange, ImplicitAPI):
977
977
  auth = 'ACE_SIGN' + self.secret
978
978
  data = self.extend({
979
979
  'apiKey': self.apiKey,
980
- 'timeStamp': nonce,
980
+ 'timeStamp': self.number_to_string(nonce),
981
981
  }, params)
982
- dataKeys = list(data.keys())
983
- sortedDataKeys = self.sort_by(dataKeys, 0, False, '')
984
- for i in range(0, len(sortedDataKeys)):
985
- key = sortedDataKeys[i]
986
- auth += self.safe_string(data, key)
982
+ sortedData = self.keysort(data)
983
+ values = list(sortedData.values())
984
+ auth += ''.join(values)
987
985
  signature = self.hash(self.encode(auth), 'sha256', 'hex')
988
986
  data['signKey'] = signature
989
987
  headers = {
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.3.48'
7
+ __version__ = '4.3.50'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
ccxt/async_support/ace.py CHANGED
@@ -977,13 +977,11 @@ class ace(Exchange, ImplicitAPI):
977
977
  auth = 'ACE_SIGN' + self.secret
978
978
  data = self.extend({
979
979
  'apiKey': self.apiKey,
980
- 'timeStamp': nonce,
980
+ 'timeStamp': self.number_to_string(nonce),
981
981
  }, params)
982
- dataKeys = list(data.keys())
983
- sortedDataKeys = self.sort_by(dataKeys, 0, False, '')
984
- for i in range(0, len(sortedDataKeys)):
985
- key = sortedDataKeys[i]
986
- auth += self.safe_string(data, key)
982
+ sortedData = self.keysort(data)
983
+ values = list(sortedData.values())
984
+ auth += ''.join(values)
987
985
  signature = self.hash(self.encode(auth), 'sha256', 'hex')
988
986
  data['signKey'] = signature
989
987
  headers = {
@@ -2,7 +2,7 @@
2
2
 
3
3
  # -----------------------------------------------------------------------------
4
4
 
5
- __version__ = '4.3.48'
5
+ __version__ = '4.3.50'
6
6
 
7
7
  # -----------------------------------------------------------------------------
8
8
 
@@ -34,7 +34,7 @@ from ccxt.base.errors import OnMaintenance
34
34
  from ccxt.base.errors import InvalidNonce
35
35
  from ccxt.base.errors import RequestTimeout
36
36
  from ccxt.base.decimal_to_precision import TRUNCATE
37
- from ccxt.base.decimal_to_precision import DECIMAL_PLACES
37
+ from ccxt.base.decimal_to_precision import TICK_SIZE
38
38
  from ccxt.base.precise import Precise
39
39
 
40
40
 
@@ -1204,7 +1204,7 @@ class binance(Exchange, ImplicitAPI):
1204
1204
  'BCC': 'BCC', # kept for backward-compatibility https://github.com/ccxt/ccxt/issues/4848
1205
1205
  'YOYO': 'YOYOW',
1206
1206
  },
1207
- 'precisionMode': DECIMAL_PLACES,
1207
+ 'precisionMode': TICK_SIZE,
1208
1208
  # exchange-specific options
1209
1209
  'options': {
1210
1210
  'sandboxMode': False,
@@ -2771,7 +2771,7 @@ class binance(Exchange, ImplicitAPI):
2771
2771
  'deposit': depositEnable,
2772
2772
  'withdraw': withdrawEnable,
2773
2773
  'fee': self.parse_number(fee),
2774
- 'precision': minPrecision,
2774
+ 'precision': self.parse_number(precisionTick),
2775
2775
  'limits': {
2776
2776
  'withdraw': {
2777
2777
  'min': self.safe_number(networkItem, 'withdrawMin'),
@@ -2785,14 +2785,11 @@ class binance(Exchange, ImplicitAPI):
2785
2785
  }
2786
2786
  trading = self.safe_bool(entry, 'trading')
2787
2787
  active = (isWithdrawEnabled and isDepositEnabled and trading)
2788
- maxDecimalPlaces = None
2789
- if minPrecision is not None:
2790
- maxDecimalPlaces = int(self.number_to_string(self.precision_from_string(minPrecision)))
2791
2788
  result[code] = {
2792
2789
  'id': id,
2793
2790
  'name': name,
2794
2791
  'code': code,
2795
- 'precision': maxDecimalPlaces,
2792
+ 'precision': self.parse_number(minPrecision),
2796
2793
  'info': entry,
2797
2794
  'active': active,
2798
2795
  'deposit': isDepositEnabled,
@@ -3148,10 +3145,10 @@ class binance(Exchange, ImplicitAPI):
3148
3145
  'strike': parsedStrike,
3149
3146
  'optionType': self.safe_string_lower(market, 'side'),
3150
3147
  'precision': {
3151
- 'amount': self.safe_integer_2(market, 'quantityPrecision', 'quantityScale'),
3152
- 'price': self.safe_integer_2(market, 'pricePrecision', 'priceScale'),
3153
- 'base': self.safe_integer(market, 'baseAssetPrecision'),
3154
- 'quote': self.safe_integer(market, 'quotePrecision'),
3148
+ 'amount': self.parse_number(self.parse_precision(self.safe_string_2(market, 'quantityPrecision', 'quantityScale'))),
3149
+ 'price': self.parse_number(self.parse_precision(self.safe_string_2(market, 'pricePrecision', 'priceScale'))),
3150
+ 'base': self.parse_number(self.parse_precision(self.safe_string(market, 'baseAssetPrecision'))),
3151
+ 'quote': self.parse_number(self.parse_precision(self.safe_string(market, 'quotePrecision'))),
3155
3152
  },
3156
3153
  'limits': {
3157
3154
  'leverage': {
@@ -3184,11 +3181,10 @@ class binance(Exchange, ImplicitAPI):
3184
3181
  'min': self.safe_number(filter, 'minPrice'),
3185
3182
  'max': self.safe_number(filter, 'maxPrice'),
3186
3183
  }
3187
- entry['precision']['price'] = self.precision_from_string(filter['tickSize'])
3184
+ entry['precision']['price'] = self.safe_number(filter, 'tickSize')
3188
3185
  if 'LOT_SIZE' in filtersByType:
3189
3186
  filter = self.safe_dict(filtersByType, 'LOT_SIZE', {})
3190
- stepSize = self.safe_string(filter, 'stepSize')
3191
- entry['precision']['amount'] = self.precision_from_string(stepSize)
3187
+ entry['precision']['amount'] = self.safe_number(filter, 'stepSize')
3192
3188
  entry['limits']['amount'] = {
3193
3189
  'min': self.safe_number(filter, 'minQty'),
3194
3190
  'max': self.safe_number(filter, 'maxQty'),
@@ -8903,7 +8899,7 @@ class binance(Exchange, ImplicitAPI):
8903
8899
  leftSide = Precise.string_mul(size, onePlusMaintenanceMarginPercentageString)
8904
8900
  rightSide = Precise.string_sub(Precise.string_mul(Precise.string_div('1', entryPriceSignString), size), walletBalance)
8905
8901
  liquidationPriceStringRaw = Precise.string_div(leftSide, rightSide)
8906
- pricePrecision = market['precision']['price']
8902
+ pricePrecision = self.precision_from_string(self.safe_string(market['precision'], 'price'))
8907
8903
  pricePrecisionPlusOne = pricePrecision + 1
8908
8904
  pricePrecisionPlusOneString = str(pricePrecisionPlusOne)
8909
8905
  # round half up
@@ -9068,8 +9064,7 @@ class binance(Exchange, ImplicitAPI):
9068
9064
  onePlusMaintenanceMarginPercentageString = Precise.string_add('-1', maintenanceMarginPercentageString)
9069
9065
  inner = Precise.string_mul(liquidationPriceString, onePlusMaintenanceMarginPercentageString)
9070
9066
  leftSide = Precise.string_add(inner, entryPriceSignString)
9071
- pricePrecision = self.safe_integer(precision, 'price')
9072
- quotePrecision = self.safe_integer(precision, 'quote', pricePrecision)
9067
+ quotePrecision = self.precision_from_string(self.safe_string_2(precision, 'quote', 'price'))
9073
9068
  if quotePrecision is not None:
9074
9069
  collateralString = Precise.string_div(Precise.string_mul(leftSide, contractsAbs), '1', quotePrecision)
9075
9070
  else:
@@ -9083,7 +9078,7 @@ class binance(Exchange, ImplicitAPI):
9083
9078
  entryPriceSignString = Precise.string_mul('-1', entryPriceSignString)
9084
9079
  leftSide = Precise.string_mul(contractsAbs, contractSizeString)
9085
9080
  rightSide = Precise.string_sub(Precise.string_div('1', entryPriceSignString), Precise.string_div(onePlusMaintenanceMarginPercentageString, liquidationPriceString))
9086
- basePrecision = self.safe_integer(precision, 'base')
9081
+ basePrecision = self.precision_from_string(self.safe_string(precision, 'base'))
9087
9082
  if basePrecision is not None:
9088
9083
  collateralString = Precise.string_div(Precise.string_mul(leftSide, rightSide), '1', basePrecision)
9089
9084
  else:
@@ -11890,7 +11885,7 @@ class binance(Exchange, ImplicitAPI):
11890
11885
  'deposit': None,
11891
11886
  'withdraw': None,
11892
11887
  'fee': None,
11893
- 'precision': self.safe_integer(entry, 'fraction'),
11888
+ 'precision': self.parse_number(self.parse_precision(self.safe_string(entry, 'fraction'))),
11894
11889
  'limits': {
11895
11890
  'amount': {
11896
11891
  'min': None,
@@ -3981,6 +3981,7 @@ class bitget(Exchange, ImplicitAPI):
3981
3981
  :param str [params.trailingTriggerPrice]: *swap and future only* the price to trigger a trailing stop order, default uses the price argument
3982
3982
  :param str [params.triggerType]: *swap and future only* 'fill_price', 'mark_price' or 'index_price'
3983
3983
  :param boolean [params.oneWayMode]: *swap and future only* required to set self to True in one_way_mode and you can leave self in hedge_mode, can adjust the mode using the setPositionMode() method
3984
+ :param bool [params.reduceOnly]: True or False whether the order is reduce-only
3984
3985
  :returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
3985
3986
  """
3986
3987
  await self.load_markets()
@@ -962,7 +962,19 @@ class bitso(Exchange, ImplicitAPI):
962
962
  request: dict = {
963
963
  'oid': id,
964
964
  }
965
- return await self.privateDeleteOrdersOid(self.extend(request, params))
965
+ response = await self.privateDeleteOrdersOid(self.extend(request, params))
966
+ #
967
+ # {
968
+ # "success": True,
969
+ # "payload": ["yWTQGxDMZ0VimZgZ"]
970
+ # }
971
+ #
972
+ payload = self.safe_list(response, 'payload', [])
973
+ orderId = self.safe_string(payload, 0)
974
+ return self.safe_order({
975
+ 'info': response,
976
+ 'id': orderId,
977
+ })
966
978
 
967
979
  async def cancel_orders(self, ids, symbol: Str = None, params={}):
968
980
  """
ccxt/async_support/htx.py CHANGED
@@ -3747,10 +3747,10 @@ class htx(Exchange, ImplicitAPI):
3747
3747
  'status': '0', # support multiple query seperated by ',',such as '3,4,5', 0: all. 3. Have sumbmitted the orders; 4. Orders partially matched; 5. Orders cancelled with partially matched; 6. Orders fully matched; 7. Orders cancelled
3748
3748
  }
3749
3749
  response = None
3750
- stop = self.safe_value(params, 'stop')
3750
+ stop = self.safe_bool_2(params, 'stop', 'trigger')
3751
3751
  stopLossTakeProfit = self.safe_value(params, 'stopLossTakeProfit')
3752
3752
  trailing = self.safe_bool(params, 'trailing', False)
3753
- params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing'])
3753
+ params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing', 'trigger'])
3754
3754
  if stop or stopLossTakeProfit or trailing:
3755
3755
  if limit is not None:
3756
3756
  request['page_size'] = limit
@@ -4071,10 +4071,10 @@ class htx(Exchange, ImplicitAPI):
4071
4071
  if limit is not None:
4072
4072
  request['page_size'] = limit
4073
4073
  request['contract_code'] = market['id']
4074
- stop = self.safe_value(params, 'stop')
4074
+ stop = self.safe_bool_2(params, 'stop', 'trigger')
4075
4075
  stopLossTakeProfit = self.safe_value(params, 'stopLossTakeProfit')
4076
4076
  trailing = self.safe_bool(params, 'trailing', False)
4077
- params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing'])
4077
+ params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing', 'trigger'])
4078
4078
  if market['linear']:
4079
4079
  marginMode = None
4080
4080
  marginMode, params = self.handle_margin_mode_and_params('fetchOpenOrders', params)
@@ -5306,10 +5306,10 @@ class htx(Exchange, ImplicitAPI):
5306
5306
  request['symbol'] = market['settleId']
5307
5307
  else:
5308
5308
  request['contract_code'] = market['id']
5309
- stop = self.safe_value(params, 'stop')
5309
+ stop = self.safe_bool_2(params, 'stop', 'trigger')
5310
5310
  stopLossTakeProfit = self.safe_value(params, 'stopLossTakeProfit')
5311
5311
  trailing = self.safe_bool(params, 'trailing', False)
5312
- params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing'])
5312
+ params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing', 'trigger'])
5313
5313
  if market['linear']:
5314
5314
  marginMode = None
5315
5315
  marginMode, params = self.handle_margin_mode_and_params('cancelOrder', params)
@@ -5433,9 +5433,9 @@ class htx(Exchange, ImplicitAPI):
5433
5433
  request['symbol'] = market['settleId']
5434
5434
  else:
5435
5435
  request['contract_code'] = market['id']
5436
- stop = self.safe_value(params, 'stop')
5436
+ stop = self.safe_bool_2(params, 'stop', 'trigger')
5437
5437
  stopLossTakeProfit = self.safe_value(params, 'stopLossTakeProfit')
5438
- params = self.omit(params, ['stop', 'stopLossTakeProfit'])
5438
+ params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trigger'])
5439
5439
  if market['linear']:
5440
5440
  marginMode = None
5441
5441
  marginMode, params = self.handle_margin_mode_and_params('cancelOrders', params)
@@ -5565,10 +5565,10 @@ class htx(Exchange, ImplicitAPI):
5565
5565
  if market['future']:
5566
5566
  request['symbol'] = market['settleId']
5567
5567
  request['contract_code'] = market['id']
5568
- stop = self.safe_value(params, 'stop')
5568
+ stop = self.safe_bool_2(params, 'stop', 'trigger')
5569
5569
  stopLossTakeProfit = self.safe_value(params, 'stopLossTakeProfit')
5570
5570
  trailing = self.safe_bool(params, 'trailing', False)
5571
- params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing'])
5571
+ params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing', 'trigger'])
5572
5572
  if market['linear']:
5573
5573
  marginMode = None
5574
5574
  marginMode, params = self.handle_margin_mode_and_params('cancelAllOrders', params)
@@ -1170,7 +1170,8 @@ class hyperliquid(Exchange, ImplicitAPI):
1170
1170
  :param str [params.vaultAddress]: the vault address for order
1171
1171
  :returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
1172
1172
  """
1173
- return await self.cancel_orders([id], symbol, params)
1173
+ orders = await self.cancel_orders([id], symbol, params)
1174
+ return self.safe_dict(orders, 0)
1174
1175
 
1175
1176
  async def cancel_orders(self, ids: List[str], symbol: Str = None, params={}):
1176
1177
  """
@@ -1240,7 +1241,17 @@ class hyperliquid(Exchange, ImplicitAPI):
1240
1241
  # }
1241
1242
  # }
1242
1243
  #
1243
- return response
1244
+ innerResponse = self.safe_dict(response, 'response')
1245
+ data = self.safe_dict(innerResponse, 'data')
1246
+ statuses = self.safe_list(data, 'statuses')
1247
+ orders = []
1248
+ for i in range(0, len(statuses)):
1249
+ status = statuses[i]
1250
+ orders.append(self.safe_order({
1251
+ 'info': status,
1252
+ 'status': status,
1253
+ }))
1254
+ return orders
1244
1255
 
1245
1256
  async def cancel_orders_for_symbols(self, orders: List[CancellationRequest], params={}):
1246
1257
  """
@@ -1639,6 +1639,7 @@ class kraken(Exchange, ImplicitAPI):
1639
1639
  'filled': filled,
1640
1640
  'average': average,
1641
1641
  'remaining': None,
1642
+ 'reduceOnly': self.safe_bool_2(order, 'reduceOnly', 'reduce_only'),
1642
1643
  'fee': fee,
1643
1644
  'trades': trades,
1644
1645
  }, market)
@@ -1993,7 +1994,7 @@ class kraken(Exchange, ImplicitAPI):
1993
1994
  async def cancel_order(self, id: str, symbol: Str = None, params={}):
1994
1995
  """
1995
1996
  cancels an open order
1996
- :see: https://docs.kraken.com/rest/#tag/Trading/operation/cancelOrder
1997
+ :see: https://docs.kraken.com/rest/#tag/Spot-Trading/operation/cancelOrder
1997
1998
  :param str id: order id
1998
1999
  :param str symbol: unified symbol of the market the order was made in
1999
2000
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -2028,7 +2029,7 @@ class kraken(Exchange, ImplicitAPI):
2028
2029
  async def cancel_orders(self, ids, symbol: Str = None, params={}):
2029
2030
  """
2030
2031
  cancel multiple orders
2031
- :see: https://docs.kraken.com/rest/#tag/Trading/operation/cancelOrderBatch
2032
+ :see: https://docs.kraken.com/rest/#tag/Spot-Trading/operation/cancelOrderBatch
2032
2033
  :param str[] ids: open orders transaction ID(txid) or user reference(userref)
2033
2034
  :param str symbol: unified market symbol
2034
2035
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -2055,7 +2056,7 @@ class kraken(Exchange, ImplicitAPI):
2055
2056
  async def cancel_all_orders(self, symbol: Str = None, params={}):
2056
2057
  """
2057
2058
  cancel all open orders
2058
- :see: https://docs.kraken.com/rest/#tag/Trading/operation/cancelAllOrders
2059
+ :see: https://docs.kraken.com/rest/#tag/Spot-Trading/operation/cancelAllOrders
2059
2060
  :param str symbol: unified market symbol, only orders in the market of self symbol are cancelled when symbol is not None
2060
2061
  :param dict [params]: extra parameters specific to the exchange API endpoint
2061
2062
  :returns dict[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
@@ -1762,7 +1762,7 @@ class krakenfutures(Exchange, ImplicitAPI):
1762
1762
  'type': self.parse_order_type(type),
1763
1763
  'timeInForce': timeInForce,
1764
1764
  'postOnly': type == 'post',
1765
- 'reduceOnly': self.safe_value(details, 'reduceOnly'),
1765
+ 'reduceOnly': self.safe_bool_2(details, 'reduceOnly', 'reduce_only'),
1766
1766
  'side': self.safe_string(details, 'side'),
1767
1767
  'price': price,
1768
1768
  'stopPrice': self.safe_string(details, 'triggerPrice'),
@@ -2397,9 +2397,9 @@ class kucoin(Exchange, ImplicitAPI):
2397
2397
  await self.load_markets()
2398
2398
  lowercaseStatus = status.lower()
2399
2399
  until = self.safe_integer(params, 'until')
2400
- stop = self.safe_bool(params, 'stop', False)
2400
+ stop = self.safe_bool_2(params, 'stop', 'trigger', False)
2401
2401
  hf = self.safe_bool(params, 'hf', False)
2402
- params = self.omit(params, ['stop', 'hf', 'until'])
2402
+ params = self.omit(params, ['stop', 'hf', 'until', 'trigger'])
2403
2403
  marginMode, query = self.handle_margin_mode_and_params('fetchOrdersByStatus', params)
2404
2404
  if lowercaseStatus == 'open':
2405
2405
  lowercaseStatus = 'active'
@@ -2556,7 +2556,7 @@ class kucoin(Exchange, ImplicitAPI):
2556
2556
  await self.load_markets()
2557
2557
  request: dict = {}
2558
2558
  clientOrderId = self.safe_string_2(params, 'clientOid', 'clientOrderId')
2559
- stop = self.safe_bool(params, 'stop', False)
2559
+ stop = self.safe_bool_2(params, 'stop', 'trigger', False)
2560
2560
  hf = self.safe_bool(params, 'hf', False)
2561
2561
  market = None
2562
2562
  if symbol is not None:
@@ -2565,7 +2565,7 @@ class kucoin(Exchange, ImplicitAPI):
2565
2565
  if symbol is None:
2566
2566
  raise ArgumentsRequired(self.id + ' fetchOrder() requires a symbol parameter for hf orders')
2567
2567
  request['symbol'] = market['id']
2568
- params = self.omit(params, ['stop', 'hf', 'clientOid', 'clientOrderId'])
2568
+ params = self.omit(params, ['stop', 'hf', 'clientOid', 'clientOrderId', 'trigger'])
2569
2569
  response = None
2570
2570
  if clientOrderId is not None:
2571
2571
  request['clientOid'] = clientOrderId
@@ -1688,7 +1688,7 @@ class kucoinfutures(kucoin, ImplicitAPI):
1688
1688
  paginate, params = self.handle_option_and_params(params, 'fetchOrdersByStatus', 'paginate')
1689
1689
  if paginate:
1690
1690
  return await self.fetch_paginated_call_dynamic('fetchOrdersByStatus', symbol, since, limit, params)
1691
- stop = self.safe_value_2(params, 'stop', 'trigger')
1691
+ stop = self.safe_bool_2(params, 'stop', 'trigger')
1692
1692
  until = self.safe_integer(params, 'until')
1693
1693
  params = self.omit(params, ['stop', 'until', 'trigger'])
1694
1694
  if status == 'closed':
ccxt/base/exchange.py CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.3.48'
7
+ __version__ = '4.3.50'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
ccxt/binance.py CHANGED
@@ -33,7 +33,7 @@ from ccxt.base.errors import OnMaintenance
33
33
  from ccxt.base.errors import InvalidNonce
34
34
  from ccxt.base.errors import RequestTimeout
35
35
  from ccxt.base.decimal_to_precision import TRUNCATE
36
- from ccxt.base.decimal_to_precision import DECIMAL_PLACES
36
+ from ccxt.base.decimal_to_precision import TICK_SIZE
37
37
  from ccxt.base.precise import Precise
38
38
 
39
39
 
@@ -1203,7 +1203,7 @@ class binance(Exchange, ImplicitAPI):
1203
1203
  'BCC': 'BCC', # kept for backward-compatibility https://github.com/ccxt/ccxt/issues/4848
1204
1204
  'YOYO': 'YOYOW',
1205
1205
  },
1206
- 'precisionMode': DECIMAL_PLACES,
1206
+ 'precisionMode': TICK_SIZE,
1207
1207
  # exchange-specific options
1208
1208
  'options': {
1209
1209
  'sandboxMode': False,
@@ -2770,7 +2770,7 @@ class binance(Exchange, ImplicitAPI):
2770
2770
  'deposit': depositEnable,
2771
2771
  'withdraw': withdrawEnable,
2772
2772
  'fee': self.parse_number(fee),
2773
- 'precision': minPrecision,
2773
+ 'precision': self.parse_number(precisionTick),
2774
2774
  'limits': {
2775
2775
  'withdraw': {
2776
2776
  'min': self.safe_number(networkItem, 'withdrawMin'),
@@ -2784,14 +2784,11 @@ class binance(Exchange, ImplicitAPI):
2784
2784
  }
2785
2785
  trading = self.safe_bool(entry, 'trading')
2786
2786
  active = (isWithdrawEnabled and isDepositEnabled and trading)
2787
- maxDecimalPlaces = None
2788
- if minPrecision is not None:
2789
- maxDecimalPlaces = int(self.number_to_string(self.precision_from_string(minPrecision)))
2790
2787
  result[code] = {
2791
2788
  'id': id,
2792
2789
  'name': name,
2793
2790
  'code': code,
2794
- 'precision': maxDecimalPlaces,
2791
+ 'precision': self.parse_number(minPrecision),
2795
2792
  'info': entry,
2796
2793
  'active': active,
2797
2794
  'deposit': isDepositEnabled,
@@ -3147,10 +3144,10 @@ class binance(Exchange, ImplicitAPI):
3147
3144
  'strike': parsedStrike,
3148
3145
  'optionType': self.safe_string_lower(market, 'side'),
3149
3146
  'precision': {
3150
- 'amount': self.safe_integer_2(market, 'quantityPrecision', 'quantityScale'),
3151
- 'price': self.safe_integer_2(market, 'pricePrecision', 'priceScale'),
3152
- 'base': self.safe_integer(market, 'baseAssetPrecision'),
3153
- 'quote': self.safe_integer(market, 'quotePrecision'),
3147
+ 'amount': self.parse_number(self.parse_precision(self.safe_string_2(market, 'quantityPrecision', 'quantityScale'))),
3148
+ 'price': self.parse_number(self.parse_precision(self.safe_string_2(market, 'pricePrecision', 'priceScale'))),
3149
+ 'base': self.parse_number(self.parse_precision(self.safe_string(market, 'baseAssetPrecision'))),
3150
+ 'quote': self.parse_number(self.parse_precision(self.safe_string(market, 'quotePrecision'))),
3154
3151
  },
3155
3152
  'limits': {
3156
3153
  'leverage': {
@@ -3183,11 +3180,10 @@ class binance(Exchange, ImplicitAPI):
3183
3180
  'min': self.safe_number(filter, 'minPrice'),
3184
3181
  'max': self.safe_number(filter, 'maxPrice'),
3185
3182
  }
3186
- entry['precision']['price'] = self.precision_from_string(filter['tickSize'])
3183
+ entry['precision']['price'] = self.safe_number(filter, 'tickSize')
3187
3184
  if 'LOT_SIZE' in filtersByType:
3188
3185
  filter = self.safe_dict(filtersByType, 'LOT_SIZE', {})
3189
- stepSize = self.safe_string(filter, 'stepSize')
3190
- entry['precision']['amount'] = self.precision_from_string(stepSize)
3186
+ entry['precision']['amount'] = self.safe_number(filter, 'stepSize')
3191
3187
  entry['limits']['amount'] = {
3192
3188
  'min': self.safe_number(filter, 'minQty'),
3193
3189
  'max': self.safe_number(filter, 'maxQty'),
@@ -8902,7 +8898,7 @@ class binance(Exchange, ImplicitAPI):
8902
8898
  leftSide = Precise.string_mul(size, onePlusMaintenanceMarginPercentageString)
8903
8899
  rightSide = Precise.string_sub(Precise.string_mul(Precise.string_div('1', entryPriceSignString), size), walletBalance)
8904
8900
  liquidationPriceStringRaw = Precise.string_div(leftSide, rightSide)
8905
- pricePrecision = market['precision']['price']
8901
+ pricePrecision = self.precision_from_string(self.safe_string(market['precision'], 'price'))
8906
8902
  pricePrecisionPlusOne = pricePrecision + 1
8907
8903
  pricePrecisionPlusOneString = str(pricePrecisionPlusOne)
8908
8904
  # round half up
@@ -9067,8 +9063,7 @@ class binance(Exchange, ImplicitAPI):
9067
9063
  onePlusMaintenanceMarginPercentageString = Precise.string_add('-1', maintenanceMarginPercentageString)
9068
9064
  inner = Precise.string_mul(liquidationPriceString, onePlusMaintenanceMarginPercentageString)
9069
9065
  leftSide = Precise.string_add(inner, entryPriceSignString)
9070
- pricePrecision = self.safe_integer(precision, 'price')
9071
- quotePrecision = self.safe_integer(precision, 'quote', pricePrecision)
9066
+ quotePrecision = self.precision_from_string(self.safe_string_2(precision, 'quote', 'price'))
9072
9067
  if quotePrecision is not None:
9073
9068
  collateralString = Precise.string_div(Precise.string_mul(leftSide, contractsAbs), '1', quotePrecision)
9074
9069
  else:
@@ -9082,7 +9077,7 @@ class binance(Exchange, ImplicitAPI):
9082
9077
  entryPriceSignString = Precise.string_mul('-1', entryPriceSignString)
9083
9078
  leftSide = Precise.string_mul(contractsAbs, contractSizeString)
9084
9079
  rightSide = Precise.string_sub(Precise.string_div('1', entryPriceSignString), Precise.string_div(onePlusMaintenanceMarginPercentageString, liquidationPriceString))
9085
- basePrecision = self.safe_integer(precision, 'base')
9080
+ basePrecision = self.precision_from_string(self.safe_string(precision, 'base'))
9086
9081
  if basePrecision is not None:
9087
9082
  collateralString = Precise.string_div(Precise.string_mul(leftSide, rightSide), '1', basePrecision)
9088
9083
  else:
@@ -11889,7 +11884,7 @@ class binance(Exchange, ImplicitAPI):
11889
11884
  'deposit': None,
11890
11885
  'withdraw': None,
11891
11886
  'fee': None,
11892
- 'precision': self.safe_integer(entry, 'fraction'),
11887
+ 'precision': self.parse_number(self.parse_precision(self.safe_string(entry, 'fraction'))),
11893
11888
  'limits': {
11894
11889
  'amount': {
11895
11890
  'min': None,
ccxt/bitget.py CHANGED
@@ -3980,6 +3980,7 @@ class bitget(Exchange, ImplicitAPI):
3980
3980
  :param str [params.trailingTriggerPrice]: *swap and future only* the price to trigger a trailing stop order, default uses the price argument
3981
3981
  :param str [params.triggerType]: *swap and future only* 'fill_price', 'mark_price' or 'index_price'
3982
3982
  :param boolean [params.oneWayMode]: *swap and future only* required to set self to True in one_way_mode and you can leave self in hedge_mode, can adjust the mode using the setPositionMode() method
3983
+ :param bool [params.reduceOnly]: True or False whether the order is reduce-only
3983
3984
  :returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
3984
3985
  """
3985
3986
  self.load_markets()
ccxt/bitso.py CHANGED
@@ -962,7 +962,19 @@ class bitso(Exchange, ImplicitAPI):
962
962
  request: dict = {
963
963
  'oid': id,
964
964
  }
965
- return self.privateDeleteOrdersOid(self.extend(request, params))
965
+ response = self.privateDeleteOrdersOid(self.extend(request, params))
966
+ #
967
+ # {
968
+ # "success": True,
969
+ # "payload": ["yWTQGxDMZ0VimZgZ"]
970
+ # }
971
+ #
972
+ payload = self.safe_list(response, 'payload', [])
973
+ orderId = self.safe_string(payload, 0)
974
+ return self.safe_order({
975
+ 'info': response,
976
+ 'id': orderId,
977
+ })
966
978
 
967
979
  def cancel_orders(self, ids, symbol: Str = None, params={}):
968
980
  """
ccxt/htx.py CHANGED
@@ -3746,10 +3746,10 @@ class htx(Exchange, ImplicitAPI):
3746
3746
  'status': '0', # support multiple query seperated by ',',such as '3,4,5', 0: all. 3. Have sumbmitted the orders; 4. Orders partially matched; 5. Orders cancelled with partially matched; 6. Orders fully matched; 7. Orders cancelled
3747
3747
  }
3748
3748
  response = None
3749
- stop = self.safe_value(params, 'stop')
3749
+ stop = self.safe_bool_2(params, 'stop', 'trigger')
3750
3750
  stopLossTakeProfit = self.safe_value(params, 'stopLossTakeProfit')
3751
3751
  trailing = self.safe_bool(params, 'trailing', False)
3752
- params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing'])
3752
+ params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing', 'trigger'])
3753
3753
  if stop or stopLossTakeProfit or trailing:
3754
3754
  if limit is not None:
3755
3755
  request['page_size'] = limit
@@ -4070,10 +4070,10 @@ class htx(Exchange, ImplicitAPI):
4070
4070
  if limit is not None:
4071
4071
  request['page_size'] = limit
4072
4072
  request['contract_code'] = market['id']
4073
- stop = self.safe_value(params, 'stop')
4073
+ stop = self.safe_bool_2(params, 'stop', 'trigger')
4074
4074
  stopLossTakeProfit = self.safe_value(params, 'stopLossTakeProfit')
4075
4075
  trailing = self.safe_bool(params, 'trailing', False)
4076
- params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing'])
4076
+ params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing', 'trigger'])
4077
4077
  if market['linear']:
4078
4078
  marginMode = None
4079
4079
  marginMode, params = self.handle_margin_mode_and_params('fetchOpenOrders', params)
@@ -5305,10 +5305,10 @@ class htx(Exchange, ImplicitAPI):
5305
5305
  request['symbol'] = market['settleId']
5306
5306
  else:
5307
5307
  request['contract_code'] = market['id']
5308
- stop = self.safe_value(params, 'stop')
5308
+ stop = self.safe_bool_2(params, 'stop', 'trigger')
5309
5309
  stopLossTakeProfit = self.safe_value(params, 'stopLossTakeProfit')
5310
5310
  trailing = self.safe_bool(params, 'trailing', False)
5311
- params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing'])
5311
+ params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing', 'trigger'])
5312
5312
  if market['linear']:
5313
5313
  marginMode = None
5314
5314
  marginMode, params = self.handle_margin_mode_and_params('cancelOrder', params)
@@ -5432,9 +5432,9 @@ class htx(Exchange, ImplicitAPI):
5432
5432
  request['symbol'] = market['settleId']
5433
5433
  else:
5434
5434
  request['contract_code'] = market['id']
5435
- stop = self.safe_value(params, 'stop')
5435
+ stop = self.safe_bool_2(params, 'stop', 'trigger')
5436
5436
  stopLossTakeProfit = self.safe_value(params, 'stopLossTakeProfit')
5437
- params = self.omit(params, ['stop', 'stopLossTakeProfit'])
5437
+ params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trigger'])
5438
5438
  if market['linear']:
5439
5439
  marginMode = None
5440
5440
  marginMode, params = self.handle_margin_mode_and_params('cancelOrders', params)
@@ -5564,10 +5564,10 @@ class htx(Exchange, ImplicitAPI):
5564
5564
  if market['future']:
5565
5565
  request['symbol'] = market['settleId']
5566
5566
  request['contract_code'] = market['id']
5567
- stop = self.safe_value(params, 'stop')
5567
+ stop = self.safe_bool_2(params, 'stop', 'trigger')
5568
5568
  stopLossTakeProfit = self.safe_value(params, 'stopLossTakeProfit')
5569
5569
  trailing = self.safe_bool(params, 'trailing', False)
5570
- params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing'])
5570
+ params = self.omit(params, ['stop', 'stopLossTakeProfit', 'trailing', 'trigger'])
5571
5571
  if market['linear']:
5572
5572
  marginMode = None
5573
5573
  marginMode, params = self.handle_margin_mode_and_params('cancelAllOrders', params)
ccxt/hyperliquid.py CHANGED
@@ -1169,7 +1169,8 @@ class hyperliquid(Exchange, ImplicitAPI):
1169
1169
  :param str [params.vaultAddress]: the vault address for order
1170
1170
  :returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
1171
1171
  """
1172
- return self.cancel_orders([id], symbol, params)
1172
+ orders = self.cancel_orders([id], symbol, params)
1173
+ return self.safe_dict(orders, 0)
1173
1174
 
1174
1175
  def cancel_orders(self, ids: List[str], symbol: Str = None, params={}):
1175
1176
  """
@@ -1239,7 +1240,17 @@ class hyperliquid(Exchange, ImplicitAPI):
1239
1240
  # }
1240
1241
  # }
1241
1242
  #
1242
- return response
1243
+ innerResponse = self.safe_dict(response, 'response')
1244
+ data = self.safe_dict(innerResponse, 'data')
1245
+ statuses = self.safe_list(data, 'statuses')
1246
+ orders = []
1247
+ for i in range(0, len(statuses)):
1248
+ status = statuses[i]
1249
+ orders.append(self.safe_order({
1250
+ 'info': status,
1251
+ 'status': status,
1252
+ }))
1253
+ return orders
1243
1254
 
1244
1255
  def cancel_orders_for_symbols(self, orders: List[CancellationRequest], params={}):
1245
1256
  """
ccxt/kraken.py CHANGED
@@ -1639,6 +1639,7 @@ class kraken(Exchange, ImplicitAPI):
1639
1639
  'filled': filled,
1640
1640
  'average': average,
1641
1641
  'remaining': None,
1642
+ 'reduceOnly': self.safe_bool_2(order, 'reduceOnly', 'reduce_only'),
1642
1643
  'fee': fee,
1643
1644
  'trades': trades,
1644
1645
  }, market)
@@ -1993,7 +1994,7 @@ class kraken(Exchange, ImplicitAPI):
1993
1994
  def cancel_order(self, id: str, symbol: Str = None, params={}):
1994
1995
  """
1995
1996
  cancels an open order
1996
- :see: https://docs.kraken.com/rest/#tag/Trading/operation/cancelOrder
1997
+ :see: https://docs.kraken.com/rest/#tag/Spot-Trading/operation/cancelOrder
1997
1998
  :param str id: order id
1998
1999
  :param str symbol: unified symbol of the market the order was made in
1999
2000
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -2028,7 +2029,7 @@ class kraken(Exchange, ImplicitAPI):
2028
2029
  def cancel_orders(self, ids, symbol: Str = None, params={}):
2029
2030
  """
2030
2031
  cancel multiple orders
2031
- :see: https://docs.kraken.com/rest/#tag/Trading/operation/cancelOrderBatch
2032
+ :see: https://docs.kraken.com/rest/#tag/Spot-Trading/operation/cancelOrderBatch
2032
2033
  :param str[] ids: open orders transaction ID(txid) or user reference(userref)
2033
2034
  :param str symbol: unified market symbol
2034
2035
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -2055,7 +2056,7 @@ class kraken(Exchange, ImplicitAPI):
2055
2056
  def cancel_all_orders(self, symbol: Str = None, params={}):
2056
2057
  """
2057
2058
  cancel all open orders
2058
- :see: https://docs.kraken.com/rest/#tag/Trading/operation/cancelAllOrders
2059
+ :see: https://docs.kraken.com/rest/#tag/Spot-Trading/operation/cancelAllOrders
2059
2060
  :param str symbol: unified market symbol, only orders in the market of self symbol are cancelled when symbol is not None
2060
2061
  :param dict [params]: extra parameters specific to the exchange API endpoint
2061
2062
  :returns dict[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
ccxt/krakenfutures.py CHANGED
@@ -1762,7 +1762,7 @@ class krakenfutures(Exchange, ImplicitAPI):
1762
1762
  'type': self.parse_order_type(type),
1763
1763
  'timeInForce': timeInForce,
1764
1764
  'postOnly': type == 'post',
1765
- 'reduceOnly': self.safe_value(details, 'reduceOnly'),
1765
+ 'reduceOnly': self.safe_bool_2(details, 'reduceOnly', 'reduce_only'),
1766
1766
  'side': self.safe_string(details, 'side'),
1767
1767
  'price': price,
1768
1768
  'stopPrice': self.safe_string(details, 'triggerPrice'),
ccxt/kucoin.py CHANGED
@@ -2396,9 +2396,9 @@ class kucoin(Exchange, ImplicitAPI):
2396
2396
  self.load_markets()
2397
2397
  lowercaseStatus = status.lower()
2398
2398
  until = self.safe_integer(params, 'until')
2399
- stop = self.safe_bool(params, 'stop', False)
2399
+ stop = self.safe_bool_2(params, 'stop', 'trigger', False)
2400
2400
  hf = self.safe_bool(params, 'hf', False)
2401
- params = self.omit(params, ['stop', 'hf', 'until'])
2401
+ params = self.omit(params, ['stop', 'hf', 'until', 'trigger'])
2402
2402
  marginMode, query = self.handle_margin_mode_and_params('fetchOrdersByStatus', params)
2403
2403
  if lowercaseStatus == 'open':
2404
2404
  lowercaseStatus = 'active'
@@ -2555,7 +2555,7 @@ class kucoin(Exchange, ImplicitAPI):
2555
2555
  self.load_markets()
2556
2556
  request: dict = {}
2557
2557
  clientOrderId = self.safe_string_2(params, 'clientOid', 'clientOrderId')
2558
- stop = self.safe_bool(params, 'stop', False)
2558
+ stop = self.safe_bool_2(params, 'stop', 'trigger', False)
2559
2559
  hf = self.safe_bool(params, 'hf', False)
2560
2560
  market = None
2561
2561
  if symbol is not None:
@@ -2564,7 +2564,7 @@ class kucoin(Exchange, ImplicitAPI):
2564
2564
  if symbol is None:
2565
2565
  raise ArgumentsRequired(self.id + ' fetchOrder() requires a symbol parameter for hf orders')
2566
2566
  request['symbol'] = market['id']
2567
- params = self.omit(params, ['stop', 'hf', 'clientOid', 'clientOrderId'])
2567
+ params = self.omit(params, ['stop', 'hf', 'clientOid', 'clientOrderId', 'trigger'])
2568
2568
  response = None
2569
2569
  if clientOrderId is not None:
2570
2570
  request['clientOid'] = clientOrderId
ccxt/kucoinfutures.py CHANGED
@@ -1688,7 +1688,7 @@ class kucoinfutures(kucoin, ImplicitAPI):
1688
1688
  paginate, params = self.handle_option_and_params(params, 'fetchOrdersByStatus', 'paginate')
1689
1689
  if paginate:
1690
1690
  return self.fetch_paginated_call_dynamic('fetchOrdersByStatus', symbol, since, limit, params)
1691
- stop = self.safe_value_2(params, 'stop', 'trigger')
1691
+ stop = self.safe_bool_2(params, 'stop', 'trigger')
1692
1692
  until = self.safe_integer(params, 'until')
1693
1693
  params = self.omit(params, ['stop', 'until', 'trigger'])
1694
1694
  if status == 'closed':
ccxt/pro/__init__.py CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # ----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.3.48'
7
+ __version__ = '4.3.50'
8
8
 
9
9
  # ----------------------------------------------------------------------------
10
10
 
@@ -76,6 +76,7 @@ class coinbaseinternational(ccxt.async_support.coinbaseinternational):
76
76
  :param dict [params]: extra parameters specific to the exchange API endpoint
77
77
  :returns dict: subscription to a websocket channel
78
78
  """
79
+ await self.load_markets()
79
80
  self.check_required_credentials()
80
81
  market = None
81
82
  messageHash = name
@@ -119,6 +120,7 @@ class coinbaseinternational(ccxt.async_support.coinbaseinternational):
119
120
  :param dict [params]: extra parameters specific to the exchange API endpoint
120
121
  :returns dict: subscription to a websocket channel
121
122
  """
123
+ await self.load_markets()
122
124
  self.check_required_credentials()
123
125
  if self.is_empty(symbols):
124
126
  symbols = self.symbols
@@ -156,6 +158,7 @@ class coinbaseinternational(ccxt.async_support.coinbaseinternational):
156
158
  :param dict [params]: extra parameters specific to the exchange API endpoint
157
159
  :returns dict: a `funding rate structure <https://docs.ccxt.com/#/?id=funding-rate-structure>`
158
160
  """
161
+ await self.load_markets()
159
162
  return await self.subscribe('RISK', [symbol], params)
160
163
 
161
164
  async def watch_funding_rates(self, symbols: List[str], params={}) -> FundingRates:
@@ -166,6 +169,7 @@ class coinbaseinternational(ccxt.async_support.coinbaseinternational):
166
169
  :param dict [params]: extra parameters specific to the exchange API endpoint
167
170
  :returns dict: a dictionary of `funding rates structures <https://docs.ccxt.com/#/?id=funding-rates-structure>`, indexe by market symbols
168
171
  """
172
+ await self.load_markets()
169
173
  fundingRate = await self.subscribe_multiple('RISK', symbols, params)
170
174
  symbol = self.safe_string(fundingRate, 'symbol')
171
175
  if self.newUpdates:
@@ -182,6 +186,7 @@ class coinbaseinternational(ccxt.async_support.coinbaseinternational):
182
186
  :param dict [params]: extra parameters specific to the exchange API endpoint
183
187
  :returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
184
188
  """
189
+ await self.load_markets()
185
190
  channel = None
186
191
  channel, params = self.handle_option_and_params(params, 'watchTicker', 'channel', 'LEVEL1')
187
192
  return await self.subscribe(channel, [symbol], params)
ccxt/pro/gate.py CHANGED
@@ -227,8 +227,8 @@ class gate(ccxt.async_support.gate):
227
227
  """
228
228
  await self.load_markets()
229
229
  market = None if (symbol is None) else self.market(symbol)
230
- stop = self.safe_value_2(params, 'is_stop_order', 'stop', False)
231
- params = self.omit(params, ['is_stop_order', 'stop'])
230
+ stop = self.safe_value_n(params, ['is_stop_order', 'stop', 'trigger'], False)
231
+ params = self.omit(params, ['is_stop_order', 'stop', 'trigger'])
232
232
  type, query = self.handle_market_type_and_params('cancelOrder', market, params)
233
233
  request, requestParams = self.spotOrderPrepareRequest(market, stop, query) if (type == 'spot' or type == 'margin') else self.prepareRequest(market, type, query)
234
234
  messageType = self.get_type_by_market(market)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ccxt
3
- Version: 4.3.48
3
+ Version: 4.3.50
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
@@ -268,13 +268,13 @@ console.log(version, Object.keys(exchanges));
268
268
 
269
269
  All-in-one browser bundle (dependencies included), served from a CDN of your choice:
270
270
 
271
- * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.48/dist/ccxt.browser.min.js
272
- * unpkg: https://unpkg.com/ccxt@4.3.48/dist/ccxt.browser.min.js
271
+ * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.50/dist/ccxt.browser.min.js
272
+ * unpkg: https://unpkg.com/ccxt@4.3.50/dist/ccxt.browser.min.js
273
273
 
274
274
  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.
275
275
 
276
276
  ```HTML
277
- <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.48/dist/ccxt.browser.min.js"></script>
277
+ <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.50/dist/ccxt.browser.min.js"></script>
278
278
  ```
279
279
 
280
280
  Creates a global `ccxt` object:
@@ -1,10 +1,10 @@
1
- ccxt/__init__.py,sha256=pNdImDCzMgfKkYHQU5xwXGAxTWLiCinKHTir2yuOfWs,16139
2
- ccxt/ace.py,sha256=6x4vkcS2lGSkAQuzS-AAgYJLPDNNfNo9NMIdAoXzs18,41776
1
+ ccxt/__init__.py,sha256=dSFtYhjcbNfKwtwgWEM4vEMi7woqAlUWu5gxNj3Ed9A,16139
2
+ ccxt/ace.py,sha256=RC6jY5dSbiE4cI_MS0thZbDArWn3Drl8Vm1NFzTTQaI,41675
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=9tMRdKEM_diju8EdgeNu5P3511ksYZbUXcKm44yRlrk,626692
7
+ ccxt/binance.py,sha256=US99m1PRznlMa2KlTHn7LYastsqCNwYpgC08e2qoCP8,626690
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
@@ -17,14 +17,14 @@ ccxt/bitcoincom.py,sha256=PyWIl4nC4jp5Uba2lI1At0N_hhNyWD0DoZC_MSyL_s4,502
17
17
  ccxt/bitfinex.py,sha256=6O33NthP73Q-zobTf1hp8zFxJsDyAMEiOCCJn_o1iEQ,72450
18
18
  ccxt/bitfinex2.py,sha256=4bYPjnLMj3v2CMuzmwdTOgF6iaUggyXtN92Lc3oqwOE,160637
19
19
  ccxt/bitflyer.py,sha256=rvykeLLkDYVMEwXs4rInQClYwdXIXmj_7mxDpGT216I,41565
20
- ccxt/bitget.py,sha256=0Yt_wWYbUiAZjGrsGCxwzwF4j4N1Jzomb79x2LIdgzA,423458
20
+ ccxt/bitget.py,sha256=TyeyeYA6dAqCVk3rN2_33iUZFUEXjnnwv7OVRQFTeEA,423546
21
21
  ccxt/bithumb.py,sha256=CcL-Zy8LodvUmj9R_kDbgLg9T5_ZvCDOECY4xZFQwwY,45848
22
22
  ccxt/bitmart.py,sha256=qwxauDxy7GyyFrS_oqo0xKNGqsVpp-KSU64vV_pZJSE,208408
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
26
26
  ccxt/bitrue.py,sha256=_OY2kRpZnHySGfABmCtDTV2UiCDQiwLVLorruI8Slxk,136650
27
- ccxt/bitso.py,sha256=eIFHfR1BUkrwrq1b8BmeumrmNyUc0brLTPXBUXpw2dc,71092
27
+ ccxt/bitso.py,sha256=JVS17EGXqM2ubHhAxN-H8xzYFScGag75LLAwNT2yPU0,71439
28
28
  ccxt/bitstamp.py,sha256=9_oG3308t6di_MwDin0DWuQdo_1_VygwHDEwxzRXMEM,94238
29
29
  ccxt/bitteam.py,sha256=PgWAohcKp3wYzi1bwCzft7hCKgZejh6v2sY1IO5R_Tc,102291
30
30
  ccxt/bitvavo.py,sha256=gLqkdE4_XwKKAer78KOT_D8L5NlbNfFCGAnBSNje9r8,91774
@@ -62,17 +62,17 @@ ccxt/gemini.py,sha256=5eIia9wC4amH1e2kuVZh69mQ8y43TRZu4JizH_w8ogc,80838
62
62
  ccxt/hitbtc.py,sha256=8lOcpnAHF4Ip08z8FGk9PDAI2q3ax0LDcdDCp4wD6fo,153399
63
63
  ccxt/hitbtc3.py,sha256=qRAr4Zvaju9IQWRZUohdoN7xRnzIMPq8AyYb3gPv-Is,455
64
64
  ccxt/hollaex.py,sha256=e7irunlbzhM1BSvv9kyaccHdUF0cRjnJkIbMMQhe5PA,76141
65
- ccxt/htx.py,sha256=tsbkKP3Bvi8yN2PcmpGR3-G1W5nS3fzfP4H_znf4_UQ,425065
65
+ ccxt/htx.py,sha256=B5yXadLvTr8t1L7WUnrnaHWLEoJZ-75TEYUwdosCd9Y,425180
66
66
  ccxt/huobi.py,sha256=4vaG7IRN7fyjaJ_ac6S-njlHOfSEN5de7aq0noznxYw,438
67
67
  ccxt/huobijp.py,sha256=wWCz1hRTJP8KRqfhsfml8h4d3Zz1ChAgqdYDl0OiDAo,88183
68
- ccxt/hyperliquid.py,sha256=gg1IfT1rjsCqMl_TCMhrMPnbuXKx75Sl6lCFuYiQ6Nc,102359
68
+ ccxt/hyperliquid.py,sha256=rv2Gtj_t_fq5qDclsnxss6vGWsgx7hnUaKmiKyBbrdY,102787
69
69
  ccxt/idex.py,sha256=wbxMuH-D06NblL5gZj5--P6MLm2lMF2PObYhDNcE78U,73256
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=aNqujL0xGkHP5qIcmRYMw_GCti7eB7UE5GN2W3xw6Zk,129061
73
- ccxt/krakenfutures.py,sha256=ncDMSv_9KxqiF6DkL3HT6oEBy5U1nGCTUb0ooUuwxaI,119426
74
- ccxt/kucoin.py,sha256=8v5WARxPoHpep_ako1OkEteM7jcmYX-SDBXvgStor1c,221545
75
- ccxt/kucoinfutures.py,sha256=x9TacKIoBZ_WnA4nljaAH9TwMvTDkU_E-GtqbK5S8F4,124565
72
+ ccxt/kraken.py,sha256=nWFjVkMF6MwXmr5PbCOVcvQScOSM67LZPuLU_tgV2q0,129156
73
+ ccxt/krakenfutures.py,sha256=TUBt1NNjDa9450LtGoqfNFSCSdqy3md7C9nnwdcGAwg,119442
74
+ ccxt/kucoin.py,sha256=Uo7k07ytA-UZ241kcN-tcJ4388NcHDpBFQO4Jr86Udc,221593
75
+ ccxt/kucoinfutures.py,sha256=lhfjKUQcSRPDltONm0t_PVnewWlwrvP97RnzTD1oSh4,124564
76
76
  ccxt/kuna.py,sha256=C0TwihuJzJ1qHOC7TEiwmcLi40ohMU7SjnDucyMur0k,96188
77
77
  ccxt/latoken.py,sha256=Yydly2IL9gdoqN6O-bJNBbVb3R7FtBwzBGZYhbX8aSc,79393
78
78
  ccxt/lbank.py,sha256=ZVDfA2EJR8Qxj10d-3y1kwemrr-wxFzKTLkmoTJAPqs,115407
@@ -214,13 +214,13 @@ ccxt/abstract/xt.py,sha256=xHHv2viFGK0_iPZ4gu6Wb0aOrpcKhr9zoY-BIPWh5bs,27028
214
214
  ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
215
215
  ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
216
216
  ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
217
- ccxt/async_support/__init__.py,sha256=rUpFqbCD4JbiWWphg5G60AAOpYOm3dWTXRBQKgmy6sA,15932
218
- ccxt/async_support/ace.py,sha256=tsRgs_o4Iq7q8IkD83FUdC-2ztylhgO4cp2hww3rlqQ,42000
217
+ ccxt/async_support/__init__.py,sha256=JNFt4ivCYaj8QZtHS7UvwEK8SrpbwzjnJDj_uTTmtsc,15932
218
+ ccxt/async_support/ace.py,sha256=ffpHbADxBOtT3QliUmoex2pTS7sSWB7CwO_SAPKJqDs,41899
219
219
  ccxt/async_support/alpaca.py,sha256=3845DgojoA1p0pxrqnDIqHbbRcEwZhZIkE4aygD5ics,47538
220
220
  ccxt/async_support/ascendex.py,sha256=7tZ4C7FfzmuB_ADYjl6IkyQQ5JG0Vt1AD_B3fTeY6V0,152620
221
221
  ccxt/async_support/bequant.py,sha256=1hTwHovo1bW1XTIc8ZKjvJ-Xg6LfmpGdzT7TepykaVM,1188
222
222
  ccxt/async_support/bigone.py,sha256=z4KbPCAlByhfUDmywRespbTtPTm7yIxDhX-OeMkcQek,92890
223
- ccxt/async_support/binance.py,sha256=RAaSDOawVy4KlFxR3Kqkq6BAPQIr5wyajd1zAS1h8oc,629408
223
+ ccxt/async_support/binance.py,sha256=m4Sn-4aze4HkKB9FYh-mCynMsfetP3B063-oKM5Qhns,629406
224
224
  ccxt/async_support/binancecoinm.py,sha256=IY3RLZptQA2nmZaUYRGfTa5ZY4VMWBpFYfwHc8zTHw0,1683
225
225
  ccxt/async_support/binanceus.py,sha256=c-K3Tk7LaRJjmYdCx8vBOqsx01uXrtvt0PC2ekBiD0g,9177
226
226
  ccxt/async_support/binanceusdm.py,sha256=-1r4A4tmV2pCiLGO80hzq7MIIj4MTzOD7buZGv6JauA,2518
@@ -233,14 +233,14 @@ ccxt/async_support/bitcoincom.py,sha256=RiqwhK3RfxQ_PXTa860fphDCvwA8dalL-_rXlK85
233
233
  ccxt/async_support/bitfinex.py,sha256=K-Lm2aIrw1a_H9rrSK_M-a_aZCc-9vfaSpCiMCGiHZY,72890
234
234
  ccxt/async_support/bitfinex2.py,sha256=-RgXS7A6h27MOrLT7Xtmj_710ZcQKmCYLVqfYgx6xos,161371
235
235
  ccxt/async_support/bitflyer.py,sha256=RWrRkrZJow4M5uwoqTCD0bcITItbC5WZ57Mcmv0_1nk,41873
236
- ccxt/async_support/bitget.py,sha256=PVdJiMobz1v10_zP5DXqHNAmj04-_s_IY5mDQpmW2-Y,425082
236
+ ccxt/async_support/bitget.py,sha256=mG8PDwTLs9WywFIZZEeUrmpPPkVBrHq8i22-s4xnVbU,425170
237
237
  ccxt/async_support/bithumb.py,sha256=4XN45L8XmpxUAWiFZKzwSpeVLhlRZhQY4IZLyh-yjCc,46078
238
238
  ccxt/async_support/bitmart.py,sha256=U7U32nyxou3VXN2Bxbm1uuhpEunXyFBtErSRJpBWwaU,209364
239
239
  ccxt/async_support/bitmex.py,sha256=JCRSgTWNwB97A1vwvEpajD8VQ4AE8Qs5ZU1yd8KaiYc,127440
240
240
  ccxt/async_support/bitopro.py,sha256=OWWNB_6Vpe10JG0P7dpmgerPEtmuxbx5_DLBFWnsL7w,69147
241
241
  ccxt/async_support/bitpanda.py,sha256=2k3URBWrpnh2xHa7JiYenI7_4MW5UeOPGzetlmRkR4U,485
242
242
  ccxt/async_support/bitrue.py,sha256=58bffoSRCVVzjrGs3WwyzXuSXN28oW8GqEM4NW0alvo,137308
243
- ccxt/async_support/bitso.py,sha256=s1arsCntXJPE6oTHU4Isav3JyFc5ioQXq-ZxVp-popQ,71478
243
+ ccxt/async_support/bitso.py,sha256=2yU8U8UAlc98-oMXRe9cnaSkEbF0hUUYKljXKsHgI4Y,71825
244
244
  ccxt/async_support/bitstamp.py,sha256=QsjIWLqtPtdOuhZRO8SJemeC-F2D5_Gcmn2uyht5GIQ,94738
245
245
  ccxt/async_support/bitteam.py,sha256=DJAHzqHN2ggrG3hDX-syIzrjR5FMADbU6HZxLr9Z2BQ,102623
246
246
  ccxt/async_support/bitvavo.py,sha256=kSonShw7cz-0n1cvjc5z7k5Vnbe1Q9AgCQHWpZchUv0,92208
@@ -278,17 +278,17 @@ ccxt/async_support/gemini.py,sha256=cJjRW_O2uIKhi6tsClWr9Td8AGet_sXM2Lkj-i3MjRA,
278
278
  ccxt/async_support/hitbtc.py,sha256=hjssPFXONM6S_-ZL8n6AqNS1wA-OmRe_t2ukj54EIxg,154445
279
279
  ccxt/async_support/hitbtc3.py,sha256=dmSYoD2o4av_zzbZI8HNIoj8BWxA7QozsVpy8JaOXzU,469
280
280
  ccxt/async_support/hollaex.py,sha256=b7nJAvL0dCfPwhjOCfoAn1Qd9msFvEIfYp-7EQ4QIwQ,76575
281
- ccxt/async_support/htx.py,sha256=wYAmakkCQfBs_6iFrB-P8pkrRSXV16RCm6xjg3zAWbQ,427457
281
+ ccxt/async_support/htx.py,sha256=WSbJHRPLhL1Jwns7cG9z2FtvQZc7tQOem4jsuAq1BqI,427572
282
282
  ccxt/async_support/huobi.py,sha256=fup0j6wQ1khAtfbb1H4CSyJAOzhxuoHMmrM6sgTuhr8,452
283
283
  ccxt/async_support/huobijp.py,sha256=C8r2aXJ5D8vyS9hEA2FKBTufDKircXN9D2ypm720HeU,88683
284
- ccxt/async_support/hyperliquid.py,sha256=_bvWuRDwOVH-n_Rvt1R8jDUOuj5qgBfRSSUEImAdyC8,102879
284
+ ccxt/async_support/hyperliquid.py,sha256=Puk2nqMJA7vg-9fJVOhzY6JKBiMghqktf9jqfv1Iyvo,103307
285
285
  ccxt/async_support/idex.py,sha256=UrSCUFhd5xmjHWs2zmTe-M_A7d1Pvt3QVDga9dKGcsM,73732
286
286
  ccxt/async_support/independentreserve.py,sha256=DxoBIoijcViZGfOgItukkWvL2pKv-03ZsQQVG6dGFW0,33750
287
287
  ccxt/async_support/indodax.py,sha256=GY3-cmbfhihBOgCtnJ_wqBCnk-mqQ64zDoNJ-3qy8tM,53740
288
- ccxt/async_support/kraken.py,sha256=0KSIQe-6cDALKcWNPFO0n6wpNimqnAVNyL3-Tr2wyTE,129699
289
- ccxt/async_support/krakenfutures.py,sha256=XvIV2xvI2JzfZ93i39SM90MtInUHvUi9OVOsQg9hzek,119914
290
- ccxt/async_support/kucoin.py,sha256=ZVN0BJ2oMbIOgKjV8lB9geIiPaPWBtBNUTQA06WGl5U,222617
291
- ccxt/async_support/kucoinfutures.py,sha256=19pp3iLxyGxqNvFLZ3W_Ov6gqUAwQE5oTvp9DezKmG8,125203
288
+ ccxt/async_support/kraken.py,sha256=0sXD-eK2QOwWFSHkM0M5RY_XJhMMaGEtI0noLNzqwAo,129794
289
+ ccxt/async_support/krakenfutures.py,sha256=sZBd-Vs4dAvgj91QB2vRhWSlEsetS6SyYPeRC49xUqI,119930
290
+ ccxt/async_support/kucoin.py,sha256=PHzGCCpUcEAtm1DZvB7nx9V4Tw9M6wH2ZUhfg31sdW8,222665
291
+ ccxt/async_support/kucoinfutures.py,sha256=aMyOm5zghYkt8KbQMXeMjQDOC9K5hXcQ95ACeKMolPw,125202
292
292
  ccxt/async_support/kuna.py,sha256=4a1hsvp1wzvpbFJun2qkqSNXwKiyXpskjNwuHhw0jeE,96604
293
293
  ccxt/async_support/latoken.py,sha256=3whvcGw1JgH-2-KlgkPWy7fNt1PJVy8m8TnAwuBP3U4,79869
294
294
  ccxt/async_support/lbank.py,sha256=8XJIKUYhoSZ9sQqAw7VrOV-7cDe9o_8KaV-slgWAkpY,116119
@@ -323,7 +323,7 @@ ccxt/async_support/yobit.py,sha256=KQcu9nXJPDlAodZyxOXKIn6eTSLmlvUlgRFE6EBLfug,5
323
323
  ccxt/async_support/zaif.py,sha256=jTK5pLZSpKL1Pt0qAJTjN09TDS5AfhptGgGAqw7sNwE,29045
324
324
  ccxt/async_support/zonda.py,sha256=skMMmUUjXJmnQpzlFrJfmg4-vEIOsTGz2zSW9nI4C90,81721
325
325
  ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
326
- ccxt/async_support/base/exchange.py,sha256=Og-hwYDT5UTF05lGtfI0zu93Pya39orw178yD2OJi30,109872
326
+ ccxt/async_support/base/exchange.py,sha256=gDDGYX_8g2pWkLOVEoYWEKyZL0ccZ_PvgVtpuLupOa4,109872
327
327
  ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
328
328
  ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
329
329
  ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
@@ -337,10 +337,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
337
337
  ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
338
338
  ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
339
339
  ccxt/base/errors.py,sha256=FGdyULeNCNcl52gA_CNhe2dZmat9GJGkTdlIyDXAF_A,4213
340
- ccxt/base/exchange.py,sha256=8Qqv9bLhGZHZO5suh9qMNnWQDfgjYsBH7TvV6PD8klk,280894
340
+ ccxt/base/exchange.py,sha256=GPzZ4QuHG7OuhVMVKdCq24d_9IrsIwv76Qb9gqyd83A,280894
341
341
  ccxt/base/precise.py,sha256=_xfu54sV0vWNnOfGTKRFykeuWP8mn4K1m9lk1tcllX4,8565
342
342
  ccxt/base/types.py,sha256=RGGcbz86cVtrmU602zoFO5gSWrv_J7IHxQkPnzmNirs,9247
343
- ccxt/pro/__init__.py,sha256=xPu66O6ZlXi1jf5ZGRgy_3R7KRtv8gzrX_jWQbSv0Qs,7207
343
+ ccxt/pro/__init__.py,sha256=Q6J_R3CAr3u6nHWIn0vRCFacka49eawZtCcQ0e7kW6w,7207
344
344
  ccxt/pro/alpaca.py,sha256=QA_Dmxu1ockCSYJMbOodbNke3t1tAl0hFL-q56UMQWE,27224
345
345
  ccxt/pro/ascendex.py,sha256=181FIeztchLqGmgecRJEN8F8xEM45D5aMKhC-5nuNfU,35467
346
346
  ccxt/pro/bequant.py,sha256=5zbsP8BHQTUZ8ZNL6uaACxDbUClgkOV4SYfXT_LfQVg,1351
@@ -366,7 +366,7 @@ ccxt/pro/bybit.py,sha256=tyMTGFtBbQ2ncwBxjpW3yWKT1xeqT7CXDHgzBaD8neg,88926
366
366
  ccxt/pro/cex.py,sha256=ri0fnWYa4tFeeuJ_edqUziI5VJ921rRjIapion9Emug,58495
367
367
  ccxt/pro/coinbase.py,sha256=q5PQ--k9q50UrgWCPYV0y2tx5hQ32nmWXBp4nvJsQag,30628
368
368
  ccxt/pro/coinbaseexchange.py,sha256=taV-mCliIcc6XQjxSl2HmYHpBkOIDkxUxF2LrBSXfCc,39035
369
- ccxt/pro/coinbaseinternational.py,sha256=s7DiNGpyIz3Z5EgJdYp8cY9tJjg3dXGRdlx0AAnmTBw,25818
369
+ ccxt/pro/coinbaseinternational.py,sha256=iR6NOKftkmG_AmDjmfM72k7zA4EqVQRxDT6SEEBL0e4,25988
370
370
  ccxt/pro/coincheck.py,sha256=8_AFAwNDW8c_OJRFDnQ2okJtX1ZjYZgNlvMbT2XmlDE,7801
371
371
  ccxt/pro/coinex.py,sha256=GkW0duPzwNXppQxHPTaa1QIjnVXa3NXr-BhwocwNYF0,45164
372
372
  ccxt/pro/coinone.py,sha256=DBz7u0ePVqCOBaoA-4UnSjptjpsmWrwzBjVIkfhkRGc,15676
@@ -374,7 +374,7 @@ ccxt/pro/cryptocom.py,sha256=p_SZhrIRyf-lBxz8zK9u29hiPxeE8hxY1VllKtad1G0,42994
374
374
  ccxt/pro/currencycom.py,sha256=YirudKtEoZJmWh7_2t00nPIHykiOsYt4bNdVIx2EGio,22451
375
375
  ccxt/pro/deribit.py,sha256=RqAYxIpiEGFPih-TYFLihW76qVQBJpjJX7pyNgFvqsA,41098
376
376
  ccxt/pro/exmo.py,sha256=n44MqOwY-tSt0TFNhQKydjxRJoSbrMVBzL4NNswOZm4,24542
377
- ccxt/pro/gate.py,sha256=BMqq0ULvy62CmhIaIgpWn8Dcu8aPTfw6dtauEuH0WzI,79076
377
+ ccxt/pro/gate.py,sha256=CSkwCymzwqNo4-58vTk2Tk3cL6wPpa6DW3qfy48uqz4,79100
378
378
  ccxt/pro/gateio.py,sha256=_uBWXYQbmsHRivKnZOJDmxJ9tWLO_0HAxmOjAEUy9nE,391
379
379
  ccxt/pro/gemini.py,sha256=LYiKAPkW5-1uotTuYPtazYHNuztBYhL-NGCcuyG9Ss8,36781
380
380
  ccxt/pro/hitbtc.py,sha256=CclIDdz1BjgmFCd2kaN6vTwIzY7kfPrRAspSn18Hbdo,56362
@@ -542,7 +542,7 @@ ccxt/test/base/test_ticker.py,sha256=cMTIMb1oySNORUCmqI5ZzMswlEyCF6gJMah3vfvo8wQ
542
542
  ccxt/test/base/test_trade.py,sha256=PMtmB8V38dpaP-eb8h488xYMlR6D69yCOhsA1RuWrUA,2336
543
543
  ccxt/test/base/test_trading_fee.py,sha256=2aDCNJtqBkTC_AieO0l1HYGq5hz5qkWlkWb9Nv_fcwk,1066
544
544
  ccxt/test/base/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
545
- ccxt-4.3.48.dist-info/METADATA,sha256=eqslGyaRbb-XzMh3K_wxyJzXtonoXvWnSKAHas-rNL4,115226
546
- ccxt-4.3.48.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
547
- ccxt-4.3.48.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
548
- ccxt-4.3.48.dist-info/RECORD,,
545
+ ccxt-4.3.50.dist-info/METADATA,sha256=S8j_DKVcRgUFi6yghS_GUzMSLFk74azK7wLbB9rRGR4,115226
546
+ ccxt-4.3.50.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
547
+ ccxt-4.3.50.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
548
+ ccxt-4.3.50.dist-info/RECORD,,
File without changes