ccxt 4.3.29__py2.py3-none-any.whl → 4.3.30__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 +1 -1
- ccxt/async_support/base/ws/aiohttp_client.py +1 -0
- ccxt/async_support/base/ws/future.py +27 -29
- ccxt/async_support/bingx.py +1 -1
- ccxt/async_support/coinex.py +254 -307
- ccxt/async_support/whitebit.py +43 -3
- ccxt/base/exchange.py +5 -1
- ccxt/bingx.py +1 -1
- ccxt/coinex.py +254 -307
- ccxt/pro/__init__.py +1 -1
- ccxt/whitebit.py +43 -3
- {ccxt-4.3.29.dist-info → ccxt-4.3.30.dist-info}/METADATA +4 -4
- {ccxt-4.3.29.dist-info → ccxt-4.3.30.dist-info}/RECORD +17 -17
- {ccxt-4.3.29.dist-info → ccxt-4.3.30.dist-info}/WHEEL +0 -0
- {ccxt-4.3.29.dist-info → ccxt-4.3.30.dist-info}/top_level.txt +0 -0
ccxt/pro/__init__.py
CHANGED
ccxt/whitebit.py
CHANGED
@@ -45,6 +45,9 @@ class whitebit(Exchange, ImplicitAPI):
|
|
45
45
|
'cancelAllOrdersAfter': True,
|
46
46
|
'cancelOrder': True,
|
47
47
|
'cancelOrders': False,
|
48
|
+
'createMarketBuyOrderWithCost': True,
|
49
|
+
'createMarketOrderWithCost': False,
|
50
|
+
'createMarketSellOrderWithCost': False,
|
48
51
|
'createOrder': True,
|
49
52
|
'createStopLimitOrder': True,
|
50
53
|
'createStopMarketOrder': True,
|
@@ -1162,6 +1165,29 @@ class whitebit(Exchange, ImplicitAPI):
|
|
1162
1165
|
#
|
1163
1166
|
return self.safe_integer(response, 'time')
|
1164
1167
|
|
1168
|
+
def create_market_order_with_cost(self, symbol: str, side: OrderSide, cost: float, params={}):
|
1169
|
+
"""
|
1170
|
+
create a market order by providing the symbol, side and cost
|
1171
|
+
:param str symbol: unified symbol of the market to create an order in
|
1172
|
+
:param str side: 'buy' or 'sell'
|
1173
|
+
:param float cost: how much you want to trade in units of the quote currency
|
1174
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1175
|
+
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
1176
|
+
"""
|
1177
|
+
params['cost'] = cost
|
1178
|
+
# only buy side is supported
|
1179
|
+
return self.create_order(symbol, 'market', side, 0, None, params)
|
1180
|
+
|
1181
|
+
def create_market_buy_order_with_cost(self, symbol: str, cost: float, params={}) -> Order:
|
1182
|
+
"""
|
1183
|
+
create a market buy order by providing the symbol and cost
|
1184
|
+
:param str symbol: unified symbol of the market to create an order in
|
1185
|
+
:param float cost: how much you want to trade in units of the quote currency
|
1186
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1187
|
+
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
1188
|
+
"""
|
1189
|
+
return self.create_market_order_with_cost(symbol, 'buy', cost, params)
|
1190
|
+
|
1165
1191
|
def create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}):
|
1166
1192
|
"""
|
1167
1193
|
create a trade order
|
@@ -1176,6 +1202,7 @@ class whitebit(Exchange, ImplicitAPI):
|
|
1176
1202
|
:param float amount: how much of currency you want to trade in units of base currency
|
1177
1203
|
:param float [price]: the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
|
1178
1204
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1205
|
+
:param float [params.cost]: *market orders only* the cost of the order in units of the base currency
|
1179
1206
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
1180
1207
|
"""
|
1181
1208
|
self.load_markets()
|
@@ -1183,8 +1210,15 @@ class whitebit(Exchange, ImplicitAPI):
|
|
1183
1210
|
request = {
|
1184
1211
|
'market': market['id'],
|
1185
1212
|
'side': side,
|
1186
|
-
'amount': self.amount_to_precision(symbol, amount),
|
1187
1213
|
}
|
1214
|
+
cost = None
|
1215
|
+
cost, params = self.handle_param_string(params, 'cost')
|
1216
|
+
if cost is not None:
|
1217
|
+
if (side != 'buy') or (type != 'market'):
|
1218
|
+
raise InvalidOrder(self.id + ' createOrder() cost is only supported for market buy orders')
|
1219
|
+
request['amount'] = self.cost_to_precision(symbol, cost)
|
1220
|
+
else:
|
1221
|
+
request['amount'] = self.amount_to_precision(symbol, amount)
|
1188
1222
|
clientOrderId = self.safe_string_2(params, 'clOrdId', 'clientOrderId')
|
1189
1223
|
if clientOrderId is None:
|
1190
1224
|
brokerId = self.safe_string(self.options, 'brokerId')
|
@@ -1232,7 +1266,10 @@ class whitebit(Exchange, ImplicitAPI):
|
|
1232
1266
|
if useCollateralEndpoint:
|
1233
1267
|
response = self.v4PrivatePostOrderCollateralMarket(self.extend(request, params))
|
1234
1268
|
else:
|
1235
|
-
|
1269
|
+
if cost is not None:
|
1270
|
+
response = self.v4PrivatePostOrderMarket(self.extend(request, params))
|
1271
|
+
else:
|
1272
|
+
response = self.v4PrivatePostOrderStockMarket(self.extend(request, params))
|
1236
1273
|
return self.parse_order(response)
|
1237
1274
|
|
1238
1275
|
def edit_order(self, id: str, symbol: str, type: OrderType, side: OrderSide, amount: Num = None, price: Num = None, params={}):
|
@@ -1601,6 +1638,9 @@ class whitebit(Exchange, ImplicitAPI):
|
|
1601
1638
|
stopPrice = self.safe_number(order, 'activation_price')
|
1602
1639
|
orderId = self.safe_string_2(order, 'orderId', 'id')
|
1603
1640
|
type = self.safe_string(order, 'type')
|
1641
|
+
orderType = self.parse_order_type(type)
|
1642
|
+
if orderType == 'market':
|
1643
|
+
remaining = None
|
1604
1644
|
amount = self.safe_string(order, 'amount')
|
1605
1645
|
cost = self.safe_string(order, 'dealMoney')
|
1606
1646
|
if (side == 'buy') and ((type == 'market') or (type == 'stop market')):
|
@@ -1627,7 +1667,7 @@ class whitebit(Exchange, ImplicitAPI):
|
|
1627
1667
|
'status': None,
|
1628
1668
|
'side': side,
|
1629
1669
|
'price': price,
|
1630
|
-
'type':
|
1670
|
+
'type': orderType,
|
1631
1671
|
'stopPrice': stopPrice,
|
1632
1672
|
'triggerPrice': stopPrice,
|
1633
1673
|
'amount': amount,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.30
|
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
|
@@ -264,13 +264,13 @@ console.log(version, Object.keys(exchanges));
|
|
264
264
|
|
265
265
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
266
266
|
|
267
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
268
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
267
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.30/dist/ccxt.browser.min.js
|
268
|
+
* unpkg: https://unpkg.com/ccxt@4.3.30/dist/ccxt.browser.min.js
|
269
269
|
|
270
270
|
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.
|
271
271
|
|
272
272
|
```HTML
|
273
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
273
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.30/dist/ccxt.browser.min.js"></script>
|
274
274
|
```
|
275
275
|
|
276
276
|
Creates a global `ccxt` object:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=TLTHGwTyW1QORYkG9Kflsn4wq3nGn7nYjNJz-Iu6oF0,15950
|
2
2
|
ccxt/ace.py,sha256=IAbVQ73OhU5xdTLO6dtedqa3bSuZ63Me55Se1zotYUY,41656
|
3
3
|
ccxt/alpaca.py,sha256=NadHil-XkNFteqE7GwzIhKCCRjQ7m0xBQBCUlKxS6Sc,47215
|
4
4
|
ccxt/ascendex.py,sha256=ZlHotewbbcpvMJfqBoAD1UqWo-xTw3qBJO5wfX5z6hs,151487
|
@@ -8,7 +8,7 @@ ccxt/binance.py,sha256=IojU3Tkcp9qPaaoYYcbpnZ2Mu8SmA6mS-R7KMOghJus,617548
|
|
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=z45s4wSV2hRG3JMY5zfnDzlyJ23SIcWpd9iE10Ovf-4,186724
|
12
12
|
ccxt/bit2c.py,sha256=cuqPGkIRA7k0nDLLkL2wFjQLi7SJPiO_IMw6kAckIHM,36907
|
13
13
|
ccxt/bitbank.py,sha256=DcA2I_e1tLJyIeLqcDiFsfLuDJxFDUFfcQery4gn1lc,41845
|
14
14
|
ccxt/bitbay.py,sha256=xAIjzGRDVGwoy-Gygd99H0YN4wiaz_0lR0Z14oxaaxc,478
|
@@ -42,7 +42,7 @@ ccxt/coinbaseadvanced.py,sha256=d5g6nRx-NCcCwZDdtp8FsI2D-pRjSvnAP9ISSKY_nCQ,538
|
|
42
42
|
ccxt/coinbaseexchange.py,sha256=FeSNMY_lAzYAs3X9QmDCMSHScdyUW-nLv78AoMIPK78,78704
|
43
43
|
ccxt/coinbaseinternational.py,sha256=wieWUwsLsBYAgNpvnnrKseqAE7aOw__apSP6MQK9u9E,87240
|
44
44
|
ccxt/coincheck.py,sha256=jg8KHt_XUMPlbG1BYUiSHu9-DDBWdnQwV15P9IzKqbY,35664
|
45
|
-
ccxt/coinex.py,sha256=
|
45
|
+
ccxt/coinex.py,sha256=S10hrvuZp7JL8irNeE0U3GPObFJ1NAWMlH5EB-LzTFA,256422
|
46
46
|
ccxt/coinlist.py,sha256=EU4jtqWALdcLG5X3m2q4xPbQ3-h5-H63Eeb_R3wW-5s,103140
|
47
47
|
ccxt/coinmate.py,sha256=EsXu0mcAkVFwg2VOg47qr6g95a3bDPN2I9AuFQxgkQg,45946
|
48
48
|
ccxt/coinmetro.py,sha256=tZjLAz5XufybO3BU3QGXMrLzinoY4UBhn0JIyXivnys,80700
|
@@ -98,7 +98,7 @@ ccxt/tradeogre.py,sha256=jsJtJ9sAb-mmQO71kchwxbgkmFxMDSuzmuW0gtdFTnw,23900
|
|
98
98
|
ccxt/upbit.py,sha256=7XwfWbQYZg6W15pmi2FuDJQqzY0Tz-MsUTKTeqy2GEI,81611
|
99
99
|
ccxt/wavesexchange.py,sha256=WMRiWLR7EHrRLfR2sRa-M1NbtErbX2s0AucB47Bv9t4,113603
|
100
100
|
ccxt/wazirx.py,sha256=9j_cOXN3PgWD_6hXB0xu0aWfplqC_UT2hs5OBcbZLvU,51342
|
101
|
-
ccxt/whitebit.py,sha256=
|
101
|
+
ccxt/whitebit.py,sha256=VzJXcUfh3JKv86HPCmDXCLOi6Aan9G14U-PlyobyCgQ,117094
|
102
102
|
ccxt/woo.py,sha256=83_uWV8A6Thp6v8gD71UNAvSCrX--eV4BRkHdcyhpc4,139464
|
103
103
|
ccxt/woofipro.py,sha256=cGeDhYnQ6sqRipaQaDLBFK6tPzSrqWPYY2MUB5pTSus,114867
|
104
104
|
ccxt/yobit.py,sha256=bWzXMK2Q9DdPr8EmhPzaq5rqkHOt0lqRwEsDQgCj5BY,53222
|
@@ -210,7 +210,7 @@ ccxt/abstract/woofipro.py,sha256=El50vWGAV-4QPIDhgSnd4egfvk246NB6vTC-8h722vs,160
|
|
210
210
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
211
211
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
212
212
|
ccxt/abstract/zonda.py,sha256=aSfewvRojzmuymX6QbOnDR8v9VFqWTULMHX9Y7kKD1M,5820
|
213
|
-
ccxt/async_support/__init__.py,sha256=
|
213
|
+
ccxt/async_support/__init__.py,sha256=M6eF0QFMJXXF4o2rKhs9RQllJ1ECvP7Gzv7VyUDgoSA,15723
|
214
214
|
ccxt/async_support/ace.py,sha256=xVxaTocpMapAIl4ApPApw69Rd-RDuU0_vleJnVt_qhI,41880
|
215
215
|
ccxt/async_support/alpaca.py,sha256=rjD8PdQr1B5e9hvaoTQBKVtWwHLs04e6_-gooXl4eEE,47427
|
216
216
|
ccxt/async_support/ascendex.py,sha256=cYw-zMHB5QuadbI2fNBI_ywe8emGKsBgI8pdyQZp8Os,152275
|
@@ -220,7 +220,7 @@ ccxt/async_support/binance.py,sha256=sgPD5mSPMpsM2Gwp-Y-s3wyUGcgYtafJxJhTxwdQ8Fs
|
|
220
220
|
ccxt/async_support/binancecoinm.py,sha256=IY3RLZptQA2nmZaUYRGfTa5ZY4VMWBpFYfwHc8zTHw0,1683
|
221
221
|
ccxt/async_support/binanceus.py,sha256=c-K3Tk7LaRJjmYdCx8vBOqsx01uXrtvt0PC2ekBiD0g,9177
|
222
222
|
ccxt/async_support/binanceusdm.py,sha256=-1r4A4tmV2pCiLGO80hzq7MIIj4MTzOD7buZGv6JauA,2518
|
223
|
-
ccxt/async_support/bingx.py,sha256=
|
223
|
+
ccxt/async_support/bingx.py,sha256=LLoJClYQr6CZjYJSblZpq13doCS0l7lkdeNQgWsBotM,187760
|
224
224
|
ccxt/async_support/bit2c.py,sha256=doMZLyPCUF4KPe-P3-MlXNxTr2GD7EAkmXqI7zM3frY,37119
|
225
225
|
ccxt/async_support/bitbank.py,sha256=Vu3C5eHq9SndHeX_plwLdSSPFmrwpVVvUKSg7AI-c9A,42105
|
226
226
|
ccxt/async_support/bitbay.py,sha256=jcaEXi2IhYTva8ezO_SfJhwxEZk7HST4J3NaxD16BQA,492
|
@@ -254,7 +254,7 @@ ccxt/async_support/coinbaseadvanced.py,sha256=Kupwnuxiu_qTjwCNV2asacoDUNFQvcaHNA
|
|
254
254
|
ccxt/async_support/coinbaseexchange.py,sha256=3wEfbKBAVn9JkOfukopSRPhM8unRA6BQLqvm5c2VLBE,79210
|
255
255
|
ccxt/async_support/coinbaseinternational.py,sha256=fuU-h5UpO_nVs1j8KA7oGsQlP0kQefuPycZrc8ph6OQ,87794
|
256
256
|
ccxt/async_support/coincheck.py,sha256=ThRQX8E3NZrGc9Z__UIb7p0AtHgnq_DBhe9GzE9SlaQ,35870
|
257
|
-
ccxt/async_support/coinex.py,sha256=
|
257
|
+
ccxt/async_support/coinex.py,sha256=CYNJQ-ZPJgA5octnvlz_TL2sYVZSnGHqMJ037_i-MDU,257680
|
258
258
|
ccxt/async_support/coinlist.py,sha256=MKLhRyaw0DHkpRfR-Vj9NS0SwCpYUx8nOxZJ26swIMY,103628
|
259
259
|
ccxt/async_support/coinmate.py,sha256=lc8p0aQXu-oSf2whiqvm0QoBhDVx9wf50CcFeucdXcY,46212
|
260
260
|
ccxt/async_support/coinmetro.py,sha256=NLqNdcJ_zXcNqaxqkrloL9PqnogbQ6OzA5e_Gl4ACtk,81020
|
@@ -310,31 +310,31 @@ ccxt/async_support/tradeogre.py,sha256=WJdVRPnjE_Q3LdhISdrKjmiNkV0f4-gazWusEZy4P
|
|
310
310
|
ccxt/async_support/upbit.py,sha256=q5R3QAUVIqE94dWZ7iC6CESJdz1DCbq71h1Mg-FEA9s,82093
|
311
311
|
ccxt/async_support/wavesexchange.py,sha256=PZaC_yiqWrlc-yVse5xJ4AnNX8sYxKamTzmemBVAkAQ,114153
|
312
312
|
ccxt/async_support/wazirx.py,sha256=XndOKu5ViBlyzwHbONKUwxw7Zr3AQ_XLieSGo6HCMW0,51644
|
313
|
-
ccxt/async_support/whitebit.py,sha256=
|
313
|
+
ccxt/async_support/whitebit.py,sha256=HR8drREwFn11zkpgsuflgGCh3PY4UJN76G3_9sC3ad8,117744
|
314
314
|
ccxt/async_support/woo.py,sha256=D9lQhsx3sSeDGic1ToxqCx3eJkdNS_UA7IucvQXg__0,140354
|
315
315
|
ccxt/async_support/woofipro.py,sha256=PQsLD8Kz_TkPTBdQTFlOVHZmTPnpitFLLS73Ezt1CpY,115547
|
316
316
|
ccxt/async_support/yobit.py,sha256=kvMIVVjf8XxE7cKt51iHtqH7zgmFKc5ZVhk1dKDtlxE,53506
|
317
317
|
ccxt/async_support/zaif.py,sha256=lzrmIYPlNJquYkK-fq9DjqS8EfiAtofXnPcTMf3XOMM,28161
|
318
318
|
ccxt/async_support/zonda.py,sha256=bS_Oq8FVjbLxnxFVVg-_5ZlNS0CH9QxSUVKL91IR9rc,80912
|
319
319
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
320
|
-
ccxt/async_support/base/exchange.py,sha256=
|
320
|
+
ccxt/async_support/base/exchange.py,sha256=mDBgfmSijJJ9G6CguXaPPpqeDKHkd_I9Sk6Mma9Gih4,108722
|
321
321
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
322
322
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
323
|
-
ccxt/async_support/base/ws/aiohttp_client.py,sha256=
|
323
|
+
ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
|
324
324
|
ccxt/async_support/base/ws/cache.py,sha256=yObqIOHFEXfmxO1NeA6gf0Sb7zfEDVWBeB501FInuxY,8100
|
325
325
|
ccxt/async_support/base/ws/client.py,sha256=jTFg8KHw9_2vD9kJp1Pykw2KGXisFgGnRFir0V7bp_g,7289
|
326
326
|
ccxt/async_support/base/ws/fast_client.py,sha256=r5Ej3hjCY5k-e4D2gXbo5TE2EXCItVg8fJ8i3O3djsQ,3864
|
327
327
|
ccxt/async_support/base/ws/functions.py,sha256=qwvEnjtINWL5ZU-dbbeIunjyBxzFqbGWHfVhxqAcKug,1499
|
328
|
-
ccxt/async_support/base/ws/future.py,sha256=
|
328
|
+
ccxt/async_support/base/ws/future.py,sha256=poJororPTavN1YT4whp9VXDd_rwqkn-3EDeiBoGmKLs,1984
|
329
329
|
ccxt/async_support/base/ws/order_book.py,sha256=uBUaIHhzMRykpmo4BCsdJ-t_HozS6VxhEs8x-Kbj-NI,2894
|
330
330
|
ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmBJLCI5FHIRdMz1O-g,6551
|
331
331
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
332
332
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
333
333
|
ccxt/base/errors.py,sha256=FGdyULeNCNcl52gA_CNhe2dZmat9GJGkTdlIyDXAF_A,4213
|
334
|
-
ccxt/base/exchange.py,sha256=
|
334
|
+
ccxt/base/exchange.py,sha256=BGDN2ME_Pb4VgZXbYdI0OkdtPm8EvxKP1v4lsHTkdkA,278460
|
335
335
|
ccxt/base/precise.py,sha256=_xfu54sV0vWNnOfGTKRFykeuWP8mn4K1m9lk1tcllX4,8565
|
336
336
|
ccxt/base/types.py,sha256=3hBdiD2EO7W-pwmBrDeDYMEdFGcnT0QqQZa3l8ywTVM,9027
|
337
|
-
ccxt/pro/__init__.py,sha256=
|
337
|
+
ccxt/pro/__init__.py,sha256=gSUmv2dRro3RDtIRx55EsmJIBqDWn-r8soaWkjfsIdY,7107
|
338
338
|
ccxt/pro/alpaca.py,sha256=7ePyWli0949ti5UheIn553xmnFpedrNc2W5CKauSZio,27167
|
339
339
|
ccxt/pro/ascendex.py,sha256=fCM3EujSfJvtvffqI56UAstTtwjXFIocwukm15cF8rE,35432
|
340
340
|
ccxt/pro/bequant.py,sha256=5zbsP8BHQTUZ8ZNL6uaACxDbUClgkOV4SYfXT_LfQVg,1351
|
@@ -534,7 +534,7 @@ ccxt/test/base/test_ticker.py,sha256=cMTIMb1oySNORUCmqI5ZzMswlEyCF6gJMah3vfvo8wQ
|
|
534
534
|
ccxt/test/base/test_trade.py,sha256=PMtmB8V38dpaP-eb8h488xYMlR6D69yCOhsA1RuWrUA,2336
|
535
535
|
ccxt/test/base/test_trading_fee.py,sha256=2aDCNJtqBkTC_AieO0l1HYGq5hz5qkWlkWb9Nv_fcwk,1066
|
536
536
|
ccxt/test/base/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
|
537
|
-
ccxt-4.3.
|
538
|
-
ccxt-4.3.
|
539
|
-
ccxt-4.3.
|
540
|
-
ccxt-4.3.
|
537
|
+
ccxt-4.3.30.dist-info/METADATA,sha256=WONxcwK-kwJaxed1aockElNlfOsHHE9iLZAKfIw63aw,112807
|
538
|
+
ccxt-4.3.30.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
|
539
|
+
ccxt-4.3.30.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
540
|
+
ccxt-4.3.30.dist-info/RECORD,,
|
File without changes
|
File without changes
|