ccxt 4.0.6__py2.py3-none-any.whl → 4.0.7__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 CHANGED
@@ -22,7 +22,7 @@
22
22
 
23
23
  # ----------------------------------------------------------------------------
24
24
 
25
- __version__ = '4.0.6'
25
+ __version__ = '4.0.7'
26
26
 
27
27
  # ----------------------------------------------------------------------------
28
28
 
ccxt/abstract/bitget.py CHANGED
@@ -13,6 +13,7 @@ class ImplicitAPI:
13
13
  public_spot_get_market_candles = publicSpotGetMarketCandles = Entry('market/candles', ['public', 'spot'], 'GET', {'cost': 1})
14
14
  public_spot_get_market_depth = publicSpotGetMarketDepth = Entry('market/depth', ['public', 'spot'], 'GET', {'cost': 1})
15
15
  public_spot_get_market_spot_vip_level = publicSpotGetMarketSpotVipLevel = Entry('market/spot-vip-level', ['public', 'spot'], 'GET', {'cost': 2})
16
+ public_spot_get_market_history_candles = publicSpotGetMarketHistoryCandles = Entry('market/history-candles', ['public', 'spot'], 'GET', {'cost': 1})
16
17
  public_mix_get_market_contracts = publicMixGetMarketContracts = Entry('market/contracts', ['public', 'mix'], 'GET', {'cost': 1})
17
18
  public_mix_get_market_depth = publicMixGetMarketDepth = Entry('market/depth', ['public', 'mix'], 'GET', {'cost': 1})
18
19
  public_mix_get_market_ticker = publicMixGetMarketTicker = Entry('market/ticker', ['public', 'mix'], 'GET', {'cost': 1})
@@ -30,6 +31,9 @@ class ImplicitAPI:
30
31
  public_mix_get_market_symbol_leverage = publicMixGetMarketSymbolLeverage = Entry('market/symbol-leverage', ['public', 'mix'], 'GET', {'cost': 1})
31
32
  public_mix_get_market_querypositionlever = publicMixGetMarketQueryPositionLever = Entry('market/queryPositionLever', ['public', 'mix'], 'GET', {'cost': 1})
32
33
  public_mix_get_market_open_limit = publicMixGetMarketOpenLimit = Entry('market/open-limit', ['public', 'mix'], 'GET', {'cost': 1})
34
+ public_mix_get_market_history_candles = publicMixGetMarketHistoryCandles = Entry('market/history-candles', ['public', 'mix'], 'GET', {'cost': 1})
35
+ public_mix_get_market_history_index_candles = publicMixGetMarketHistoryIndexCandles = Entry('market/history-index-candles', ['public', 'mix'], 'GET', {'cost': 1})
36
+ public_mix_get_market_history_mark_candles = publicMixGetMarketHistoryMarkCandles = Entry('market/history-mark-candles', ['public', 'mix'], 'GET', {'cost': 1})
33
37
  public_margin_get_cross_public_interestrateandlimit = publicMarginGetCrossPublicInterestRateAndLimit = Entry('cross/public/interestRateAndLimit', ['public', 'margin'], 'GET', {'cost': 2})
34
38
  public_margin_get_isolated_public_interestrateandlimit = publicMarginGetIsolatedPublicInterestRateAndLimit = Entry('isolated/public/interestRateAndLimit', ['public', 'margin'], 'GET', {'cost': 2})
35
39
  public_margin_get_cross_public_tierdata = publicMarginGetCrossPublicTierData = Entry('cross/public/tierData', ['public', 'margin'], 'GET', {'cost': 2})
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.0.6'
7
+ __version__ = '4.0.7'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # -----------------------------------------------------------------------------
4
4
 
5
- __version__ = '4.0.6'
5
+ __version__ = '4.0.7'
6
6
 
7
7
  # -----------------------------------------------------------------------------
8
8
 
@@ -170,6 +170,7 @@ class bitget(Exchange, ImplicitAPI):
170
170
  'market/candles': 1,
171
171
  'market/depth': 1,
172
172
  'market/spot-vip-level': 2,
173
+ 'market/history-candles': 1,
173
174
  },
174
175
  },
175
176
  'mix': {
@@ -191,6 +192,9 @@ class bitget(Exchange, ImplicitAPI):
191
192
  'market/symbol-leverage': 1,
192
193
  'market/queryPositionLever': 1,
193
194
  'market/open-limit': 1,
195
+ 'market/history-candles': 1,
196
+ 'market/history-index-candles': 1,
197
+ 'market/history-mark-candles': 1,
194
198
  },
195
199
  },
196
200
  'margin': {
ccxt/async_support/okx.py CHANGED
@@ -171,7 +171,8 @@ class okx(Exchange, ImplicitAPI):
171
171
  'referral': {
172
172
  # old reflink 0% discount https://www.okx.com/join/1888677
173
173
  # new reflink 20% discount https://www.okx.com/join/CCXT2023
174
- 'url': 'https://www.okx.com/activities/ccxt-trade-and-earn?chanelid=CCXT2023',
174
+ # okx + ccxt campaign reflink with 20% discount https://www.okx.com/activities/ccxt-trade-and-earn?channelid=CCXT2023
175
+ 'url': 'https://www.okx.com/activities/ccxt-trade-and-earn?channelid=CCXT2023',
175
176
  'discount': 0.2,
176
177
  },
177
178
  'test': {
ccxt/base/exchange.py CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.0.6'
7
+ __version__ = '4.0.7'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
ccxt/bitget.py CHANGED
@@ -169,6 +169,7 @@ class bitget(Exchange, ImplicitAPI):
169
169
  'market/candles': 1,
170
170
  'market/depth': 1,
171
171
  'market/spot-vip-level': 2,
172
+ 'market/history-candles': 1,
172
173
  },
173
174
  },
174
175
  'mix': {
@@ -190,6 +191,9 @@ class bitget(Exchange, ImplicitAPI):
190
191
  'market/symbol-leverage': 1,
191
192
  'market/queryPositionLever': 1,
192
193
  'market/open-limit': 1,
194
+ 'market/history-candles': 1,
195
+ 'market/history-index-candles': 1,
196
+ 'market/history-mark-candles': 1,
193
197
  },
194
198
  },
195
199
  'margin': {
ccxt/okx.py CHANGED
@@ -170,7 +170,8 @@ class okx(Exchange, ImplicitAPI):
170
170
  'referral': {
171
171
  # old reflink 0% discount https://www.okx.com/join/1888677
172
172
  # new reflink 20% discount https://www.okx.com/join/CCXT2023
173
- 'url': 'https://www.okx.com/activities/ccxt-trade-and-earn?chanelid=CCXT2023',
173
+ # okx + ccxt campaign reflink with 20% discount https://www.okx.com/activities/ccxt-trade-and-earn?channelid=CCXT2023
174
+ 'url': 'https://www.okx.com/activities/ccxt-trade-and-earn?channelid=CCXT2023',
174
175
  'discount': 0.2,
175
176
  },
176
177
  'test': {
ccxt/pro/__init__.py CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # ----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.0.6'
7
+ __version__ = '4.0.7'
8
8
 
9
9
  # ----------------------------------------------------------------------------
10
10
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ccxt
3
- Version: 4.0.6
3
+ Version: 4.0.7
4
4
  Summary: A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges
5
5
  Home-page: https://ccxt.com
6
6
  Author: Igor Kroitor
@@ -64,7 +64,7 @@ Current feature list:
64
64
 
65
65
  ## Sponsored Promotion
66
66
 
67
- [![OKX + CCXT Exclusive Event: Trade And Earn](https://github-production-user-asset-6210df.s3.amazonaws.com/1294454/250898976-6300ed05-6606-4432-b0c0-3bb32854af60.png)](https://www.okx.com/activities/ccxt-trade-and-earn?chanelid=CCXT2023)
67
+ [![OKX + CCXT Exclusive Event: Trade And Earn](https://github-production-user-asset-6210df.s3.amazonaws.com/1294454/250898976-6300ed05-6606-4432-b0c0-3bb32854af60.png)](https://www.okx.com/activities/ccxt-trade-and-earn?channelid=CCXT2023)
68
68
 
69
69
  ## See Also
70
70
 
@@ -92,7 +92,7 @@ Current feature list:
92
92
  | [![huobi](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) | huobi | [Huobi](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 Huobi 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) |
93
93
  | [![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) | |
94
94
  | [![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://mxcdevelop.github.io/apidocs/spot_v3_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) | |
95
- | [![okx](https://user-images.githubusercontent.com/1294454/152485636-38b19e4a-bece-4dec-979a-5982859ffc04.jpg)](https://www.okx.com/activities/ccxt-trade-and-earn?chanelid=CCXT2023) | okx | [OKX](https://www.okx.com/activities/ccxt-trade-and-earn?chanelid=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/activities/ccxt-trade-and-earn?chanelid=CCXT2023) |
95
+ | [![okx](https://user-images.githubusercontent.com/1294454/152485636-38b19e4a-bece-4dec-979a-5982859ffc04.jpg)](https://www.okx.com/activities/ccxt-trade-and-earn?channelid=CCXT2023) | okx | [OKX](https://www.okx.com/activities/ccxt-trade-and-earn?channelid=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/activities/ccxt-trade-and-earn?channelid=CCXT2023) |
96
96
  | [![wavesexchange](https://user-images.githubusercontent.com/1294454/84547058-5fb27d80-ad0b-11ea-8711-78ac8b3c7f31.jpg)](https://waves.exchange) | wavesexchange | [Waves.Exchange](https://waves.exchange) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://docs.waves.exchange) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | | |
97
97
  | [![woo](https://user-images.githubusercontent.com/1294454/150730761-1a00e5e0-d28c-480f-9e65-089ce3e6ef3b.jpg)](https://referral.woo.org/BAJS6oNmZb3vi3RGA) | woo | [WOO X](https://referral.woo.org/BAJS6oNmZb3vi3RGA) | [![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) | |
98
98
 
@@ -183,7 +183,7 @@ The CCXT library currently supports the following 98 cryptocurrency exchange mar
183
183
  | [![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/) | | |
184
184
  | [![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) | | |
185
185
  | [![okcoin](https://user-images.githubusercontent.com/51840849/87295551-102fbf00-c50e-11ea-90a9-462eebba5829.jpg)](https://www.okcoin.com/account/register?flag=activity&channelId=600001513) | okcoin | [OKCoin](https://www.okcoin.com/account/register?flag=activity&channelId=600001513) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://www.okcoin.com/docs/en/) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
186
- | [![okx](https://user-images.githubusercontent.com/1294454/152485636-38b19e4a-bece-4dec-979a-5982859ffc04.jpg)](https://www.okx.com/activities/ccxt-trade-and-earn?chanelid=CCXT2023) | okx | [OKX](https://www.okx.com/activities/ccxt-trade-and-earn?chanelid=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) |
186
+ | [![okx](https://user-images.githubusercontent.com/1294454/152485636-38b19e4a-bece-4dec-979a-5982859ffc04.jpg)](https://www.okx.com/activities/ccxt-trade-and-earn?channelid=CCXT2023) | okx | [OKX](https://www.okx.com/activities/ccxt-trade-and-earn?channelid=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) |
187
187
  | [![paymium](https://user-images.githubusercontent.com/51840849/87153930-f0f02200-c2c0-11ea-9c0a-40337375ae89.jpg)](https://www.paymium.com/page/sign-up?referral=eDAzPoRQFMvaAB8sf-qj) | paymium | [Paymium](https://www.paymium.com/page/sign-up?referral=eDAzPoRQFMvaAB8sf-qj) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://github.com/Paymium/api-documentation) | | |
188
188
  | [![phemex](https://user-images.githubusercontent.com/1294454/85225056-221eb600-b3d7-11ea-930d-564d2690e3f6.jpg)](https://phemex.com/register?referralCode=EDNVJ) | phemex | [Phemex](https://phemex.com/register?referralCode=EDNVJ) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://github.com/phemex/phemex-api-docs) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
189
189
  | [![poloniex](https://user-images.githubusercontent.com/1294454/27766817-e9456312-5ee6-11e7-9b3c-b628ca5626a5.jpg)](https://poloniex.com/signup?c=UBFZJRPJ) | poloniex | [Poloniex](https://poloniex.com/signup?c=UBFZJRPJ) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://docs.poloniex.com) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
@@ -257,13 +257,13 @@ console.log(version, Object.keys(exchanges));
257
257
 
258
258
  All-in-one browser bundle (dependencies included), served from a CDN of your choice:
259
259
 
260
- * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.0.6/dist/ccxt.browser.js
261
- * unpkg: https://unpkg.com/ccxt@4.0.6/dist/ccxt.browser.js
260
+ * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.0.7/dist/ccxt.browser.js
261
+ * unpkg: https://unpkg.com/ccxt@4.0.7/dist/ccxt.browser.js
262
262
 
263
263
  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.
264
264
 
265
265
  ```HTML
266
- <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.0.6/dist/ccxt.browser.js"></script>
266
+ <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.0.7/dist/ccxt.browser.js"></script>
267
267
  ```
268
268
 
269
269
  Creates a global `ccxt` object:
@@ -1,4 +1,4 @@
1
- ccxt/__init__.py,sha256=VxJMUFIygG-3eUZqX6CC3pGMaqU7K5_Fnq1o_5nRLoo,15341
1
+ ccxt/__init__.py,sha256=X2pIyjou-7fw458mXdCCrcGsELSaJuVHLwqiw1tU-5c,15341
2
2
  ccxt/ace.py,sha256=8uTO7fzyxHnEhE3Y8VDP2EcWxh9gjs9xPMbuXjkUA7A,41372
3
3
  ccxt/alpaca.py,sha256=_cPmZ0obENxKSzsqLu0t1Ae-rUwN8z1DUB3Af8Kh4sA,33434
4
4
  ccxt/ascendex.py,sha256=NAmK1Ss3lDunf5MELZF_4B2_toSiC9OQmowvxyTo--c,132518
@@ -17,7 +17,7 @@ ccxt/bitfinex.py,sha256=jVlZWr9fTOnGk7DljrVBDvWkSuYxlJUhn5bNGWt5Ywo,69390
17
17
  ccxt/bitfinex2.py,sha256=gMef9dPorHkYqStWFp8LS0HtoeAR4qsyPLvHUWpDOLs,111573
18
18
  ccxt/bitflyer.py,sha256=xyiLypcK6XG3ZjDhclD4YVP6pwbwVbDPyFghP3fdags,37759
19
19
  ccxt/bitforex.py,sha256=t3e95zu6aVGmJcdNyXPSHX0BGmFXA7PR8VsbIM4LZuc,32164
20
- ccxt/bitget.py,sha256=Mm3PoiNhrvu_-Hqz4rV6vZypUckAKFk6HvxrIoZj6Uw,225610
20
+ ccxt/bitget.py,sha256=MY0XPnzMyowKzZFFreDbUUR4FAd2Rqy52ddVN_-qwXs,225849
21
21
  ccxt/bithumb.py,sha256=QI2sZWiLN1rfXnn2zur1wosFNEWcyFZv_r-7DIVWkpo,42616
22
22
  ccxt/bitmart.py,sha256=DhJJnr3ZJzY9IutjOvxtHvTXG_LURzbIXllXwMs7Q0A,131509
23
23
  ccxt/bitmex.py,sha256=-ZxduV4zhkpxONModGKuqGJMXm-yMo5Fe_JAQM3TlZk,112225
@@ -88,7 +88,7 @@ ccxt/oceanex.py,sha256=-6y1oElL5QOYB82J_N5tVHLdEX9hZ7dPCOCzfbQCKqM,37114
88
88
  ccxt/okcoin.py,sha256=B5otctOYDvWkhckFWW7tfhUQsQaSbPiZh0X0eqR1K_w,177829
89
89
  ccxt/okex.py,sha256=nVDSzVztmboH593DVByjzFoOpFTzumcQFH_T9kdVKlE,434
90
90
  ccxt/okex5.py,sha256=LKTogVF1svNkqW_-Cx0AuAopu6esgFf7ucbv7CaodUg,441
91
- ccxt/okx.py,sha256=vkGTajWNhdwRq_udLNFh4S1KFn3noKvVuNzwM5Ohuvw,285687
91
+ ccxt/okx.py,sha256=5SatHSUlxiJWerskNxBUhv-gtO6qEqIhJD1qo74hegE,285826
92
92
  ccxt/paymium.py,sha256=DIlRvOVsYZaPGDUSBZH3-DUIXf7QfHEOFyhephw48HE,23938
93
93
  ccxt/phemex.py,sha256=wikqZDAKdVBr5outIp4gVaG19qHPmYmBlDzdcXkeen0,197800
94
94
  ccxt/poloniex.py,sha256=OqLq7DmJOC1jwaTv4nNb0AaO_0JrtoDqZj-3kjFH5lQ,93674
@@ -124,7 +124,7 @@ ccxt/abstract/bitfinex.py,sha256=OLUXdJEycyN_qrBhPuTTOVlwu3jkqVWenoTmS-W3bOE,760
124
124
  ccxt/abstract/bitfinex2.py,sha256=PAch4aEMHMYjV8up6YHmibfLz6sn4wh-knkSTKZbJrY,19171
125
125
  ccxt/abstract/bitflyer.py,sha256=3ngG1GJJCNMzYMWoNXCEEgLxmTl7eRf7_JU4M0P2rqo,3576
126
126
  ccxt/abstract/bitforex.py,sha256=_vwOUvBfzQazUvoflGK53m8i7xRgsmzFL4qP5UzqnZ8,2789
127
- ccxt/abstract/bitget.py,sha256=Edh3tqSZUNv0rCKaHccy3DULB0FT4XGcJ_ABE_tW88c,34294
127
+ ccxt/abstract/bitget.py,sha256=keNvM6j8cUvB-SZtqxkQgeJw0qNwjDlOr2j_ixE-f2M,34928
128
128
  ccxt/abstract/bithumb.py,sha256=I_ZNjXND1I4IRz6AsIwlZV-XoOt0vtMo4kUroAcC2Kk,2659
129
129
  ccxt/abstract/bitmart.py,sha256=Zw34giZABSCscioucHqX8aBT7EEbADrJW_vgmGqNS-Q,9098
130
130
  ccxt/abstract/bitmex.py,sha256=k00c5G7Tj9u00uV7Qj7tBm4uyr5oi4f73UDJA9nA_IY,8397
@@ -211,7 +211,7 @@ ccxt/abstract/woo.py,sha256=9_cfnwSvBNpcw0ESX4MJpfnXGNm5MSND6CsspevTLww,7866
211
211
  ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
212
212
  ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
213
213
  ccxt/abstract/zonda.py,sha256=VoxuPkSq8vAvKnDvOqnByhwsIf09m7yIrs8HejFrDk4,5482
214
- ccxt/async_support/__init__.py,sha256=fSE0ugR8K9lcSYTvV8BfuX-XhFq8SkJaVjzd9_Rh7qE,15114
214
+ ccxt/async_support/__init__.py,sha256=o62a9Ti7_6kTgi0KhDTLgPtPFW5IJ_QLHI-8NXI9Dj0,15114
215
215
  ccxt/async_support/ace.py,sha256=xTtzqhVgpoDI4YgR9rRTRHTV2UsQmNYNfbuJc6aBKxA,41596
216
216
  ccxt/async_support/alpaca.py,sha256=hWimV0LrPixw15-FH7lMFB6s6EMEOjDlZOhWjznzu3g,33580
217
217
  ccxt/async_support/ascendex.py,sha256=g_I5OjzdooUCjC8gScns6KgF8x1sa8WcNQTAGEFiUyI,133150
@@ -230,7 +230,7 @@ ccxt/async_support/bitfinex.py,sha256=SLYVaRVTOvaEplpraQ8tfJse0-VKYRtdjfQO3yd7dl
230
230
  ccxt/async_support/bitfinex2.py,sha256=fTjgCsWq1iXleuOYvLUHJvGotnX8yw7qtWnUIYrChWw,112043
231
231
  ccxt/async_support/bitflyer.py,sha256=XJjWrXJBTNW3PPyjH4vw0RKIyOSgn9nMmzJK5LKrwZg,38067
232
232
  ccxt/async_support/bitforex.py,sha256=lI1Zz7snYpmCe10LEdO68kFQ8aRY2UXN3qoz2YUC8uc,32388
233
- ccxt/async_support/bitget.py,sha256=mpO9qI-ZmMfU0dwMMhuRwGnD86kcYDqqnxR-mhFT390,226502
233
+ ccxt/async_support/bitget.py,sha256=ZmYYQRLQUjiDWTEOj8Mt4NBGIjssz-ttKoC9BwIEyV4,226741
234
234
  ccxt/async_support/bithumb.py,sha256=PSbN5liXM68a3ZR13v72VLVEXODBo84dw_M-E-JrVuI,42834
235
235
  ccxt/async_support/bitmart.py,sha256=wgdb1MzuOyzeocbkUALo4i30QglEbyTs8UGoSwqQJBM,132147
236
236
  ccxt/async_support/bitmex.py,sha256=YDF1feJsGurNSoTdsh5Lftq5ainn6XHP7nyzV7uvEzc,112719
@@ -301,7 +301,7 @@ ccxt/async_support/oceanex.py,sha256=8GIbo_O2j9tELlYyiE4MPzOD_MwpDPv26tzztqxklhc
301
301
  ccxt/async_support/okcoin.py,sha256=WvLWTmoUs8ARk7GTglgk4BwMtTj_kWUW6nRuuHVdNVk,178293
302
302
  ccxt/async_support/okex.py,sha256=6dbtH4bC1C2x4cQUK6W62y7PuDgO3YazuFa7DYhM4Jw,448
303
303
  ccxt/async_support/okex5.py,sha256=tq41tKx06j3DDO9pu9iKInpjayVprbobVNTK8qb7hoM,455
304
- ccxt/async_support/okx.py,sha256=gVWpkWLe60lQ1rNGqVnN6RMXUAZgC37c9rcBoVLS6HA,286759
304
+ ccxt/async_support/okx.py,sha256=tnnL9qKlvDht3HtcTvyQDnHPaoiyw1voTyy8eAYl5jI,286898
305
305
  ccxt/async_support/paymium.py,sha256=6GM4efJ7rngx7LQt0rFb3TbZUKzGwBi11VMA7rQD-kY,24126
306
306
  ccxt/async_support/phemex.py,sha256=vKTDQuYgpg-msvQXqzkoHmXEwBtmTM2Yk2yoOFL-axg,198396
307
307
  ccxt/async_support/poloniex.py,sha256=T-mL9xAEQvtawMoijqf4NLVT_Ds-kb6HZZgBY_LNxsQ,94174
@@ -319,7 +319,7 @@ ccxt/async_support/yobit.py,sha256=cRJgQNE-EfjXAligG8-iKxYA-yt9tKGilGnXg1PDrbg,5
319
319
  ccxt/async_support/zaif.py,sha256=Bg4Bfk63mluMSp1_8VE4_JPZEXSb940MocZGFisG9IA,28985
320
320
  ccxt/async_support/zonda.py,sha256=9je6awNUpQAHqF8uKfqIqjXyG8CQOPmzU1xDdxzpNDo,79823
321
321
  ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
322
- ccxt/async_support/base/exchange.py,sha256=RN3WqTLZyuItY3halPrRUryvJj5fSotoxR9zqufU45k,140818
322
+ ccxt/async_support/base/exchange.py,sha256=4Ox35Ys4b4MUf0z0OpttCEyuBjP5QHXGtnOy_e5EiX8,140818
323
323
  ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
324
324
  ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
325
325
  ccxt/async_support/base/ws/aiohttp_client.py,sha256=xmlZV30Vb9Kq7JCm3D5FuEmuj1zp5H4F4hrz8-Y-Ir4,4999
@@ -333,10 +333,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GH-475Ni0mLOx7mUDnz4jjzaGkh
333
333
  ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
334
334
  ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
335
335
  ccxt/base/errors.py,sha256=-LVeTNyXvu3QEgb-p-KzMpcBgzHlvFTwDzmZK7Gfc14,3401
336
- ccxt/base/exchange.py,sha256=T0ui8ZO5tnJNAbqYlQu9PC7MAGSTaQvkHsVI0I3DuK4,180207
336
+ ccxt/base/exchange.py,sha256=_aCl8n_zJD4XyMZyb5P0BPsiZ8pDgztwz6QvJI0bBfs,180207
337
337
  ccxt/base/precise.py,sha256=_xfu54sV0vWNnOfGTKRFykeuWP8mn4K1m9lk1tcllX4,8565
338
338
  ccxt/base/types.py,sha256=be7MU-iLHhynL-GmIzPxb0SD6GIps-w3PmPN05irsAA,1406
339
- ccxt/pro/__init__.py,sha256=0UJX3lOTr2FAheBhmXI5mFiJOdVQuY0yjFOVnaPpxxo,6376
339
+ ccxt/pro/__init__.py,sha256=5ElgNXAk1_ug3NXwlp84C4bhnjj__A9XRvVsdpvMUWw,6376
340
340
  ccxt/pro/alpaca.py,sha256=dHcK0EFjEkzs_nZn2DGpwMauOkw2XPKaqYezx4dcDis,26671
341
341
  ccxt/pro/ascendex.py,sha256=QVvtQlv_AZaQTaZcczXocmrf9gL1zFpsLRVcNF21qCI,34555
342
342
  ccxt/pro/bequant.py,sha256=qz8JjnpkAQY_CFiFSKGqrjjgZ2167_TBKjSJOb9NeDw,1081
@@ -446,7 +446,7 @@ ccxt/test/base/test_ticker.py,sha256=h9AV_O6s-Ax3vB3sFoN0Mz22rMOi65i9BDv0SNejH98
446
446
  ccxt/test/base/test_trade.py,sha256=bL9o3S_TGW8Nnlxu-BYkRG8NyRzKAWrU66uO5jJCM3A,2259
447
447
  ccxt/test/base/test_trading_fee.py,sha256=yRCpLHLg_ca9JQXdZB3_pIMHgHLGEfeQF95E6d1e2Bc,1125
448
448
  ccxt/test/base/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
449
- ccxt-4.0.6.dist-info/METADATA,sha256=NQbN41w_FU59D9ujhOJRRlr-pJwiP6qGquJwGO7K4Zc,108967
450
- ccxt-4.0.6.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110
451
- ccxt-4.0.6.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
452
- ccxt-4.0.6.dist-info/RECORD,,
449
+ ccxt-4.0.7.dist-info/METADATA,sha256=lqflX3ga5CMiJCv77dykVgwBCmU5ub2xjpVyQTlMNpI,108968
450
+ ccxt-4.0.7.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110
451
+ ccxt-4.0.7.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
452
+ ccxt-4.0.7.dist-info/RECORD,,
File without changes