ccxt 4.4.26__py2.py3-none-any.whl → 4.4.27__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 (97) hide show
  1. ccxt/__init__.py +1 -1
  2. ccxt/abstract/alpaca.py +2 -0
  3. ccxt/abstract/hyperliquid.py +1 -1
  4. ccxt/ace.py +1 -1
  5. ccxt/alpaca.py +182 -6
  6. ccxt/ascendex.py +1 -1
  7. ccxt/async_support/__init__.py +1 -1
  8. ccxt/async_support/ace.py +1 -1
  9. ccxt/async_support/alpaca.py +182 -6
  10. ccxt/async_support/ascendex.py +1 -1
  11. ccxt/async_support/base/exchange.py +19 -1
  12. ccxt/async_support/bequant.py +1 -1
  13. ccxt/async_support/bigone.py +1 -1
  14. ccxt/async_support/binance.py +1 -1
  15. ccxt/async_support/binancecoinm.py +1 -1
  16. ccxt/async_support/binanceus.py +1 -1
  17. ccxt/async_support/binanceusdm.py +1 -1
  18. ccxt/async_support/bingx.py +23 -28
  19. ccxt/async_support/bit2c.py +1 -1
  20. ccxt/async_support/bitbank.py +1 -1
  21. ccxt/async_support/bitbns.py +1 -1
  22. ccxt/async_support/bitfinex.py +1 -1
  23. ccxt/async_support/bitfinex2.py +1 -1
  24. ccxt/async_support/bitflyer.py +1 -1
  25. ccxt/async_support/bitget.py +1 -1
  26. ccxt/async_support/bithumb.py +1 -1
  27. ccxt/async_support/bitmart.py +1 -1
  28. ccxt/async_support/bitmex.py +1 -1
  29. ccxt/async_support/bitopro.py +1 -1
  30. ccxt/async_support/bitrue.py +1 -1
  31. ccxt/async_support/bitso.py +1 -1
  32. ccxt/async_support/bitstamp.py +1 -1
  33. ccxt/async_support/bitteam.py +1 -1
  34. ccxt/async_support/bitvavo.py +1 -1
  35. ccxt/async_support/bl3p.py +1 -1
  36. ccxt/async_support/blockchaincom.py +1 -1
  37. ccxt/async_support/blofin.py +1 -1
  38. ccxt/async_support/btcalpha.py +1 -1
  39. ccxt/async_support/btcbox.py +1 -1
  40. ccxt/async_support/btcmarkets.py +1 -1
  41. ccxt/async_support/btcturk.py +1 -1
  42. ccxt/async_support/bybit.py +4 -1
  43. ccxt/async_support/coinbase.py +89 -11
  44. ccxt/async_support/coinex.py +1 -1
  45. ccxt/async_support/gate.py +20 -16
  46. ccxt/async_support/hyperliquid.py +19 -1
  47. ccxt/async_support/lbank.py +97 -2
  48. ccxt/async_support/wavesexchange.py +13 -2
  49. ccxt/base/exchange.py +19 -1
  50. ccxt/bequant.py +1 -1
  51. ccxt/bigone.py +1 -1
  52. ccxt/binance.py +1 -1
  53. ccxt/binancecoinm.py +1 -1
  54. ccxt/binanceus.py +1 -1
  55. ccxt/binanceusdm.py +1 -1
  56. ccxt/bingx.py +23 -28
  57. ccxt/bit2c.py +1 -1
  58. ccxt/bitbank.py +1 -1
  59. ccxt/bitbns.py +1 -1
  60. ccxt/bitfinex.py +1 -1
  61. ccxt/bitfinex2.py +1 -1
  62. ccxt/bitflyer.py +1 -1
  63. ccxt/bitget.py +1 -1
  64. ccxt/bithumb.py +1 -1
  65. ccxt/bitmart.py +1 -1
  66. ccxt/bitmex.py +1 -1
  67. ccxt/bitopro.py +1 -1
  68. ccxt/bitrue.py +1 -1
  69. ccxt/bitso.py +1 -1
  70. ccxt/bitstamp.py +1 -1
  71. ccxt/bitteam.py +1 -1
  72. ccxt/bitvavo.py +1 -1
  73. ccxt/bl3p.py +1 -1
  74. ccxt/blockchaincom.py +1 -1
  75. ccxt/blofin.py +1 -1
  76. ccxt/btcalpha.py +1 -1
  77. ccxt/btcbox.py +1 -1
  78. ccxt/btcmarkets.py +1 -1
  79. ccxt/btcturk.py +1 -1
  80. ccxt/bybit.py +4 -1
  81. ccxt/coinbase.py +89 -11
  82. ccxt/coinex.py +1 -1
  83. ccxt/gate.py +20 -16
  84. ccxt/hyperliquid.py +19 -1
  85. ccxt/lbank.py +97 -2
  86. ccxt/pro/__init__.py +1 -1
  87. ccxt/pro/binance.py +2 -2
  88. ccxt/pro/bybit.py +1 -1
  89. ccxt/pro/lbank.py +7 -4
  90. ccxt/pro/okx.py +1 -1
  91. ccxt/wavesexchange.py +13 -2
  92. ccxt-4.4.27.dist-info/METADATA +637 -0
  93. {ccxt-4.4.26.dist-info → ccxt-4.4.27.dist-info}/RECORD +96 -96
  94. ccxt-4.4.26.dist-info/METADATA +0 -636
  95. {ccxt-4.4.26.dist-info → ccxt-4.4.27.dist-info}/LICENSE.txt +0 -0
  96. {ccxt-4.4.26.dist-info → ccxt-4.4.27.dist-info}/WHEEL +0 -0
  97. {ccxt-4.4.26.dist-info → ccxt-4.4.27.dist-info}/top_level.txt +0 -0
File without changes