web3 7.11.0__py3-none-any.whl → 7.11.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.
Files changed (38) hide show
  1. web3/_utils/contract_sources/contract_data/ambiguous_function_contract.py +3 -3
  2. web3/_utils/contract_sources/contract_data/arrays_contract.py +3 -3
  3. web3/_utils/contract_sources/contract_data/bytes_contracts.py +5 -5
  4. web3/_utils/contract_sources/contract_data/constructor_contracts.py +7 -7
  5. web3/_utils/contract_sources/contract_data/contract_caller_tester.py +3 -3
  6. web3/_utils/contract_sources/contract_data/emitter_contract.py +3 -3
  7. web3/_utils/contract_sources/contract_data/event_contracts.py +7 -7
  8. web3/_utils/contract_sources/contract_data/extended_resolver.py +3 -3
  9. web3/_utils/contract_sources/contract_data/fallback_function_contract.py +3 -3
  10. web3/_utils/contract_sources/contract_data/function_name_tester_contract.py +3 -3
  11. web3/_utils/contract_sources/contract_data/math_contract.py +3 -3
  12. web3/_utils/contract_sources/contract_data/offchain_lookup.py +3 -3
  13. web3/_utils/contract_sources/contract_data/offchain_resolver.py +3 -3
  14. web3/_utils/contract_sources/contract_data/panic_errors_contract.py +3 -3
  15. web3/_utils/contract_sources/contract_data/payable_tester.py +3 -3
  16. web3/_utils/contract_sources/contract_data/receive_function_contracts.py +5 -5
  17. web3/_utils/contract_sources/contract_data/reflector_contracts.py +3 -3
  18. web3/_utils/contract_sources/contract_data/revert_contract.py +3 -3
  19. web3/_utils/contract_sources/contract_data/simple_resolver.py +3 -3
  20. web3/_utils/contract_sources/contract_data/storage_contract.py +3 -3
  21. web3/_utils/contract_sources/contract_data/string_contract.py +3 -3
  22. web3/_utils/contract_sources/contract_data/tuple_contracts.py +5 -5
  23. web3/_utils/decorators.py +2 -2
  24. web3/_utils/error_formatters_utils.py +17 -0
  25. web3/_utils/filters.py +39 -28
  26. web3/_utils/method_formatters.py +2 -0
  27. web3/_utils/module_testing/eth_module.py +83 -34
  28. web3/eth/async_eth.py +4 -0
  29. web3/eth/eth.py +15 -2
  30. web3/method.py +10 -2
  31. web3/providers/persistent/async_ipc.py +3 -1
  32. web3/providers/persistent/subscription_manager.py +1 -0
  33. web3/utils/abi.py +1 -1
  34. {web3-7.11.0.dist-info → web3-7.11.1.dist-info}/METADATA +56 -69
  35. {web3-7.11.0.dist-info → web3-7.11.1.dist-info}/RECORD +38 -38
  36. {web3-7.11.0.dist-info → web3-7.11.1.dist-info}/WHEEL +1 -1
  37. {web3-7.11.0.dist-info/licenses → web3-7.11.1.dist-info}/LICENSE +0 -0
  38. {web3-7.11.0.dist-info → web3-7.11.1.dist-info}/top_level.txt +0 -0
web3/method.py CHANGED
@@ -241,17 +241,25 @@ class Method(Generic[TFunc]):
241
241
 
242
242
  class DeprecatedMethod:
243
243
  def __init__(
244
- self, method: Method[Callable[..., Any]], old_name: str, new_name: str
244
+ self,
245
+ method: Method[Callable[..., Any]],
246
+ old_name: Optional[str] = None,
247
+ new_name: Optional[str] = None,
248
+ msg: Optional[str] = None,
245
249
  ) -> None:
246
250
  self.method = method
247
251
  self.old_name = old_name
248
252
  self.new_name = new_name
253
+ self.msg = msg
249
254
 
250
255
  def __get__(
251
256
  self, obj: Optional["Module"] = None, obj_type: Optional[Type["Module"]] = None
252
257
  ) -> Any:
258
+ message = f"{self.old_name} is deprecated in favor of {self.new_name}"
259
+ if self.msg is not None:
260
+ message = self.msg
253
261
  warnings.warn(
254
- f"{self.old_name} is deprecated in favor of {self.new_name}",
262
+ message,
255
263
  category=DeprecationWarning,
256
264
  stacklevel=2,
257
265
  )
@@ -110,7 +110,9 @@ class AsyncIPCProvider(PersistentConnectionProvider):
110
110
  raise
111
111
 
112
112
  if not data:
113
- raise PersistentConnectionClosedOK("Socket reader received end of stream.")
113
+ raise PersistentConnectionClosedOK(
114
+ user_message="Socket reader received end of stream."
115
+ )
114
116
  return self.decode_rpc_response(data)
115
117
 
116
118
  # -- private methods -- #
@@ -298,6 +298,7 @@ class SubscriptionManager:
298
298
  "Message listener background task for the provider has stopped "
299
299
  "unexpectedly. Stopping subscription handling."
300
300
  )
301
+ break
301
302
 
302
303
  # no active handler subscriptions, clear the handler subscription queue
303
304
  self._provider._request_processor._reset_handler_subscription_queue()
web3/utils/abi.py CHANGED
@@ -682,7 +682,7 @@ def check_if_arguments_can_be_encoded(
682
682
  )
683
683
 
684
684
 
685
- @deprecated_for("get_abi_element")
685
+ @deprecated_for("use get_abi_element instead")
686
686
  def get_event_abi(
687
687
  abi: ABI,
688
688
  event_name: str,
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.1
2
2
  Name: web3
3
- Version: 7.11.0
3
+ Version: 7.11.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,76 +21,63 @@ 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: 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"
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"
41
38
  Provides-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"
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'
64
61
  Provides-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"
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'
69
66
  Provides-Extra: test
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
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'
94
81
 
95
82
  # web3.py
96
83
 
@@ -19,7 +19,7 @@ web3/geth.py,sha256=xVBZWSksBo2ipesAN9V5hzDc_te7kU8ueicFdvpkSO4,7370
19
19
  web3/logs.py,sha256=ROs-mDMH_ZOecE7hfbWA5yp27G38FbLjX4lO_WtlZxQ,198
20
20
  web3/main.py,sha256=eVdSh7m_iBMf3au0Aj49TZ7NSaRbN1Ccsng9Fuu8dME,16162
21
21
  web3/manager.py,sha256=SYAs0C0yveGV97iA1dYokG_QWPY7TsnSecALwKWuDiw,19853
22
- web3/method.py,sha256=Q7EWTwI4TxqAbJ3mZrdvLc9wfV-8o8sOzS_pbsRgAP0,8601
22
+ web3/method.py,sha256=wub3EBKVC911GGXixoyl6RUdEb0MITa6AL0G4FDIQwA,8808
23
23
  web3/module.py,sha256=CDlnDrrWzkCJtd3gzHZ972l-6En6IyFEWwB7TXkHHLM,5617
24
24
  web3/net.py,sha256=Y3vPzHWVFkfHEZoJxjDOt4tp5ERmZrMuyi4ZFOLmIeA,1562
25
25
  web3/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -35,20 +35,20 @@ web3/_utils/batching.py,sha256=aRBNtVUMGGnJmOEOE5DiGjdw7vYKDD4Yx--EbjQZj1A,7340
35
35
  web3/_utils/blocks.py,sha256=SZ17qSJuPAH5Dz-eQPGOsZw_QtkG19zvpSYMv6mEDok,2138
36
36
  web3/_utils/contracts.py,sha256=YXErvYsi7OQ9S3KCjSv7nPbxj9DDTmixP8NYmv9GOmY,12091
37
37
  web3/_utils/datatypes.py,sha256=nI0C9XWl46gFj1RpwuoHfVqb4e73wlaerE1LNyMg3oo,1701
38
- web3/_utils/decorators.py,sha256=bYIoVL0DjHWU2-KOmg-UYg6rICeThlLVZpH9yM2NT8s,1825
38
+ web3/_utils/decorators.py,sha256=6YLxmANGQbeVAvtiY_8yev5uI26JrL1Vm5N88SfFq0Y,1826
39
39
  web3/_utils/empty.py,sha256=ccgxFk5qm2x2ZeD8b17wX5cCAJPkPFuHrNQNMDslytY,132
40
40
  web3/_utils/encoding.py,sha256=6A5ObPUgYiaCVcfIW1EC7PlAQ9iOxliJFPS4TbZEV88,9637
41
41
  web3/_utils/ens.py,sha256=hRFU7mjyTilPpcpOF3XsWAlipnVmPEKqryjntqEw-jE,2691
42
- web3/_utils/error_formatters_utils.py,sha256=9eG56Kj_H1BxxcXQhHOr2fycMnOnjfue3VsxUJ1Vi1U,6868
42
+ web3/_utils/error_formatters_utils.py,sha256=GQmUUW22B2N5e4vX6aiiLenwiwPhE89HfPSt_vYttw0,7405
43
43
  web3/_utils/events.py,sha256=eZEUDImd4-s0wQxdzHn5llYoTwMaKQpakoccoU85_R0,17036
44
44
  web3/_utils/fee_utils.py,sha256=MFt27R9E3qFP-Hf87-Lzv0JAiuYRE_qqafyTmzctAYA,2145
45
- web3/_utils/filters.py,sha256=1WX2Vgmat8QKj0WNm_GoRcVp4iJ0BhaIpM_RbcZlBzs,11860
45
+ web3/_utils/filters.py,sha256=_LxE-LbuhElTUfW-_fV1tqfdWHxS6a_RyoInD2m6nN0,12243
46
46
  web3/_utils/formatters.py,sha256=ld6hUnt4awpbZ6-AoOCDrGM6wgup_e-8G4FxEa3SytM,3719
47
47
  web3/_utils/http.py,sha256=2R3UOeZmwiQGc3ladf78R9AnufbGaTXAntqf-ZQlZPI,230
48
48
  web3/_utils/http_session_manager.py,sha256=8nfXMPlOpZ2rMuo-aR46BxzMGrERAmHLshNC9qxEvuA,12591
49
49
  web3/_utils/hypothesis.py,sha256=4Cm4iOWv-uP9irg_Pv63kYNDYUAGhnUH6fOPWRw3A0g,209
50
50
  web3/_utils/math.py,sha256=4oU5YdbQBXElxK00CxmUZ94ApXFu9QT_TrO0Kho1HTs,1083
51
- web3/_utils/method_formatters.py,sha256=fLwQz7eeazK_G3LYUX4hqwyy0hlnWCGkwOrxZ38Aoxo,41614
51
+ web3/_utils/method_formatters.py,sha256=WCq5kVutYP4k4NuCEKjNNO9-tNFdQsHV8eZtYZOSf8I,41712
52
52
  web3/_utils/module.py,sha256=GuVePloTlIBZwFDOjg0zasp53HSJ32umxN1nQhqW-8Y,3175
53
53
  web3/_utils/normalizers.py,sha256=akfV5TA9GcG1wu-BZdZnYGKtoJXgADh0XfewGaxWHno,7455
54
54
  web3/_utils/rpc_abi.py,sha256=m6aHop1di0dl9TrxPi3R-CYfzGMN9ILx4dNjVZF-8YE,8595
@@ -66,30 +66,30 @@ web3/_utils/contract_sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
66
66
  web3/_utils/contract_sources/compile_contracts.py,sha256=C3eLY6gJ4xj9FunNwn4YPb9c8ElORkN8O4ddBa_kKqI,6486
67
67
  web3/_utils/contract_sources/contract_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
68
  web3/_utils/contract_sources/contract_data/_custom_contract_data.py,sha256=nxpN2uS1T338Tp5uVhwY9U1C2m2pdDz7kZv3LoZ0hpo,552
69
- web3/_utils/contract_sources/contract_data/ambiguous_function_contract.py,sha256=Zp0cazBx6-2i7W6uPCf76jCTAPdkww4NohQI9YMQQv8,5980
70
- web3/_utils/contract_sources/contract_data/arrays_contract.py,sha256=Ou8nEO20JSVlxt2-Ay3O4O30h3qBTVXJG4jAtrTjANQ,18626
71
- web3/_utils/contract_sources/contract_data/bytes_contracts.py,sha256=AVuZG_EyhUQymavo5uCYeqv4fXjyO3WIPbV2j4VRy7c,14351
72
- web3/_utils/contract_sources/contract_data/constructor_contracts.py,sha256=RmL7T3OBuyWRjvQUawYjG_vTEqjLAICusJO1zNuIdUE,6051
73
- web3/_utils/contract_sources/contract_data/contract_caller_tester.py,sha256=Oia2QhE029iIMDYgm6HSJwXOqMFnnMkM9_7qxBKevQU,6228
74
- web3/_utils/contract_sources/contract_data/emitter_contract.py,sha256=vag_3SqTbSZyi57rteMPv1Nk8Y2bsXBR21X9QQbGCgE,40861
75
- web3/_utils/contract_sources/contract_data/event_contracts.py,sha256=NiOUemueXaBsz2EfugTY2l3NeNQi9bLTs9KKvvsmsAs,9405
76
- web3/_utils/contract_sources/contract_data/extended_resolver.py,sha256=JiIdVfokL2J6Sbx0MivpZidXv93jDQwGmHBpNzk6UJs,15720
77
- web3/_utils/contract_sources/contract_data/fallback_function_contract.py,sha256=aZaXkz6y94EwG0Z6rhU9mb7bv7OEbzrs1zF9HoLyhNs,1649
78
- web3/_utils/contract_sources/contract_data/function_name_tester_contract.py,sha256=Ezas3iVDBxBmKytdAkpiXRTza3SKXVmkIeIHrIY4cag,1894
79
- web3/_utils/contract_sources/contract_data/math_contract.py,sha256=AJ-KtR5xdGMBYsFLbp9A0dWEN6ErchJmM2QQBiAkI0A,7635
80
- web3/_utils/contract_sources/contract_data/offchain_lookup.py,sha256=Q3T9e5cpilzMu6BPYfbtBiM3Twt0aexlwYD1_-f6mCI,16424
81
- web3/_utils/contract_sources/contract_data/offchain_resolver.py,sha256=Oqa_Be8eQh1EbeaMqe-1ekw_IJ5rupMkzpW8_uPmKUw,31829
82
- web3/_utils/contract_sources/contract_data/panic_errors_contract.py,sha256=h2jNT9WZiJJXTabJcA-GDoA3fjS87STC4UId2LwwkM4,15263
83
- web3/_utils/contract_sources/contract_data/payable_tester.py,sha256=xkh5eSQS2dt4wIftQBeJlqwIDvE_zwtxmlvi4X21Qpc,1827
84
- web3/_utils/contract_sources/contract_data/receive_function_contracts.py,sha256=qWotM1AyO-JDbsvQ6cdhvyiGskU2kArd1LwST0CRIvU,17102
85
- web3/_utils/contract_sources/contract_data/reflector_contracts.py,sha256=VbW_6N6l-_7QOjvqlywS0Xn3OhSiyhyxC-Pcm_69uUU,5262
86
- web3/_utils/contract_sources/contract_data/revert_contract.py,sha256=1C639qKx41_T5PwHwGHGPFWvyxTd5pnsHLX4vG1ySlM,4262
87
- web3/_utils/contract_sources/contract_data/simple_resolver.py,sha256=5H5L5mKUrSvcPrcWlR8oE1UdnRGNm0dgMsdw5V8Mn4w,3553
88
- web3/_utils/contract_sources/contract_data/storage_contract.py,sha256=CDx3lHmEhrgqGbKBOvjw0Tb1DGovE3QC1AarZC0vcXU,7938
89
- web3/_utils/contract_sources/contract_data/string_contract.py,sha256=agjI-kVgRa4VBSPArnpkE1JGf09wA3aheuIQv2LIlh0,11228
90
- web3/_utils/contract_sources/contract_data/tuple_contracts.py,sha256=BiXlKQgc9o_9mM_aI4B5H6WJpRyztXte1WiOwUwhIkw,23176
69
+ web3/_utils/contract_sources/contract_data/ambiguous_function_contract.py,sha256=XCERnpGr2RtN4kMaGRHcfaM6bZC_ITpeKY6si2LoZ6w,5980
70
+ web3/_utils/contract_sources/contract_data/arrays_contract.py,sha256=lkHLMTvsoXd5pIdBS4-QAHLu0SEnhljqj26EQuiHlY0,18626
71
+ web3/_utils/contract_sources/contract_data/bytes_contracts.py,sha256=BC0xlYWzj2bAZ3Kye4T-DiEL8gzrkVavR4Wq_wN8Fsg,14351
72
+ web3/_utils/contract_sources/contract_data/constructor_contracts.py,sha256=-dLiEEdM4WMP9OaWRU89KUPqtRqV22Hon9cPUJopuqY,6051
73
+ web3/_utils/contract_sources/contract_data/contract_caller_tester.py,sha256=LjavtkUUaESdVx1ux9Qp0rOQab8vUEARTCPGO7efQnU,6228
74
+ web3/_utils/contract_sources/contract_data/emitter_contract.py,sha256=N_Bjy3QtI5ZAqRd1q61zaKGfrNWxpWTkLcYmfM9m6t4,40861
75
+ web3/_utils/contract_sources/contract_data/event_contracts.py,sha256=AQ856aQeTSSLnmLQ7OoL5GaYCLakAl0KQz6u8W9EkpI,9405
76
+ web3/_utils/contract_sources/contract_data/extended_resolver.py,sha256=xTPSJY2lG_T3_CWhppaniZxCzTDBJVywmq_-nRN8_l4,15720
77
+ web3/_utils/contract_sources/contract_data/fallback_function_contract.py,sha256=08JmhMTvKn0ALArgrW7T32wO-RMiqBJDgr_Xt1F6RA8,1649
78
+ web3/_utils/contract_sources/contract_data/function_name_tester_contract.py,sha256=SXv5hY_kYLtcjDH2cGw5f9IXwCGnuWL0bWY81860FJQ,1894
79
+ web3/_utils/contract_sources/contract_data/math_contract.py,sha256=hR7kZuGBLh-Gu-4JILa3dE8ri5kH3Ve-Sqr9K4q3tYA,7635
80
+ web3/_utils/contract_sources/contract_data/offchain_lookup.py,sha256=KGqPvnQivR6zAlDuopBwjk2stmyhzGM762ErhPpXXSk,16424
81
+ web3/_utils/contract_sources/contract_data/offchain_resolver.py,sha256=W2AkFrjWGBGykHvooIOau775hLOkjdOsrKeRYC0NojI,31829
82
+ web3/_utils/contract_sources/contract_data/panic_errors_contract.py,sha256=fsRcZTnhsnooLBkYE7TziuEKpc-b4U4OTMNeznWA1gQ,15263
83
+ web3/_utils/contract_sources/contract_data/payable_tester.py,sha256=LJLAfW7U-EZBvPjPabjrF906CVXTsnP02GaZagdXNqo,1827
84
+ web3/_utils/contract_sources/contract_data/receive_function_contracts.py,sha256=retpVQ8OmHiyrdEZ_qn22GUr9961SYeSTj2gudX0koc,17102
85
+ web3/_utils/contract_sources/contract_data/reflector_contracts.py,sha256=OOcw3sKUt1eM1HhmT9na-wv15AQ31UghnHp-S7bSfbg,5262
86
+ web3/_utils/contract_sources/contract_data/revert_contract.py,sha256=N1pcxWOA28mjuHhhbkeNnMB9j7hCy-0W2WJ7lTqgtwI,4262
87
+ web3/_utils/contract_sources/contract_data/simple_resolver.py,sha256=V8w8nDfh2OjdWNP-5lGPMV5t5ZUZ-LzO5pLiDKJ9SVk,3553
88
+ web3/_utils/contract_sources/contract_data/storage_contract.py,sha256=ARz6J3GmsnafoM9RCTZX410ZtFVVnlJmeSBB2Q-kucs,7938
89
+ web3/_utils/contract_sources/contract_data/string_contract.py,sha256=sk6TWvzH7GkRxwioXFm2a7J99riySqipn2EQhfYdzLY,11228
90
+ web3/_utils/contract_sources/contract_data/tuple_contracts.py,sha256=7RlKfKRVXhjJN1j7D4YlQM6BswK3c0VaSxcnPVwAgcg,23176
91
91
  web3/_utils/module_testing/__init__.py,sha256=Xr_S46cjr0mypD_Y4ZbeF1EJ-XWfNxWUks5ykhzN10c,485
92
- web3/_utils/module_testing/eth_module.py,sha256=SCwc_sFVyPPo1-G63bWfePgYHBvohG4MxL0EFsJkWGk,195541
92
+ web3/_utils/module_testing/eth_module.py,sha256=N1oHaP-04C2B-GEeHD57mnIofWpaOATue0ln48Vs3p8,197231
93
93
  web3/_utils/module_testing/go_ethereum_admin_module.py,sha256=_c-6SyzZkfAJ-7ySXUpw9FEr4cg-ShRdAGSAHWanCtY,3406
94
94
  web3/_utils/module_testing/go_ethereum_debug_module.py,sha256=BP1UjK-5ewkYMilvW9jtZX5Mc9BGh3QlJWPXqDNWizU,4144
95
95
  web3/_utils/module_testing/go_ethereum_txpool_module.py,sha256=5f8XL8-2x3keyGRaITxMQYl9oQzjgqGn8zobB-j9BPs,1176
@@ -110,9 +110,9 @@ web3/contract/base_contract.py,sha256=vQVcne9luQ35eBheRh1Jc_jXOp2uDxIotKK9O1EQjQ
110
110
  web3/contract/contract.py,sha256=-TJJMjwybZmQo8-DtGhrjIr7TwVXFoiIsdMan1NFgQY,20562
111
111
  web3/contract/utils.py,sha256=mrW3WIxki6EJ1kNqyGp20SMJIu4GqAzOFgMuzpsHB2M,19363
112
112
  web3/eth/__init__.py,sha256=qDLxOcHHIzzPD7xzwy6Wcs0lLPQieB7WN0Ax25ctit8,197
113
- web3/eth/async_eth.py,sha256=h3DpNdYn4b3kVdp54pAkapyfnC73w38biV9vPNtsvZU,24632
113
+ web3/eth/async_eth.py,sha256=uuKOTRvI60r5zOj131Mbr28J6N7Tj2Hx4GJESMIoFu8,24759
114
114
  web3/eth/base_eth.py,sha256=UUH0Fw0HVa_mBEQ_CbCDO01yCVDsj33d8yOv7Oe-QD0,6905
115
- web3/eth/eth.py,sha256=mD1TSPIl7gnRFrG1Mcq_rSJJm2Zf0ISGTv9BcLr19FU,20362
115
+ web3/eth/eth.py,sha256=zYhotz6GFRVl951oljXHnnlF1GJTgFlgJlA09Soji5k,20806
116
116
  web3/gas_strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
117
  web3/gas_strategies/rpc.py,sha256=lQnKJSSZAjE2_klwdr7tkZkPiYN9mkz1IqbVS2WNo6M,351
118
118
  web3/gas_strategies/time_based.py,sha256=NQDYh9eKsmzhRIg5gWUI9xlKyI16z-qfN9DSIh3tM1Y,9070
@@ -140,12 +140,12 @@ web3/providers/eth_tester/defaults.py,sha256=QQUdqqrkcN1AKW7WEY1A5RiPc_fmlHCLmdg
140
140
  web3/providers/eth_tester/main.py,sha256=U19sNDeHs36A4IYQ0HFGyXdZvuXiYvoSMNWVuki0WwI,7807
141
141
  web3/providers/eth_tester/middleware.py,sha256=JS-cjGF5BtF43dp-bP7QDv0RWyq1iqwiq81RhTAswjI,13730
142
142
  web3/providers/persistent/__init__.py,sha256=X7tFKJL5BXSwciq5_bRwGRB6bfdWBkIPPWMqCjXIKrA,411
143
- web3/providers/persistent/async_ipc.py,sha256=dlySmRkVsKWOjb2w08n38PTcoI5MtviwqsRxq3YUg6M,5006
143
+ web3/providers/persistent/async_ipc.py,sha256=6HDKo9hIXhag3nyTbp6J-ZktPLnG-9iHCduQUGD7raM,5049
144
144
  web3/providers/persistent/persistent.py,sha256=LadhulIrKoazx8uyxw2fEYxI5Wt_j1MElPU_IVWa6so,16462
145
145
  web3/providers/persistent/persistent_connection.py,sha256=NxxS-KeJhV07agg8CtJvmE-Ff-wLggQYpz4gdgVRDNU,3011
146
146
  web3/providers/persistent/request_processor.py,sha256=nT48Ae1nQxo3DmcI0PRVM5-Y80OYTnpkSeC6eFnaKS4,15130
147
147
  web3/providers/persistent/subscription_container.py,sha256=yd5pjjz_YnRLuUoxZUxt29Md1VUTemdUIBq8PCJre6Y,1734
148
- web3/providers/persistent/subscription_manager.py,sha256=8HQgVlm5hgd55-FHEeVse13oh6mP1p6T_pWX5UfDWng,11564
148
+ web3/providers/persistent/subscription_manager.py,sha256=saY7zwAjqH0OlJZbz6lwXar9R0u5WoUb6oSKmOzS6kA,11586
149
149
  web3/providers/persistent/utils.py,sha256=gfY7w1HB8xuE7OujSrbwWYjQuQ8nzRBoxoL8ESinqWM,1140
150
150
  web3/providers/persistent/websocket.py,sha256=STf31VNdwidMeAeeL1r5f8v3l66xChKkxZpnZzUiYO8,4577
151
151
  web3/providers/rpc/__init__.py,sha256=mObsuwjr7xyHnnRlwzsmbp2JgZdn2NXSSctvpye4AuQ,149
@@ -158,14 +158,14 @@ web3/scripts/parse_pygeth_version.py,sha256=BZjWOsJmYuFbAnFuB1jec9Rl6z0tJJNFFV38
158
158
  web3/scripts/release/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
159
  web3/scripts/release/test_package.py,sha256=DH0AryllcF4zfpWSd0NLPSQGHNoC-Qng5WYYbS5_4c8,1534
160
160
  web3/utils/__init__.py,sha256=FpwKsCqPgsv64PFSaFuFYmseadMfQj78quw_6Vgq0VQ,1932
161
- web3/utils/abi.py,sha256=zH54xZMXGL9nqVUavNhSZ4ZsMJM3ALdDZwBD0zgrfWU,26318
161
+ web3/utils/abi.py,sha256=c3Zn8DDJo_F39hfrdT3WHsD3LV4k7oEPDFzX2Yw6P3c,26330
162
162
  web3/utils/address.py,sha256=nzPLiWWCG9BqstDeDOcDwEpteJ8im6ywjLHKpd5akhw,1186
163
163
  web3/utils/async_exception_handling.py,sha256=OoKbLNwWcY9dxLCbOfxcQPSB1OxWraNqcw8V0ZX-JaQ,3173
164
164
  web3/utils/caching.py,sha256=miulUjLOjlOfTux8HWBklpRIa6_fVNTVFHIWcbZt27o,2591
165
165
  web3/utils/exception_handling.py,sha256=n-MtO5LNzJDVzHTzO6olzfb2_qEVtVRvink0ixswg-Y,2917
166
166
  web3/utils/subscriptions.py,sha256=iqlIK5xXM3XY6wEJQiovxrtKRvqpXmjhkPmrm15FnB8,8578
167
- web3-7.11.0.dist-info/licenses/LICENSE,sha256=ENGC4gSn0kYaC_mlaXOEwCKmA6W7Z9MeSemc5O2k-h0,1095
168
- web3-7.11.0.dist-info/METADATA,sha256=LCle5NEiQnflSAY6b5O2yLrw6o0hFqbGhwzy78m4azk,5621
169
- web3-7.11.0.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
170
- web3-7.11.0.dist-info/top_level.txt,sha256=iwupuJh7wgypXrpk_awszyri3TahRr5vxSphNyvt1bU,9
171
- web3-7.11.0.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.0.0)
2
+ Generator: setuptools (75.3.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5