ccxt 4.3.11__py2.py3-none-any.whl → 4.3.12__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.
Files changed (72) hide show
  1. ccxt/__init__.py +1 -1
  2. ccxt/async_support/__init__.py +1 -1
  3. ccxt/async_support/base/exchange.py +1 -1
  4. ccxt/async_support/bigone.py +22 -22
  5. ccxt/async_support/binance.py +7 -7
  6. ccxt/async_support/bingx.py +2 -2
  7. ccxt/async_support/bitget.py +10 -8
  8. ccxt/async_support/bitmart.py +7 -11
  9. ccxt/async_support/bitmex.py +2 -2
  10. ccxt/async_support/bybit.py +75 -65
  11. ccxt/async_support/coinbase.py +8 -8
  12. ccxt/async_support/coinbaseinternational.py +2 -2
  13. ccxt/async_support/coinex.py +501 -445
  14. ccxt/async_support/coinlist.py +12 -12
  15. ccxt/async_support/coinmetro.py +2 -2
  16. ccxt/async_support/cryptocom.py +16 -16
  17. ccxt/async_support/digifinex.py +3 -3
  18. ccxt/async_support/gate.py +2 -2
  19. ccxt/async_support/hitbtc.py +3 -3
  20. ccxt/async_support/htx.py +6 -9
  21. ccxt/async_support/indodax.py +2 -2
  22. ccxt/async_support/kraken.py +3 -1
  23. ccxt/async_support/kucoin.py +4 -4
  24. ccxt/async_support/kucoinfutures.py +6 -6
  25. ccxt/async_support/mexc.py +5 -5
  26. ccxt/async_support/okx.py +9 -9
  27. ccxt/async_support/poloniexfutures.py +4 -4
  28. ccxt/async_support/probit.py +2 -2
  29. ccxt/async_support/whitebit.py +72 -1
  30. ccxt/async_support/woo.py +2 -2
  31. ccxt/base/exchange.py +14 -2
  32. ccxt/base/types.py +25 -0
  33. ccxt/bigone.py +22 -22
  34. ccxt/binance.py +7 -7
  35. ccxt/bingx.py +2 -2
  36. ccxt/bitget.py +10 -8
  37. ccxt/bitmart.py +7 -11
  38. ccxt/bitmex.py +2 -2
  39. ccxt/bybit.py +75 -65
  40. ccxt/coinbase.py +8 -8
  41. ccxt/coinbaseinternational.py +2 -2
  42. ccxt/coinex.py +501 -445
  43. ccxt/coinlist.py +12 -12
  44. ccxt/coinmetro.py +2 -2
  45. ccxt/cryptocom.py +16 -16
  46. ccxt/digifinex.py +3 -3
  47. ccxt/gate.py +2 -2
  48. ccxt/hitbtc.py +3 -3
  49. ccxt/htx.py +6 -9
  50. ccxt/indodax.py +2 -2
  51. ccxt/kraken.py +3 -1
  52. ccxt/kucoin.py +4 -4
  53. ccxt/kucoinfutures.py +6 -6
  54. ccxt/mexc.py +5 -5
  55. ccxt/okx.py +9 -9
  56. ccxt/poloniexfutures.py +4 -4
  57. ccxt/pro/__init__.py +1 -1
  58. ccxt/pro/bitget.py +139 -87
  59. ccxt/pro/bybit.py +192 -12
  60. ccxt/pro/coinbase.py +90 -20
  61. ccxt/pro/mexc.py +21 -1
  62. ccxt/probit.py +2 -2
  63. ccxt/test/base/test_datetime.py +6 -0
  64. ccxt/test/base/test_ledger_entry.py +2 -2
  65. ccxt/whitebit.py +72 -1
  66. ccxt/woo.py +2 -2
  67. {ccxt-4.3.11.dist-info → ccxt-4.3.12.dist-info}/METADATA +4 -4
  68. {ccxt-4.3.11.dist-info → ccxt-4.3.12.dist-info}/RECORD +70 -72
  69. ccxt/async_support/flowbtc.py +0 -34
  70. ccxt/flowbtc.py +0 -34
  71. {ccxt-4.3.11.dist-info → ccxt-4.3.12.dist-info}/WHEEL +0 -0
  72. {ccxt-4.3.11.dist-info → ccxt-4.3.12.dist-info}/top_level.txt +0 -0
@@ -3110,9 +3110,9 @@ class coinbase(Exchange, ImplicitAPI):
3110
3110
  request['limit'] = limit
3111
3111
  if since is not None:
3112
3112
  request['start_date'] = self.iso8601(since)
3113
- until = self.safe_integer_n(params, ['until', 'till'])
3113
+ until = self.safe_integer_n(params, ['until'])
3114
3114
  if until is not None:
3115
- params = self.omit(params, ['until', 'till'])
3115
+ params = self.omit(params, ['until'])
3116
3116
  request['end_date'] = self.iso8601(until)
3117
3117
  response = await self.v3PrivateGetBrokerageOrdersHistoricalBatch(self.extend(request, params))
3118
3118
  #
@@ -3180,9 +3180,9 @@ class coinbase(Exchange, ImplicitAPI):
3180
3180
  request['limit'] = limit
3181
3181
  if since is not None:
3182
3182
  request['start_date'] = self.iso8601(since)
3183
- until = self.safe_integer_n(params, ['until', 'till'])
3183
+ until = self.safe_integer_n(params, ['until'])
3184
3184
  if until is not None:
3185
- params = self.omit(params, ['until', 'till'])
3185
+ params = self.omit(params, ['until'])
3186
3186
  request['end_date'] = self.iso8601(until)
3187
3187
  response = await self.v3PrivateGetBrokerageOrdersHistoricalBatch(self.extend(request, params))
3188
3188
  #
@@ -3310,8 +3310,8 @@ class coinbase(Exchange, ImplicitAPI):
3310
3310
  'product_id': market['id'],
3311
3311
  'granularity': self.safe_string(self.timeframes, timeframe, timeframe),
3312
3312
  }
3313
- until = self.safe_integer_n(params, ['until', 'till', 'end'])
3314
- params = self.omit(params, ['until', 'till'])
3313
+ until = self.safe_integer_n(params, ['until', 'end'])
3314
+ params = self.omit(params, ['until'])
3315
3315
  duration = self.parse_timeframe(timeframe)
3316
3316
  requestedDuration = limit * duration
3317
3317
  sinceString = None
@@ -3438,9 +3438,9 @@ class coinbase(Exchange, ImplicitAPI):
3438
3438
  request['limit'] = limit
3439
3439
  if since is not None:
3440
3440
  request['start_sequence_timestamp'] = self.iso8601(since)
3441
- until = self.safe_integer_n(params, ['until', 'till'])
3441
+ until = self.safe_integer_n(params, ['until'])
3442
3442
  if until is not None:
3443
- params = self.omit(params, ['until', 'till'])
3443
+ params = self.omit(params, ['until'])
3444
3444
  request['end_sequence_timestamp'] = self.iso8601(until)
3445
3445
  response = await self.v3PrivateGetBrokerageOrdersHistoricalFills(self.extend(request, params))
3446
3446
  #
@@ -1725,9 +1725,9 @@ class coinbaseinternational(Exchange, ImplicitAPI):
1725
1725
  request['result_limit'] = limit
1726
1726
  if since is not None:
1727
1727
  request['time_from'] = self.iso8601(since)
1728
- until = self.safe_string_n(params, ['until', 'till'])
1728
+ until = self.safe_string_n(params, ['until'])
1729
1729
  if until is not None:
1730
- params = self.omit(params, ['until', 'till'])
1730
+ params = self.omit(params, ['until'])
1731
1731
  request['ref_datetime'] = self.iso8601(until)
1732
1732
  response = await self.v1PrivateGetPortfoliosFills(self.extend(request, params))
1733
1733
  #