ccxt 4.4.53__py2.py3-none-any.whl → 4.4.57__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 (51) hide show
  1. ccxt/__init__.py +1 -3
  2. ccxt/async_support/__init__.py +1 -3
  3. ccxt/async_support/base/exchange.py +5 -5
  4. ccxt/async_support/binance.py +20 -6
  5. ccxt/async_support/bitget.py +1 -1
  6. ccxt/async_support/bybit.py +3 -1
  7. ccxt/async_support/coinbase.py +1 -1
  8. ccxt/async_support/coinbaseinternational.py +2 -2
  9. ccxt/async_support/coinex.py +1 -1
  10. ccxt/async_support/deribit.py +8 -25
  11. ccxt/async_support/exmo.py +1 -1
  12. ccxt/async_support/hyperliquid.py +3 -3
  13. ccxt/async_support/kraken.py +1 -1
  14. ccxt/async_support/woofipro.py +2 -2
  15. ccxt/base/exchange.py +5 -5
  16. ccxt/binance.py +20 -6
  17. ccxt/bitget.py +1 -1
  18. ccxt/bybit.py +3 -1
  19. ccxt/coinbase.py +1 -1
  20. ccxt/coinbaseinternational.py +2 -2
  21. ccxt/coinex.py +1 -1
  22. ccxt/deribit.py +8 -25
  23. ccxt/exmo.py +1 -1
  24. ccxt/hyperliquid.py +3 -3
  25. ccxt/kraken.py +1 -1
  26. ccxt/pro/__init__.py +1 -1
  27. ccxt/pro/binance.py +2 -2
  28. ccxt/pro/bitget.py +3 -3
  29. ccxt/pro/bybit.py +7 -2
  30. ccxt/pro/cex.py +1 -1
  31. ccxt/pro/coincatch.py +3 -3
  32. ccxt/pro/mexc.py +3 -3
  33. ccxt/pro/okx.py +1 -1
  34. ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
  35. ccxt/static_dependencies/ethereum/account/py.typed +0 -0
  36. ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
  37. ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
  38. ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
  39. ccxt/static_dependencies/lark/py.typed +0 -0
  40. ccxt/static_dependencies/marshmallow/py.typed +0 -0
  41. ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
  42. ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
  43. ccxt/woofipro.py +2 -2
  44. {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/METADATA +9 -12
  45. {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/RECORD +48 -42
  46. ccxt/abstract/lykke.py +0 -29
  47. ccxt/async_support/lykke.py +0 -1374
  48. ccxt/lykke.py +0 -1374
  49. {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/LICENSE.txt +0 -0
  50. {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/WHEEL +0 -0
  51. {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/top_level.txt +0 -0
ccxt/abstract/lykke.py DELETED
@@ -1,29 +0,0 @@
1
- from ccxt.base.types import Entry
2
-
3
-
4
- class ImplicitAPI:
5
- public_get_assetpairs = publicGetAssetpairs = Entry('assetpairs', 'public', 'GET', {'cost': 2.5})
6
- public_get_assetpairs_id = publicGetAssetpairsId = Entry('assetpairs/{id}', 'public', 'GET', {'cost': 2.5})
7
- public_get_assets = publicGetAssets = Entry('assets', 'public', 'GET', {'cost': 2.5})
8
- public_get_assets_id = publicGetAssetsId = Entry('assets/{id}', 'public', 'GET', {'cost': 2.5})
9
- public_get_isalive = publicGetIsalive = Entry('isalive', 'public', 'GET', {'cost': 2.5})
10
- public_get_orderbooks = publicGetOrderbooks = Entry('orderbooks', 'public', 'GET', {'cost': 2.5})
11
- public_get_tickers = publicGetTickers = Entry('tickers', 'public', 'GET', {'cost': 2.5})
12
- public_get_prices = publicGetPrices = Entry('prices', 'public', 'GET', {'cost': 2.5})
13
- public_get_trades_public_assetpairid = publicGetTradesPublicAssetPairId = Entry('trades/public/{assetPairId}', 'public', 'GET', {'cost': 2.5})
14
- private_get_balance = privateGetBalance = Entry('balance', 'private', 'GET', {'cost': 2.5})
15
- private_get_trades = privateGetTrades = Entry('trades', 'private', 'GET', {'cost': 2.5})
16
- private_get_trades_order_orderid = privateGetTradesOrderOrderId = Entry('trades/order/{orderId}', 'private', 'GET', {'cost': 2.5})
17
- private_get_orders_active = privateGetOrdersActive = Entry('orders/active', 'private', 'GET', {'cost': 1})
18
- private_get_orders_closed = privateGetOrdersClosed = Entry('orders/closed', 'private', 'GET', {'cost': 1})
19
- private_get_orders_orderid = privateGetOrdersOrderId = Entry('orders/{orderId}', 'private', 'GET', {'cost': 1})
20
- private_get_operations = privateGetOperations = Entry('operations', 'private', 'GET', {'cost': 2.5})
21
- private_get_operations_deposits_addresses = privateGetOperationsDepositsAddresses = Entry('operations/deposits/addresses', 'private', 'GET', {'cost': 2.5})
22
- private_get_operations_deposits_addresses_assetid = privateGetOperationsDepositsAddressesAssetId = Entry('operations/deposits/addresses/{assetId}', 'private', 'GET', {'cost': 2.5})
23
- private_post_orders_limit = privatePostOrdersLimit = Entry('orders/limit', 'private', 'POST', {'cost': 1})
24
- private_post_orders_market = privatePostOrdersMarket = Entry('orders/market', 'private', 'POST', {'cost': 1})
25
- private_post_orders_bulk = privatePostOrdersBulk = Entry('orders/bulk', 'private', 'POST', {'cost': 1})
26
- private_post_operations_withdrawals = privatePostOperationsWithdrawals = Entry('operations/withdrawals', 'private', 'POST', {'cost': 2.5})
27
- private_post_operations_deposits_addresses = privatePostOperationsDepositsAddresses = Entry('operations/deposits/addresses', 'private', 'POST', {'cost': 2.5})
28
- private_delete_orders = privateDeleteOrders = Entry('orders', 'private', 'DELETE', {'cost': 1})
29
- private_delete_orders_orderid = privateDeleteOrdersOrderId = Entry('orders/{orderId}', 'private', 'DELETE', {'cost': 1})