ccxt 4.3.1__py2.py3-none-any.whl → 4.3.2__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.
Potentially problematic release.
This version of ccxt might be problematic. Click here for more details.
- ccxt/__init__.py +1 -1
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/base/exchange.py +5 -2
- ccxt/async_support/bingx.py +3 -2
- ccxt/async_support/bitget.py +5 -3
- ccxt/async_support/coinbase.py +2 -1
- ccxt/async_support/coinbasepro.py +1 -1
- ccxt/async_support/coinex.py +109 -145
- ccxt/async_support/cryptocom.py +5 -5
- ccxt/async_support/hyperliquid.py +69 -1
- ccxt/async_support/kraken.py +6 -3
- ccxt/async_support/kucoin.py +13 -11
- ccxt/base/exchange.py +5 -2
- ccxt/base/types.py +4 -0
- ccxt/bingx.py +3 -2
- ccxt/bitget.py +5 -3
- ccxt/coinbase.py +2 -1
- ccxt/coinbasepro.py +1 -1
- ccxt/coinex.py +109 -145
- ccxt/cryptocom.py +5 -5
- ccxt/hyperliquid.py +69 -1
- ccxt/kraken.py +6 -3
- ccxt/kucoin.py +13 -11
- ccxt/pro/__init__.py +1 -1
- {ccxt-4.3.1.dist-info → ccxt-4.3.2.dist-info}/METADATA +7 -6
- {ccxt-4.3.1.dist-info → ccxt-4.3.2.dist-info}/RECORD +28 -28
- {ccxt-4.3.1.dist-info → ccxt-4.3.2.dist-info}/WHEEL +0 -0
- {ccxt-4.3.1.dist-info → ccxt-4.3.2.dist-info}/top_level.txt +0 -0
ccxt/hyperliquid.py
CHANGED
@@ -5,10 +5,11 @@
|
|
5
5
|
|
6
6
|
from ccxt.base.exchange import Exchange
|
7
7
|
from ccxt.abstract.hyperliquid import ImplicitAPI
|
8
|
-
from ccxt.base.types import Balances, Currencies, Int, MarginModification, Market, Num, Order, OrderBook, OrderRequest, OrderSide, OrderType, Str, Strings, Trade, TransferEntry
|
8
|
+
from ccxt.base.types import Balances, Currencies, Int, MarginModification, Market, Num, Order, OrderBook, OrderRequest, CancellationRequest, OrderSide, OrderType, Str, Strings, Trade, TransferEntry
|
9
9
|
from typing import List
|
10
10
|
from ccxt.base.errors import ExchangeError
|
11
11
|
from ccxt.base.errors import ArgumentsRequired
|
12
|
+
from ccxt.base.errors import BadRequest
|
12
13
|
from ccxt.base.errors import InvalidOrder
|
13
14
|
from ccxt.base.errors import OrderNotFound
|
14
15
|
from ccxt.base.errors import NotSupported
|
@@ -43,6 +44,7 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
43
44
|
'cancelAllOrders': False,
|
44
45
|
'cancelOrder': True,
|
45
46
|
'cancelOrders': True,
|
47
|
+
'cancelOrdersForSymbols': True,
|
46
48
|
'closeAllPositions': False,
|
47
49
|
'closePosition': False,
|
48
50
|
'createMarketBuyOrderWithCost': False,
|
@@ -1167,6 +1169,72 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
1167
1169
|
#
|
1168
1170
|
return response
|
1169
1171
|
|
1172
|
+
def cancel_orders_for_symbols(self, orders: List[CancellationRequest], params={}):
|
1173
|
+
"""
|
1174
|
+
cancel multiple orders for multiple symbols
|
1175
|
+
:see: https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#cancel-order-s
|
1176
|
+
:see: https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#cancel-order-s-by-cloid
|
1177
|
+
:param CancellationRequest[] orders: each order should contain the parameters required by cancelOrder namely id and symbol
|
1178
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1179
|
+
:param str [params.vaultAddress]: the vault address
|
1180
|
+
:returns dict: an list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
1181
|
+
"""
|
1182
|
+
self.check_required_credentials()
|
1183
|
+
self.load_markets()
|
1184
|
+
nonce = self.milliseconds()
|
1185
|
+
request = {
|
1186
|
+
'nonce': nonce,
|
1187
|
+
# 'vaultAddress': vaultAddress,
|
1188
|
+
}
|
1189
|
+
cancelReq = []
|
1190
|
+
cancelAction = {
|
1191
|
+
'type': '',
|
1192
|
+
'cancels': [],
|
1193
|
+
}
|
1194
|
+
cancelByCloid = False
|
1195
|
+
for i in range(0, len(orders)):
|
1196
|
+
order = orders[i]
|
1197
|
+
clientOrderId = self.safe_string(order, 'clientOrderId')
|
1198
|
+
if clientOrderId is not None:
|
1199
|
+
cancelByCloid = True
|
1200
|
+
id = self.safe_string(order, 'id')
|
1201
|
+
symbol = self.safe_string(order, 'symbol')
|
1202
|
+
if symbol is None:
|
1203
|
+
raise ArgumentsRequired(self.id + ' cancelOrdersForSymbols() requires a symbol argument in each order')
|
1204
|
+
if id is not None and cancelByCloid:
|
1205
|
+
raise BadRequest(self.id + ' cancelOrdersForSymbols() all orders must have either id or clientOrderId')
|
1206
|
+
assetKey = 'asset' if cancelByCloid else 'a'
|
1207
|
+
idKey = 'cloid' if cancelByCloid else 'o'
|
1208
|
+
market = self.market(symbol)
|
1209
|
+
cancelObj = {}
|
1210
|
+
cancelObj[assetKey] = self.parse_to_numeric(market['baseId'])
|
1211
|
+
cancelObj[idKey] = clientOrderId if cancelByCloid else self.parse_to_numeric(id)
|
1212
|
+
cancelReq.append(cancelObj)
|
1213
|
+
cancelAction['type'] = 'cancelByCloid' if cancelByCloid else 'cancel'
|
1214
|
+
cancelAction['cancels'] = cancelReq
|
1215
|
+
vaultAddress = self.format_vault_address(self.safe_string(params, 'vaultAddress'))
|
1216
|
+
signature = self.sign_l1_action(cancelAction, nonce, vaultAddress)
|
1217
|
+
request['action'] = cancelAction
|
1218
|
+
request['signature'] = signature
|
1219
|
+
if vaultAddress is not None:
|
1220
|
+
params = self.omit(params, 'vaultAddress')
|
1221
|
+
request['vaultAddress'] = vaultAddress
|
1222
|
+
response = self.privatePostExchange(self.extend(request, params))
|
1223
|
+
#
|
1224
|
+
# {
|
1225
|
+
# "status":"ok",
|
1226
|
+
# "response":{
|
1227
|
+
# "type":"cancel",
|
1228
|
+
# "data":{
|
1229
|
+
# "statuses":[
|
1230
|
+
# "success"
|
1231
|
+
# ]
|
1232
|
+
# }
|
1233
|
+
# }
|
1234
|
+
# }
|
1235
|
+
#
|
1236
|
+
return response
|
1237
|
+
|
1170
1238
|
def edit_order(self, id: str, symbol: str, type: str, side: str, amount: Num = None, price: Num = None, params={}):
|
1171
1239
|
"""
|
1172
1240
|
edit a trade order
|
ccxt/kraken.py
CHANGED
@@ -1333,7 +1333,7 @@ class kraken(Exchange, ImplicitAPI):
|
|
1333
1333
|
'ordertype': type,
|
1334
1334
|
'volume': self.amount_to_precision(symbol, amount),
|
1335
1335
|
}
|
1336
|
-
orderRequest = self.order_request('createOrder
|
1336
|
+
orderRequest = self.order_request('createOrder', symbol, type, request, price, params)
|
1337
1337
|
response = self.privatePostAddOrder(self.extend(orderRequest[0], orderRequest[1]))
|
1338
1338
|
#
|
1339
1339
|
# {
|
@@ -1659,7 +1659,10 @@ class kraken(Exchange, ImplicitAPI):
|
|
1659
1659
|
request['price'] = trailingAmountString
|
1660
1660
|
request['ordertype'] = 'trailing-stop'
|
1661
1661
|
if reduceOnly:
|
1662
|
-
|
1662
|
+
if method == 'createOrderWs':
|
1663
|
+
request['reduce_only'] = True # ws request can't have stringified bool
|
1664
|
+
else:
|
1665
|
+
request['reduce_only'] = 'true' # not using hasattr(self, boolean) case, because the urlencodedNested transforms it into 'True' string
|
1663
1666
|
close = self.safe_value(params, 'close')
|
1664
1667
|
if close is not None:
|
1665
1668
|
close = self.extend({}, close)
|
@@ -1710,7 +1713,7 @@ class kraken(Exchange, ImplicitAPI):
|
|
1710
1713
|
}
|
1711
1714
|
if amount is not None:
|
1712
1715
|
request['volume'] = self.amount_to_precision(symbol, amount)
|
1713
|
-
orderRequest = self.order_request('editOrder
|
1716
|
+
orderRequest = self.order_request('editOrder', symbol, type, request, price, params)
|
1714
1717
|
response = self.privatePostEditOrder(self.extend(orderRequest[0], orderRequest[1]))
|
1715
1718
|
#
|
1716
1719
|
# {
|
ccxt/kucoin.py
CHANGED
@@ -606,6 +606,8 @@ class kucoin(Exchange, ImplicitAPI):
|
|
606
606
|
'BIFI': 'BIFIF',
|
607
607
|
'VAI': 'VAIOT',
|
608
608
|
'WAX': 'WAXP',
|
609
|
+
'ALT': 'APTOSLAUNCHTOKEN',
|
610
|
+
'KALT': 'ALT', # ALTLAYER
|
609
611
|
},
|
610
612
|
'options': {
|
611
613
|
'version': 'v1',
|
@@ -1776,7 +1778,7 @@ class kucoin(Exchange, ImplicitAPI):
|
|
1776
1778
|
address = address.replace('bitcoincash:', '')
|
1777
1779
|
code = None
|
1778
1780
|
if currency is not None:
|
1779
|
-
code = currency['id']
|
1781
|
+
code = self.safe_currency_code(currency['id'])
|
1780
1782
|
if code != 'NIM':
|
1781
1783
|
# contains spaces
|
1782
1784
|
self.check_address(address)
|
@@ -1822,7 +1824,7 @@ class kucoin(Exchange, ImplicitAPI):
|
|
1822
1824
|
self.options['versions']['private']['GET']['deposit-addresses'] = version
|
1823
1825
|
chains = self.safe_list(response, 'data', [])
|
1824
1826
|
parsed = self.parse_deposit_addresses(chains, [currency['code']], False, {
|
1825
|
-
'currency': currency['
|
1827
|
+
'currency': currency['code'],
|
1826
1828
|
})
|
1827
1829
|
return self.index_by(parsed, 'network')
|
1828
1830
|
|
@@ -2799,7 +2801,7 @@ class kucoin(Exchange, ImplicitAPI):
|
|
2799
2801
|
def fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
2800
2802
|
"""
|
2801
2803
|
get the list of most recent trades for a particular symbol
|
2802
|
-
:see: https://
|
2804
|
+
:see: https://www.kucoin.com/docs/rest/spot-trading/market-data/get-trade-histories
|
2803
2805
|
:param str symbol: unified symbol of the market to fetch trades for
|
2804
2806
|
:param int [since]: timestamp in ms of the earliest trade to fetch
|
2805
2807
|
:param int [limit]: the maximum amount of trades to fetch
|
@@ -2964,7 +2966,7 @@ class kucoin(Exchange, ImplicitAPI):
|
|
2964
2966
|
def fetch_trading_fee(self, symbol: str, params={}) -> TradingFeeInterface:
|
2965
2967
|
"""
|
2966
2968
|
fetch the trading fees for a market
|
2967
|
-
:see: https://
|
2969
|
+
:see: https://www.kucoin.com/docs/rest/funding/trade-fee/trading-pair-actual-fee-spot-margin-trade_hf
|
2968
2970
|
:param str symbol: unified market symbol
|
2969
2971
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2970
2972
|
:returns dict: a `fee structure <https://docs.ccxt.com/#/?id=fee-structure>`
|
@@ -3002,7 +3004,7 @@ class kucoin(Exchange, ImplicitAPI):
|
|
3002
3004
|
def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
3003
3005
|
"""
|
3004
3006
|
make a withdrawal
|
3005
|
-
:see: https://
|
3007
|
+
:see: https://www.kucoin.com/docs/rest/funding/withdrawals/apply-withdraw
|
3006
3008
|
:param str code: unified currency code
|
3007
3009
|
:param float amount: the amount to withdraw
|
3008
3010
|
:param str address: the address to withdraw to
|
@@ -3163,8 +3165,8 @@ class kucoin(Exchange, ImplicitAPI):
|
|
3163
3165
|
def fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
|
3164
3166
|
"""
|
3165
3167
|
fetch all deposits made to an account
|
3166
|
-
:see: https://
|
3167
|
-
:see: https://
|
3168
|
+
:see: https://www.kucoin.com/docs/rest/funding/deposit/get-deposit-list
|
3169
|
+
:see: https://www.kucoin.com/docs/rest/funding/deposit/get-v1-historical-deposits-list
|
3168
3170
|
:param str code: unified currency code
|
3169
3171
|
:param int [since]: the earliest time in ms to fetch deposits for
|
3170
3172
|
:param int [limit]: the maximum number of deposits structures to retrieve
|
@@ -3239,8 +3241,8 @@ class kucoin(Exchange, ImplicitAPI):
|
|
3239
3241
|
def fetch_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
|
3240
3242
|
"""
|
3241
3243
|
fetch all withdrawals made from an account
|
3242
|
-
:see: https://
|
3243
|
-
:see: https://
|
3244
|
+
:see: https://www.kucoin.com/docs/rest/funding/withdrawals/get-withdrawals-list
|
3245
|
+
:see: https://www.kucoin.com/docs/rest/funding/withdrawals/get-v1-historical-withdrawals-list
|
3244
3246
|
:param str code: unified currency code
|
3245
3247
|
:param int [since]: the earliest time in ms to fetch withdrawals for
|
3246
3248
|
:param int [limit]: the maximum number of withdrawals structures to retrieve
|
@@ -3490,7 +3492,7 @@ class kucoin(Exchange, ImplicitAPI):
|
|
3490
3492
|
def transfer(self, code: str, amount: float, fromAccount: str, toAccount: str, params={}) -> TransferEntry:
|
3491
3493
|
"""
|
3492
3494
|
transfer currency internally between wallets on the same account
|
3493
|
-
:see: https://
|
3495
|
+
:see: https://www.kucoin.com/docs/rest/funding/transfer/inner-transfer
|
3494
3496
|
:see: https://docs.kucoin.com/futures/#transfer-funds-to-kucoin-main-account-2
|
3495
3497
|
:see: https://docs.kucoin.com/spot-hf/#internal-funds-transfers-in-high-frequency-trading-accounts
|
3496
3498
|
:param str code: unified currency code
|
@@ -3757,7 +3759,7 @@ class kucoin(Exchange, ImplicitAPI):
|
|
3757
3759
|
|
3758
3760
|
def fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={}):
|
3759
3761
|
"""
|
3760
|
-
:see: https://
|
3762
|
+
:see: https://www.kucoin.com/docs/rest/account/basic-info/get-account-ledgers-spot-margin
|
3761
3763
|
:see: https://www.kucoin.com/docs/rest/account/basic-info/get-account-ledgers-trade_hf
|
3762
3764
|
:see: https://www.kucoin.com/docs/rest/account/basic-info/get-account-ledgers-margin_hf
|
3763
3765
|
fetch the history of changes, actions done by the user or operations that altered balance of the user
|
ccxt/pro/__init__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.2
|
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
|
@@ -90,6 +90,7 @@ Current feature list:
|
|
90
90
|
| [](http://www.bitmart.com/?r=rQCFLh) | bitmart | [BitMart](http://www.bitmart.com/?r=rQCFLh) | [](https://developer-pro.bitmart.com/) | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | [](http://www.bitmart.com/?r=rQCFLh) |
|
91
91
|
| [](https://www.bitmex.com/app/register/NZTR1q) | bitmex | [BitMEX](https://www.bitmex.com/app/register/NZTR1q) | [](https://www.bitmex.com/app/apiOverview) | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | [](https://www.bitmex.com/app/register/NZTR1q) |
|
92
92
|
| [](https://www.bybit.com/register?affiliate_id=35953) | bybit | [Bybit](https://www.bybit.com/register?affiliate_id=35953) | [](https://bybit-exchange.github.io/docs/inverse/) | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | |
|
93
|
+
| [](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | coinbase | [Coinbase Advanced](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | [](https://developers.coinbase.com/api/v2) | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | |
|
93
94
|
| [](https://international.coinbase.com) | coinbaseinternational | [Coinbase International](https://international.coinbase.com) | [](https://docs.cloud.coinbase.com/intx/docs) | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | |
|
94
95
|
| [](https://www.coinex.com/register?refer_code=yw5fz) | coinex | [CoinEx](https://www.coinex.com/register?refer_code=yw5fz) | [](https://docs.coinex.com/api/v2) | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | |
|
95
96
|
| [](https://crypto.com/exch/kdacthrnxt) | cryptocom | [Crypto.com](https://crypto.com/exch/kdacthrnxt) | [](https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html) | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | [](https://crypto.com/exch/kdacthrnxt) |
|
@@ -142,9 +143,9 @@ The CCXT library currently supports the following 97 cryptocurrency exchange mar
|
|
142
143
|
| [](https://www.btcturk.com) | btcturk | [BTCTurk](https://www.btcturk.com) | [](https://github.com/BTCTrader/broker-api-docs) | | |
|
143
144
|
| [](https://www.bybit.com/register?affiliate_id=35953) | bybit | [Bybit](https://www.bybit.com/register?affiliate_id=35953) | [](https://bybit-exchange.github.io/docs/inverse/) | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
144
145
|
| [](https://cex.io/r/0/up105393824/0/) | cex | [CEX.IO](https://cex.io/r/0/up105393824/0/) | [](https://cex.io/cex-api) | | [](https://ccxt.pro) |
|
145
|
-
| [](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | coinbase | [Coinbase](https://www.coinbase.com/join/58cbe25a355148797479dbd2)
|
146
|
+
| [](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | coinbase | [Coinbase Advanced](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | [](https://developers.coinbase.com/api/v2) | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
146
147
|
| [](https://international.coinbase.com) | coinbaseinternational | [Coinbase International](https://international.coinbase.com) | [](https://docs.cloud.coinbase.com/intx/docs) | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
147
|
-
| [](https://pro.coinbase.com/) | coinbasepro | [Coinbase Pro](https://pro.coinbase.com/)
|
148
|
+
| [](https://pro.coinbase.com/) | coinbasepro | [Coinbase Pro(Deprecated)](https://pro.coinbase.com/) | [](https://docs.pro.coinbase.com) | | [](https://ccxt.pro) |
|
148
149
|
| [](https://coincheck.com) | coincheck | [coincheck](https://coincheck.com) | [](https://coincheck.com/documents/exchange/api) | | |
|
149
150
|
| [](https://www.coinex.com/register?refer_code=yw5fz) | coinex | [CoinEx](https://www.coinex.com/register?refer_code=yw5fz) | [](https://docs.coinex.com/api/v2) | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
150
151
|
| [](https://coinlist.co) | coinlist | [Coinlist](https://coinlist.co) | [](https://trade-docs.coinlist.co) | | |
|
@@ -261,13 +262,13 @@ console.log(version, Object.keys(exchanges));
|
|
261
262
|
|
262
263
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
263
264
|
|
264
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
265
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
265
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.2/dist/ccxt.browser.js
|
266
|
+
* unpkg: https://unpkg.com/ccxt@4.3.2/dist/ccxt.browser.js
|
266
267
|
|
267
268
|
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.
|
268
269
|
|
269
270
|
```HTML
|
270
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
271
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.2/dist/ccxt.browser.js"></script>
|
271
272
|
```
|
272
273
|
|
273
274
|
Creates a global `ccxt` object:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=Gi6TT0625ewgV1r2QtoCP1GS9NzM9I6vpl0j77P3gSQ,15655
|
2
2
|
ccxt/ace.py,sha256=yGGKYViya2zCyr1DjWhEu9mknkDAEVsobHmrvJxHfX0,41420
|
3
3
|
ccxt/alpaca.py,sha256=6P2wAEGJQOjjoKQbzv1KvSuZvEZmOX987a1NqB7z9mk,46908
|
4
4
|
ccxt/ascendex.py,sha256=T5dbI_93gq24rPswAnm1rrncTMatz7XdcRQMYVbT8WQ,151384
|
@@ -8,7 +8,7 @@ ccxt/binance.py,sha256=x73wsLQPdwj6wuSoOkZySBkRlg2XA1ZU22avjk0sY5Q,599125
|
|
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
|
11
|
-
ccxt/bingx.py,sha256=
|
11
|
+
ccxt/bingx.py,sha256=3iGHn08DN39ISzO9d4vtkWqqCdOjQzopuOqRarfOLqU,182123
|
12
12
|
ccxt/bit2c.py,sha256=zDMcQVszvO39Lo4Km_aU16AN0MoVz7WhJrLnTua5Pm0,36901
|
13
13
|
ccxt/bitbank.py,sha256=5EGqavWD3ngp2e_puEuXyv7bCXc2BbjgjcuTanCWh_0,41689
|
14
14
|
ccxt/bitbay.py,sha256=xAIjzGRDVGwoy-Gygd99H0YN4wiaz_0lR0Z14oxaaxc,478
|
@@ -17,7 +17,7 @@ ccxt/bitcoincom.py,sha256=PyWIl4nC4jp5Uba2lI1At0N_hhNyWD0DoZC_MSyL_s4,502
|
|
17
17
|
ccxt/bitfinex.py,sha256=TjypaH0TpR9RjAGCaOryHiT-f__mWkkc5NW7NBR40uw,71528
|
18
18
|
ccxt/bitfinex2.py,sha256=jVuVXYAELdsX6eD7QWW5HWewxdgRrqL6YNVmR1qlDVA,158129
|
19
19
|
ccxt/bitflyer.py,sha256=erPas5QQ6RDWhPOUF8ZaTlzBnMAgaToNoRPpiwNx2mQ,41386
|
20
|
-
ccxt/bitget.py,sha256=
|
20
|
+
ccxt/bitget.py,sha256=GlSqsgda92qyr0G88aavXCMb8OR8M93DaVRMvGpmETY,416098
|
21
21
|
ccxt/bithumb.py,sha256=Bm3TBXoKlG3USsZhQduIJVw6sHHDfYJ4umFhclTFZ4k,45334
|
22
22
|
ccxt/bitmart.py,sha256=6M45xqj2k4hHbnkCOmrDWx8No60V-TDFaU-iI1D-isU,199103
|
23
23
|
ccxt/bitmex.py,sha256=JwdMwLAXnXKROerOdptpA-l8vDXWco_3KoBw2cHOynk,125408
|
@@ -37,18 +37,18 @@ ccxt/btcmarkets.py,sha256=XOoDrXKNLvqMbNTUmTNMkQzsyy7oOh_Dw1USiJ8WjEs,51328
|
|
37
37
|
ccxt/btcturk.py,sha256=p-_zpUEu0aIK5kR4PXQKnAqr9P0ajFsaszyFylUOHeE,36506
|
38
38
|
ccxt/bybit.py,sha256=ev3vcqMlivgRle2oO_X6Bdr-w5if-aKcxgfULGVmUEE,401637
|
39
39
|
ccxt/cex.py,sha256=CfQ_1t-Em16bYl-5DmzqJzC8rxrdk9CCxq7Q0ON7vOM,69653
|
40
|
-
ccxt/coinbase.py,sha256=
|
40
|
+
ccxt/coinbase.py,sha256=64-cmpW00tzNPJlqth1lTnzmf-41Nz6SGawDcGY8tKY,202918
|
41
41
|
ccxt/coinbaseinternational.py,sha256=RnTdgTmkia2wpMBW2pZR_yvUzWIC-7hfXFun8v6pW0k,87123
|
42
|
-
ccxt/coinbasepro.py,sha256=
|
42
|
+
ccxt/coinbasepro.py,sha256=IHRAzmu9DOasZXSaPcWwI3IQ3t-Te53lnEXzBujwPYw,78389
|
43
43
|
ccxt/coincheck.py,sha256=16rD9tUt0Ww8pjSTDD1CQ28wusKil0FnFRiUvzj9FwQ,35513
|
44
|
-
ccxt/coinex.py,sha256=
|
44
|
+
ccxt/coinex.py,sha256=v8PPuiLQWpZIlkQIofLW7cZrnsIhwYad4wzeXnRn_V8,245048
|
45
45
|
ccxt/coinlist.py,sha256=TzngmKZS0bgHafN73E-sKvB7A_5pY9sXRCljJ7Y0PTQ,103001
|
46
46
|
ccxt/coinmate.py,sha256=YXzss3QOD4pcPfJnPq_V7j99gCFisFerE5wv-spdhKw,45790
|
47
47
|
ccxt/coinmetro.py,sha256=vmYo2m-s58gCaol0xvOtnANQsG8_vPSYUh0Tf36QBLw,80409
|
48
48
|
ccxt/coinone.py,sha256=OZaldy-khEcYEKnfIxz38HSuYKuUt_Ehgle7X-HYil4,46745
|
49
49
|
ccxt/coinsph.py,sha256=n5Dv-_T66-gkRiMWceHoiyASbFj1ikVcW85zUZJepj4,90432
|
50
50
|
ccxt/coinspot.py,sha256=rtHhup6v6HbDCAVrZyVJJqOooJ_zoRWU0OqkEjLYL3E,23463
|
51
|
-
ccxt/cryptocom.py,sha256=
|
51
|
+
ccxt/cryptocom.py,sha256=yyDZVb-6SKej7KuDkixHF6XxsOHrqMAeUtAKAIFMOHw,128259
|
52
52
|
ccxt/currencycom.py,sha256=Y0foIftGaqxSRpkjgO-XTGifgFKnAINXYtrJRtBODYM,86759
|
53
53
|
ccxt/delta.py,sha256=vAGScpoJrch6xduLxdMsbvXA4aqQrtxcoUhZG3Z2Ejo,150437
|
54
54
|
ccxt/deribit.py,sha256=_3JG8JYuZWPY94a-iOANaaTvihCQoVxyry9ZbN8Iu0k,160448
|
@@ -65,13 +65,13 @@ ccxt/hollaex.py,sha256=UqJKv5pH16SAsh4Y0wK9KAVH2spjirjuYqh70rJozNc,75893
|
|
65
65
|
ccxt/htx.py,sha256=2C__KXkDukiFP1Yh9jbcsJQvIyJZwK8PRPo3npEDTnA,419293
|
66
66
|
ccxt/huobi.py,sha256=4vaG7IRN7fyjaJ_ac6S-njlHOfSEN5de7aq0noznxYw,438
|
67
67
|
ccxt/huobijp.py,sha256=FrIZUgZvoivromBn-sSxRSjfBuaDAcQ06BcquaJrfeg,87957
|
68
|
-
ccxt/hyperliquid.py,sha256=
|
68
|
+
ccxt/hyperliquid.py,sha256=7BElfORYNZU4JK8HWU61PhIp-kmV4TCwUeOldQThG8w,95618
|
69
69
|
ccxt/idex.py,sha256=CUitIG8A6wXceGhyJyb42SdJ7lIIK3UWHzeyrBg9v9Y,72809
|
70
70
|
ccxt/independentreserve.py,sha256=nRprUlIbJ2ipFavUim5Ad46oYSEz8cpqFL1gg1hN-Mg,32024
|
71
71
|
ccxt/indodax.py,sha256=0Uv6cHkrvmLHOV5YaMMfs3Le5qwbNtAmLP2eZl_m8wo,51779
|
72
|
-
ccxt/kraken.py,sha256=
|
72
|
+
ccxt/kraken.py,sha256=7DKXOeIDQqJ-6-z1d7Y7qK8E4l8myCRhtT2oz-z9B7k,124178
|
73
73
|
ccxt/krakenfutures.py,sha256=2QLNQ5Jw1vc2VELeVOtGNY029lKRAovFoV2iBzb_rCw,115673
|
74
|
-
ccxt/kucoin.py,sha256=
|
74
|
+
ccxt/kucoin.py,sha256=euNv22NfoFHkqRin1hWZUmc7GRc2peDCuddV5CMNy5U,215078
|
75
75
|
ccxt/kucoinfutures.py,sha256=Mkzn3sg13r-qW_gEgt8RsrW4MezlZtX96DXJerCVw6k,118519
|
76
76
|
ccxt/kuna.py,sha256=vBWvg6-OPQvpEWwfCiZ8qkKaoTjiQ728l-Y5ThlcuVc,95980
|
77
77
|
ccxt/latoken.py,sha256=gVAVH_Yp68SzObhjtYXpMBn8g__tHAnHYL-4skplYgA,78780
|
@@ -207,7 +207,7 @@ ccxt/abstract/woo.py,sha256=E-QXVJKVI4EOW72NX6wv99px9EyitWtd9KWvXUc9Tyo,10216
|
|
207
207
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
208
208
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
209
209
|
ccxt/abstract/zonda.py,sha256=aSfewvRojzmuymX6QbOnDR8v9VFqWTULMHX9Y7kKD1M,5820
|
210
|
-
ccxt/async_support/__init__.py,sha256=
|
210
|
+
ccxt/async_support/__init__.py,sha256=5xVU3yiwLfTix5YUcPrZzSZg8z0BspMNGTyDybgZl5c,15408
|
211
211
|
ccxt/async_support/ace.py,sha256=kbkibefA6HaHJSNoL_MPmbPUn7n2wyruxBOR7BXmUmQ,41644
|
212
212
|
ccxt/async_support/alpaca.py,sha256=Nsaff9RczBhiNF19RlqI6wggvEibV_2ICgB8H5Qiuck,47120
|
213
213
|
ccxt/async_support/ascendex.py,sha256=wlR3Mc8Mg7dIuzWZ59AWxAVPh0sVKddH-SFvdbq3ECc,152172
|
@@ -217,7 +217,7 @@ ccxt/async_support/binance.py,sha256=vEEKIdx_NTo-F7woeHbFORBYZ50TaLOj5GjKm9QaJh8
|
|
217
217
|
ccxt/async_support/binancecoinm.py,sha256=IY3RLZptQA2nmZaUYRGfTa5ZY4VMWBpFYfwHc8zTHw0,1683
|
218
218
|
ccxt/async_support/binanceus.py,sha256=c-K3Tk7LaRJjmYdCx8vBOqsx01uXrtvt0PC2ekBiD0g,9177
|
219
219
|
ccxt/async_support/binanceusdm.py,sha256=-1r4A4tmV2pCiLGO80hzq7MIIj4MTzOD7buZGv6JauA,2518
|
220
|
-
ccxt/async_support/bingx.py,sha256=
|
220
|
+
ccxt/async_support/bingx.py,sha256=cacxXeEwJPEBwPZVp-FZt0f8CluVx3sR0lFHINxW1Ts,183135
|
221
221
|
ccxt/async_support/bit2c.py,sha256=vCfbtsUTI0j9wU51FnvzPpFwmzC3ozN4h1I4IXVgMGI,37113
|
222
222
|
ccxt/async_support/bitbank.py,sha256=xKqkJ6vWyo0zZsRpvYVnW-D_1_imwXYrmT5_LJXKOFA,41949
|
223
223
|
ccxt/async_support/bitbay.py,sha256=jcaEXi2IhYTva8ezO_SfJhwxEZk7HST4J3NaxD16BQA,492
|
@@ -226,7 +226,7 @@ ccxt/async_support/bitcoincom.py,sha256=RiqwhK3RfxQ_PXTa860fphDCvwA8dalL-_rXlK85
|
|
226
226
|
ccxt/async_support/bitfinex.py,sha256=tFOrUo0wqwfW87hJKnfs0Kpb9F_aekeVUl3W-bBoST8,71968
|
227
227
|
ccxt/async_support/bitfinex2.py,sha256=j9hMjZtyt9w2063X2BZappzNCZGFlaXsdO2-GnDSknA,158863
|
228
228
|
ccxt/async_support/bitflyer.py,sha256=U9SoU3iMbBlnC75DSY8olxiwxZfhP8CPLIwHMhv0caE,41694
|
229
|
-
ccxt/async_support/bitget.py,sha256=
|
229
|
+
ccxt/async_support/bitget.py,sha256=WEyuH9QAaZsyfdzii1Hdqx3iUmEVQXdMAURtC2tIOw4,417686
|
230
230
|
ccxt/async_support/bithumb.py,sha256=gUkxwu6oQJ9svma1Q3vPIG7GB-pZ4LKbBzoZNGnXLAU,45564
|
231
231
|
ccxt/async_support/bitmart.py,sha256=dB4zq21sg5YD9SMJMkz5m6XaNPHD0hbl63EESSFYcB4,200023
|
232
232
|
ccxt/async_support/bitmex.py,sha256=DixaFZnBT1mVA2RL4zlBSPGq5hJECazH7VNlWXtSIX8,125968
|
@@ -246,18 +246,18 @@ ccxt/async_support/btcmarkets.py,sha256=b6izd3cD8P3swetbESyX1N0qD3K0sZI7PX4qMjWm
|
|
246
246
|
ccxt/async_support/btcturk.py,sha256=nz0nAY_whtiOupBWqdKjrYvpe6Ynu82b_SsB8kd5DC0,36724
|
247
247
|
ccxt/async_support/bybit.py,sha256=Bybv2WdhPc58LEbD_8Xt424pY-AmTYpY3kCUzZ8YRfE,403381
|
248
248
|
ccxt/async_support/cex.py,sha256=_zLkiZaE0dT7yTuJtgkFQlmuzj6M5dQQvI_VXkKsBCc,70003
|
249
|
-
ccxt/async_support/coinbase.py,sha256=
|
249
|
+
ccxt/async_support/coinbase.py,sha256=y02A5Fo3IMaDamBENd_P9OwyEtf5U4waQDYH0dwkonI,203970
|
250
250
|
ccxt/async_support/coinbaseinternational.py,sha256=d_6C7iQFn1giEh1Sr7Wm2fhG9QtGYx1pMkeJXpwjZvM,87677
|
251
|
-
ccxt/async_support/coinbasepro.py,sha256=
|
251
|
+
ccxt/async_support/coinbasepro.py,sha256=3wBkGwdq0uYcmSv7ybNn73d5tv4SnAaRMCiYAHNqjAQ,78895
|
252
252
|
ccxt/async_support/coincheck.py,sha256=LbgeqG4WkPMXZid_LZstU6Vzv6C4-xRkt_mLb4wudGc,35719
|
253
|
-
ccxt/async_support/coinex.py,sha256=
|
253
|
+
ccxt/async_support/coinex.py,sha256=nIQ15bZITAPt9u5FWoCmramnyPAmE6JzZUPBNV8Hg84,246318
|
254
254
|
ccxt/async_support/coinlist.py,sha256=gI2wUxtpt-aZ5Q2WEk-8vrFJ4jVVIbDpXRoS0M0yEhE,103489
|
255
255
|
ccxt/async_support/coinmate.py,sha256=M1B0UlcfmuLRfVPFYeBUXproZmcan8vF4UoEz--4rz4,46056
|
256
256
|
ccxt/async_support/coinmetro.py,sha256=I7ZmXVoZK-OcyMrqJ-a19NMmMuk81UoQk6UQtKKnXk4,80729
|
257
257
|
ccxt/async_support/coinone.py,sha256=H_5wdOkGhCO8wzatVrrlZeRfGcfModKQauZf-1izdCc,46987
|
258
258
|
ccxt/async_support/coinsph.py,sha256=wtblRVAffFrfH76L7vTNhextfZz735lGD2HLxfiIis0,90866
|
259
259
|
ccxt/async_support/coinspot.py,sha256=DqWK2WouFRRfchKlNFOAIhDcVK3pFfI-kHyg1BgH8P8,23615
|
260
|
-
ccxt/async_support/cryptocom.py,sha256=
|
260
|
+
ccxt/async_support/cryptocom.py,sha256=u6j3je5xc2JajDGycmsteWwVnrp1ltCRubydjFYGNcQ,128813
|
261
261
|
ccxt/async_support/currencycom.py,sha256=6mRnCI8zMKEUqiB-eyKE7i1fRsxPKIvxWRF6xMbMTf0,87181
|
262
262
|
ccxt/async_support/delta.py,sha256=YGWYhjcWIhcynx54aveJVUeoHhsSOrSa71sqhWmOUKA,151045
|
263
263
|
ccxt/async_support/deribit.py,sha256=svkhUyDROv1LoeK6KPU3UajeYAoBBlwr4yTAFqadgII,161224
|
@@ -274,13 +274,13 @@ ccxt/async_support/hollaex.py,sha256=gcA7Rove18I4O4f92eYSCNTxzqMmQebaRgV4mcqcML4
|
|
274
274
|
ccxt/async_support/htx.py,sha256=YfcjtZosx2lvhCoy0dK9z98oydU_zWIEUt9fqHUzwyY,421631
|
275
275
|
ccxt/async_support/huobi.py,sha256=fup0j6wQ1khAtfbb1H4CSyJAOzhxuoHMmrM6sgTuhr8,452
|
276
276
|
ccxt/async_support/huobijp.py,sha256=bZw7KSGpmbu4jImkxvfV2ul9CvOPibAtJwckXSduIYQ,88457
|
277
|
-
ccxt/async_support/hyperliquid.py,sha256=
|
277
|
+
ccxt/async_support/hyperliquid.py,sha256=rHakjru64ZpXvmsTXDj1ogxbgxObPgsmFor1YqxLolw,96120
|
278
278
|
ccxt/async_support/idex.py,sha256=UVFjkPyNlRN92W4zWt7R_og3g0a3SNfzWHKnSyZLKw0,73285
|
279
279
|
ccxt/async_support/independentreserve.py,sha256=02gCggRgFSmIdJyG5vO-R2JXNbB3u6U1TH2cfdckhdU,32284
|
280
280
|
ccxt/async_support/indodax.py,sha256=4ebi88kkmmJdLH1nvwds5EXNVNJV78U4CMFRSQ26ie0,52087
|
281
|
-
ccxt/async_support/kraken.py,sha256
|
281
|
+
ccxt/async_support/kraken.py,sha256=-9YRs427hqLBqrzUZytoLmmkIF7URAqXpSetnXGhAUg,124762
|
282
282
|
ccxt/async_support/krakenfutures.py,sha256=7kXGYak9jf74JvgjE5WxNYiN3_-LdSR7MRBE14VtAHw,116143
|
283
|
-
ccxt/async_support/kucoin.py,sha256=
|
283
|
+
ccxt/async_support/kucoin.py,sha256=Qxz-vb9UBDT4WFq0fSkxwuRBNVCkqvp0qj02xcQWDt4,216132
|
284
284
|
ccxt/async_support/kucoinfutures.py,sha256=wMiqQhM6OAYsekbG2srW5VD4cCo2GekQxaX3PCc1Htk,119121
|
285
285
|
ccxt/async_support/kuna.py,sha256=6X17wtrcGt6NZL9ttZBfw1PWqaIvRv2r_SRmcfBVB_k,96396
|
286
286
|
ccxt/async_support/latoken.py,sha256=GqTk_f1xJJHXnAfSOA0J7rS2hDrIJzajTQZe1gRvtCU,79256
|
@@ -313,7 +313,7 @@ ccxt/async_support/yobit.py,sha256=EgBPquMnD4GU32jnWp1FXUxlMyC1nYPtRzJCZUG_HMY,5
|
|
313
313
|
ccxt/async_support/zaif.py,sha256=PaHcaNijKkhocrw6DZoSBNUjBOLNlkUYtsJvPAqkx68,28134
|
314
314
|
ccxt/async_support/zonda.py,sha256=89EXub_DW_p4Rpza9iiW-hAaj3ucKbNdZyV2ETQ3ESY,80866
|
315
315
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
316
|
-
ccxt/async_support/base/exchange.py,sha256=
|
316
|
+
ccxt/async_support/base/exchange.py,sha256=MFvMsecGe8m0Tu0H_jF4H_gqmOEWIIsncyiJp6PoEo4,91722
|
317
317
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
318
318
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
319
319
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=Ed1765emEde2Hj8Ys6f5EjS54ZI1wQ0qIhd04eB7yhU,5751
|
@@ -327,10 +327,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=Pxrq22nCODckJ6G1OXkYEmUunIu
|
|
327
327
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
328
328
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
329
329
|
ccxt/base/errors.py,sha256=u_zxABGVPU_K5oLEEZQWOI0_F5Q-SAUq1g1q6AFh7IM,4107
|
330
|
-
ccxt/base/exchange.py,sha256=
|
330
|
+
ccxt/base/exchange.py,sha256=GLBSldU3_eDqdzcHJbzc_lvVpo1mwvGhLwwORnzI-Is,256201
|
331
331
|
ccxt/base/precise.py,sha256=_xfu54sV0vWNnOfGTKRFykeuWP8mn4K1m9lk1tcllX4,8565
|
332
|
-
ccxt/base/types.py,sha256=
|
333
|
-
ccxt/pro/__init__.py,sha256=
|
332
|
+
ccxt/base/types.py,sha256=ZDDuKtyi-6j98YdcFSa8SS1OfwuSer_PJp1QXTsaMb0,7992
|
333
|
+
ccxt/pro/__init__.py,sha256=q2tnwdnJhswEG-rCHZBjQQc8kEEy-SgYirl4xFbjiT8,6998
|
334
334
|
ccxt/pro/alpaca.py,sha256=7ePyWli0949ti5UheIn553xmnFpedrNc2W5CKauSZio,27167
|
335
335
|
ccxt/pro/ascendex.py,sha256=fCM3EujSfJvtvffqI56UAstTtwjXFIocwukm15cF8rE,35432
|
336
336
|
ccxt/pro/bequant.py,sha256=5zbsP8BHQTUZ8ZNL6uaACxDbUClgkOV4SYfXT_LfQVg,1351
|
@@ -529,7 +529,7 @@ ccxt/test/base/test_ticker.py,sha256=cMTIMb1oySNORUCmqI5ZzMswlEyCF6gJMah3vfvo8wQ
|
|
529
529
|
ccxt/test/base/test_trade.py,sha256=PMtmB8V38dpaP-eb8h488xYMlR6D69yCOhsA1RuWrUA,2336
|
530
530
|
ccxt/test/base/test_trading_fee.py,sha256=2aDCNJtqBkTC_AieO0l1HYGq5hz5qkWlkWb9Nv_fcwk,1066
|
531
531
|
ccxt/test/base/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
|
532
|
-
ccxt-4.3.
|
533
|
-
ccxt-4.3.
|
534
|
-
ccxt-4.3.
|
535
|
-
ccxt-4.3.
|
532
|
+
ccxt-4.3.2.dist-info/METADATA,sha256=PCnKpNQwqFrM0cuxITcsIwiBJb2Dh8I6pPD0Rodu2NQ,111189
|
533
|
+
ccxt-4.3.2.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
|
534
|
+
ccxt-4.3.2.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
535
|
+
ccxt-4.3.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|