ccxt 4.3.46__py2.py3-none-any.whl → 4.3.47__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 -1
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/bitget.py +1 -1
- ccxt/async_support/bitmart.py +1 -1
- ccxt/async_support/hyperliquid.py +28 -1
- ccxt/base/exchange.py +3 -3
- ccxt/bitget.py +1 -1
- ccxt/bitmart.py +1 -1
- ccxt/hyperliquid.py +28 -1
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/coinex.py +3 -2
- {ccxt-4.3.46.dist-info → ccxt-4.3.47.dist-info}/METADATA +4 -4
- {ccxt-4.3.46.dist-info → ccxt-4.3.47.dist-info}/RECORD +16 -16
- {ccxt-4.3.46.dist-info → ccxt-4.3.47.dist-info}/WHEEL +0 -0
- {ccxt-4.3.46.dist-info → ccxt-4.3.47.dist-info}/top_level.txt +0 -0
ccxt/__init__.py
CHANGED
ccxt/async_support/__init__.py
CHANGED
ccxt/async_support/bitget.py
CHANGED
@@ -4190,7 +4190,7 @@ class bitget(Exchange, ImplicitAPI):
|
|
4190
4190
|
request['clientOid'] = clientOrderId
|
4191
4191
|
if marginMode is not None:
|
4192
4192
|
request['loanType'] = 'normal'
|
4193
|
-
if
|
4193
|
+
if isMarketOrder and (side == 'buy'):
|
4194
4194
|
request['quoteSize'] = quantity
|
4195
4195
|
else:
|
4196
4196
|
request['baseSize'] = quantity
|
ccxt/async_support/bitmart.py
CHANGED
@@ -2238,7 +2238,7 @@ class bitmart(Exchange, ImplicitAPI):
|
|
2238
2238
|
trailingActivationPrice = self.safe_number(order, 'activation_price')
|
2239
2239
|
return self.safe_order({
|
2240
2240
|
'id': id,
|
2241
|
-
'clientOrderId': self.
|
2241
|
+
'clientOrderId': self.safe_string_2(order, 'client_order_id', 'clientOrderId'),
|
2242
2242
|
'info': order,
|
2243
2243
|
'timestamp': timestamp,
|
2244
2244
|
'datetime': self.iso8601(timestamp),
|
@@ -6,7 +6,7 @@
|
|
6
6
|
from ccxt.async_support.base.exchange import Exchange
|
7
7
|
from ccxt.abstract.hyperliquid import ImplicitAPI
|
8
8
|
import asyncio
|
9
|
-
from ccxt.base.types import Balances, Currencies, Int, MarginModification, Market, Num, Order, OrderBook, OrderRequest, CancellationRequest, OrderSide, OrderType, Str, Strings, Trade, Transaction, TransferEntry
|
9
|
+
from ccxt.base.types import Balances, Currencies, Currency, Int, MarginModification, Market, Num, Order, OrderBook, OrderRequest, CancellationRequest, OrderSide, OrderType, Str, Strings, Trade, Transaction, TransferEntry
|
10
10
|
from typing import List
|
11
11
|
from ccxt.base.errors import ExchangeError
|
12
12
|
from ccxt.base.errors import ArgumentsRequired
|
@@ -2342,6 +2342,33 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
2342
2342
|
response = await self.privatePostExchange(self.extend(request, params))
|
2343
2343
|
return self.parse_transaction(response)
|
2344
2344
|
|
2345
|
+
def parse_transaction(self, transaction: dict, currency: Currency = None) -> Transaction:
|
2346
|
+
#
|
2347
|
+
# {status: 'ok', response: {type: 'default'}}
|
2348
|
+
#
|
2349
|
+
return {
|
2350
|
+
'info': transaction,
|
2351
|
+
'id': None,
|
2352
|
+
'txid': None,
|
2353
|
+
'timestamp': None,
|
2354
|
+
'datetime': None,
|
2355
|
+
'network': None,
|
2356
|
+
'address': None,
|
2357
|
+
'addressTo': None,
|
2358
|
+
'addressFrom': None,
|
2359
|
+
'tag': None,
|
2360
|
+
'tagTo': None,
|
2361
|
+
'tagFrom': None,
|
2362
|
+
'type': None,
|
2363
|
+
'amount': None,
|
2364
|
+
'currency': None,
|
2365
|
+
'status': self.safe_string(transaction, 'status'),
|
2366
|
+
'updated': None,
|
2367
|
+
'comment': None,
|
2368
|
+
'internal': None,
|
2369
|
+
'fee': None,
|
2370
|
+
}
|
2371
|
+
|
2345
2372
|
def format_vault_address(self, address: Str = None):
|
2346
2373
|
if address is None:
|
2347
2374
|
return None
|
ccxt/base/exchange.py
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
# -----------------------------------------------------------------------------
|
6
6
|
|
7
|
-
__version__ = '4.3.
|
7
|
+
__version__ = '4.3.47'
|
8
8
|
|
9
9
|
# -----------------------------------------------------------------------------
|
10
10
|
|
@@ -1518,8 +1518,8 @@ class Exchange(object):
|
|
1518
1518
|
|
1519
1519
|
def precision_from_string(self, str):
|
1520
1520
|
# support string formats like '1e-4'
|
1521
|
-
if 'e' in str:
|
1522
|
-
numStr = re.sub(r'\
|
1521
|
+
if 'e' in str or 'E' in str:
|
1522
|
+
numStr = re.sub(r'\d\.?\d*[eE]', '', str)
|
1523
1523
|
return int(numStr) * -1
|
1524
1524
|
# support integer formats (without dot) like '1', '10' etc [Note: bug in decimalToPrecision, so this should not be used atm]
|
1525
1525
|
# if not ('.' in str):
|
ccxt/bitget.py
CHANGED
@@ -4189,7 +4189,7 @@ class bitget(Exchange, ImplicitAPI):
|
|
4189
4189
|
request['clientOid'] = clientOrderId
|
4190
4190
|
if marginMode is not None:
|
4191
4191
|
request['loanType'] = 'normal'
|
4192
|
-
if
|
4192
|
+
if isMarketOrder and (side == 'buy'):
|
4193
4193
|
request['quoteSize'] = quantity
|
4194
4194
|
else:
|
4195
4195
|
request['baseSize'] = quantity
|
ccxt/bitmart.py
CHANGED
@@ -2238,7 +2238,7 @@ class bitmart(Exchange, ImplicitAPI):
|
|
2238
2238
|
trailingActivationPrice = self.safe_number(order, 'activation_price')
|
2239
2239
|
return self.safe_order({
|
2240
2240
|
'id': id,
|
2241
|
-
'clientOrderId': self.
|
2241
|
+
'clientOrderId': self.safe_string_2(order, 'client_order_id', 'clientOrderId'),
|
2242
2242
|
'info': order,
|
2243
2243
|
'timestamp': timestamp,
|
2244
2244
|
'datetime': self.iso8601(timestamp),
|
ccxt/hyperliquid.py
CHANGED
@@ -5,7 +5,7 @@
|
|
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, CancellationRequest, OrderSide, OrderType, Str, Strings, Trade, Transaction, TransferEntry
|
8
|
+
from ccxt.base.types import Balances, Currencies, Currency, Int, MarginModification, Market, Num, Order, OrderBook, OrderRequest, CancellationRequest, OrderSide, OrderType, Str, Strings, Trade, Transaction, TransferEntry
|
9
9
|
from typing import List
|
10
10
|
from ccxt.base.errors import ExchangeError
|
11
11
|
from ccxt.base.errors import ArgumentsRequired
|
@@ -2341,6 +2341,33 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
2341
2341
|
response = self.privatePostExchange(self.extend(request, params))
|
2342
2342
|
return self.parse_transaction(response)
|
2343
2343
|
|
2344
|
+
def parse_transaction(self, transaction: dict, currency: Currency = None) -> Transaction:
|
2345
|
+
#
|
2346
|
+
# {status: 'ok', response: {type: 'default'}}
|
2347
|
+
#
|
2348
|
+
return {
|
2349
|
+
'info': transaction,
|
2350
|
+
'id': None,
|
2351
|
+
'txid': None,
|
2352
|
+
'timestamp': None,
|
2353
|
+
'datetime': None,
|
2354
|
+
'network': None,
|
2355
|
+
'address': None,
|
2356
|
+
'addressTo': None,
|
2357
|
+
'addressFrom': None,
|
2358
|
+
'tag': None,
|
2359
|
+
'tagTo': None,
|
2360
|
+
'tagFrom': None,
|
2361
|
+
'type': None,
|
2362
|
+
'amount': None,
|
2363
|
+
'currency': None,
|
2364
|
+
'status': self.safe_string(transaction, 'status'),
|
2365
|
+
'updated': None,
|
2366
|
+
'comment': None,
|
2367
|
+
'internal': None,
|
2368
|
+
'fee': None,
|
2369
|
+
}
|
2370
|
+
|
2344
2371
|
def format_vault_address(self, address: Str = None):
|
2345
2372
|
if address is None:
|
2346
2373
|
return None
|
ccxt/pro/__init__.py
CHANGED
ccxt/pro/coinex.py
CHANGED
@@ -631,12 +631,13 @@ class coinex(ccxt.async_support.coinex):
|
|
631
631
|
# "id": null
|
632
632
|
# }
|
633
633
|
#
|
634
|
+
isSwap = client.url.find('perpetual') >= 0
|
635
|
+
marketType = 'swap' if isSwap else 'spot'
|
634
636
|
params = self.safe_value(message, 'params', [])
|
635
637
|
fullOrderBook = self.safe_value(params, 0)
|
636
638
|
orderbook = self.safe_value(params, 1)
|
637
639
|
marketId = self.safe_string(params, 2)
|
638
|
-
|
639
|
-
market = self.safe_market(marketId, None, None, defaultType)
|
640
|
+
market = self.safe_market(marketId, None, None, marketType)
|
640
641
|
symbol = market['symbol']
|
641
642
|
name = 'orderbook'
|
642
643
|
messageHash = name + ':' + symbol
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.47
|
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
|
@@ -268,13 +268,13 @@ console.log(version, Object.keys(exchanges));
|
|
268
268
|
|
269
269
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
270
270
|
|
271
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
272
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
271
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.47/dist/ccxt.browser.min.js
|
272
|
+
* unpkg: https://unpkg.com/ccxt@4.3.47/dist/ccxt.browser.min.js
|
273
273
|
|
274
274
|
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.
|
275
275
|
|
276
276
|
```HTML
|
277
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
277
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.47/dist/ccxt.browser.min.js"></script>
|
278
278
|
```
|
279
279
|
|
280
280
|
Creates a global `ccxt` object:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=qmmqn97WfHPaVSm4mrnxjL3czX51nIz6ZeDVH0y0M8k,16139
|
2
2
|
ccxt/ace.py,sha256=6x4vkcS2lGSkAQuzS-AAgYJLPDNNfNo9NMIdAoXzs18,41776
|
3
3
|
ccxt/alpaca.py,sha256=EZ7uF3XI8EXXIsCZ-UVpruBXS96Kps6WOOukmdcgCn0,47326
|
4
4
|
ccxt/ascendex.py,sha256=rUUU3n4j8QrMrJCk4pVwVastIYzS3eDTUAL9R2ePErk,151832
|
@@ -17,9 +17,9 @@ ccxt/bitcoincom.py,sha256=PyWIl4nC4jp5Uba2lI1At0N_hhNyWD0DoZC_MSyL_s4,502
|
|
17
17
|
ccxt/bitfinex.py,sha256=6O33NthP73Q-zobTf1hp8zFxJsDyAMEiOCCJn_o1iEQ,72450
|
18
18
|
ccxt/bitfinex2.py,sha256=4bYPjnLMj3v2CMuzmwdTOgF6iaUggyXtN92Lc3oqwOE,160637
|
19
19
|
ccxt/bitflyer.py,sha256=rvykeLLkDYVMEwXs4rInQClYwdXIXmj_7mxDpGT216I,41565
|
20
|
-
ccxt/bitget.py,sha256=
|
20
|
+
ccxt/bitget.py,sha256=0Yt_wWYbUiAZjGrsGCxwzwF4j4N1Jzomb79x2LIdgzA,423458
|
21
21
|
ccxt/bithumb.py,sha256=CcL-Zy8LodvUmj9R_kDbgLg9T5_ZvCDOECY4xZFQwwY,45848
|
22
|
-
ccxt/bitmart.py,sha256=
|
22
|
+
ccxt/bitmart.py,sha256=qwxauDxy7GyyFrS_oqo0xKNGqsVpp-KSU64vV_pZJSE,208408
|
23
23
|
ccxt/bitmex.py,sha256=koETQgb-yVZ3ZfP6qIHyTMLTDk8eXTHauhwhaP79ZBQ,126862
|
24
24
|
ccxt/bitopro.py,sha256=kjGn1UOy6toGyEbpV_al50eGCjqI75GN4LXpGbmL4Tw,68743
|
25
25
|
ccxt/bitpanda.py,sha256=aiwPkx9lKbVzt4ggoYdq_mIbMGtg5ZtGl2yRHO5xyz8,471
|
@@ -65,7 +65,7 @@ ccxt/hollaex.py,sha256=e7irunlbzhM1BSvv9kyaccHdUF0cRjnJkIbMMQhe5PA,76141
|
|
65
65
|
ccxt/htx.py,sha256=tsbkKP3Bvi8yN2PcmpGR3-G1W5nS3fzfP4H_znf4_UQ,425065
|
66
66
|
ccxt/huobi.py,sha256=4vaG7IRN7fyjaJ_ac6S-njlHOfSEN5de7aq0noznxYw,438
|
67
67
|
ccxt/huobijp.py,sha256=wWCz1hRTJP8KRqfhsfml8h4d3Zz1ChAgqdYDl0OiDAo,88183
|
68
|
-
ccxt/hyperliquid.py,sha256=
|
68
|
+
ccxt/hyperliquid.py,sha256=gg1IfT1rjsCqMl_TCMhrMPnbuXKx75Sl6lCFuYiQ6Nc,102359
|
69
69
|
ccxt/idex.py,sha256=wbxMuH-D06NblL5gZj5--P6MLm2lMF2PObYhDNcE78U,73256
|
70
70
|
ccxt/independentreserve.py,sha256=JKXu3cYYAe7XW_wANllTYAQa3uH_xsNFdT2a-Y1rI98,33490
|
71
71
|
ccxt/indodax.py,sha256=nNQuN0EKOppv9KtpkyrWAXAHFY6k5a0wnxNZ55h_dXs,53432
|
@@ -214,7 +214,7 @@ ccxt/abstract/xt.py,sha256=xHHv2viFGK0_iPZ4gu6Wb0aOrpcKhr9zoY-BIPWh5bs,27028
|
|
214
214
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
215
215
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
216
216
|
ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
|
217
|
-
ccxt/async_support/__init__.py,sha256=
|
217
|
+
ccxt/async_support/__init__.py,sha256=Pao9O-QofxIPSMmoSN6ywKAZUf7y2GfNoWobaOXFtgI,15932
|
218
218
|
ccxt/async_support/ace.py,sha256=tsRgs_o4Iq7q8IkD83FUdC-2ztylhgO4cp2hww3rlqQ,42000
|
219
219
|
ccxt/async_support/alpaca.py,sha256=3845DgojoA1p0pxrqnDIqHbbRcEwZhZIkE4aygD5ics,47538
|
220
220
|
ccxt/async_support/ascendex.py,sha256=7tZ4C7FfzmuB_ADYjl6IkyQQ5JG0Vt1AD_B3fTeY6V0,152620
|
@@ -233,9 +233,9 @@ ccxt/async_support/bitcoincom.py,sha256=RiqwhK3RfxQ_PXTa860fphDCvwA8dalL-_rXlK85
|
|
233
233
|
ccxt/async_support/bitfinex.py,sha256=K-Lm2aIrw1a_H9rrSK_M-a_aZCc-9vfaSpCiMCGiHZY,72890
|
234
234
|
ccxt/async_support/bitfinex2.py,sha256=-RgXS7A6h27MOrLT7Xtmj_710ZcQKmCYLVqfYgx6xos,161371
|
235
235
|
ccxt/async_support/bitflyer.py,sha256=RWrRkrZJow4M5uwoqTCD0bcITItbC5WZ57Mcmv0_1nk,41873
|
236
|
-
ccxt/async_support/bitget.py,sha256=
|
236
|
+
ccxt/async_support/bitget.py,sha256=PVdJiMobz1v10_zP5DXqHNAmj04-_s_IY5mDQpmW2-Y,425082
|
237
237
|
ccxt/async_support/bithumb.py,sha256=4XN45L8XmpxUAWiFZKzwSpeVLhlRZhQY4IZLyh-yjCc,46078
|
238
|
-
ccxt/async_support/bitmart.py,sha256=
|
238
|
+
ccxt/async_support/bitmart.py,sha256=U7U32nyxou3VXN2Bxbm1uuhpEunXyFBtErSRJpBWwaU,209364
|
239
239
|
ccxt/async_support/bitmex.py,sha256=JCRSgTWNwB97A1vwvEpajD8VQ4AE8Qs5ZU1yd8KaiYc,127440
|
240
240
|
ccxt/async_support/bitopro.py,sha256=OWWNB_6Vpe10JG0P7dpmgerPEtmuxbx5_DLBFWnsL7w,69147
|
241
241
|
ccxt/async_support/bitpanda.py,sha256=2k3URBWrpnh2xHa7JiYenI7_4MW5UeOPGzetlmRkR4U,485
|
@@ -281,7 +281,7 @@ ccxt/async_support/hollaex.py,sha256=b7nJAvL0dCfPwhjOCfoAn1Qd9msFvEIfYp-7EQ4QIwQ
|
|
281
281
|
ccxt/async_support/htx.py,sha256=wYAmakkCQfBs_6iFrB-P8pkrRSXV16RCm6xjg3zAWbQ,427457
|
282
282
|
ccxt/async_support/huobi.py,sha256=fup0j6wQ1khAtfbb1H4CSyJAOzhxuoHMmrM6sgTuhr8,452
|
283
283
|
ccxt/async_support/huobijp.py,sha256=C8r2aXJ5D8vyS9hEA2FKBTufDKircXN9D2ypm720HeU,88683
|
284
|
-
ccxt/async_support/hyperliquid.py,sha256=
|
284
|
+
ccxt/async_support/hyperliquid.py,sha256=_bvWuRDwOVH-n_Rvt1R8jDUOuj5qgBfRSSUEImAdyC8,102879
|
285
285
|
ccxt/async_support/idex.py,sha256=UrSCUFhd5xmjHWs2zmTe-M_A7d1Pvt3QVDga9dKGcsM,73732
|
286
286
|
ccxt/async_support/independentreserve.py,sha256=DxoBIoijcViZGfOgItukkWvL2pKv-03ZsQQVG6dGFW0,33750
|
287
287
|
ccxt/async_support/indodax.py,sha256=GY3-cmbfhihBOgCtnJ_wqBCnk-mqQ64zDoNJ-3qy8tM,53740
|
@@ -323,7 +323,7 @@ ccxt/async_support/yobit.py,sha256=KQcu9nXJPDlAodZyxOXKIn6eTSLmlvUlgRFE6EBLfug,5
|
|
323
323
|
ccxt/async_support/zaif.py,sha256=jTK5pLZSpKL1Pt0qAJTjN09TDS5AfhptGgGAqw7sNwE,29045
|
324
324
|
ccxt/async_support/zonda.py,sha256=skMMmUUjXJmnQpzlFrJfmg4-vEIOsTGz2zSW9nI4C90,81721
|
325
325
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
326
|
-
ccxt/async_support/base/exchange.py,sha256=
|
326
|
+
ccxt/async_support/base/exchange.py,sha256=5aWxjsjvEue8e57DnkJptZXE18NL0XzM0v-VMof0OA0,109872
|
327
327
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
328
328
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
329
329
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
|
@@ -337,10 +337,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
|
|
337
337
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
338
338
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
339
339
|
ccxt/base/errors.py,sha256=FGdyULeNCNcl52gA_CNhe2dZmat9GJGkTdlIyDXAF_A,4213
|
340
|
-
ccxt/base/exchange.py,sha256=
|
340
|
+
ccxt/base/exchange.py,sha256=Rofcst5EmT3YIgA8eP_2w-RPOtkFCIqPvcyNAimVsmY,280894
|
341
341
|
ccxt/base/precise.py,sha256=_xfu54sV0vWNnOfGTKRFykeuWP8mn4K1m9lk1tcllX4,8565
|
342
342
|
ccxt/base/types.py,sha256=RGGcbz86cVtrmU602zoFO5gSWrv_J7IHxQkPnzmNirs,9247
|
343
|
-
ccxt/pro/__init__.py,sha256=
|
343
|
+
ccxt/pro/__init__.py,sha256=h8BoRG6Liw0YrXyf6zxxSTdPgT7eqaQfaLDm2qbK0To,7207
|
344
344
|
ccxt/pro/alpaca.py,sha256=QA_Dmxu1ockCSYJMbOodbNke3t1tAl0hFL-q56UMQWE,27224
|
345
345
|
ccxt/pro/ascendex.py,sha256=181FIeztchLqGmgecRJEN8F8xEM45D5aMKhC-5nuNfU,35467
|
346
346
|
ccxt/pro/bequant.py,sha256=5zbsP8BHQTUZ8ZNL6uaACxDbUClgkOV4SYfXT_LfQVg,1351
|
@@ -368,7 +368,7 @@ ccxt/pro/coinbase.py,sha256=q5PQ--k9q50UrgWCPYV0y2tx5hQ32nmWXBp4nvJsQag,30628
|
|
368
368
|
ccxt/pro/coinbaseexchange.py,sha256=taV-mCliIcc6XQjxSl2HmYHpBkOIDkxUxF2LrBSXfCc,39035
|
369
369
|
ccxt/pro/coinbaseinternational.py,sha256=s7DiNGpyIz3Z5EgJdYp8cY9tJjg3dXGRdlx0AAnmTBw,25818
|
370
370
|
ccxt/pro/coincheck.py,sha256=8_AFAwNDW8c_OJRFDnQ2okJtX1ZjYZgNlvMbT2XmlDE,7801
|
371
|
-
ccxt/pro/coinex.py,sha256=
|
371
|
+
ccxt/pro/coinex.py,sha256=GkW0duPzwNXppQxHPTaa1QIjnVXa3NXr-BhwocwNYF0,45164
|
372
372
|
ccxt/pro/coinone.py,sha256=DBz7u0ePVqCOBaoA-4UnSjptjpsmWrwzBjVIkfhkRGc,15676
|
373
373
|
ccxt/pro/cryptocom.py,sha256=p_SZhrIRyf-lBxz8zK9u29hiPxeE8hxY1VllKtad1G0,42994
|
374
374
|
ccxt/pro/currencycom.py,sha256=YirudKtEoZJmWh7_2t00nPIHykiOsYt4bNdVIx2EGio,22451
|
@@ -542,7 +542,7 @@ ccxt/test/base/test_ticker.py,sha256=cMTIMb1oySNORUCmqI5ZzMswlEyCF6gJMah3vfvo8wQ
|
|
542
542
|
ccxt/test/base/test_trade.py,sha256=PMtmB8V38dpaP-eb8h488xYMlR6D69yCOhsA1RuWrUA,2336
|
543
543
|
ccxt/test/base/test_trading_fee.py,sha256=2aDCNJtqBkTC_AieO0l1HYGq5hz5qkWlkWb9Nv_fcwk,1066
|
544
544
|
ccxt/test/base/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
|
545
|
-
ccxt-4.3.
|
546
|
-
ccxt-4.3.
|
547
|
-
ccxt-4.3.
|
548
|
-
ccxt-4.3.
|
545
|
+
ccxt-4.3.47.dist-info/METADATA,sha256=lMrJc9MCBAiXoOYII4TGed6Xgrj9GCFnM1hnzZJgrS8,115226
|
546
|
+
ccxt-4.3.47.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
|
547
|
+
ccxt-4.3.47.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
548
|
+
ccxt-4.3.47.dist-info/RECORD,,
|
File without changes
|
File without changes
|