ccxt 4.3.75__py2.py3-none-any.whl → 4.3.76__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/pro/bitmart.py CHANGED
@@ -48,8 +48,8 @@ class bitmart(ccxt.async_support.bitmart):
48
48
  'private': 'wss://ws-manager-compress.{hostname}/user?protocol=1.1',
49
49
  },
50
50
  'swap': {
51
- 'public': 'wss://openapi-ws.{hostname}/api?protocol=1.1',
52
- 'private': 'wss://openapi-ws.{hostname}/user?protocol=1.1',
51
+ 'public': 'wss://openapi-ws-v2.{hostname}/api?protocol=1.1',
52
+ 'private': 'wss://openapi-ws-v2.{hostname}/user?protocol=1.1',
53
53
  },
54
54
  },
55
55
  },
@@ -137,7 +137,7 @@ class bitmart(ccxt.async_support.bitmart):
137
137
  async def watch_balance(self, params={}) -> Balances:
138
138
  """
139
139
  :see: https://developer-pro.bitmart.com/en/spot/#private-balance-change
140
- :see: https://developer-pro.bitmart.com/en/futures/#private-assets-channel
140
+ :see: https://developer-pro.bitmart.com/en/futuresv2/#private-assets-channel
141
141
  watch balance and get the amount of funds available for trading or funds locked in orders
142
142
  :param dict [params]: extra parameters specific to the exchange API endpoint
143
143
  :returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
@@ -257,7 +257,7 @@ class bitmart(ccxt.async_support.bitmart):
257
257
  async def watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
258
258
  """
259
259
  :see: https://developer-pro.bitmart.com/en/spot/#public-trade-channel
260
- :see: https://developer-pro.bitmart.com/en/futures/#public-trade-channel
260
+ :see: https://developer-pro.bitmart.com/en/futuresv2/#public-trade-channel
261
261
  get the list of most recent trades for a particular symbol
262
262
  :param str symbol: unified symbol of the market to fetch trades for
263
263
  :param int [since]: timestamp in ms of the earliest trade to fetch
@@ -301,6 +301,7 @@ class bitmart(ccxt.async_support.bitmart):
301
301
  async def watch_ticker(self, symbol: str, params={}) -> Ticker:
302
302
  """
303
303
  :see: https://developer-pro.bitmart.com/en/spot/#public-ticker-channel
304
+ :see: https://developer-pro.bitmart.com/en/futuresv2/#public-ticker-channel
304
305
  watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
305
306
  :param str symbol: unified symbol of the market to fetch the ticker for
306
307
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -313,7 +314,7 @@ class bitmart(ccxt.async_support.bitmart):
313
314
 
314
315
  async def watch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
315
316
  """
316
- :see: https://developer-pro.bitmart.com/en/futures/#overview
317
+ :see: https://developer-pro.bitmart.com/en/futuresv2/#public-ticker-channel
317
318
  watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for all markets of a specific list
318
319
  :param str[] symbols: unified symbol of the market to fetch the ticker for
319
320
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -334,7 +335,7 @@ class bitmart(ccxt.async_support.bitmart):
334
335
  """
335
336
  watches information on multiple orders made by the user
336
337
  :see: https://developer-pro.bitmart.com/en/spot/#private-order-progress
337
- :see: https://developer-pro.bitmart.com/en/futures/#private-order-channel
338
+ :see: https://developer-pro.bitmart.com/en/futuresv2/#private-order-channel
338
339
  :param str symbol: unified market symbol of the market orders were made in
339
340
  :param int [since]: the earliest time in ms to fetch orders for
340
341
  :param int [limit]: the maximum number of order structures to retrieve
@@ -933,7 +934,7 @@ class bitmart(ccxt.async_support.bitmart):
933
934
  async def watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
934
935
  """
935
936
  :see: https://developer-pro.bitmart.com/en/spot/#public-kline-channel
936
- :see: https://developer-pro.bitmart.com/en/futures/#public-klinebin-channel
937
+ :see: https://developer-pro.bitmart.com/en/futuresv2/#public-klinebin-channel
937
938
  watches historical candlestick data containing the open, high, low, and close price, and the volume of a market
938
939
  :param str symbol: unified symbol of the market to fetch OHLCV data for
939
940
  :param str timeframe: the length of time each candle represents
@@ -1049,7 +1050,7 @@ class bitmart(ccxt.async_support.bitmart):
1049
1050
  """
1050
1051
  :see: https://developer-pro.bitmart.com/en/spot/#public-depth-all-channel
1051
1052
  :see: https://developer-pro.bitmart.com/en/spot/#public-depth-increase-channel
1052
- :see: https://developer-pro.bitmart.com/en/futures/#public-depth-channel
1053
+ :see: https://developer-pro.bitmart.com/en/futuresv2/#public-depth-channel
1053
1054
  watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
1054
1055
  :param str symbol: unified symbol of the market to fetch the order book for
1055
1056
  :param int [limit]: the maximum amount of order book entries to return
ccxt/pro/bybit.py CHANGED
@@ -170,7 +170,7 @@ class bybit(ccxt.async_support.bybit):
170
170
  else:
171
171
  if isSpot:
172
172
  url = url[accessibility]['spot']
173
- elif type == 'swap':
173
+ elif (type == 'swap') or (type == 'future'):
174
174
  subType = None
175
175
  subType, params = self.handle_sub_type_and_params(method, market, params, 'linear')
176
176
  url = url[accessibility][subType]
@@ -1923,7 +1923,7 @@ class bybit(ccxt.async_support.bybit):
1923
1923
  if event == 'sub':
1924
1924
  self.handle_subscription_status(client, message)
1925
1925
  return
1926
- topic = self.safe_string_2(message, 'topic', 'op')
1926
+ topic = self.safe_string_2(message, 'topic', 'op', '')
1927
1927
  methods: dict = {
1928
1928
  'orderbook': self.handle_order_book,
1929
1929
  'kline': self.handle_ohlcv,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ccxt
3
- Version: 4.3.75
3
+ Version: 4.3.76
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
@@ -270,13 +270,13 @@ console.log(version, Object.keys(exchanges));
270
270
 
271
271
  All-in-one browser bundle (dependencies included), served from a CDN of your choice:
272
272
 
273
- * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.75/dist/ccxt.browser.min.js
274
- * unpkg: https://unpkg.com/ccxt@4.3.75/dist/ccxt.browser.min.js
273
+ * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.76/dist/ccxt.browser.min.js
274
+ * unpkg: https://unpkg.com/ccxt@4.3.76/dist/ccxt.browser.min.js
275
275
 
276
276
  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.
277
277
 
278
278
  ```HTML
279
- <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.75/dist/ccxt.browser.min.js"></script>
279
+ <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.76/dist/ccxt.browser.min.js"></script>
280
280
  ```
281
281
 
282
282
  Creates a global `ccxt` object:
@@ -1,4 +1,4 @@
1
- ccxt/__init__.py,sha256=6pee9RqKKApaMkQYarP2CjEiCZ9owi1k6V1LexzneVU,16417
1
+ ccxt/__init__.py,sha256=7NXNU4aSYrtHN1SckR2b-jnBky-s37Nq8JIQMOkqwoU,16417
2
2
  ccxt/ace.py,sha256=Gee4ymA83iAuBFm3J8NaTb7qmu9buV2trA676KCtSVg,42383
3
3
  ccxt/alpaca.py,sha256=HQuhQZSFGRlT-BaCUSEZmxpzYp6tll2zn63qn3gTmoU,47470
4
4
  ccxt/ascendex.py,sha256=4aEwibO_me6khr66z8JFqDBxe2gtFOWIFBE7ulBEJPs,151933
@@ -19,7 +19,7 @@ ccxt/bitfinex2.py,sha256=m1PXKkM7tDf-ud-dmyqqYMF942IO3U0Du7AS3iVx-GU,160641
19
19
  ccxt/bitflyer.py,sha256=biQ8-J_HSb9_S6HE1LBDd6BGpIZSMxK5JyTZ3Xg1SdI,41683
20
20
  ccxt/bitget.py,sha256=PmxXOKJA_fc_IehPm0cNa-fwCSdz1PnH6SHZm7BMgxk,424558
21
21
  ccxt/bithumb.py,sha256=RX86U1rLrNwziswg6yPjSPzsqLau3_BwmVJZLNxjFnE,47837
22
- ccxt/bitmart.py,sha256=tuosYE1xi_GkOFfd4lJd07kgENmKfgdreHJDXnprcq0,208460
22
+ ccxt/bitmart.py,sha256=585kWTjfMbRiIHGQGH7M4DH7qJCQ9MY9upbIvJs2b6Y,211736
23
23
  ccxt/bitmex.py,sha256=oOFatIOxvXIPOdOeeVau-IdryOeYpdCtTPGxX05HA9A,126861
24
24
  ccxt/bitopro.py,sha256=0m104rrKQXuXa3dThHGgqq0leIIcdN_nQTR3a9YJLLM,69322
25
25
  ccxt/bitpanda.py,sha256=aiwPkx9lKbVzt4ggoYdq_mIbMGtg5ZtGl2yRHO5xyz8,471
@@ -37,7 +37,7 @@ ccxt/btcmarkets.py,sha256=0gMC0vvmuDJwcnllHMUZsQRV6QWA1-Cbq1N1F9rIUW8,52697
37
37
  ccxt/btcturk.py,sha256=bQ8sJq5iEj9oq2R17uDadPWKcnIQG8id5UmdlpHfFy8,36992
38
38
  ccxt/bybit.py,sha256=zEJyvXcg9yzThLuLyDSX7A_mMB1Vp-jT59yo0hGOMyQ,417211
39
39
  ccxt/cex.py,sha256=YQtARIBP7cY3y-AqRarEH_mVh7_ftt18jLebhpL3hxQ,70084
40
- ccxt/coinbase.py,sha256=OLcnNdnOxnbTY54BEvptJCysDBU3ZZGw6eJcHalaFFc,217105
40
+ ccxt/coinbase.py,sha256=3L5CDWhg4MQlDkdZnuJxxOjmsWEh-gnqcV4R6nCq7rg,217483
41
41
  ccxt/coinbaseadvanced.py,sha256=d5g6nRx-NCcCwZDdtp8FsI2D-pRjSvnAP9ISSKY_nCQ,538
42
42
  ccxt/coinbaseexchange.py,sha256=DK8GJ5Xb6G6Hf-UkxG1j09RMeQRqeZlXIMwTum-Xu4w,78907
43
43
  ccxt/coinbaseinternational.py,sha256=86zQOXD8CLDI3MpBtmpbQsmtUzk-pBdrg8HM_NCCer4,97440
@@ -58,11 +58,11 @@ ccxt/exmo.py,sha256=KlQqGZey31br-SVwhQg6mWIESyeM_wiIKRDOzIekuSs,114638
58
58
  ccxt/fmfwio.py,sha256=RbVLvzPwnqfDsE7Ea-N13ISCC82eJVPsXYjrleASmew,1236
59
59
  ccxt/gate.py,sha256=1giHmuVDpdpS6wGMVjIoeRnrSO4Ay4CIXdny5VyyEcM,327567
60
60
  ccxt/gateio.py,sha256=86AETJWODl_vA5VNeQRHZprmpNIY1HAxCddKZcnKSi8,445
61
- ccxt/gemini.py,sha256=6dMbdLFa4GFjhvXprqj8kugg2Bclh5EuZ8FxZSK-zpQ,80837
61
+ ccxt/gemini.py,sha256=ddoOnPZzu-l899JGVw4b9wwT9HI20mVqLz7iihhZxng,80876
62
62
  ccxt/hitbtc.py,sha256=iqyd0otbWmIHUJiJ6gzIfe34IOa8PCEeS8nG6s6Ogc0,153398
63
63
  ccxt/hitbtc3.py,sha256=qRAr4Zvaju9IQWRZUohdoN7xRnzIMPq8AyYb3gPv-Is,455
64
64
  ccxt/hollaex.py,sha256=2KIbenZ3vcBDN_rs2CxG5_foKLaYxJd73vVV7M8n_8E,76140
65
- ccxt/htx.py,sha256=wrLgsowQRre6HAAlxQjM8kJrHRiq_mRy_jMr7S82vTk,427487
65
+ ccxt/htx.py,sha256=X4A5SVzO1wPzbxK5OHG_u67ewOqj-xtb5YIkl1tSG_c,427883
66
66
  ccxt/huobi.py,sha256=4vaG7IRN7fyjaJ_ac6S-njlHOfSEN5de7aq0noznxYw,438
67
67
  ccxt/huobijp.py,sha256=DPg9DkSTrsFZt8bCnGcodfPPCWMKRAFyh6ti9iNU3VE,90183
68
68
  ccxt/hyperliquid.py,sha256=r_xDktfiSdLDbxwkN_vCKSAu4n9uPyKVlWio-ligUms,109612
@@ -129,7 +129,7 @@ ccxt/abstract/bitfinex2.py,sha256=82sdkbjDb6D2JePGAa2yYwApDwdeF9Tvlo-hWB2ZUBs,19
129
129
  ccxt/abstract/bitflyer.py,sha256=3ngG1GJJCNMzYMWoNXCEEgLxmTl7eRf7_JU4M0P2rqo,3576
130
130
  ccxt/abstract/bitget.py,sha256=ELBdc4MCJ1eOLDQKFCXhGlogRO_RgYU2YDS87Flv-5k,90490
131
131
  ccxt/abstract/bithumb.py,sha256=GR7QJ6CwTBne59SaGRVj9Rdz_zecG-8imRWX7oe6MoQ,3443
132
- ccxt/abstract/bitmart.py,sha256=na4h3TMYEzn_zqZePdVXD6CjQAy0BharXPSWtfem74w,14461
132
+ ccxt/abstract/bitmart.py,sha256=ZeIWkTJro16K4p2ECafShr347hbg5-FvjHFx3b2DiNY,14820
133
133
  ccxt/abstract/bitmex.py,sha256=v15OP-vSO_eotD6KVf1BgKrbPxCPl2eXXYIuzWF1dl4,10774
134
134
  ccxt/abstract/bitopro.py,sha256=KCWuN9bc4W2fWIbWL_OboHc5DtbCjXXLnd23gYl9r3s,3295
135
135
  ccxt/abstract/bitpanda.py,sha256=TtJq4d44lrutV8wcK0lX4v0EfQ72ly6fxR-zB7-FSuI,3859
@@ -168,7 +168,7 @@ ccxt/abstract/exmo.py,sha256=yq9zis5G9Qjsecs-YSHAghDjad6y52jFteWSBJZFg8o,6177
168
168
  ccxt/abstract/fmfwio.py,sha256=OTBtNu3DQeAqAC_Lbi0NePUs-ZQQllcLrVDI2G04nwQ,15601
169
169
  ccxt/abstract/gate.py,sha256=IbxOrYOb0dwsh4itELNcJXaF0jrwyPRcC3VX-BYmMjA,41994
170
170
  ccxt/abstract/gateio.py,sha256=IbxOrYOb0dwsh4itELNcJXaF0jrwyPRcC3VX-BYmMjA,41994
171
- ccxt/abstract/gemini.py,sha256=6TyBUDw-e4b02J5ToCX0eaXQfF0Knvkf7ToLcseqcIY,6915
171
+ ccxt/abstract/gemini.py,sha256=xmvbbzRylYVFn6B7EvSAm5cO75IFRCHQI5v9jGyhgoM,7014
172
172
  ccxt/abstract/hitbtc.py,sha256=OTBtNu3DQeAqAC_Lbi0NePUs-ZQQllcLrVDI2G04nwQ,15601
173
173
  ccxt/abstract/hitbtc3.py,sha256=OTBtNu3DQeAqAC_Lbi0NePUs-ZQQllcLrVDI2G04nwQ,15601
174
174
  ccxt/abstract/hollaex.py,sha256=-X4QUFc6t9jRO1ahUJGCwEkslYzLqHlnotK0oHNmjgQ,2906
@@ -218,7 +218,7 @@ ccxt/abstract/xt.py,sha256=JkWvsic3L2O968BCr9H5Wd5NIbRE9aTT2A-9WbAtl0c,27146
218
218
  ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
219
219
  ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
220
220
  ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
221
- ccxt/async_support/__init__.py,sha256=LpaAtjWl7sDgEpQgXSdVVVHuIGV4HvoP1ogmEL_P3Lw,16230
221
+ ccxt/async_support/__init__.py,sha256=iqOt4qXg8MxeMr-Kb1oiSNVw45qZT7jtOjkeTdxKVXs,16230
222
222
  ccxt/async_support/ace.py,sha256=zBmLUKH691a2BH1sPzlJPg-uO7lD6Ys92Rv8WSzNtoo,42607
223
223
  ccxt/async_support/alpaca.py,sha256=495vDvdF1IWlsh9QhUnMtkMuINdD0EzeFGlUVqCf8TE,47682
224
224
  ccxt/async_support/ascendex.py,sha256=LK259BdUqU0_STGRH6DmTgaR-7lXqFpZHFVACf2um5c,152721
@@ -239,7 +239,7 @@ ccxt/async_support/bitfinex2.py,sha256=vTO61ELmw5d8A7xvmINff17pCWpoiIrVnc_RJzVic
239
239
  ccxt/async_support/bitflyer.py,sha256=hIrGMxaM78V1i-gHN2FRFAhI2aaLR21mPAoIE33fW70,41991
240
240
  ccxt/async_support/bitget.py,sha256=BT4wkYizx3UF5m0wRv0f0QVqrle2y5JXLPQD73uSjc8,426182
241
241
  ccxt/async_support/bithumb.py,sha256=fDOmllkudoQ0NzTQtxwObija7ptc49m19K_1KDN9HZk,48116
242
- ccxt/async_support/bitmart.py,sha256=MnSuMOBAiw2q3OhVw79zRraIvyVVyEkEVEh4NFVuT20,209416
242
+ ccxt/async_support/bitmart.py,sha256=WK1nKIApqc8qq6_80_gDywedQeuPqmgPr1G9j89Plx4,212692
243
243
  ccxt/async_support/bitmex.py,sha256=qSKH_dXDtpY5BUrLUbESI3a3WQhBFrc1ucv1N5GDuIU,127439
244
244
  ccxt/async_support/bitopro.py,sha256=HHESL0hiE0Rc0GRhFeIKnTs-eBzHEtOqqECANTSp0e0,69726
245
245
  ccxt/async_support/bitpanda.py,sha256=2k3URBWrpnh2xHa7JiYenI7_4MW5UeOPGzetlmRkR4U,485
@@ -257,7 +257,7 @@ ccxt/async_support/btcmarkets.py,sha256=x1-s5uVioHyvNJoBxhxP8eUUslTDwQnZMU0FWfu1
257
257
  ccxt/async_support/btcturk.py,sha256=P3bg0XG0sAi-8ge9ZFzQqZHsoGOGfxBjkhIDo4VPSK4,37210
258
258
  ccxt/async_support/bybit.py,sha256=mZrB9aMLE2FyWsVlVui0pBqRhm_lWXjNkYAYUBzhEoM,419081
259
259
  ccxt/async_support/cex.py,sha256=5KZ9qt4WsUAkH2rkHn7zW7SwlB9FumruLELdKF4LFoE,70434
260
- ccxt/async_support/coinbase.py,sha256=RMcQFh7tSzTe8QqFaz9WmH2Op8sXD8jWpZfLBt_13QQ,218259
260
+ ccxt/async_support/coinbase.py,sha256=Ch_hFo2zj0qp4kuDUnebGD16pUeKs6h3HJxs5Fdpkco,218637
261
261
  ccxt/async_support/coinbaseadvanced.py,sha256=Kupwnuxiu_qTjwCNV2asacoDUNFQvcaHNAznUJPhdQs,552
262
262
  ccxt/async_support/coinbaseexchange.py,sha256=oJKFrv_bwjwyOGnTprrOoTsUToavrH4f0sTwQlEqZgc,79413
263
263
  ccxt/async_support/coinbaseinternational.py,sha256=d_xWWicD-Zya2BT0YaKmr9Nrl4XbUfWOUe1FWUIXnQo,98054
@@ -278,11 +278,11 @@ ccxt/async_support/exmo.py,sha256=uVJsy3mfNLpfbY0ndl2EF9hipUylEw8J58J3wCGyyA0,11
278
278
  ccxt/async_support/fmfwio.py,sha256=lzfSnPrB2ARcC3EIqAuBM4vyg6LJ6n8RE71Zvt3ez1s,1250
279
279
  ccxt/async_support/gate.py,sha256=3yuiDnxSW2zjMTIaIkvJsM-uVbUsOWV4JK6yQggSNEM,329287
280
280
  ccxt/async_support/gateio.py,sha256=6_t032F9p9x5KGTjtSuqGXITzFOx-XAQBYLpsuQjzxw,459
281
- ccxt/async_support/gemini.py,sha256=197OkPq1ndBA27J3fKqFY3iMJ_8W-Iu6Af0wNGqvO7I,81350
281
+ ccxt/async_support/gemini.py,sha256=7X5-PE3rPrPycUVXu3FtAcDFjNR3QUwYd6lPRQYQeEw,81389
282
282
  ccxt/async_support/hitbtc.py,sha256=jWmyRAy_wkpEidgjCxU0gWur99YJjYHPjD9CN4vJbUE,154444
283
283
  ccxt/async_support/hitbtc3.py,sha256=dmSYoD2o4av_zzbZI8HNIoj8BWxA7QozsVpy8JaOXzU,469
284
284
  ccxt/async_support/hollaex.py,sha256=msUnnbWLNeCxFW77BnfLoFWBdvQIDwV7Rtbi9TA4TYY,76574
285
- ccxt/async_support/htx.py,sha256=TjGp3JCN40B1mKD5U9bbo0kJceL0etS0A0fKclX5CvY,429879
285
+ ccxt/async_support/htx.py,sha256=pPdetpi1Y2bHxNIXrFO9VDgMOra0v8Y2hggVbe2Qzdk,430275
286
286
  ccxt/async_support/huobi.py,sha256=fup0j6wQ1khAtfbb1H4CSyJAOzhxuoHMmrM6sgTuhr8,452
287
287
  ccxt/async_support/huobijp.py,sha256=e4vfgX8c9eTLZk6bOrB8_Upq13PLDjTLiR109Pj4phM,90683
288
288
  ccxt/async_support/hyperliquid.py,sha256=wFj9yXEojlPWK4JT6aOWFI08P9EwkWT9m7FurqiusqQ,110168
@@ -329,7 +329,7 @@ ccxt/async_support/yobit.py,sha256=JuH_yClCl_cd5L-BMTt3MPAvIF61Wpqc3W7H-fno6Hs,5
329
329
  ccxt/async_support/zaif.py,sha256=-ZTr8M2JaIRCL90VrbCDXBMAsZwbiwsFChSQ2rWODuQ,29044
330
330
  ccxt/async_support/zonda.py,sha256=jncr6Wg12S72CTpu6mCKCse1pm1f8oefVQurQSrFvP0,81733
331
331
  ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
332
- ccxt/async_support/base/exchange.py,sha256=eONOGxmrwyPqunsEUMLRtOnTSMQtdRw3WLwm-K3I7ww,110793
332
+ ccxt/async_support/base/exchange.py,sha256=rXmbC5kt6GClBLjjqze_Flox5FpnM4quLCY3eKlussc,110799
333
333
  ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
334
334
  ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
335
335
  ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
@@ -343,14 +343,14 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
343
343
  ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
344
344
  ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
345
345
  ccxt/base/errors.py,sha256=tosnf1tDaBn4YMCbWVNWyDYzqft-ImVtyjqJb6q83Y4,4369
346
- ccxt/base/exchange.py,sha256=WXplpZSEHeNGUS-8jLQ1sgkEXc31-FBOpGK4w1JLpkk,294200
346
+ ccxt/base/exchange.py,sha256=lCrQq9-iW4vBPMUaPrp1G6uPt7Mpdqh7-m0LnaKARK4,294287
347
347
  ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
348
348
  ccxt/base/types.py,sha256=TaP_RElKjGEZWuzyp4o4u2YhREyTG3rUeVT6gDffY9A,9613
349
- ccxt/pro/__init__.py,sha256=Tg-BBQCqFO6ZrCXyqgZzCLqIDutxP9AAbYq0iCP2LTs,7608
349
+ ccxt/pro/__init__.py,sha256=eRbQaVbyAcsfNMjkqPvFpIgYYZggjoVzwoGesDgb8i0,7608
350
350
  ccxt/pro/alpaca.py,sha256=xh1yg1Ok-Zh_Mfx-MBjNrfJDs6MUU0exFfEj3GuQPC4,27631
351
351
  ccxt/pro/ascendex.py,sha256=181FIeztchLqGmgecRJEN8F8xEM45D5aMKhC-5nuNfU,35467
352
352
  ccxt/pro/bequant.py,sha256=33OEUWBi4D9-2w8CmkwN3aF1qS-AlLqX3pxrWwNbXPY,1552
353
- ccxt/pro/binance.py,sha256=3xB2V7DJ6Y5SR7nr9loh03-j7c3KQdK3_Dcm1KYJTBo,175118
353
+ ccxt/pro/binance.py,sha256=9wZoA6DZ50oLbKEiTGN3mhJkiVbh0DFVvsZiBxQ1rrE,177352
354
354
  ccxt/pro/binancecoinm.py,sha256=LlgF4rXHHrsQMaklhTEzSiE6U9V25AjHHg_DRat7Mf0,1036
355
355
  ccxt/pro/binanceus.py,sha256=_IXpS_wyH0nEtsLR7cJLtrUlsNQoG0MSUVo3PV0RDDc,1946
356
356
  ccxt/pro/binanceusdm.py,sha256=lLdOv0d-lM-1wfCc_y_POb6GdmVIiX7PFzmKTWsVyNw,1512
@@ -360,7 +360,7 @@ ccxt/pro/bitfinex.py,sha256=m4ERTUt7QIZhAYu8NP818wOHSLRi2vK-_Z5-LXD8zjA,25257
360
360
  ccxt/pro/bitfinex2.py,sha256=kZVHZwfu1_E27p9Cx55uDVGcEPA6Oy-BQk8t2fbwOmg,43058
361
361
  ccxt/pro/bitget.py,sha256=15JcegpMeu1HROmDtuTP3WmUw3lEoV4TYjBfWAWnCkk,74754
362
362
  ccxt/pro/bithumb.py,sha256=dqYKWebxFg4rsP7jg3oBnCUBcpZAoqAmZsozAU9pYds,16835
363
- ccxt/pro/bitmart.py,sha256=oH3Ygti8RhRFxK0g6QO6yxTZKMmxbzuZjncwkDYeFkI,62441
363
+ ccxt/pro/bitmart.py,sha256=LxcP6aiCdwN-euseCMhsXZkhqesPJM-eLh549sGHHfo,62556
364
364
  ccxt/pro/bitmex.py,sha256=dNQf2EAim7kxgCM6I1TgFDl-e2zrXa2veicTEqu8WbQ,73949
365
365
  ccxt/pro/bitopro.py,sha256=2pCutMnav21uVEkqjUhrI80opxW5NWUkn2IK9-Y2hNQ,18750
366
366
  ccxt/pro/bitpanda.py,sha256=ELrhfFKN9YJJdmm9wBf-vpk6WsXGWGf-SyJdqm-E_Lg,415
@@ -369,7 +369,7 @@ ccxt/pro/bitstamp.py,sha256=P8Td5HqWiO6GMdLj-cKqPTZD28fltWlZQ7Z-omDbO60,20916
369
369
  ccxt/pro/bitvavo.py,sha256=POivGXYmz8GqYc_uErpS6BdG2Gv087BStiJ3lQwod-A,56219
370
370
  ccxt/pro/blockchaincom.py,sha256=LtCL3habcuB2IRXXK_oeqdzqpnkj01Gr79X82nK8Mnk,29600
371
371
  ccxt/pro/blofin.py,sha256=Wjw0coQ4TO1qdVVnBGSdRDVtADsl-t-hkOo-uEDZTbc,28659
372
- ccxt/pro/bybit.py,sha256=6S7W3eDRHaqsNd1rtxSE4CrQH_LuBWNQPfUdUBRuHII,90960
372
+ ccxt/pro/bybit.py,sha256=sfqwhwGzkD-Vw4Rd2Ci5vw5sEDORooFlRnkCQSs7BhA,90988
373
373
  ccxt/pro/cex.py,sha256=SFgOQmXEfuKodIzN_dISZ_iqU46B2TbVPFSXNbO7cY4,58493
374
374
  ccxt/pro/coinbase.py,sha256=hwd8lUuaW8WyQQOh9WvBVuiuOJTpmlCXU0hL3UE8UFQ,31411
375
375
  ccxt/pro/coinbaseexchange.py,sha256=eoDBwYvGK__zGtC0yNRk2evWwQAD6XpjMHcpubjBt2U,39027
@@ -650,8 +650,8 @@ ccxt/test/tests_async.py,sha256=NShOLO2-HzYsh07U7aiUGssiv-AZ_p88h-NuQub9OKU,8468
650
650
  ccxt/test/tests_helpers.py,sha256=xhOILoZ_x3RSfQjtKt6AQlkp9DkOtpTQe8GAUUZoM6s,10069
651
651
  ccxt/test/tests_init.py,sha256=eVwwUHujX9t4rjgo4TqEeg7DDhR1Hb_e2SJN8NVGyl0,998
652
652
  ccxt/test/tests_sync.py,sha256=6Arr2TcJpNg9eEpH_JQeBbLzaMPlb94J1P11HGlbpPg,83761
653
- ccxt-4.3.75.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
654
- ccxt-4.3.75.dist-info/METADATA,sha256=NGlZWEOeSRX2NXUD7MDxrR9NVRfaR62fo__boi_tiSs,116642
655
- ccxt-4.3.75.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
656
- ccxt-4.3.75.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
657
- ccxt-4.3.75.dist-info/RECORD,,
653
+ ccxt-4.3.76.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
654
+ ccxt-4.3.76.dist-info/METADATA,sha256=s-ekwAwF9ub0CKDiJdxyGcFwWpjok5wiNe3qUhyUTFU,116642
655
+ ccxt-4.3.76.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
656
+ ccxt-4.3.76.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
657
+ ccxt-4.3.76.dist-info/RECORD,,
File without changes