web3 7.0.0b5__py3-none-any.whl → 7.0.0b6__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.
- web3/_utils/batching.py +217 -0
- web3/_utils/caching.py +26 -2
- web3/_utils/compat/__init__.py +1 -0
- web3/_utils/events.py +2 -2
- web3/_utils/module_testing/eth_module.py +10 -10
- web3/_utils/module_testing/module_testing_utils.py +13 -0
- web3/_utils/module_testing/web3_module.py +438 -17
- web3/contract/utils.py +112 -4
- web3/eth/async_eth.py +5 -4
- web3/eth/eth.py +5 -4
- web3/exceptions.py +20 -0
- web3/gas_strategies/time_based.py +2 -2
- web3/main.py +21 -9
- web3/manager.py +113 -8
- web3/method.py +29 -9
- web3/middleware/base.py +43 -0
- web3/module.py +47 -7
- web3/providers/async_base.py +55 -23
- web3/providers/base.py +59 -26
- web3/providers/ipc.py +23 -8
- web3/providers/legacy_websocket.py +26 -1
- web3/providers/persistent/async_ipc.py +60 -76
- web3/providers/persistent/persistent.py +134 -10
- web3/providers/persistent/request_processor.py +98 -14
- web3/providers/persistent/websocket.py +43 -66
- web3/providers/rpc/async_rpc.py +19 -1
- web3/providers/rpc/rpc.py +19 -1
- web3/types.py +7 -1
- {web3-7.0.0b5.dist-info → web3-7.0.0b6.dist-info}/LICENSE +1 -1
- {web3-7.0.0b5.dist-info → web3-7.0.0b6.dist-info}/METADATA +31 -20
- {web3-7.0.0b5.dist-info → web3-7.0.0b6.dist-info}/RECORD +33 -32
- {web3-7.0.0b5.dist-info → web3-7.0.0b6.dist-info}/WHEEL +0 -0
- {web3-7.0.0b5.dist-info → web3-7.0.0b6.dist-info}/top_level.txt +0 -0
web3/types.py
CHANGED
|
@@ -9,6 +9,7 @@ from typing import (
|
|
|
9
9
|
NewType,
|
|
10
10
|
Optional,
|
|
11
11
|
Sequence,
|
|
12
|
+
Tuple,
|
|
12
13
|
Type,
|
|
13
14
|
TypedDict,
|
|
14
15
|
TypeVar,
|
|
@@ -43,8 +44,9 @@ if TYPE_CHECKING:
|
|
|
43
44
|
)
|
|
44
45
|
|
|
45
46
|
|
|
46
|
-
|
|
47
|
+
TFunc = TypeVar("TFunc", bound=Callable[..., Any])
|
|
47
48
|
TParams = TypeVar("TParams")
|
|
49
|
+
TReturn = TypeVar("TReturn")
|
|
48
50
|
TValue = TypeVar("TValue")
|
|
49
51
|
|
|
50
52
|
BlockParams = Literal["latest", "earliest", "pending", "safe", "finalized"]
|
|
@@ -318,7 +320,11 @@ class CreateAccessListResponse(TypedDict):
|
|
|
318
320
|
|
|
319
321
|
|
|
320
322
|
MakeRequestFn = Callable[[RPCEndpoint, Any], RPCResponse]
|
|
323
|
+
MakeBatchRequestFn = Callable[[List[Tuple[RPCEndpoint, Any]]], List[RPCResponse]]
|
|
321
324
|
AsyncMakeRequestFn = Callable[[RPCEndpoint, Any], Coroutine[Any, Any, RPCResponse]]
|
|
325
|
+
AsyncMakeBatchRequestFn = Callable[
|
|
326
|
+
[List[Tuple[RPCEndpoint, Any]]], Coroutine[Any, Any, List[RPCResponse]]
|
|
327
|
+
]
|
|
322
328
|
|
|
323
329
|
|
|
324
330
|
class FormattersDict(TypedDict, total=False):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2016 The Ethereum Foundation
|
|
3
|
+
Copyright (c) 2016-2024 The Ethereum Foundation
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: web3
|
|
3
|
-
Version: 7.0.
|
|
4
|
-
Summary: web3
|
|
3
|
+
Version: 7.0.0b6
|
|
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
|
|
7
7
|
Author-email: snakecharmers@ethereum.org
|
|
@@ -16,7 +16,8 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.9
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
-
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Requires-Python: >=3.8, <4
|
|
20
21
|
Description-Content-Type: text/markdown
|
|
21
22
|
License-File: LICENSE
|
|
22
23
|
Requires-Dist: aiohttp >=3.7.4.post0
|
|
@@ -33,38 +34,48 @@ Requires-Dist: websockets >=10.0.0
|
|
|
33
34
|
Requires-Dist: pyunormalize >=15.0.0
|
|
34
35
|
Requires-Dist: pywin32 >=223 ; platform_system == "Windows"
|
|
35
36
|
Provides-Extra: dev
|
|
36
|
-
Requires-Dist: eth-tester[py-evm] <0.12.0b1,>=0.11.0b1 ; extra == 'dev'
|
|
37
|
-
Requires-Dist: py-geth >=4.1.0 ; extra == 'dev'
|
|
38
|
-
Requires-Dist: sphinx >=5.3.0 ; extra == 'dev'
|
|
39
|
-
Requires-Dist: sphinx-rtd-theme >=1.0.0 ; extra == 'dev'
|
|
40
|
-
Requires-Dist: towncrier <22,>=21 ; extra == 'dev'
|
|
41
37
|
Requires-Dist: build >=0.9.0 ; extra == 'dev'
|
|
42
|
-
Requires-Dist: bumpversion ; extra == 'dev'
|
|
38
|
+
Requires-Dist: bumpversion >=0.5.3 ; extra == 'dev'
|
|
43
39
|
Requires-Dist: flaky >=3.7.0 ; extra == 'dev'
|
|
44
40
|
Requires-Dist: hypothesis >=3.31.2 ; extra == 'dev'
|
|
41
|
+
Requires-Dist: ipython ; extra == 'dev'
|
|
45
42
|
Requires-Dist: pre-commit >=3.4.0 ; extra == 'dev'
|
|
46
|
-
Requires-Dist: pytest-asyncio <0.23,>=0.
|
|
43
|
+
Requires-Dist: pytest-asyncio <0.23,>=0.21.2 ; extra == 'dev'
|
|
47
44
|
Requires-Dist: pytest-mock >=1.10 ; extra == 'dev'
|
|
48
|
-
Requires-Dist: pytest-watch >=4.2 ; extra == 'dev'
|
|
49
|
-
Requires-Dist: pytest-xdist >=1.29 ; extra == 'dev'
|
|
50
|
-
Requires-Dist: pytest >=7.0.0 ; extra == 'dev'
|
|
51
45
|
Requires-Dist: setuptools >=38.6.0 ; extra == 'dev'
|
|
52
|
-
Requires-Dist: tox >=
|
|
46
|
+
Requires-Dist: tox >=4.0.0 ; extra == 'dev'
|
|
53
47
|
Requires-Dist: tqdm >4.32 ; extra == 'dev'
|
|
54
48
|
Requires-Dist: twine >=1.13 ; extra == 'dev'
|
|
49
|
+
Requires-Dist: wheel ; extra == 'dev'
|
|
50
|
+
Requires-Dist: sphinx >=6.0.0 ; extra == 'dev'
|
|
51
|
+
Requires-Dist: sphinx-autobuild >=2021.3.14 ; extra == 'dev'
|
|
52
|
+
Requires-Dist: sphinx-rtd-theme >=1.0.0 ; extra == 'dev'
|
|
53
|
+
Requires-Dist: towncrier <22,>=21 ; extra == 'dev'
|
|
54
|
+
Requires-Dist: eth-tester[py-evm] <0.12.0b1,>=0.11.0b1 ; extra == 'dev'
|
|
55
|
+
Requires-Dist: py-geth >=4.1.0 ; extra == 'dev'
|
|
56
|
+
Requires-Dist: pytest-asyncio <0.23,>=0.18.1 ; extra == 'dev'
|
|
57
|
+
Requires-Dist: pytest-xdist >=2.4.0 ; extra == 'dev'
|
|
58
|
+
Requires-Dist: pytest >=7.0.0 ; extra == 'dev'
|
|
55
59
|
Provides-Extra: docs
|
|
56
|
-
Requires-Dist: sphinx >=
|
|
60
|
+
Requires-Dist: sphinx >=6.0.0 ; extra == 'docs'
|
|
61
|
+
Requires-Dist: sphinx-autobuild >=2021.3.14 ; extra == 'docs'
|
|
57
62
|
Requires-Dist: sphinx-rtd-theme >=1.0.0 ; extra == 'docs'
|
|
58
63
|
Requires-Dist: towncrier <22,>=21 ; extra == 'docs'
|
|
59
|
-
Provides-Extra:
|
|
60
|
-
Requires-Dist: eth-tester[py-evm] <0.12.0b1,>=0.11.0b1 ; extra == '
|
|
61
|
-
Requires-Dist: py-geth >=4.1.0 ; extra == '
|
|
64
|
+
Provides-Extra: test
|
|
65
|
+
Requires-Dist: eth-tester[py-evm] <0.12.0b1,>=0.11.0b1 ; extra == 'test'
|
|
66
|
+
Requires-Dist: py-geth >=4.1.0 ; 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'
|
|
62
71
|
|
|
63
72
|
# web3.py
|
|
64
73
|
|
|
65
|
-
[](https://discord.gg/GHryRvPB84)
|
|
74
|
+
[](https://discord.gg/GHryRvPB84)
|
|
67
75
|
[](https://circleci.com/gh/ethereum/web3.py)
|
|
76
|
+
[](https://badge.fury.io/py/web3)
|
|
77
|
+
[](https://pypi.python.org/pypi/web3)
|
|
78
|
+
[](https://web3py.readthedocs.io/en/latest/?badge=latest)
|
|
68
79
|
|
|
69
80
|
A Python library for interacting with Ethereum.
|
|
70
81
|
|
|
@@ -14,24 +14,25 @@ ens/specs/normalization_spec.json,sha256=xn3N9a-6KHMLu3MeCBsmOxSzIzUQykzE9EscKK1
|
|
|
14
14
|
web3/__init__.py,sha256=30-1_zz8k8y-7EyFf8gjHPyNd9LctEkB0ButoXfDkFg,900
|
|
15
15
|
web3/constants.py,sha256=eQLRQVMFPbgpOjjkPTMHkY-syncJuO-sPX5UrCSRjzQ,564
|
|
16
16
|
web3/datastructures.py,sha256=Yc45cXgoXvhV0HPvnmkFFOEVDtLr-Pftc_f5q-uQY1M,10939
|
|
17
|
-
web3/exceptions.py,sha256=
|
|
17
|
+
web3/exceptions.py,sha256=VoB2dwZagBVTJn9712xcdJJPyq_bwhFt4prf2H9ukMs,8742
|
|
18
18
|
web3/geth.py,sha256=IQYeqiVSqcskuXWgDR35UBuVsD-whhvTpDltO4vvCvE,5867
|
|
19
19
|
web3/logs.py,sha256=ROs-mDMH_ZOecE7hfbWA5yp27G38FbLjX4lO_WtlZxQ,198
|
|
20
|
-
web3/main.py,sha256=
|
|
21
|
-
web3/manager.py,sha256=
|
|
22
|
-
web3/method.py,sha256=
|
|
23
|
-
web3/module.py,sha256=
|
|
20
|
+
web3/main.py,sha256=AFAV0Y_zIjo9ZuAlQTEMbUPN5iGyHRpS8mS-wFkw8-E,14350
|
|
21
|
+
web3/manager.py,sha256=9ze-9eluei5_CCA3G-kMP_KWzllD2iv9oJQbeXyU3ao,20730
|
|
22
|
+
web3/method.py,sha256=Uv29Vng93VC5-HHeRok30PUbGCg42SNA2YsxiweTgWA,8593
|
|
23
|
+
web3/module.py,sha256=Djz589nMXZzelVELGPzsw9CHgqmKTUwOZ7pTgkCPs-U,5996
|
|
24
24
|
web3/net.py,sha256=Y3vPzHWVFkfHEZoJxjDOt4tp5ERmZrMuyi4ZFOLmIeA,1562
|
|
25
25
|
web3/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
26
|
web3/testing.py,sha256=Ury_-7XSstJ8bkCfdGEi4Cr76QzSfW7v_zfPlDlLJj0,923
|
|
27
27
|
web3/tracing.py,sha256=ZcOam7t-uEZXyui6Cndv6RYeCZP5jh1TBn2hG8sv17Q,3098
|
|
28
|
-
web3/types.py,sha256=
|
|
28
|
+
web3/types.py,sha256=5-F0i2zbX0dUk7e1YaNqGAGNqS9ER90kDkPnx0pj89Y,12881
|
|
29
29
|
web3/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
30
|
web3/_utils/abi.py,sha256=yFKB5DjeEPRGzsoI1SJgUB23fhKGtNvG18xxl3WX2zk,30677
|
|
31
31
|
web3/_utils/async_caching.py,sha256=2XnaKCHBTTDK6B2R_YZvjJqIRUpbMDIU1uYrq-Lcyp8,486
|
|
32
32
|
web3/_utils/async_transactions.py,sha256=C2P1B9F15S0apvqhYCrvx5bU8HA7HTPVJIDsgtHLRno,5225
|
|
33
|
+
web3/_utils/batching.py,sha256=SbFKYFCRTrkFMFNa4HA4DkD_Qbjc6atnebMObyuQeHE,6316
|
|
33
34
|
web3/_utils/blocks.py,sha256=SZ17qSJuPAH5Dz-eQPGOsZw_QtkG19zvpSYMv6mEDok,2138
|
|
34
|
-
web3/_utils/caching.py,sha256
|
|
35
|
+
web3/_utils/caching.py,sha256=-9jyR33wBWrWGp1S7LFvovDQblLLYr8Kz7oujnJwhqA,5406
|
|
35
36
|
web3/_utils/contracts.py,sha256=U_TyoeqP79hGKZEmPqhS3LxuaxUJBxH9aIXK9c5LpsQ,14206
|
|
36
37
|
web3/_utils/datatypes.py,sha256=nI0C9XWl46gFj1RpwuoHfVqb4e73wlaerE1LNyMg3oo,1701
|
|
37
38
|
web3/_utils/decorators.py,sha256=bYIoVL0DjHWU2-KOmg-UYg6rICeThlLVZpH9yM2NT8s,1825
|
|
@@ -39,7 +40,7 @@ web3/_utils/empty.py,sha256=ccgxFk5qm2x2ZeD8b17wX5cCAJPkPFuHrNQNMDslytY,132
|
|
|
39
40
|
web3/_utils/encoding.py,sha256=lP4idUeJWVlTgW7mwACTsZUbH1b9Q7BJLNovPobMlOo,9262
|
|
40
41
|
web3/_utils/ens.py,sha256=2BvzfegBkR7vH3Fq7lo_LsgfT912Zj-mR8eUt6o_lBA,2434
|
|
41
42
|
web3/_utils/error_formatters_utils.py,sha256=uRXm6P6z4cUTTlQRLFLtuC3FYOjR0lrIlQToR5f_gzI,6868
|
|
42
|
-
web3/_utils/events.py,sha256=
|
|
43
|
+
web3/_utils/events.py,sha256=5uCTfzpwp115BQowbLp2MISqhjP0ReWByR9YPqk8SDw,17363
|
|
43
44
|
web3/_utils/fee_utils.py,sha256=hlY-PDtXNddufcpBQHxWmd7wwK3-XcaJ8trRpKKb8sA,2099
|
|
44
45
|
web3/_utils/filters.py,sha256=M9FpffgVXmDaoUk0HjAhVNi9Krq6hMlKE01n_JxHOMQ,11980
|
|
45
46
|
web3/_utils/formatters.py,sha256=RfRZU0aXC99s6OoLMY7D-fcYJyVAYBEwdbw-JIDjbZE,3067
|
|
@@ -58,7 +59,7 @@ web3/_utils/type_conversion.py,sha256=s6cg3WDCQIarQLWw_GfctaJjXhS_EcokUNO-S_ccvn
|
|
|
58
59
|
web3/_utils/utility_methods.py,sha256=7VCpo5ysvPoGjFuDj5gT1Niva2l3BADUvNeJFlL3Yvg,2559
|
|
59
60
|
web3/_utils/validation.py,sha256=rNkfc5gZ6Ga_PMnG6LQGFKP3830RZag0Sc4ZgFd7dL4,6370
|
|
60
61
|
web3/_utils/windows.py,sha256=IlFUtqYSbUUfFRx60zvEwpiZd080WpOrA4ojm4tmSEE,994
|
|
61
|
-
web3/_utils/compat/__init__.py,sha256=
|
|
62
|
+
web3/_utils/compat/__init__.py,sha256=34AN_Z0CWT1RhVlvnlOtS5xhXFWrUrYp2VBlwbnSj7A,547
|
|
62
63
|
web3/_utils/contract_sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
64
|
web3/_utils/contract_sources/compile_contracts.py,sha256=C3eLY6gJ4xj9FunNwn4YPb9c8ElORkN8O4ddBa_kKqI,6486
|
|
64
65
|
web3/_utils/contract_sources/contract_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -86,14 +87,14 @@ web3/_utils/contract_sources/contract_data/storage_contract.py,sha256=NhoWNlWltN
|
|
|
86
87
|
web3/_utils/contract_sources/contract_data/string_contract.py,sha256=zZdglZ6se_aqMIUKN3-3zR57h8zyDyUQIgtSIXtdSzg,11586
|
|
87
88
|
web3/_utils/contract_sources/contract_data/tuple_contracts.py,sha256=qt0cGM1Kh-LlRYn04-fpSPQJAWcGrvP8EKPCJvsrnvE,23180
|
|
88
89
|
web3/_utils/module_testing/__init__.py,sha256=tPFAaX7xOR50CPTq24UeY-1CX1LQxxmEOPr0-tIRkoE,376
|
|
89
|
-
web3/_utils/module_testing/eth_module.py,sha256=
|
|
90
|
+
web3/_utils/module_testing/eth_module.py,sha256=XMLXB-SvyKWc0bF1XVYCVUNUIb0yYHg3ML8JZ-BHIY0,186043
|
|
90
91
|
web3/_utils/module_testing/go_ethereum_admin_module.py,sha256=_c-6SyzZkfAJ-7ySXUpw9FEr4cg-ShRdAGSAHWanCtY,3406
|
|
91
92
|
web3/_utils/module_testing/go_ethereum_txpool_module.py,sha256=5f8XL8-2x3keyGRaITxMQYl9oQzjgqGn8zobB-j9BPs,1176
|
|
92
|
-
web3/_utils/module_testing/module_testing_utils.py,sha256=
|
|
93
|
+
web3/_utils/module_testing/module_testing_utils.py,sha256=3z5YntflwzR3B1Bo7-GSdx_VitfnrUJwW9wclElAU1g,5862
|
|
93
94
|
web3/_utils/module_testing/net_module.py,sha256=ifUTC-5fTcQbwpm0X09OdD5RSPnn00T8klFeYe8tTm4,1272
|
|
94
95
|
web3/_utils/module_testing/persistent_connection_provider.py,sha256=RDcyBIznwweuG2X-57vq1jhMqYMK9lJRDEpaXuljwuE,16567
|
|
95
96
|
web3/_utils/module_testing/utils.py,sha256=7jYtIKfOdrQnj1pDB0gLyoN_b8U3ZyEYbMU4dxaLljs,10023
|
|
96
|
-
web3/_utils/module_testing/web3_module.py,sha256=
|
|
97
|
+
web3/_utils/module_testing/web3_module.py,sha256=lfLOshDOr-SpnaN0iVcff-q-HUOw8XSBIwQeBO7TaJo,25121
|
|
97
98
|
web3/auto/__init__.py,sha256=ZbzAiCZMdt_tCTTPvH6t8NCVNroKKkt7TSVBBNR74Is,44
|
|
98
99
|
web3/auto/gethdev.py,sha256=MuWD2gxv0xDv_SzPsp9mSkS1oG4P54xFK83qw9NvswA,438
|
|
99
100
|
web3/beacon/__init__.py,sha256=8VmlbCbMiZBpEISoMcz72MoewtQxlUBk9FCfYud3Elw,65
|
|
@@ -104,17 +105,17 @@ web3/contract/__init__.py,sha256=EX_RmT8D2DDKKsk1U8grCNdLq9b1rF-8xWaR53CBiew,187
|
|
|
104
105
|
web3/contract/async_contract.py,sha256=LiYBEOh11myVOuHss9iwHDQcLAHtsSW1mlzpcDnMvmo,20515
|
|
105
106
|
web3/contract/base_contract.py,sha256=Vbgd00EAsfYBcYwTE_-8lVN62CrqLD9z4CeRPJbs3ik,37011
|
|
106
107
|
web3/contract/contract.py,sha256=cF0tsOjbJpg6zOBqZ_02btl3O4HTABcEnUzYzFiDcpo,20124
|
|
107
|
-
web3/contract/utils.py,sha256=
|
|
108
|
+
web3/contract/utils.py,sha256=vymvU8edobFFQ8pu2RsWr-uUXiF__TWzwFo5TRorWZk,16662
|
|
108
109
|
web3/eth/__init__.py,sha256=CrYZXIlIdKTmznnLNUaA-C3eLvftBnmlVt9uxm-dwAI,124
|
|
109
|
-
web3/eth/async_eth.py,sha256=
|
|
110
|
+
web3/eth/async_eth.py,sha256=pi1DMLa_g4_At2tq4tXFG06-UM_u2v73gEf5fZqSZIQ,24043
|
|
110
111
|
web3/eth/base_eth.py,sha256=UUH0Fw0HVa_mBEQ_CbCDO01yCVDsj33d8yOv7Oe-QD0,6905
|
|
111
|
-
web3/eth/eth.py,sha256=
|
|
112
|
+
web3/eth/eth.py,sha256=Qcayt-j4EfkM4YUXqygiF6Diz8kfet1spxRRsqtnPGY,20961
|
|
112
113
|
web3/gas_strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
113
114
|
web3/gas_strategies/rpc.py,sha256=3Va-32jdmHkX7tzQCmh17ms2D6te5zZcqHP1326BdpY,352
|
|
114
|
-
web3/gas_strategies/time_based.py,sha256=
|
|
115
|
+
web3/gas_strategies/time_based.py,sha256=48aFmh3FWgswD1DZlHllLOXrBm8Abh7rHmeo0IHTrAw,8949
|
|
115
116
|
web3/middleware/__init__.py,sha256=3aCt9x2A9x_Hg0QnqsN0MDbm2yw2WFTNjzlt1ytYrdQ,2414
|
|
116
117
|
web3/middleware/attrdict.py,sha256=NY5yxlFOfLBBmcIjl8R-uP2dTz9ITIyTttG8-QcJWCI,2259
|
|
117
|
-
web3/middleware/base.py,sha256=
|
|
118
|
+
web3/middleware/base.py,sha256=AFIRLRxoQ63lEdhsRe-sATyHaYdiwNVklPOGc9ivXrA,5103
|
|
118
119
|
web3/middleware/buffered_gas_estimate.py,sha256=EmxUd-uO959UVroPsPKkl7oDa8Tw6N8BQLB6Urng5Eo,1647
|
|
119
120
|
web3/middleware/filter.py,sha256=vaQUJYKGRIHNgt1zPzRLfx_wICbL0uT7OcYGBlIzdD4,22174
|
|
120
121
|
web3/middleware/formatting.py,sha256=hqe5XQE1n5Fmj6riJp7i3oIoZkd-4ChQc7UK8f3HB6I,7567
|
|
@@ -126,25 +127,25 @@ web3/middleware/signing.py,sha256=8obqMCxrTuYgXezfTtic5CFrDrAqHikb-0PhQ3NmOz8,57
|
|
|
126
127
|
web3/middleware/stalecheck.py,sha256=oWRA69BGIbNGjHSnUVOBnoxOYJZYjzRzlqqL5RRlnzk,2680
|
|
127
128
|
web3/middleware/validation.py,sha256=QxActrJk_zsXXiwpadP2MUjZBS5E50OJOtUwVrm9XVo,4280
|
|
128
129
|
web3/providers/__init__.py,sha256=PLRNgSNqMjXKGM-qAatJTGSaQjmjzQW6jYxS3lVX_w0,470
|
|
129
|
-
web3/providers/async_base.py,sha256=
|
|
130
|
+
web3/providers/async_base.py,sha256=61eaIK-SyuIOoSIHOtJ9vNpxTRPqTxTS392_iMcVp8s,6832
|
|
130
131
|
web3/providers/auto.py,sha256=Zx3CHKoRkmiw3Jte2BLNPiJAFd8rDXNGfA3XtxZvHgc,3465
|
|
131
|
-
web3/providers/base.py,sha256=
|
|
132
|
-
web3/providers/ipc.py,sha256=
|
|
133
|
-
web3/providers/legacy_websocket.py,sha256=
|
|
132
|
+
web3/providers/base.py,sha256=Dypc9zlrre4IFNglFOmR_1IcLCtCFzMAvnj_IYfYXpU,5884
|
|
133
|
+
web3/providers/ipc.py,sha256=wvC8Eq6OZ65ctpUAn9SvoBCLR_x-Hgur390_b3AU100,6355
|
|
134
|
+
web3/providers/legacy_websocket.py,sha256=6mFEQVlVoc71AyDvPGGt3KQudQKdMxoHvokg6Fb4VOw,4767
|
|
134
135
|
web3/providers/eth_tester/__init__.py,sha256=J6wazY3hQySsUfpFgwCXbEMo-CGEZjRo11RCg4UXKmA,83
|
|
135
136
|
web3/providers/eth_tester/defaults.py,sha256=YCck0DUgNl_RtFjVYox4m5yfh4-LvrAuvKSJDc7VcBs,12776
|
|
136
137
|
web3/providers/eth_tester/main.py,sha256=U19sNDeHs36A4IYQ0HFGyXdZvuXiYvoSMNWVuki0WwI,7807
|
|
137
138
|
web3/providers/eth_tester/middleware.py,sha256=mrPHXTWrkRq3q6QV3pMmVwdEov3VXSryY6OrcSB2SwY,13137
|
|
138
139
|
web3/providers/persistent/__init__.py,sha256=S1s8m1cjPOjD-CCrWrLDP0PGlP1FUqgEw2KdrDeMPgk,283
|
|
139
|
-
web3/providers/persistent/async_ipc.py,sha256=
|
|
140
|
-
web3/providers/persistent/persistent.py,sha256=
|
|
140
|
+
web3/providers/persistent/async_ipc.py,sha256=YtSZWlKwnr78ofBW31jTPpDAOK_Cs305oT-Y7Uhdhnw,6213
|
|
141
|
+
web3/providers/persistent/persistent.py,sha256=2dJtCfhK_Sm6wrEx807XbO0YhADM27agEI8sEgNwoWE,8918
|
|
141
142
|
web3/providers/persistent/persistent_connection.py,sha256=56yjpwDMM2phkJ_M5_QB-A6_CjZc5VrkWhNDweA70d0,1109
|
|
142
|
-
web3/providers/persistent/request_processor.py,sha256=
|
|
143
|
+
web3/providers/persistent/request_processor.py,sha256=E1jJwsvrPBTbufCy2LeNvMdRXf1H-Iz5WTsqyFvPGc0,14504
|
|
143
144
|
web3/providers/persistent/utils.py,sha256=gfY7w1HB8xuE7OujSrbwWYjQuQ8nzRBoxoL8ESinqWM,1140
|
|
144
|
-
web3/providers/persistent/websocket.py,sha256=
|
|
145
|
+
web3/providers/persistent/websocket.py,sha256=L0jIBaSq2XBAPbzpJgBjDsUB0sfIl8p4af5fqIl56a0,5446
|
|
145
146
|
web3/providers/rpc/__init__.py,sha256=d20CaZ6vOXlud5sh6I5JnT_zEGBMpbXl-vCDFMxBNoY,89
|
|
146
|
-
web3/providers/rpc/async_rpc.py,sha256=
|
|
147
|
-
web3/providers/rpc/rpc.py,sha256=
|
|
147
|
+
web3/providers/rpc/async_rpc.py,sha256=QKZE5-TEYQS0tFR9ipJU0vIj1oJOEWoGea2msFnttrM,5430
|
|
148
|
+
web3/providers/rpc/rpc.py,sha256=jjbHbLBDE5SQwpcIw13noTYmnrpYrwyw7MVkYEBewS8,5420
|
|
148
149
|
web3/providers/rpc/utils.py,sha256=U0Zd-wSjPs9K2yskWPfGm7_V1gfnCtIf0ppu53NxLFs,2212
|
|
149
150
|
web3/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
150
151
|
web3/scripts/release/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -160,8 +161,8 @@ web3/utils/address.py,sha256=KC_IpEbixSCuMhaW6V2QCyyJTYKYGS9c8QtI9_aH7zQ,967
|
|
|
160
161
|
web3/utils/async_exception_handling.py,sha256=gfLuzP7Y5rc21jZVjWEYAOZUMJkJd9CmsL297UKReow,3096
|
|
161
162
|
web3/utils/caching.py,sha256=4U-vh61m1dlslwEn_Nl7ybIlMF4W2IAcvMTH-iFzrNM,1618
|
|
162
163
|
web3/utils/exception_handling.py,sha256=12xkzIqMAOx0Jcm6PYL98PmWlLPKFll0p9YoLGS_ZNg,3052
|
|
163
|
-
web3-7.0.
|
|
164
|
-
web3-7.0.
|
|
165
|
-
web3-7.0.
|
|
166
|
-
web3-7.0.
|
|
167
|
-
web3-7.0.
|
|
164
|
+
web3-7.0.0b6.dist-info/LICENSE,sha256=ScEyLx1vWrB0ybKiZKKTXm5QhVksHCEUtTp4lwYV45I,1095
|
|
165
|
+
web3-7.0.0b6.dist-info/METADATA,sha256=utkibUdBJj1dz-TJBBMpWymmbb1QYV4dQE2eqxkSdug,4702
|
|
166
|
+
web3-7.0.0b6.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
167
|
+
web3-7.0.0b6.dist-info/top_level.txt,sha256=iwupuJh7wgypXrpk_awszyri3TahRr5vxSphNyvt1bU,9
|
|
168
|
+
web3-7.0.0b6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|