web3 7.11.1__py3-none-any.whl → 7.12.1__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.
@@ -13,10 +13,6 @@ from typing import (
13
13
  Union,
14
14
  )
15
15
 
16
- from eth_utils.toolz import (
17
- compose,
18
- )
19
-
20
16
  from web3._utils.batching import (
21
17
  BATCH_REQUEST_ID,
22
18
  )
@@ -128,7 +124,9 @@ class RequestProcessor:
128
124
  if cache_key in self._request_information_cache:
129
125
  self._provider.logger.debug(
130
126
  "This is a cached request, not caching request info because it is "
131
- f"not unique:\n method={method},\n params={params}"
127
+ "not unique:\n method=%s,\n params=%s",
128
+ method,
129
+ params,
132
130
  )
133
131
  return None
134
132
 
@@ -137,9 +135,6 @@ class RequestProcessor:
137
135
  raise Web3ValueError(
138
136
  "Request id must be provided when not batching requests."
139
137
  )
140
- # the _batch_request_counter is set when entering the context manager
141
- request_id = self._provider._batch_request_counter
142
- self._provider._batch_request_counter += 1
143
138
 
144
139
  cache_key = generate_cache_key(request_id)
145
140
  request_info = RequestInformation(
@@ -148,8 +143,11 @@ class RequestProcessor:
148
143
  response_formatters,
149
144
  )
150
145
  self._provider.logger.debug(
151
- f"Caching request info:\n request_id={request_id},\n"
152
- f" cache_key={cache_key},\n request_info={request_info.__dict__}"
146
+ "Caching request info:\n request_id=%s,\n"
147
+ " cache_key=%s,\n request_info=%s",
148
+ request_id,
149
+ cache_key,
150
+ request_info.__dict__,
153
151
  )
154
152
  self._request_information_cache.cache(
155
153
  cache_key,
@@ -170,7 +168,9 @@ class RequestProcessor:
170
168
  if request_info is not None:
171
169
  self._provider.logger.debug(
172
170
  "Request info popped from cache:\n"
173
- f" cache_key={cache_key},\n request_info={request_info.__dict__}"
171
+ " cache_key=%s,\n request_info=%s",
172
+ cache_key,
173
+ request_info.__dict__,
174
174
  )
175
175
  return request_info
176
176
 
@@ -224,33 +224,6 @@ class RequestProcessor:
224
224
 
225
225
  return request_info
226
226
 
227
- def append_result_formatter_for_request(
228
- self, request_id: int, result_formatter: Callable[..., Any]
229
- ) -> None:
230
- cache_key = generate_cache_key(request_id)
231
- cached_request_info_for_id: RequestInformation = (
232
- self._request_information_cache.get_cache_entry(cache_key)
233
- )
234
- if cached_request_info_for_id is not None:
235
- (
236
- current_result_formatters,
237
- error_formatters,
238
- null_result_formatters,
239
- ) = cached_request_info_for_id.response_formatters
240
- cached_request_info_for_id.response_formatters = (
241
- compose(
242
- result_formatter,
243
- current_result_formatters,
244
- ),
245
- error_formatters,
246
- null_result_formatters,
247
- )
248
- else:
249
- self._provider.logger.debug(
250
- f"No cached request info for response id `{request_id}`. Cannot "
251
- f"append response formatter for response."
252
- )
253
-
254
227
  def append_middleware_response_processor(
255
228
  self,
256
229
  response: RPCResponse,
@@ -269,13 +242,16 @@ class RequestProcessor:
269
242
  )
270
243
  else:
271
244
  self._provider.logger.debug(
272
- f"No cached request info for response id `{response_id}`. Cannot "
273
- f"append middleware response processor for response: {response}"
245
+ "No cached request info for response id `%s`. Cannot "
246
+ "append middleware response processor for response: %s",
247
+ response_id,
248
+ response,
274
249
  )
275
250
  else:
276
251
  self._provider.logger.debug(
277
252
  "No response `id` in response. Cannot append middleware response "
278
- f"processor for response: {response}"
253
+ "processor for response: %s",
254
+ response,
279
255
  )
280
256
 
281
257
  # raw response cache
@@ -302,7 +278,7 @@ class RequestProcessor:
302
278
  await self._provider._listen_event.wait()
303
279
 
304
280
  self._provider.logger.debug(
305
- f"Caching subscription response:\n response={raw_response}"
281
+ "Caching subscription response:\n response=%s", raw_response
306
282
  )
307
283
  subscription_id = raw_response.get("params", {}).get("subscription")
308
284
  sub_container = self._subscription_container
@@ -320,16 +296,20 @@ class RequestProcessor:
320
296
  # constant cache key for the batch response.
321
297
  cache_key = generate_cache_key(BATCH_REQUEST_ID)
322
298
  self._provider.logger.debug(
323
- f"Caching batch response:\n cache_key={cache_key},\n"
324
- f" response={raw_response}"
299
+ "Caching batch response:\n cache_key=%s,\n response=%s",
300
+ cache_key,
301
+ raw_response,
325
302
  )
326
303
  self._request_response_cache.cache(cache_key, raw_response)
327
304
  else:
328
305
  response_id = raw_response.get("id")
329
306
  cache_key = generate_cache_key(response_id)
330
307
  self._provider.logger.debug(
331
- f"Caching response:\n response_id={response_id},\n"
332
- f" cache_key={cache_key},\n response={raw_response}"
308
+ "Caching response:\n response_id=%s,\n"
309
+ " cache_key=%s,\n response=%s",
310
+ response_id,
311
+ cache_key,
312
+ raw_response,
333
313
  )
334
314
  self._request_response_cache.cache(cache_key, raw_response)
335
315
 
@@ -354,13 +334,15 @@ class RequestProcessor:
354
334
  if self._subscription_queue_synced_with_ws_stream:
355
335
  self._subscription_queue_synced_with_ws_stream = False
356
336
  self._provider.logger.info(
357
- f"Subscription response queue has {qsize} subscriptions. "
358
- "Processing as FIFO."
337
+ "Subscription response queue has %s subscriptions. "
338
+ "Processing as FIFO.",
339
+ qsize,
359
340
  )
360
341
 
361
342
  self._provider.logger.debug(
362
343
  "Subscription response popped from queue to be processed:\n"
363
- f" raw_response={raw_response}"
344
+ " raw_response=%s",
345
+ raw_response,
364
346
  )
365
347
  else:
366
348
  if not cache_key:
@@ -372,8 +354,9 @@ class RequestProcessor:
372
354
  if raw_response is not None:
373
355
  self._provider.logger.debug(
374
356
  "Cached response popped from cache to be processed:\n"
375
- f" cache_key={cache_key},\n"
376
- f" raw_response={raw_response}"
357
+ " cache_key=%s,\n raw_response=%s",
358
+ cache_key,
359
+ raw_response,
377
360
  )
378
361
 
379
362
  return raw_response
@@ -123,8 +123,9 @@ class SubscriptionManager:
123
123
  subscriptions._id = sub_id
124
124
  self._add_subscription(subscriptions)
125
125
  self.logger.info(
126
- "Successfully subscribed to subscription:\n "
127
- f"label: {subscriptions.label}\n id: {sub_id}"
126
+ "Successfully subscribed to subscription:\n label: %s\n id: %s",
127
+ subscriptions.label,
128
+ sub_id,
128
129
  )
129
130
  return sub_id
130
131
  elif isinstance(subscriptions, Sequence):
@@ -190,8 +191,10 @@ class SubscriptionManager:
190
191
  if await self._w3.eth._unsubscribe(subscriptions.id):
191
192
  self._remove_subscription(subscriptions)
192
193
  self.logger.info(
193
- "Successfully unsubscribed from subscription:\n "
194
- f"label: {subscriptions.label}\n id: {subscriptions.id}"
194
+ "Successfully unsubscribed from subscription:\n"
195
+ " label: %s\n id: %s",
196
+ subscriptions.label,
197
+ subscriptions.id,
195
198
  )
196
199
 
197
200
  if len(self._subscription_container.handler_subscriptions) == 0:
@@ -208,7 +211,7 @@ class SubscriptionManager:
208
211
  unsubscribed: List[bool] = []
209
212
  # re-create the subscription list to prevent modifying the original list
210
213
  # in case ``subscription_manager.subscriptions`` was passed in directly
211
- subs = [sub for sub in subscriptions]
214
+ subs = list(subscriptions)
212
215
  for sub in subs:
213
216
  if isinstance(sub, str):
214
217
  sub = HexStr(sub)
@@ -216,7 +219,8 @@ class SubscriptionManager:
216
219
  return all(unsubscribed)
217
220
 
218
221
  self.logger.warning(
219
- f"Failed to unsubscribe from subscription\n subscription={subscriptions}"
222
+ "Failed to unsubscribe from subscription\n subscription=%s",
223
+ subscriptions,
220
224
  )
221
225
  return False
222
226
 
@@ -240,7 +244,8 @@ class SubscriptionManager:
240
244
  if len(self.subscriptions) > 0:
241
245
  self.logger.warning(
242
246
  "Failed to unsubscribe from all subscriptions. Some subscriptions "
243
- f"are still active.\n subscriptions={self.subscriptions}"
247
+ "are still active.\n subscriptions=%s",
248
+ self.subscriptions,
244
249
  )
245
250
  return False
246
251
 
@@ -36,7 +36,6 @@ from web3.types import (
36
36
  )
37
37
 
38
38
  from ..._utils.batching import (
39
- async_batching_context,
40
39
  sort_batch_response_by_response_ids,
41
40
  )
42
41
  from ..._utils.caching import (
@@ -156,22 +155,23 @@ class AsyncHTTPProvider(AsyncJSONBaseProvider):
156
155
  @async_handle_request_caching
157
156
  async def make_request(self, method: RPCEndpoint, params: Any) -> RPCResponse:
158
157
  self.logger.debug(
159
- f"Making request HTTP. URI: {self.endpoint_uri}, Method: {method}"
158
+ "Making request HTTP. URI: %s, Method: %s", self.endpoint_uri, method
160
159
  )
161
160
  request_data = self.encode_rpc_request(method, params)
162
161
  raw_response = await self._make_request(method, request_data)
163
162
  response = self.decode_rpc_response(raw_response)
164
163
  self.logger.debug(
165
- f"Getting response HTTP. URI: {self.endpoint_uri}, "
166
- f"Method: {method}, Response: {response}"
164
+ "Getting response HTTP. URI: %s, Method: %s, Response: %s",
165
+ self.endpoint_uri,
166
+ method,
167
+ response,
167
168
  )
168
169
  return response
169
170
 
170
- @async_batching_context
171
171
  async def make_batch_request(
172
172
  self, batch_requests: List[Tuple[RPCEndpoint, Any]]
173
173
  ) -> Union[List[RPCResponse], RPCResponse]:
174
- self.logger.debug(f"Making batch request HTTP - uri: `{self.endpoint_uri}`")
174
+ self.logger.debug("Making batch request HTTP - uri: `%s`", self.endpoint_uri)
175
175
  request_data = self.encode_batch_rpc_request(batch_requests)
176
176
  raw_response = await self._request_session_manager.async_make_post_request(
177
177
  self.endpoint_uri, request_data, **self.get_request_kwargs()
@@ -191,4 +191,4 @@ class AsyncHTTPProvider(AsyncJSONBaseProvider):
191
191
  await session.close()
192
192
  cache.clear()
193
193
 
194
- self.logger.info(f"Successfully disconnected from: {self.endpoint_uri}")
194
+ self.logger.info("Successfully disconnected from: %s", self.endpoint_uri)
web3/providers/rpc/rpc.py CHANGED
@@ -34,7 +34,6 @@ from web3.types import (
34
34
  )
35
35
 
36
36
  from ..._utils.batching import (
37
- batching_context,
38
37
  sort_batch_response_by_response_ids,
39
38
  )
40
39
  from ..._utils.caching import (
@@ -164,22 +163,23 @@ class HTTPProvider(JSONBaseProvider):
164
163
  @handle_request_caching
165
164
  def make_request(self, method: RPCEndpoint, params: Any) -> RPCResponse:
166
165
  self.logger.debug(
167
- f"Making request HTTP. URI: {self.endpoint_uri}, Method: {method}"
166
+ "Making request HTTP. URI: %s, Method: %s", self.endpoint_uri, method
168
167
  )
169
168
  request_data = self.encode_rpc_request(method, params)
170
169
  raw_response = self._make_request(method, request_data)
171
170
  response = self.decode_rpc_response(raw_response)
172
171
  self.logger.debug(
173
- f"Getting response HTTP. URI: {self.endpoint_uri}, "
174
- f"Method: {method}, Response: {response}"
172
+ "Getting response HTTP. URI: %s, Method: %s, Response: %s",
173
+ self.endpoint_uri,
174
+ method,
175
+ response,
175
176
  )
176
177
  return response
177
178
 
178
- @batching_context
179
179
  def make_batch_request(
180
180
  self, batch_requests: List[Tuple[RPCEndpoint, Any]]
181
181
  ) -> Union[List[RPCResponse], RPCResponse]:
182
- self.logger.debug(f"Making batch request HTTP, uri: `{self.endpoint_uri}`")
182
+ self.logger.debug("Making batch request HTTP, uri: `%s`", self.endpoint_uri)
183
183
  request_data = self.encode_batch_rpc_request(batch_requests)
184
184
  raw_response = self._request_session_manager.make_post_request(
185
185
  self.endpoint_uri, request_data, **self.get_request_kwargs()
@@ -87,10 +87,13 @@ def handler_wrapper(
87
87
  sub.handler_call_count += 1
88
88
  sub.manager.total_handler_calls += 1
89
89
  sub.manager.logger.debug(
90
- f"Subscription handler called.\n"
91
- f" label: {sub.label}\n"
92
- f" call count: {sub.handler_call_count}\n"
93
- f" total handler calls: {sub.manager.total_handler_calls}"
90
+ "Subscription handler called.\n"
91
+ " label: %s\n"
92
+ " call count: %s\n"
93
+ " total handler calls: %s",
94
+ sub.label,
95
+ sub.handler_call_count,
96
+ sub.manager.total_handler_calls,
94
97
  )
95
98
  await handler(context)
96
99
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: web3
3
- Version: 7.11.1
3
+ Version: 7.12.1
4
4
  Summary: web3: A Python library for interacting with Ethereum
5
5
  Home-page: https://github.com/ethereum/web3.py
6
6
  Author: The Ethereum Foundation
@@ -21,63 +21,76 @@ Classifier: Programming Language :: Python :: 3.13
21
21
  Requires-Python: >=3.8, <4
22
22
  Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
- Requires-Dist: eth-abi >=5.0.1
25
- Requires-Dist: eth-account >=0.13.6
26
- Requires-Dist: eth-hash[pycryptodome] >=0.5.1
27
- Requires-Dist: eth-typing >=5.0.0
28
- Requires-Dist: eth-utils >=5.0.0
29
- Requires-Dist: hexbytes >=1.2.0
30
- Requires-Dist: aiohttp >=3.7.4.post0
31
- Requires-Dist: pydantic >=2.4.0
32
- Requires-Dist: requests >=2.23.0
33
- Requires-Dist: typing-extensions >=4.0.1
34
- Requires-Dist: types-requests >=2.0.0
35
- Requires-Dist: websockets <16.0.0,>=10.0.0
36
- Requires-Dist: pyunormalize >=15.0.0
37
- Requires-Dist: pywin32 >=223 ; platform_system == "Windows"
24
+ Requires-Dist: eth-abi>=5.0.1
25
+ Requires-Dist: eth-account>=0.13.6
26
+ Requires-Dist: eth-hash[pycryptodome]>=0.5.1
27
+ Requires-Dist: eth-typing>=5.0.0
28
+ Requires-Dist: eth-utils>=5.0.0
29
+ Requires-Dist: hexbytes>=1.2.0
30
+ Requires-Dist: aiohttp>=3.7.4.post0
31
+ Requires-Dist: pydantic>=2.4.0
32
+ Requires-Dist: pywin32>=223; platform_system == "Windows"
33
+ Requires-Dist: requests>=2.23.0
34
+ Requires-Dist: typing-extensions>=4.0.1
35
+ Requires-Dist: types-requests>=2.0.0
36
+ Requires-Dist: websockets<16.0.0,>=10.0.0
37
+ Requires-Dist: pyunormalize>=15.0.0
38
+ Provides-Extra: tester
39
+ Requires-Dist: eth-tester[py-evm]<0.14.0b1,>=0.13.0b1; extra == "tester"
40
+ Requires-Dist: py-geth>=5.1.0; extra == "tester"
38
41
  Provides-Extra: dev
39
- Requires-Dist: build >=0.9.0 ; extra == 'dev'
40
- Requires-Dist: bump-my-version >=0.19.0 ; extra == 'dev'
41
- Requires-Dist: ipython ; extra == 'dev'
42
- Requires-Dist: setuptools >=38.6.0 ; extra == 'dev'
43
- Requires-Dist: tqdm >4.32 ; extra == 'dev'
44
- Requires-Dist: twine >=1.13 ; extra == 'dev'
45
- Requires-Dist: wheel ; extra == 'dev'
46
- Requires-Dist: sphinx >=6.0.0 ; extra == 'dev'
47
- Requires-Dist: sphinx-autobuild >=2021.3.14 ; extra == 'dev'
48
- Requires-Dist: sphinx-rtd-theme >=1.0.0 ; extra == 'dev'
49
- Requires-Dist: towncrier <25,>=24 ; extra == 'dev'
50
- Requires-Dist: pytest-asyncio <0.23,>=0.18.1 ; extra == 'dev'
51
- Requires-Dist: pytest-mock >=1.10 ; extra == 'dev'
52
- Requires-Dist: pytest-xdist >=2.4.0 ; extra == 'dev'
53
- Requires-Dist: pytest >=7.0.0 ; extra == 'dev'
54
- Requires-Dist: flaky >=3.7.0 ; extra == 'dev'
55
- Requires-Dist: hypothesis >=3.31.2 ; extra == 'dev'
56
- Requires-Dist: tox >=4.0.0 ; extra == 'dev'
57
- Requires-Dist: mypy ==1.10.0 ; extra == 'dev'
58
- Requires-Dist: pre-commit >=3.4.0 ; extra == 'dev'
59
- Requires-Dist: eth-tester[py-evm] <0.14.0b1,>=0.13.0b1 ; extra == 'dev'
60
- Requires-Dist: py-geth >=5.1.0 ; extra == 'dev'
42
+ Requires-Dist: build>=0.9.0; extra == "dev"
43
+ Requires-Dist: bump_my_version>=0.19.0; extra == "dev"
44
+ Requires-Dist: ipython; extra == "dev"
45
+ Requires-Dist: setuptools>=38.6.0; extra == "dev"
46
+ Requires-Dist: tqdm>4.32; extra == "dev"
47
+ Requires-Dist: twine>=1.13; extra == "dev"
48
+ Requires-Dist: wheel; extra == "dev"
49
+ Requires-Dist: sphinx>=6.0.0; extra == "dev"
50
+ Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "dev"
51
+ Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "dev"
52
+ Requires-Dist: towncrier<25,>=24; extra == "dev"
53
+ Requires-Dist: pytest-asyncio<0.23,>=0.18.1; extra == "dev"
54
+ Requires-Dist: pytest-mock>=1.10; extra == "dev"
55
+ Requires-Dist: pytest-xdist>=2.4.0; extra == "dev"
56
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
57
+ Requires-Dist: flaky>=3.7.0; extra == "dev"
58
+ Requires-Dist: hypothesis>=3.31.2; extra == "dev"
59
+ Requires-Dist: tox>=4.0.0; extra == "dev"
60
+ Requires-Dist: mypy==1.10.0; extra == "dev"
61
+ Requires-Dist: pre-commit>=3.4.0; extra == "dev"
62
+ Requires-Dist: eth-tester[py-evm]<0.14.0b1,>=0.13.0b1; extra == "dev"
63
+ Requires-Dist: py-geth>=5.1.0; extra == "dev"
61
64
  Provides-Extra: docs
62
- Requires-Dist: sphinx >=6.0.0 ; extra == 'docs'
63
- Requires-Dist: sphinx-autobuild >=2021.3.14 ; extra == 'docs'
64
- Requires-Dist: sphinx-rtd-theme >=1.0.0 ; extra == 'docs'
65
- Requires-Dist: towncrier <25,>=24 ; extra == 'docs'
65
+ Requires-Dist: sphinx>=6.0.0; extra == "docs"
66
+ Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
67
+ Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "docs"
68
+ Requires-Dist: towncrier<25,>=24; extra == "docs"
66
69
  Provides-Extra: test
67
- Requires-Dist: pytest-asyncio <0.23,>=0.18.1 ; extra == 'test'
68
- Requires-Dist: pytest-mock >=1.10 ; extra == 'test'
69
- Requires-Dist: pytest-xdist >=2.4.0 ; extra == 'test'
70
- Requires-Dist: pytest >=7.0.0 ; extra == 'test'
71
- Requires-Dist: flaky >=3.7.0 ; extra == 'test'
72
- Requires-Dist: hypothesis >=3.31.2 ; extra == 'test'
73
- Requires-Dist: tox >=4.0.0 ; extra == 'test'
74
- Requires-Dist: mypy ==1.10.0 ; extra == 'test'
75
- Requires-Dist: pre-commit >=3.4.0 ; extra == 'test'
76
- Requires-Dist: eth-tester[py-evm] <0.14.0b1,>=0.13.0b1 ; extra == 'test'
77
- Requires-Dist: py-geth >=5.1.0 ; extra == 'test'
78
- Provides-Extra: tester
79
- Requires-Dist: eth-tester[py-evm] <0.14.0b1,>=0.13.0b1 ; extra == 'tester'
80
- Requires-Dist: py-geth >=5.1.0 ; extra == 'tester'
70
+ Requires-Dist: pytest-asyncio<0.23,>=0.18.1; extra == "test"
71
+ Requires-Dist: pytest-mock>=1.10; extra == "test"
72
+ Requires-Dist: pytest-xdist>=2.4.0; extra == "test"
73
+ Requires-Dist: pytest>=7.0.0; extra == "test"
74
+ Requires-Dist: flaky>=3.7.0; extra == "test"
75
+ Requires-Dist: hypothesis>=3.31.2; extra == "test"
76
+ Requires-Dist: tox>=4.0.0; extra == "test"
77
+ Requires-Dist: mypy==1.10.0; extra == "test"
78
+ Requires-Dist: pre-commit>=3.4.0; extra == "test"
79
+ Requires-Dist: eth-tester[py-evm]<0.14.0b1,>=0.13.0b1; extra == "test"
80
+ Requires-Dist: py-geth>=5.1.0; extra == "test"
81
+ Dynamic: author
82
+ Dynamic: author-email
83
+ Dynamic: classifier
84
+ Dynamic: description
85
+ Dynamic: description-content-type
86
+ Dynamic: home-page
87
+ Dynamic: keywords
88
+ Dynamic: license
89
+ Dynamic: license-file
90
+ Dynamic: provides-extra
91
+ Dynamic: requires-dist
92
+ Dynamic: requires-python
93
+ Dynamic: summary
81
94
 
82
95
  # web3.py
83
96
 
@@ -1,14 +1,15 @@
1
1
  ens/__init__.py,sha256=BtOyGF_JrIpWFTr_T1GCJuUtmZI-Qf-v560uzTWp18E,471
2
2
  ens/_normalization.py,sha256=t_abmu3z2QcTcX6gVaSfdUzz0_E5aGCPvuj0Hftd-Kg,16900
3
3
  ens/abis.py,sha256=0Ec_lqe7HBsVpQrID3ccFMhx8Vb7S0TGFbeuRdXhuCE,34745
4
- ens/async_ens.py,sha256=_nXXutnTdJPomhP5VbROUhFnFu5rLkq4X72xWII-j84,22673
4
+ ens/async_ens.py,sha256=iZJ9AfcF_hcGz-OAVhrttyCqAwbmiUPmR2-5DfPkCTI,22673
5
5
  ens/auto.py,sha256=w_E6Ua5ZmJVxfdii2aG5I_kQG5B9U5Y2qIFKVNhXo98,41
6
6
  ens/base_ens.py,sha256=zn3lIV5-vkBEvdOAIVkE78wwTdJx7VG_fXqQmLJ_j7w,3507
7
7
  ens/constants.py,sha256=XCO4Pntwdnw10K_AZ86V0cqcvdUoOkEZvRqoDdFPE_w,913
8
8
  ens/contract_data.py,sha256=CZa7Uxzq6rT-KonwHHM_wo-5ry0j1DMbikgEaP27Uy8,148602
9
- ens/ens.py,sha256=Es4dNXVhpHPTF1ZN17hmf6VIHb91fKVMCoVnFVo36ZA,21722
9
+ ens/ens.py,sha256=-avaYLLwUAPj8cYxP5fcH5h9aVabG5xuvBkwh5yTbMQ,21722
10
10
  ens/exceptions.py,sha256=5h-t3G-lwYchYe4JgHaxD_a_llh56sS6qzo9Rpa0S0o,2442
11
- ens/utils.py,sha256=Ro2-kcowwIgNExxNDQ1CpSFiGL9WSP_NCxp_qLzGWHw,8985
11
+ ens/utils.py,sha256=ql6Kqe_dmbr4K6p0YO5Gr8b9XdfMRLe9dnjNv1mrWYI,9318
12
+ ens/specs/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
12
13
  ens/specs/nf.json,sha256=tPXKzdhgu9gqNi0UhKC1kzPqSBgy4yHm5TL19RQHBqU,49038
13
14
  ens/specs/normalization_spec.json,sha256=8mmjBj4OoYCn7pD4P7hqKP_qy6rpYzpyRinSH3CCP9M,3171499
14
15
  web3/__init__.py,sha256=P11QAEV_GYoZq9ij8gDzFx5tKzJY2aMXG-keg2Lg1xs,1277
@@ -18,8 +19,8 @@ web3/exceptions.py,sha256=GMIrWTkYDR0jtvtdOlgl_s6fctTibW4Ytw4So5BY4uE,9584
18
19
  web3/geth.py,sha256=xVBZWSksBo2ipesAN9V5hzDc_te7kU8ueicFdvpkSO4,7370
19
20
  web3/logs.py,sha256=ROs-mDMH_ZOecE7hfbWA5yp27G38FbLjX4lO_WtlZxQ,198
20
21
  web3/main.py,sha256=eVdSh7m_iBMf3au0Aj49TZ7NSaRbN1Ccsng9Fuu8dME,16162
21
- web3/manager.py,sha256=SYAs0C0yveGV97iA1dYokG_QWPY7TsnSecALwKWuDiw,19853
22
- web3/method.py,sha256=wub3EBKVC911GGXixoyl6RUdEb0MITa6AL0G4FDIQwA,8808
22
+ web3/manager.py,sha256=hzIrl70WWIupgEbBBQlB11l89uHHU1xCKowKgBngkqU,22689
23
+ web3/method.py,sha256=BCYend146F5Q149VB2VN11_Z3x8y0lJZH8ShF_VxwV4,8682
23
24
  web3/module.py,sha256=CDlnDrrWzkCJtd3gzHZ972l-6En6IyFEWwB7TXkHHLM,5617
24
25
  web3/net.py,sha256=Y3vPzHWVFkfHEZoJxjDOt4tp5ERmZrMuyi4ZFOLmIeA,1562
25
26
  web3/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -27,15 +28,15 @@ web3/testing.py,sha256=Ury_-7XSstJ8bkCfdGEi4Cr76QzSfW7v_zfPlDlLJj0,923
27
28
  web3/tracing.py,sha256=ZcOam7t-uEZXyui6Cndv6RYeCZP5jh1TBn2hG8sv17Q,3098
28
29
  web3/types.py,sha256=4RBfjGY0BQmlqW82PE_B7stuSyPd7LdXl5kITIt1ozI,15070
29
30
  web3/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
- web3/_utils/abi.py,sha256=Nk-RSh1Zk5BXojgZM6QwleGErUjiD7wD2vvpMYw5knk,27431
31
+ web3/_utils/abi.py,sha256=TA4OG0CHg6zIfDA9bb_TobAyqeBlZfflRqcXyO0IBgU,27557
31
32
  web3/_utils/abi_element_identifiers.py,sha256=m305lsvUZk-jkPixT0IJd9P5sXqMvmwlwlLeBgEAnBQ,55
32
33
  web3/_utils/async_caching.py,sha256=2XnaKCHBTTDK6B2R_YZvjJqIRUpbMDIU1uYrq-Lcyp8,486
33
34
  web3/_utils/async_transactions.py,sha256=fodlTP7zpoFhFycWQszJWN0UUAfu5neQTCYJ3eGRCA0,5581
34
- web3/_utils/batching.py,sha256=aRBNtVUMGGnJmOEOE5DiGjdw7vYKDD4Yx--EbjQZj1A,7340
35
+ web3/_utils/batching.py,sha256=VOQnNxCexf0GqR0lEXF1IGgFGNFRe_jVL0_kaA5MGPo,6088
35
36
  web3/_utils/blocks.py,sha256=SZ17qSJuPAH5Dz-eQPGOsZw_QtkG19zvpSYMv6mEDok,2138
36
37
  web3/_utils/contracts.py,sha256=YXErvYsi7OQ9S3KCjSv7nPbxj9DDTmixP8NYmv9GOmY,12091
37
38
  web3/_utils/datatypes.py,sha256=nI0C9XWl46gFj1RpwuoHfVqb4e73wlaerE1LNyMg3oo,1701
38
- web3/_utils/decorators.py,sha256=6YLxmANGQbeVAvtiY_8yev5uI26JrL1Vm5N88SfFq0Y,1826
39
+ web3/_utils/decorators.py,sha256=AfueuAYbSAOJZmwv9JBK27iDglO3Rvqmsi6uJckt6QQ,1774
39
40
  web3/_utils/empty.py,sha256=ccgxFk5qm2x2ZeD8b17wX5cCAJPkPFuHrNQNMDslytY,132
40
41
  web3/_utils/encoding.py,sha256=6A5ObPUgYiaCVcfIW1EC7PlAQ9iOxliJFPS4TbZEV88,9637
41
42
  web3/_utils/ens.py,sha256=hRFU7mjyTilPpcpOF3XsWAlipnVmPEKqryjntqEw-jE,2691
@@ -45,10 +46,10 @@ web3/_utils/fee_utils.py,sha256=MFt27R9E3qFP-Hf87-Lzv0JAiuYRE_qqafyTmzctAYA,2145
45
46
  web3/_utils/filters.py,sha256=_LxE-LbuhElTUfW-_fV1tqfdWHxS6a_RyoInD2m6nN0,12243
46
47
  web3/_utils/formatters.py,sha256=ld6hUnt4awpbZ6-AoOCDrGM6wgup_e-8G4FxEa3SytM,3719
47
48
  web3/_utils/http.py,sha256=2R3UOeZmwiQGc3ladf78R9AnufbGaTXAntqf-ZQlZPI,230
48
- web3/_utils/http_session_manager.py,sha256=8nfXMPlOpZ2rMuo-aR46BxzMGrERAmHLshNC9qxEvuA,12591
49
+ web3/_utils/http_session_manager.py,sha256=hlp3NlT-e9liAxO-5HnH4ZdLrtXadsreJvqapRBLdpY,12680
49
50
  web3/_utils/hypothesis.py,sha256=4Cm4iOWv-uP9irg_Pv63kYNDYUAGhnUH6fOPWRw3A0g,209
50
51
  web3/_utils/math.py,sha256=4oU5YdbQBXElxK00CxmUZ94ApXFu9QT_TrO0Kho1HTs,1083
51
- web3/_utils/method_formatters.py,sha256=WCq5kVutYP4k4NuCEKjNNO9-tNFdQsHV8eZtYZOSf8I,41712
52
+ web3/_utils/method_formatters.py,sha256=HI44SfDbg3mhIYJ9JujlsrLDHnhrv-ZVQdTte1gaTxE,41496
52
53
  web3/_utils/module.py,sha256=GuVePloTlIBZwFDOjg0zasp53HSJ32umxN1nQhqW-8Y,3175
53
54
  web3/_utils/normalizers.py,sha256=akfV5TA9GcG1wu-BZdZnYGKtoJXgADh0XfewGaxWHno,7455
54
55
  web3/_utils/rpc_abi.py,sha256=m6aHop1di0dl9TrxPi3R-CYfzGMN9ILx4dNjVZF-8YE,8595
@@ -56,11 +57,11 @@ web3/_utils/threads.py,sha256=hNlSd_zheQYN0vC1faWWb9_UQxp_UzaM2fI5C8y0kB0,4245
56
57
  web3/_utils/transactions.py,sha256=aWMYWiCM_Qs6kFIRWwLGRqAAwCz5fXU8uXcsFGi_Xqo,9044
57
58
  web3/_utils/type_conversion.py,sha256=s6cg3WDCQIarQLWw_GfctaJjXhS_EcokUNO-S_ccvng,873
58
59
  web3/_utils/utility_methods.py,sha256=4rOzuxbBrxl2LcRih6sRDcHghwqzLOXxVbJxCXoA6Os,2591
59
- web3/_utils/validation.py,sha256=DSmVq88k1ZPtu1NgBKNqGSAKYg5njrnG6rBKjUXIy-g,13351
60
+ web3/_utils/validation.py,sha256=vdeum81mzZaQ5G8HlmwQnDcWPLAW7aaennRqzv2wG3E,13352
60
61
  web3/_utils/windows.py,sha256=IlFUtqYSbUUfFRx60zvEwpiZd080WpOrA4ojm4tmSEE,994
61
62
  web3/_utils/caching/__init__.py,sha256=ri-5UGz5PPuYW9W1c2BX5lUJn1oZuvErbDz5NweiveA,284
62
63
  web3/_utils/caching/caching_utils.py,sha256=Big2HcJ9_CgIGNq59yGihheLOct-FlArpreBxcfjYUk,14281
63
- web3/_utils/caching/request_caching_validation.py,sha256=SBiOYtzfe_xxmTixxKxxNgmVQ7GLfQshYQwAxNh7yQM,9877
64
+ web3/_utils/caching/request_caching_validation.py,sha256=9CaL1jJWc8Q_sM0GPixmmJc_Enh6aiC6PKxo9VlpM_Y,9947
64
65
  web3/_utils/compat/__init__.py,sha256=RUD0S8wzEv2a9o1UhJD0SIECjzatjJl7vc6RCM2d1Fs,571
65
66
  web3/_utils/contract_sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
67
  web3/_utils/contract_sources/compile_contracts.py,sha256=C3eLY6gJ4xj9FunNwn4YPb9c8ElORkN8O4ddBa_kKqI,6486
@@ -89,7 +90,7 @@ web3/_utils/contract_sources/contract_data/storage_contract.py,sha256=ARz6J3Gmsn
89
90
  web3/_utils/contract_sources/contract_data/string_contract.py,sha256=sk6TWvzH7GkRxwioXFm2a7J99riySqipn2EQhfYdzLY,11228
90
91
  web3/_utils/contract_sources/contract_data/tuple_contracts.py,sha256=7RlKfKRVXhjJN1j7D4YlQM6BswK3c0VaSxcnPVwAgcg,23176
91
92
  web3/_utils/module_testing/__init__.py,sha256=Xr_S46cjr0mypD_Y4ZbeF1EJ-XWfNxWUks5ykhzN10c,485
92
- web3/_utils/module_testing/eth_module.py,sha256=N1oHaP-04C2B-GEeHD57mnIofWpaOATue0ln48Vs3p8,197231
93
+ web3/_utils/module_testing/eth_module.py,sha256=g4NW9m6jU5IXjWxp0Cl3UoVB3mC1FrHLt3ljztpZx4I,196504
93
94
  web3/_utils/module_testing/go_ethereum_admin_module.py,sha256=_c-6SyzZkfAJ-7ySXUpw9FEr4cg-ShRdAGSAHWanCtY,3406
94
95
  web3/_utils/module_testing/go_ethereum_debug_module.py,sha256=BP1UjK-5ewkYMilvW9jtZX5Mc9BGh3QlJWPXqDNWizU,4144
95
96
  web3/_utils/module_testing/go_ethereum_txpool_module.py,sha256=5f8XL8-2x3keyGRaITxMQYl9oQzjgqGn8zobB-j9BPs,1176
@@ -97,7 +98,7 @@ web3/_utils/module_testing/module_testing_utils.py,sha256=k7hS3ztCdW6HVlrBVqXzFI
97
98
  web3/_utils/module_testing/net_module.py,sha256=ifUTC-5fTcQbwpm0X09OdD5RSPnn00T8klFeYe8tTm4,1272
98
99
  web3/_utils/module_testing/persistent_connection_provider.py,sha256=443ay1jYmcYgkPAJBxS_-GU9und09CMotKD5dVABaD4,30669
99
100
  web3/_utils/module_testing/utils.py,sha256=bvF57wKVbfnXGRM4kqEZpysPrr9LvAQy-E-huk1HpxM,13561
100
- web3/_utils/module_testing/web3_module.py,sha256=7c6penGbHn381fPTYY6DsXKv56xGQpYkHljOsr2gbaw,25413
101
+ web3/_utils/module_testing/web3_module.py,sha256=nt4pUhzqVOcFXrFVbMt_Rvh-2Yg3fAMP3fJmID9-tOQ,28009
101
102
  web3/auto/__init__.py,sha256=ZbzAiCZMdt_tCTTPvH6t8NCVNroKKkt7TSVBBNR74Is,44
102
103
  web3/auto/gethdev.py,sha256=MuWD2gxv0xDv_SzPsp9mSkS1oG4P54xFK83qw9NvswA,438
103
104
  web3/beacon/__init__.py,sha256=Ac6YiNgU8D8Ynnh5RwSCx2NwPyjnpFjpXeHuSssFbaU,113
@@ -108,7 +109,7 @@ web3/contract/__init__.py,sha256=qeZRtTw9xriwoD82w6vePDuPBZ35-CMVdkzViBSH3Qs,293
108
109
  web3/contract/async_contract.py,sha256=yjfsQyEzx7M_93TsURg1IXHg8qnmfyAn-MezBWm6owA,20534
109
110
  web3/contract/base_contract.py,sha256=vQVcne9luQ35eBheRh1Jc_jXOp2uDxIotKK9O1EQjQY,54371
110
111
  web3/contract/contract.py,sha256=-TJJMjwybZmQo8-DtGhrjIr7TwVXFoiIsdMan1NFgQY,20562
111
- web3/contract/utils.py,sha256=mrW3WIxki6EJ1kNqyGp20SMJIu4GqAzOFgMuzpsHB2M,19363
112
+ web3/contract/utils.py,sha256=QwJFbgojLKRb_7DrwDmXI2acwRk7zMNXHGvH5JaR1NI,18591
112
113
  web3/eth/__init__.py,sha256=qDLxOcHHIzzPD7xzwy6Wcs0lLPQieB7WN0Ax25ctit8,197
113
114
  web3/eth/async_eth.py,sha256=uuKOTRvI60r5zOj131Mbr28J6N7Tj2Hx4GJESMIoFu8,24759
114
115
  web3/eth/base_eth.py,sha256=UUH0Fw0HVa_mBEQ_CbCDO01yCVDsj33d8yOv7Oe-QD0,6905
@@ -130,27 +131,27 @@ web3/middleware/signing.py,sha256=1DOYxpmCra-Qq5r42237q3b54uDO-QHjMVMulxVpLVQ,58
130
131
  web3/middleware/stalecheck.py,sha256=oWRA69BGIbNGjHSnUVOBnoxOYJZYjzRzlqqL5RRlnzk,2680
131
132
  web3/middleware/validation.py,sha256=QxActrJk_zsXXiwpadP2MUjZBS5E50OJOtUwVrm9XVo,4280
132
133
  web3/providers/__init__.py,sha256=YkcSzE9AubvSp-UfvJjyCrdepvziysbqeq2LT0ImDoc,936
133
- web3/providers/async_base.py,sha256=v2geb4qcg1EmWg72P6v_lMQAHtwFhRrhJQf0CKv10fU,7730
134
- web3/providers/auto.py,sha256=Zx3CHKoRkmiw3Jte2BLNPiJAFd8rDXNGfA3XtxZvHgc,3465
135
- web3/providers/base.py,sha256=fbs0sFTV9OGfQVpdO526OGciH7KLCnzYa0iaHzucFaA,6466
136
- web3/providers/ipc.py,sha256=HkBirknRORxxrjWC1zo_elhyIC8eDID2nDmMakqxwVE,6558
137
- web3/providers/legacy_websocket.py,sha256=Y-pEq7r_0USPA9K8wtAT7dncaaUENwOimTvAdR3m2c0,4777
134
+ web3/providers/async_base.py,sha256=vCx4SAHPSACrRps4KZ36xgjAMQxKXqXsYB8jACodwWo,8241
135
+ web3/providers/auto.py,sha256=9Jacts6375zHEG969lm5LOdmnhG4kJFnh4jMYOySQWU,4300
136
+ web3/providers/base.py,sha256=mTLfK5gZzykzfjVkb6QHROFAAeE6ZdS6J6IPfqZr_e4,6876
137
+ web3/providers/ipc.py,sha256=Rc0x4cW3NietQz0BjOygs78GzVGqgz0fHFZM6HalpVg,6518
138
+ web3/providers/legacy_websocket.py,sha256=uQb5SmoFPFI809q_2iRhDEo5SkSW3T9tYXuf48stp9A,4744
138
139
  web3/providers/eth_tester/__init__.py,sha256=UggyBQdeAyjy1awATW1933jkJcpqqaUYUQEFAQnA2o0,163
139
140
  web3/providers/eth_tester/defaults.py,sha256=QQUdqqrkcN1AKW7WEY1A5RiPc_fmlHCLmdgB-5iY7Dc,12622
140
141
  web3/providers/eth_tester/main.py,sha256=U19sNDeHs36A4IYQ0HFGyXdZvuXiYvoSMNWVuki0WwI,7807
141
142
  web3/providers/eth_tester/middleware.py,sha256=JS-cjGF5BtF43dp-bP7QDv0RWyq1iqwiq81RhTAswjI,13730
142
143
  web3/providers/persistent/__init__.py,sha256=X7tFKJL5BXSwciq5_bRwGRB6bfdWBkIPPWMqCjXIKrA,411
143
144
  web3/providers/persistent/async_ipc.py,sha256=6HDKo9hIXhag3nyTbp6J-ZktPLnG-9iHCduQUGD7raM,5049
144
- web3/providers/persistent/persistent.py,sha256=LadhulIrKoazx8uyxw2fEYxI5Wt_j1MElPU_IVWa6so,16462
145
+ web3/providers/persistent/persistent.py,sha256=79TP6mKOhUyxD3KBOEE2OeWido8qumuIl2pIiiPE-0k,19356
145
146
  web3/providers/persistent/persistent_connection.py,sha256=NxxS-KeJhV07agg8CtJvmE-Ff-wLggQYpz4gdgVRDNU,3011
146
- web3/providers/persistent/request_processor.py,sha256=nT48Ae1nQxo3DmcI0PRVM5-Y80OYTnpkSeC6eFnaKS4,15130
147
+ web3/providers/persistent/request_processor.py,sha256=QLVn5MiNwDVsO9hsHPlkUH4zW4H74HRK-duPot4H4Yk,14141
147
148
  web3/providers/persistent/subscription_container.py,sha256=yd5pjjz_YnRLuUoxZUxt29Md1VUTemdUIBq8PCJre6Y,1734
148
- web3/providers/persistent/subscription_manager.py,sha256=saY7zwAjqH0OlJZbz6lwXar9R0u5WoUb6oSKmOzS6kA,11586
149
+ web3/providers/persistent/subscription_manager.py,sha256=T42LQzGs4iYvsKqvIqKSMo5OLz5Qpp4YG8sEBOcqV3s,11672
149
150
  web3/providers/persistent/utils.py,sha256=gfY7w1HB8xuE7OujSrbwWYjQuQ8nzRBoxoL8ESinqWM,1140
150
151
  web3/providers/persistent/websocket.py,sha256=STf31VNdwidMeAeeL1r5f8v3l66xChKkxZpnZzUiYO8,4577
151
152
  web3/providers/rpc/__init__.py,sha256=mObsuwjr7xyHnnRlwzsmbp2JgZdn2NXSSctvpye4AuQ,149
152
- web3/providers/rpc/async_rpc.py,sha256=QyToHBRKLKGlgRAGizL4pWMX9r1YEZLFMO8y99Vc7Yc,6370
153
- web3/providers/rpc/rpc.py,sha256=MHYsuE88anowGJ19G0R-aSldwl-d6ot2f098B31N4X8,6119
153
+ web3/providers/rpc/async_rpc.py,sha256=S3Dd1gvAJSouYsZg7K-r_uS4BO0YsAPY1wD_3NJng4w,6345
154
+ web3/providers/rpc/rpc.py,sha256=a46-TpdGgQj6KhePHO7fQJGwEGHnF-5--RswFkODu18,6105
154
155
  web3/providers/rpc/utils.py,sha256=_mtoZMMIoZpPA8J8U5DfRxaNQmi8bw0ZVUiqn1Nz4co,2154
155
156
  web3/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
156
157
  web3/scripts/install_pre_releases.py,sha256=uVxsZk239640yxiqlPhfXxZKSsh3858pURKppi9kM5U,821
@@ -163,9 +164,9 @@ web3/utils/address.py,sha256=nzPLiWWCG9BqstDeDOcDwEpteJ8im6ywjLHKpd5akhw,1186
163
164
  web3/utils/async_exception_handling.py,sha256=OoKbLNwWcY9dxLCbOfxcQPSB1OxWraNqcw8V0ZX-JaQ,3173
164
165
  web3/utils/caching.py,sha256=miulUjLOjlOfTux8HWBklpRIa6_fVNTVFHIWcbZt27o,2591
165
166
  web3/utils/exception_handling.py,sha256=n-MtO5LNzJDVzHTzO6olzfb2_qEVtVRvink0ixswg-Y,2917
166
- web3/utils/subscriptions.py,sha256=iqlIK5xXM3XY6wEJQiovxrtKRvqpXmjhkPmrm15FnB8,8578
167
- web3-7.11.1.dist-info/LICENSE,sha256=ENGC4gSn0kYaC_mlaXOEwCKmA6W7Z9MeSemc5O2k-h0,1095
168
- web3-7.11.1.dist-info/METADATA,sha256=r7aKhTlNkclK0bCB8rUfYxUc5_0ebkmueYM7o8_UCpw,5434
169
- web3-7.11.1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
170
- web3-7.11.1.dist-info/top_level.txt,sha256=iwupuJh7wgypXrpk_awszyri3TahRr5vxSphNyvt1bU,9
171
- web3-7.11.1.dist-info/RECORD,,
167
+ web3/utils/subscriptions.py,sha256=RnqwQL3ekkMyCrbx-jVf6EaEkihyXTbb1LBonBHAJ_g,8617
168
+ web3-7.12.1.dist-info/licenses/LICENSE,sha256=ENGC4gSn0kYaC_mlaXOEwCKmA6W7Z9MeSemc5O2k-h0,1095
169
+ web3-7.12.1.dist-info/METADATA,sha256=00yj0K9jQg20LN-vIHDfMORXEzT8hQJOrl8VCIGjLq8,5621
170
+ web3-7.12.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
171
+ web3-7.12.1.dist-info/top_level.txt,sha256=iwupuJh7wgypXrpk_awszyri3TahRr5vxSphNyvt1bU,9
172
+ web3-7.12.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.3.2)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5