ccxt 4.3.38__py2.py3-none-any.whl → 4.3.39__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 CHANGED
@@ -22,7 +22,7 @@
22
22
 
23
23
  # ----------------------------------------------------------------------------
24
24
 
25
- __version__ = '4.3.38'
25
+ __version__ = '4.3.39'
26
26
 
27
27
  # ----------------------------------------------------------------------------
28
28
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.3.38'
7
+ __version__ = '4.3.39'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # -----------------------------------------------------------------------------
4
4
 
5
- __version__ = '4.3.38'
5
+ __version__ = '4.3.39'
6
6
 
7
7
  # -----------------------------------------------------------------------------
8
8
 
@@ -2177,16 +2177,18 @@ class coinlist(Exchange, ImplicitAPI):
2177
2177
  request = self.omit(params, self.extract_params(path))
2178
2178
  endpoint = '/' + self.implode_params(path, params)
2179
2179
  url = self.urls['api'][api] + endpoint
2180
- query = self.urlencode(request)
2180
+ isBulk = isinstance(params, list)
2181
+ query: Str = None
2182
+ if not isBulk:
2183
+ query = self.urlencode(request)
2181
2184
  if api == 'private':
2182
2185
  self.check_required_credentials()
2183
2186
  timestamp = str(self.seconds())
2184
2187
  auth = timestamp + method + endpoint
2185
- isBulk = isinstance(params, list)
2186
2188
  if (method == 'POST') or (method == 'PATCH') or isBulk:
2187
2189
  body = self.json(request)
2188
2190
  auth += body
2189
- elif len(query) != 0:
2191
+ elif query is not None and len(query) != 0:
2190
2192
  auth += '?' + query
2191
2193
  url += '?' + query
2192
2194
  signature = self.hmac(self.encode(auth), self.base64_to_binary(self.secret), hashlib.sha256, 'base64')
@@ -2196,7 +2198,7 @@ class coinlist(Exchange, ImplicitAPI):
2196
2198
  'CL-ACCESS-TIMESTAMP': timestamp,
2197
2199
  'Content-Type': 'application/json',
2198
2200
  }
2199
- elif len(query) != 0:
2201
+ elif query is not None and len(query) != 0:
2200
2202
  url += '?' + query
2201
2203
  return {'url': url, 'method': method, 'body': body, 'headers': headers}
2202
2204
 
@@ -161,7 +161,7 @@ class mexc(Exchange, ImplicitAPI):
161
161
  'fees': [
162
162
  'https://www.mexc.com/fee',
163
163
  ],
164
- 'referral': 'https://m.mexc.com/auth/signup?inviteCode=1FQ1G',
164
+ 'referral': 'https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1',
165
165
  },
166
166
  'api': {
167
167
  'spot': {
ccxt/base/exchange.py CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.3.38'
7
+ __version__ = '4.3.39'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
ccxt/coinlist.py CHANGED
@@ -2177,16 +2177,18 @@ class coinlist(Exchange, ImplicitAPI):
2177
2177
  request = self.omit(params, self.extract_params(path))
2178
2178
  endpoint = '/' + self.implode_params(path, params)
2179
2179
  url = self.urls['api'][api] + endpoint
2180
- query = self.urlencode(request)
2180
+ isBulk = isinstance(params, list)
2181
+ query: Str = None
2182
+ if not isBulk:
2183
+ query = self.urlencode(request)
2181
2184
  if api == 'private':
2182
2185
  self.check_required_credentials()
2183
2186
  timestamp = str(self.seconds())
2184
2187
  auth = timestamp + method + endpoint
2185
- isBulk = isinstance(params, list)
2186
2188
  if (method == 'POST') or (method == 'PATCH') or isBulk:
2187
2189
  body = self.json(request)
2188
2190
  auth += body
2189
- elif len(query) != 0:
2191
+ elif query is not None and len(query) != 0:
2190
2192
  auth += '?' + query
2191
2193
  url += '?' + query
2192
2194
  signature = self.hmac(self.encode(auth), self.base64_to_binary(self.secret), hashlib.sha256, 'base64')
@@ -2196,7 +2198,7 @@ class coinlist(Exchange, ImplicitAPI):
2196
2198
  'CL-ACCESS-TIMESTAMP': timestamp,
2197
2199
  'Content-Type': 'application/json',
2198
2200
  }
2199
- elif len(query) != 0:
2201
+ elif query is not None and len(query) != 0:
2200
2202
  url += '?' + query
2201
2203
  return {'url': url, 'method': method, 'body': body, 'headers': headers}
2202
2204
 
ccxt/mexc.py CHANGED
@@ -161,7 +161,7 @@ class mexc(Exchange, ImplicitAPI):
161
161
  'fees': [
162
162
  'https://www.mexc.com/fee',
163
163
  ],
164
- 'referral': 'https://m.mexc.com/auth/signup?inviteCode=1FQ1G',
164
+ 'referral': 'https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1',
165
165
  },
166
166
  'api': {
167
167
  'spot': {
ccxt/pro/__init__.py CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # ----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.3.38'
7
+ __version__ = '4.3.39'
8
8
 
9
9
  # ----------------------------------------------------------------------------
10
10
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ccxt
3
- Version: 4.3.38
3
+ Version: 4.3.39
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
@@ -100,7 +100,7 @@ Current feature list:
100
100
  | [![htx](https://user-images.githubusercontent.com/1294454/76137448-22748a80-604e-11ea-8069-6e389271911d.jpg)](https://www.huobi.com/en-us/v/register/double-invite/?inviter_id=11343840&invite_code=6rmm2223) | htx | [HTX](https://www.huobi.com/en-us/v/register/double-invite/?inviter_id=11343840&invite_code=6rmm2223) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://huobiapi.github.io/docs/spot/v1/en/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with HTX using CCXT's referral link for a 15% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d15%25&color=orange)](https://www.huobi.com/en-us/v/register/double-invite/?inviter_id=11343840&invite_code=6rmm2223) |
101
101
  | [![kucoin](https://user-images.githubusercontent.com/51840849/87295558-132aaf80-c50e-11ea-9801-a2fb0c57c799.jpg)](https://www.kucoin.com/ucenter/signup?rcode=E5wkqe) | kucoin | [KuCoin](https://www.kucoin.com/ucenter/signup?rcode=E5wkqe) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://docs.kucoin.com) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
102
102
  | [![kucoinfutures](https://user-images.githubusercontent.com/1294454/147508995-9e35030a-d046-43a1-a006-6fabd981b554.jpg)](https://futures.kucoin.com/?rcode=E5wkqe) | kucoinfutures | [KuCoin Futures](https://futures.kucoin.com/?rcode=E5wkqe) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.kucoin.com/futures) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
103
- | [![mexc](https://user-images.githubusercontent.com/1294454/137283979-8b2a818d-8633-461b-bfca-de89e8c446b2.jpg)](https://m.mexc.com/auth/signup?inviteCode=1FQ1G) | mexc | [MEXC Global](https://m.mexc.com/auth/signup?inviteCode=1FQ1G) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://mexcdevelop.github.io/apidocs/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
103
+ | [![mexc](https://user-images.githubusercontent.com/1294454/137283979-8b2a818d-8633-461b-bfca-de89e8c446b2.jpg)](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | mexc | [MEXC Global](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://mexcdevelop.github.io/apidocs/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
104
104
  | [![okx](https://user-images.githubusercontent.com/1294454/152485636-38b19e4a-bece-4dec-979a-5982859ffc04.jpg)](https://www.okx.com/join/CCXT2023) | okx | [OKX](https://www.okx.com/join/CCXT2023) | [![API Version 5](https://img.shields.io/badge/5-lightgray)](https://www.okx.com/docs-v5/en/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with OKX using CCXT's referral link for a 20% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d20%25&color=orange)](https://www.okx.com/join/CCXT2023) |
105
105
  | [![woo](https://user-images.githubusercontent.com/1294454/150730761-1a00e5e0-d28c-480f-9e65-089ce3e6ef3b.jpg)](https://x.woo.org/register?ref=YWOWC96B) | woo | [WOO X](https://x.woo.org/register?ref=YWOWC96B) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.woo.org/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with WOO X using CCXT's referral link for a 35% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d35%25&color=orange)](https://x.woo.org/register?ref=YWOWC96B) |
106
106
  | [![woofipro](https://github.com/ccxt/ccxt/assets/43336371/b1e7b348-a0fc-4605-8b7f-91176958fd69)](https://dex.woo.org/en/trade?ref=CCXT) | woofipro | [WOOFI PRO](https://dex.woo.org/en/trade?ref=CCXT) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://orderly.network/docs/build-on-evm/building-on-evm) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with WOOFI PRO using CCXT's referral link for a 5% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d5%25&color=orange)](https://dex.woo.org/en/trade?ref=CCXT) |
@@ -184,7 +184,7 @@ The CCXT library currently supports the following 98 cryptocurrency exchange mar
184
184
  | [![luno](https://user-images.githubusercontent.com/1294454/27766607-8c1a69d8-5ede-11e7-930c-540b5eb9be24.jpg)](https://www.luno.com/invite/44893A) | luno | [luno](https://www.luno.com/invite/44893A) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://www.luno.com/en/api) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
185
185
  | [![lykke](https://user-images.githubusercontent.com/1294454/155840500-1ea4fdf0-47c0-4daa-9597-c6c1cd51b9ec.jpg)](https://www.lykke.com) | lykke | [Lykke](https://www.lykke.com) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://hft-apiv2.lykke.com/swagger/ui/index.html) | | |
186
186
  | [![mercado](https://user-images.githubusercontent.com/1294454/27837060-e7c58714-60ea-11e7-9192-f05e86adb83f.jpg)](https://www.mercadobitcoin.com.br) | mercado | [Mercado Bitcoin](https://www.mercadobitcoin.com.br) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://www.mercadobitcoin.com.br/api-doc) | | |
187
- | [![mexc](https://user-images.githubusercontent.com/1294454/137283979-8b2a818d-8633-461b-bfca-de89e8c446b2.jpg)](https://m.mexc.com/auth/signup?inviteCode=1FQ1G) | mexc | [MEXC Global](https://m.mexc.com/auth/signup?inviteCode=1FQ1G) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://mexcdevelop.github.io/apidocs/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
187
+ | [![mexc](https://user-images.githubusercontent.com/1294454/137283979-8b2a818d-8633-461b-bfca-de89e8c446b2.jpg)](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | mexc | [MEXC Global](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://mexcdevelop.github.io/apidocs/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
188
188
  | [![ndax](https://user-images.githubusercontent.com/1294454/108623144-67a3ef00-744e-11eb-8140-75c6b851e945.jpg)](https://one.ndax.io/bfQiSL) | ndax | [NDAX](https://one.ndax.io/bfQiSL) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://apidoc.ndax.io/) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
189
189
  | [![novadax](https://user-images.githubusercontent.com/1294454/92337550-2b085500-f0b3-11ea-98e7-5794fb07dd3b.jpg)](https://www.novadax.com.br/?s=ccxt) | novadax | [NovaDAX](https://www.novadax.com.br/?s=ccxt) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://doc.novadax.com/pt-BR/) | | |
190
190
  | [![oceanex](https://user-images.githubusercontent.com/1294454/58385970-794e2d80-8001-11e9-889c-0567cd79b78e.jpg)](https://oceanex.pro/signup?referral=VE24QX) | oceanex | [OceanEx](https://oceanex.pro/signup?referral=VE24QX) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://api.oceanex.pro/doc/v1) | | |
@@ -266,13 +266,13 @@ console.log(version, Object.keys(exchanges));
266
266
 
267
267
  All-in-one browser bundle (dependencies included), served from a CDN of your choice:
268
268
 
269
- * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.38/dist/ccxt.browser.min.js
270
- * unpkg: https://unpkg.com/ccxt@4.3.38/dist/ccxt.browser.min.js
269
+ * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.39/dist/ccxt.browser.min.js
270
+ * unpkg: https://unpkg.com/ccxt@4.3.39/dist/ccxt.browser.min.js
271
271
 
272
272
  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.
273
273
 
274
274
  ```HTML
275
- <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.38/dist/ccxt.browser.min.js"></script>
275
+ <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.39/dist/ccxt.browser.min.js"></script>
276
276
  ```
277
277
 
278
278
  Creates a global `ccxt` object:
@@ -1,4 +1,4 @@
1
- ccxt/__init__.py,sha256=mvYP8W4iwZPYtUhxYon5BMhIc3uvfRQMIAuiEtZxhXA,15950
1
+ ccxt/__init__.py,sha256=W0LeQRfhwjIVAes71WDlvPNRzp3UhULNZzskPdNpw58,15950
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
@@ -43,7 +43,7 @@ ccxt/coinbaseexchange.py,sha256=pnS1O5ZkUIY3QQ8IotdWgvJDo0qB0NS6RJZPrPOvwd4,7890
43
43
  ccxt/coinbaseinternational.py,sha256=cGMA-DukMh64r0zd-Z5Ussyo7kYiItXV8YWnU5myAF4,87472
44
44
  ccxt/coincheck.py,sha256=-9MS_DPgSfyPplgvjFzRfaQ3YSHW_WDxP3WnTAiICws,35943
45
45
  ccxt/coinex.py,sha256=xS7McsQM9YLWhYg10hFp_oj_ABE5Q3eaUHiekDVsVGU,258057
46
- ccxt/coinlist.py,sha256=NGb-0qi_w9cbv5455K_GEpp2wlmC6170zhgMq0Q62vc,103386
46
+ ccxt/coinlist.py,sha256=zmpX2cbjDrFUZG46aIgk-BnBffod73K2muoU-cyHwGI,103479
47
47
  ccxt/coinmate.py,sha256=J9oS9ktyC-Z4Yxe9vVwtRNFTUPtLSaBzeuQIbsg7u04,46112
48
48
  ccxt/coinmetro.py,sha256=QMbKRQQ3w6kvvMKZ71WCpFeoVDLn_iFL3O-3ihwErqs,80869
49
49
  ccxt/coinone.py,sha256=MccKIV9Mm6h79wS2pCey-OECT-ySeScTcTGETzdj1Rk,47026
@@ -79,7 +79,7 @@ ccxt/lbank.py,sha256=ZVDfA2EJR8Qxj10d-3y1kwemrr-wxFzKTLkmoTJAPqs,115407
79
79
  ccxt/luno.py,sha256=Yx6jUJb4mLbBGVg0WZy_Ttr5VRYNgG9DEXmjM3mnzAI,46031
80
80
  ccxt/lykke.py,sha256=bCIZ09jov-B-B5Qk26jsy9TUDJtXsOetM3ChPuSDCL4,51220
81
81
  ccxt/mercado.py,sha256=zdf064h1PZjMZuy2ZMxilTxElBcwUZuH8-xcOi9TNVQ,35471
82
- ccxt/mexc.py,sha256=xcgvYApLE-sE_AgZJ5JtL6rAvEN5X0eTQrXld2Huwuc,241288
82
+ ccxt/mexc.py,sha256=2Evx39g8kBLwUL_CF6K-kkq3-A0HYQsKjr7EHZG5zXQ,241295
83
83
  ccxt/ndax.py,sha256=u8s6Bs48TKhwc2jk81GwzU3N0DpsCEYsFcFaxBOA3Mo,108865
84
84
  ccxt/novadax.py,sha256=wbDaAYYvn3Xo4MG7uOIzkzc9hOjeymZbFzmdacup-SA,64437
85
85
  ccxt/oceanex.py,sha256=FqoJb_yUOwMqS2wJLZsSy-SOtlKgZhW5xn6ZYMBvs0U,38022
@@ -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=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
213
- ccxt/async_support/__init__.py,sha256=d6fQQtuWyRWY7Owka2m6YlSTKPJBH1qgrAj5NYxhk4E,15723
213
+ ccxt/async_support/__init__.py,sha256=ZzbvN7Hl7Tn2naehb0w14Juxgw7XTVKflCwu-2W0R-U,15723
214
214
  ccxt/async_support/ace.py,sha256=tsRgs_o4Iq7q8IkD83FUdC-2ztylhgO4cp2hww3rlqQ,42000
215
215
  ccxt/async_support/alpaca.py,sha256=3845DgojoA1p0pxrqnDIqHbbRcEwZhZIkE4aygD5ics,47538
216
216
  ccxt/async_support/ascendex.py,sha256=7tZ4C7FfzmuB_ADYjl6IkyQQ5JG0Vt1AD_B3fTeY6V0,152620
@@ -255,7 +255,7 @@ ccxt/async_support/coinbaseexchange.py,sha256=eDJIvxNNm-MvdFzCUlM0JQMwcSm1DBymXy
255
255
  ccxt/async_support/coinbaseinternational.py,sha256=pIybc9DfEeUVVnorHAkAitibuHuEatQZ2MciwIW6WLA,88026
256
256
  ccxt/async_support/coincheck.py,sha256=Vhnzmdr_N7fpSOIthoTE6HSqVA5xPF2bG6W5UleVdkk,36149
257
257
  ccxt/async_support/coinex.py,sha256=_TNVuWDPgU9KUSJEN_T-IXWgOH234TTz4ZUfdtLWqRA,259315
258
- ccxt/async_support/coinlist.py,sha256=bPNe3Bwo5ovyuKNrpkCGcXKD20h1gUkJEv8Y6RKvvUo,103874
258
+ ccxt/async_support/coinlist.py,sha256=qKoKEKjQA-GFFXewulvSdchQvtVwCmSk6vRUjy88ajI,103967
259
259
  ccxt/async_support/coinmate.py,sha256=nYBc_dXLwXDmGMOpBrpOLD9K7O3YTyhx9FerCRYEn3I,46378
260
260
  ccxt/async_support/coinmetro.py,sha256=RFOMp1sxrk3jsM_5M0sLou1q79y9kz32pWPkJOcNPTQ,81189
261
261
  ccxt/async_support/coinone.py,sha256=nL8JFr2uknykekkDnFiwW6OCLehv3yM0CmyNQNuWa3I,47268
@@ -291,7 +291,7 @@ ccxt/async_support/lbank.py,sha256=8XJIKUYhoSZ9sQqAw7VrOV-7cDe9o_8KaV-slgWAkpY,1
291
291
  ccxt/async_support/luno.py,sha256=Pdw-ls7Pnp8uqwT4aTMevS11lFBo2B0fzz8gpfSVCRE,46369
292
292
  ccxt/async_support/lykke.py,sha256=eyKqdeCl9UJtOc8RnRa5yggaKCJeGc3aw6zKNKIrAfw,51534
293
293
  ccxt/async_support/mercado.py,sha256=r6izA8YEgagyOuvt66UKf0DPS3EiZM3hgCj920Gq8Os,35713
294
- ccxt/async_support/mexc.py,sha256=9WQJ_YMwAe7cQEF7uoxBn6qBpVB2cf-TY5q9brpgFaM,242466
294
+ ccxt/async_support/mexc.py,sha256=iNzFChkrC57YxyLek0NW1RzYUu3Tvo6YWCjksosS5p8,242473
295
295
  ccxt/async_support/ndax.py,sha256=R3gQ8igEJnX7XOMqOi8nKxVTJVKwsZKAxAZaJi1yRDg,109389
296
296
  ccxt/async_support/novadax.py,sha256=7hgBWCcuZRDRSD79-Wel4cesQuyQjo_CP-MK2S7IKOw,64805
297
297
  ccxt/async_support/oceanex.py,sha256=GdudBIC9hCuwI7vE3Mmrw8qvlQmuKclCGTyhuFjorOU,38342
@@ -317,7 +317,7 @@ ccxt/async_support/yobit.py,sha256=KQcu9nXJPDlAodZyxOXKIn6eTSLmlvUlgRFE6EBLfug,5
317
317
  ccxt/async_support/zaif.py,sha256=jTK5pLZSpKL1Pt0qAJTjN09TDS5AfhptGgGAqw7sNwE,29045
318
318
  ccxt/async_support/zonda.py,sha256=e5sSXcFM7NZSyCGPoKmeyNe5wLIxJZJhDAetMknwAYo,81544
319
319
  ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
320
- ccxt/async_support/base/exchange.py,sha256=Lp1hhKcHIPw5WqCq30ENeyHBTX6mYIDYZjLucgo8S5Q,109872
320
+ ccxt/async_support/base/exchange.py,sha256=cYG_fcCZqKj0YCpwwFIZWTTpM9NZd8hA0609klIobRA,109872
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
323
  ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
@@ -331,10 +331,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
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=ApAHGA9Lrd3kOIc40KuNcXWh-AWw9woIiQ-B4rTyDDw,280871
334
+ ccxt/base/exchange.py,sha256=cKy2czpOW8LJ1kArPIHMQRe9L5Dtnv6BrWqyJl27Ndo,280871
335
335
  ccxt/base/precise.py,sha256=_xfu54sV0vWNnOfGTKRFykeuWP8mn4K1m9lk1tcllX4,8565
336
336
  ccxt/base/types.py,sha256=RGGcbz86cVtrmU602zoFO5gSWrv_J7IHxQkPnzmNirs,9247
337
- ccxt/pro/__init__.py,sha256=BNkuUMQ9bRuoiKnJQEWr-_lyv-3gY3EhbGBGOrbKrHI,7107
337
+ ccxt/pro/__init__.py,sha256=mZhV4KeTDr09JO-LlRJZAYzoXpX6an8iSs3g8L3FmqY,7107
338
338
  ccxt/pro/alpaca.py,sha256=81nFwDKyNlmUnhSyRyDLmLU6LGt3yqip1L_Ms2UyAmw,27215
339
339
  ccxt/pro/ascendex.py,sha256=e4WZqmTkIz9sVAWtKAaV6BvanrM2ylRdzjxrclZYmOE,35456
340
340
  ccxt/pro/bequant.py,sha256=5zbsP8BHQTUZ8ZNL6uaACxDbUClgkOV4SYfXT_LfQVg,1351
@@ -535,7 +535,7 @@ ccxt/test/base/test_ticker.py,sha256=cMTIMb1oySNORUCmqI5ZzMswlEyCF6gJMah3vfvo8wQ
535
535
  ccxt/test/base/test_trade.py,sha256=PMtmB8V38dpaP-eb8h488xYMlR6D69yCOhsA1RuWrUA,2336
536
536
  ccxt/test/base/test_trading_fee.py,sha256=2aDCNJtqBkTC_AieO0l1HYGq5hz5qkWlkWb9Nv_fcwk,1066
537
537
  ccxt/test/base/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
538
- ccxt-4.3.38.dist-info/METADATA,sha256=xVkVVqshSRoayvIbndX6Vd5cvXV-DYxLQDQ9JGcS6i4,112977
539
- ccxt-4.3.38.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
540
- ccxt-4.3.38.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
541
- ccxt-4.3.38.dist-info/RECORD,,
538
+ ccxt-4.3.39.dist-info/METADATA,sha256=aglXP5k7whSv6d95AnBBeUr1Oh77YHOPYdI5nUH1llA,112977
539
+ ccxt-4.3.39.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
540
+ ccxt-4.3.39.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
541
+ ccxt-4.3.39.dist-info/RECORD,,
File without changes