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.
- ccxt/__init__.py +1 -3
- ccxt/async_support/__init__.py +1 -3
- ccxt/async_support/base/exchange.py +5 -5
- ccxt/async_support/binance.py +20 -6
- ccxt/async_support/bitget.py +1 -1
- ccxt/async_support/bybit.py +3 -1
- ccxt/async_support/coinbase.py +1 -1
- ccxt/async_support/coinbaseinternational.py +2 -2
- ccxt/async_support/coinex.py +1 -1
- ccxt/async_support/deribit.py +8 -25
- ccxt/async_support/exmo.py +1 -1
- ccxt/async_support/hyperliquid.py +3 -3
- ccxt/async_support/kraken.py +1 -1
- ccxt/async_support/woofipro.py +2 -2
- ccxt/base/exchange.py +5 -5
- ccxt/binance.py +20 -6
- ccxt/bitget.py +1 -1
- ccxt/bybit.py +3 -1
- ccxt/coinbase.py +1 -1
- ccxt/coinbaseinternational.py +2 -2
- ccxt/coinex.py +1 -1
- ccxt/deribit.py +8 -25
- ccxt/exmo.py +1 -1
- ccxt/hyperliquid.py +3 -3
- ccxt/kraken.py +1 -1
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/binance.py +2 -2
- ccxt/pro/bitget.py +3 -3
- ccxt/pro/bybit.py +7 -2
- ccxt/pro/cex.py +1 -1
- ccxt/pro/coincatch.py +3 -3
- ccxt/pro/mexc.py +3 -3
- ccxt/pro/okx.py +1 -1
- ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
- ccxt/static_dependencies/ethereum/account/py.typed +0 -0
- ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
- ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
- ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
- ccxt/static_dependencies/lark/py.typed +0 -0
- ccxt/static_dependencies/marshmallow/py.typed +0 -0
- ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
- ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
- ccxt/woofipro.py +2 -2
- {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/METADATA +9 -12
- {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/RECORD +48 -42
- ccxt/abstract/lykke.py +0 -29
- ccxt/async_support/lykke.py +0 -1374
- ccxt/lykke.py +0 -1374
- {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.4.53.dist-info → ccxt-4.4.57.dist-info}/WHEEL +0 -0
- {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})
|