ccxt-ir 4.9.20__py2.py3-none-any.whl → 4.9.22__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/kcex.py +3 -2
- ccxt/base/exchange.py +1 -1
- ccxt/kcex.py +3 -2
- ccxt/pro/__init__.py +1 -1
- {ccxt_ir-4.9.20.dist-info → ccxt_ir-4.9.22.dist-info}/METADATA +4 -4
- {ccxt_ir-4.9.20.dist-info → ccxt_ir-4.9.22.dist-info}/RECORD +12 -12
- {ccxt_ir-4.9.20.dist-info → ccxt_ir-4.9.22.dist-info}/WHEEL +0 -0
- {ccxt_ir-4.9.20.dist-info → ccxt_ir-4.9.22.dist-info}/licenses/LICENSE.txt +0 -0
- {ccxt_ir-4.9.20.dist-info → ccxt_ir-4.9.22.dist-info}/top_level.txt +0 -0
ccxt/__init__.py
CHANGED
ccxt/async_support/__init__.py
CHANGED
ccxt/async_support/kcex.py
CHANGED
|
@@ -160,6 +160,7 @@ class kcex(Exchange, ImplicitAPI):
|
|
|
160
160
|
# qs: 2,
|
|
161
161
|
# cdm: 1
|
|
162
162
|
# }
|
|
163
|
+
id = self.safe_string(market, 'id')
|
|
163
164
|
baseId = self.safe_string(market, 'vn')
|
|
164
165
|
quoteId = self.safe_string(market, 'mnm')
|
|
165
166
|
base = self.safe_currency_code(baseId)
|
|
@@ -174,7 +175,7 @@ class kcex(Exchange, ImplicitAPI):
|
|
|
174
175
|
'settle': None,
|
|
175
176
|
'baseId': baseId,
|
|
176
177
|
'quoteId': quoteId,
|
|
177
|
-
'settleId':
|
|
178
|
+
'settleId': id,
|
|
178
179
|
'type': 'spot',
|
|
179
180
|
'spot': True,
|
|
180
181
|
'margin': False,
|
|
@@ -235,7 +236,7 @@ class kcex(Exchange, ImplicitAPI):
|
|
|
235
236
|
marketList = list(self.markets.values())
|
|
236
237
|
for i in range(0, len(marketList)):
|
|
237
238
|
market = marketList[i]
|
|
238
|
-
idToMarket[market['
|
|
239
|
+
idToMarket[market['settleId']] = market
|
|
239
240
|
for i in range(0, len(tickers)):
|
|
240
241
|
ticker = tickers[i]
|
|
241
242
|
id = self.safe_string(ticker, 'id')
|
ccxt/base/exchange.py
CHANGED
ccxt/kcex.py
CHANGED
|
@@ -160,6 +160,7 @@ class kcex(Exchange, ImplicitAPI):
|
|
|
160
160
|
# qs: 2,
|
|
161
161
|
# cdm: 1
|
|
162
162
|
# }
|
|
163
|
+
id = self.safe_string(market, 'id')
|
|
163
164
|
baseId = self.safe_string(market, 'vn')
|
|
164
165
|
quoteId = self.safe_string(market, 'mnm')
|
|
165
166
|
base = self.safe_currency_code(baseId)
|
|
@@ -174,7 +175,7 @@ class kcex(Exchange, ImplicitAPI):
|
|
|
174
175
|
'settle': None,
|
|
175
176
|
'baseId': baseId,
|
|
176
177
|
'quoteId': quoteId,
|
|
177
|
-
'settleId':
|
|
178
|
+
'settleId': id,
|
|
178
179
|
'type': 'spot',
|
|
179
180
|
'spot': True,
|
|
180
181
|
'margin': False,
|
|
@@ -235,7 +236,7 @@ class kcex(Exchange, ImplicitAPI):
|
|
|
235
236
|
marketList = list(self.markets.values())
|
|
236
237
|
for i in range(0, len(marketList)):
|
|
237
238
|
market = marketList[i]
|
|
238
|
-
idToMarket[market['
|
|
239
|
+
idToMarket[market['settleId']] = market
|
|
239
240
|
for i in range(0, len(tickers)):
|
|
240
241
|
ticker = tickers[i]
|
|
241
242
|
id = self.safe_string(ticker, 'id')
|
ccxt/pro/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ccxt-ir
|
|
3
|
-
Version: 4.9.
|
|
3
|
+
Version: 4.9.22
|
|
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
|
|
@@ -304,13 +304,13 @@ console.log(version, Object.keys(exchanges));
|
|
|
304
304
|
|
|
305
305
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
|
306
306
|
|
|
307
|
-
- jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.9.
|
|
308
|
-
- unpkg: https://unpkg.com/ccxt@4.9.
|
|
307
|
+
- jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.9.22/dist/ccxt.browser.min.js
|
|
308
|
+
- unpkg: https://unpkg.com/ccxt@4.9.22/dist/ccxt.browser.min.js
|
|
309
309
|
|
|
310
310
|
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.
|
|
311
311
|
|
|
312
312
|
```HTML
|
|
313
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.9.
|
|
313
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.9.22/dist/ccxt.browser.min.js"></script>
|
|
314
314
|
console.log (ccxt.exchanges) // print all available exchanges
|
|
315
315
|
```
|
|
316
316
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
ccxt/__init__.py,sha256=
|
|
1
|
+
ccxt/__init__.py,sha256=P5yypWCcC3dMQtcAij3xG7GXmOT7lrb8BTOM5Mwfdzg,20197
|
|
2
2
|
ccxt/abantether.py,sha256=PSz8vQq3Il76_K8kmw43MzFH_JDsqF9Spg2IxPoeGXE,12879
|
|
3
3
|
ccxt/afratether.py,sha256=5PX0U1GQ3ylOQuQ8Mm9yIsF5J3aqfTZcp6iV87I8E_0,12245
|
|
4
4
|
ccxt/alpaca.py,sha256=oO0YJHxo5_1iYyGVRMbxfGyPahqzuMlE7LZ3TMYgPGo,80694
|
|
@@ -88,7 +88,7 @@ ccxt/hyperliquid.py,sha256=nRrjedrxNgEuUIuH4Ml7qM9JKw9rPUjmsbylSImCw_I,160952
|
|
|
88
88
|
ccxt/independentreserve.py,sha256=qK_Xd8oSwQ8VTKqDTSUZoxZ8rfKwd2CrfDC9JdBi6uc,44814
|
|
89
89
|
ccxt/indodax.py,sha256=4UtmYm2bExkrmfpnUv-6RSEN8EAyhVWBvdDZCoLILkQ,59303
|
|
90
90
|
ccxt/jibitex.py,sha256=CH3Gb4aXfzBsfUYqKdpQVrohq9o-11AMRWZVXaZkzFk,15785
|
|
91
|
-
ccxt/kcex.py,sha256=
|
|
91
|
+
ccxt/kcex.py,sha256=Jn711L7brdsvKKdw-yw9IOqvojxzYv1nekLJDinAEnk,11994
|
|
92
92
|
ccxt/kifpoolme.py,sha256=3JS3P_yG77Se8Al1n2nhm7bxby1SAT_klUekrUC7oBo,15046
|
|
93
93
|
ccxt/kraken.py,sha256=wE8GI7g9xx3Gx785M8_W5pn3-wxSDMvxMlb9qQlPkPc,148530
|
|
94
94
|
ccxt/krakenfutures.py,sha256=91NTUvEalzJe6HxX_2JK7MP4oPFmMgEp_QJDJ71n-aA,122915
|
|
@@ -290,7 +290,7 @@ ccxt/abstract/xt.py,sha256=n3eX1cItL_J0j8prOViV-C_tRwIFv_GO8JTvZZw8jv8,27837
|
|
|
290
290
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
|
291
291
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
|
292
292
|
ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
|
|
293
|
-
ccxt/async_support/__init__.py,sha256=
|
|
293
|
+
ccxt/async_support/__init__.py,sha256=9wrStwYN0WPGeUnAiPUsPsjkS0F9yut9ySffWh5Ca9E,20370
|
|
294
294
|
ccxt/async_support/abantether.py,sha256=aNxARnFPboX8VyBLysADfJlW8d8d1CptPyf7NasyRl8,12935
|
|
295
295
|
ccxt/async_support/afratether.py,sha256=fhVGoxrIbXXser4tIsCBgfVIivLnq7hpZBvzR84WgBs,12313
|
|
296
296
|
ccxt/async_support/alpaca.py,sha256=oFpSnAjX-faRgTN4d5rwHa08WRaCkwiAbHGZ7JBe6Ww,81140
|
|
@@ -380,7 +380,7 @@ ccxt/async_support/hyperliquid.py,sha256=WwsqsDY-95I8cTzVRcZaqV-JSXoau-XsHAYfOP9
|
|
|
380
380
|
ccxt/async_support/independentreserve.py,sha256=jNDXX5VAsUKDfKRYb_qtqT4UJNimsO1mWbCDxL1lU1s,45112
|
|
381
381
|
ccxt/async_support/indodax.py,sha256=gDiNbkssepp2ARs16EroBSG7DTgCHXa1GgnB3NNSd6o,59611
|
|
382
382
|
ccxt/async_support/jibitex.py,sha256=6g3MdbPusjRr7AOoIq4lUHD9GfGHpJy0ZQ-rjTu4GW4,15883
|
|
383
|
-
ccxt/async_support/kcex.py,sha256=
|
|
383
|
+
ccxt/async_support/kcex.py,sha256=Wz7m97im7uaDOGtYrxPxerww4ZIpYHOuMMUiqwQjPkY,12056
|
|
384
384
|
ccxt/async_support/kifpoolme.py,sha256=Yd0yf2sQ8j4GUN2_kzcB_DXNA4DaIW_4IEpAMpFp0NY,15120
|
|
385
385
|
ccxt/async_support/kraken.py,sha256=YcByHZKnph2cKKFRHbd24b6r1AR57qdeFMZdcyEviAg,149212
|
|
386
386
|
ccxt/async_support/krakenfutures.py,sha256=D0IYSDLPm3hMOy_KMrAqcZLNyoJ89Ur5zJmL597mXc8,123403
|
|
@@ -437,7 +437,7 @@ ccxt/async_support/yobit.py,sha256=FBI7ajvxprTYUqX8zosd7-LntDft8vIEjRTHng5ry8Y,5
|
|
|
437
437
|
ccxt/async_support/zaif.py,sha256=mh0PETLMTJV509zhT7jukddg6S7YhvwhCT7zqxC6YLA,31364
|
|
438
438
|
ccxt/async_support/zonda.py,sha256=7hmHotE5JBd8034d1ZbX3oIeWIpQFrQb8aK-dP3Btx0,85327
|
|
439
439
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
|
440
|
-
ccxt/async_support/base/exchange.py,sha256=
|
|
440
|
+
ccxt/async_support/base/exchange.py,sha256=mNgrWUJw7zDSgndU7ivk-Gz_RUHP1NK-vGoPbuGD5e4,121269
|
|
441
441
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
|
442
442
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
|
443
443
|
ccxt/async_support/base/ws/cache.py,sha256=xf2VOtfUwloxSlIQ39M1RGZHWQzyS9IGhB5NX6cDcAc,8370
|
|
@@ -449,10 +449,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
|
|
|
449
449
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
|
450
450
|
ccxt/base/decimal_to_precision.py,sha256=3XI30u9YudHbTA438397u5rkdlXa3atxwZEfUus3C4k,6803
|
|
451
451
|
ccxt/base/errors.py,sha256=OGhWNvNtRlJOzFx-n1x3ZjTnaPpfWH0Vc0xACS-MeDw,5012
|
|
452
|
-
ccxt/base/exchange.py,sha256=
|
|
452
|
+
ccxt/base/exchange.py,sha256=skOqBTaLQAbLNXL0Muftn0rvmZpEjEDUJBcciXoa_kc,334338
|
|
453
453
|
ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
|
454
454
|
ccxt/base/types.py,sha256=Gvbogh9i7pPH7Z18xesYeDPribqqwq8uKpOv-YODFBs,11505
|
|
455
|
-
ccxt/pro/__init__.py,sha256=
|
|
455
|
+
ccxt/pro/__init__.py,sha256=MYlMIUS12WLeR0ZZV4Ngmyee35EUTRxc-mzVO2Lsc3w,11464
|
|
456
456
|
ccxt/pro/alpaca.py,sha256=REAEZxdv2pY8xjxBGCBca3nPKpIdleVqr-IVpuVmADg,27637
|
|
457
457
|
ccxt/pro/apex.py,sha256=FLBaLN2FESIh9gqHPVwf0IkkIHpxGHHUcFwgBGBEkrA,42018
|
|
458
458
|
ccxt/pro/ascendex.py,sha256=P0DnIMIA-BIGxyoEQBLGtjH-whRhkPbhe8gU2s5V238,37526
|
|
@@ -775,8 +775,8 @@ ccxt/test/tests_async.py,sha256=D5ZDYYW635E2LFEhJt7HfIjbFVCQl3WSBEFnR-QEQzM,9549
|
|
|
775
775
|
ccxt/test/tests_helpers.py,sha256=egM69A2ZFYeVF5hwC1Qt-c5DOeClY5bv4jowmceeFV8,9736
|
|
776
776
|
ccxt/test/tests_init.py,sha256=qM0-Gb0h0p6CANWTkyYZI7wl-iYOcrPur7aj_OKh7m0,1212
|
|
777
777
|
ccxt/test/tests_sync.py,sha256=Rr72cGmoKqbUIIEJJAGh2_QhBc4rIZlBxVtGCQVd4BE,94440
|
|
778
|
-
ccxt_ir-4.9.
|
|
779
|
-
ccxt_ir-4.9.
|
|
780
|
-
ccxt_ir-4.9.
|
|
781
|
-
ccxt_ir-4.9.
|
|
782
|
-
ccxt_ir-4.9.
|
|
778
|
+
ccxt_ir-4.9.22.dist-info/licenses/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
|
779
|
+
ccxt_ir-4.9.22.dist-info/METADATA,sha256=pKiP3yKpGSuTziq5hgYr7XF62neGRHe4I_KR9aoNLyQ,138934
|
|
780
|
+
ccxt_ir-4.9.22.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
781
|
+
ccxt_ir-4.9.22.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
|
782
|
+
ccxt_ir-4.9.22.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|