web3 6.19.0__py3-none-any.whl → 6.20.0__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/__init__.py +21 -3
- web3/providers/__init__.py +19 -0
- web3/types.py +27 -1
- {web3-6.19.0.dist-info → web3-6.20.0.dist-info}/METADATA +1 -1
- {web3-6.19.0.dist-info → web3-6.20.0.dist-info}/RECORD +9 -9
- {web3-6.19.0.dist-info → web3-6.20.0.dist-info}/WHEEL +1 -1
- {web3-6.19.0.dist-info → web3-6.20.0.dist-info}/LICENSE +0 -0
- {web3-6.19.0.dist-info → web3-6.20.0.dist-info}/entry_points.txt +0 -0
- {web3-6.19.0.dist-info → web3-6.20.0.dist-info}/top_level.txt +0 -0
web3/__init__.py
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
from eth_account import Account # noqa: E402
|
|
2
2
|
import sys
|
|
3
3
|
|
|
4
|
+
from web3.providers import (
|
|
5
|
+
AsyncBaseProvider,
|
|
6
|
+
AutoProvider,
|
|
7
|
+
BaseProvider,
|
|
8
|
+
JSONBaseProvider,
|
|
9
|
+
PersistentConnectionProvider,
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
|
|
4
13
|
if sys.version_info.major == 3 and sys.version_info.minor < 8:
|
|
5
14
|
import pkg_resources
|
|
6
15
|
|
|
@@ -19,6 +28,7 @@ from web3.providers.async_rpc import ( # noqa: E402
|
|
|
19
28
|
AsyncHTTPProvider,
|
|
20
29
|
)
|
|
21
30
|
from web3.providers.eth_tester import ( # noqa: E402
|
|
31
|
+
AsyncEthereumTesterProvider,
|
|
22
32
|
EthereumTesterProvider,
|
|
23
33
|
)
|
|
24
34
|
from web3.providers.ipc import ( # noqa: E402
|
|
@@ -35,13 +45,21 @@ from web3.providers.websocket import ( # noqa: E402
|
|
|
35
45
|
|
|
36
46
|
__all__ = [
|
|
37
47
|
"__version__",
|
|
48
|
+
"Account",
|
|
49
|
+
# web3:
|
|
38
50
|
"AsyncWeb3",
|
|
39
51
|
"Web3",
|
|
52
|
+
# providers:
|
|
53
|
+
"AsyncBaseProvider",
|
|
54
|
+
"AsyncEthereumTesterProvider",
|
|
55
|
+
"AsyncHTTPProvider",
|
|
56
|
+
"AutoProvider",
|
|
57
|
+
"BaseProvider",
|
|
58
|
+
"EthereumTesterProvider",
|
|
40
59
|
"HTTPProvider",
|
|
41
60
|
"IPCProvider",
|
|
61
|
+
"JSONBaseProvider",
|
|
62
|
+
"PersistentConnectionProvider",
|
|
42
63
|
"WebsocketProvider",
|
|
43
64
|
"WebsocketProviderV2",
|
|
44
|
-
"EthereumTesterProvider",
|
|
45
|
-
"Account",
|
|
46
|
-
"AsyncHTTPProvider",
|
|
47
65
|
]
|
web3/providers/__init__.py
CHANGED
|
@@ -8,6 +8,10 @@ from .base import (
|
|
|
8
8
|
BaseProvider,
|
|
9
9
|
JSONBaseProvider,
|
|
10
10
|
)
|
|
11
|
+
from .eth_tester import (
|
|
12
|
+
AsyncEthereumTesterProvider,
|
|
13
|
+
EthereumTesterProvider,
|
|
14
|
+
)
|
|
11
15
|
from .ipc import (
|
|
12
16
|
IPCProvider,
|
|
13
17
|
)
|
|
@@ -24,3 +28,18 @@ from .persistent import (
|
|
|
24
28
|
from .auto import (
|
|
25
29
|
AutoProvider,
|
|
26
30
|
)
|
|
31
|
+
|
|
32
|
+
__all__ = [
|
|
33
|
+
"AsyncBaseProvider",
|
|
34
|
+
"AsyncEthereumTesterProvider",
|
|
35
|
+
"AsyncHTTPProvider",
|
|
36
|
+
"AutoProvider",
|
|
37
|
+
"BaseProvider",
|
|
38
|
+
"EthereumTesterProvider",
|
|
39
|
+
"HTTPProvider",
|
|
40
|
+
"IPCProvider",
|
|
41
|
+
"JSONBaseProvider",
|
|
42
|
+
"PersistentConnectionProvider",
|
|
43
|
+
"WebsocketProvider",
|
|
44
|
+
"WebsocketProviderV2",
|
|
45
|
+
]
|
web3/types.py
CHANGED
|
@@ -112,7 +112,33 @@ class ABIFunction(TypedDict, total=False):
|
|
|
112
112
|
type: Literal["function", "constructor", "fallback", "receive"]
|
|
113
113
|
|
|
114
114
|
|
|
115
|
-
|
|
115
|
+
class ABIComponent(TypedDict):
|
|
116
|
+
"""
|
|
117
|
+
TypedDict representing an `ABIElement` component.
|
|
118
|
+
"""
|
|
119
|
+
|
|
120
|
+
name: str
|
|
121
|
+
"""Name of the component."""
|
|
122
|
+
type: str
|
|
123
|
+
"""Type of the component."""
|
|
124
|
+
components: NotRequired[Sequence["ABIComponent"]]
|
|
125
|
+
"""List of nested `ABI` components for ABI types."""
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
class ABIError(TypedDict):
|
|
129
|
+
"""
|
|
130
|
+
TypedDict representing the `ABI` for an error.
|
|
131
|
+
"""
|
|
132
|
+
|
|
133
|
+
type: Literal["error"]
|
|
134
|
+
"""Type of the error."""
|
|
135
|
+
name: str
|
|
136
|
+
"""Name of the error."""
|
|
137
|
+
inputs: NotRequired[Sequence["ABIComponent"]]
|
|
138
|
+
"""Error input components."""
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
ABIElement = Union[ABIFunction, ABIEvent, ABIError]
|
|
116
142
|
ABI = Sequence[Union[ABIFunction, ABIEvent]]
|
|
117
143
|
|
|
118
144
|
|
|
@@ -114,7 +114,7 @@ ethpm/validation/manifest.py,sha256=fH4mnpfDZYuBRUWQtx5i0b4CBIErZ-AW7dVeHpYgrH4,
|
|
|
114
114
|
ethpm/validation/misc.py,sha256=9E_GMyhfd_VX3yRXZ0mVlsE0xTFTx9n0fVN1KkNORb4,1072
|
|
115
115
|
ethpm/validation/package.py,sha256=CowvdeSNUL7TWaGkuhr2AU_-oatyJ2fBVQwLUFchGH8,2317
|
|
116
116
|
ethpm/validation/uri.py,sha256=JtNfDghEU-8yDoETIbEZnamlpFGF1fAQ-tdJQhqn7mg,4873
|
|
117
|
-
web3/__init__.py,sha256=
|
|
117
|
+
web3/__init__.py,sha256=mrHPtxA8F4eAAItRN97nLZmLbeBGd7IHCcJa2jtlGbk,1342
|
|
118
118
|
web3/constants.py,sha256=eQLRQVMFPbgpOjjkPTMHkY-syncJuO-sPX5UrCSRjzQ,564
|
|
119
119
|
web3/datastructures.py,sha256=5SuX36p-hGuiK3RwnG8yVsgROvkqzHdDKfTGSzghSy0,9234
|
|
120
120
|
web3/exceptions.py,sha256=3c0uRBiKvRJCSQUALYDCjjsjcyqx_XJM4_oQBXKrBrs,7390
|
|
@@ -129,7 +129,7 @@ web3/pm.py,sha256=wE-W7zLrphOZfiAe2I95yHIbov8I1-hcVwbx7ymYCAk,21608
|
|
|
129
129
|
web3/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
130
|
web3/testing.py,sha256=X7rKGcuEbRCvwXlWuJOfzZvXHboIEeoK-bIWnF_zn1A,951
|
|
131
131
|
web3/tracing.py,sha256=OBRKLfoSSstzUrk-oqkrbPYPTNGTaPX7-VO5iEt1FwY,2968
|
|
132
|
-
web3/types.py,sha256=
|
|
132
|
+
web3/types.py,sha256=2A9RjWbG2UVeaG9MSO8sQi5BTRVtGY8epcxxn7o1vPA,13633
|
|
133
133
|
web3/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
134
|
web3/_utils/abi.py,sha256=OOnpQSGVAPgbgCXcxGypmhMMj1tq27HXyqPYrTqkchU,30587
|
|
135
135
|
web3/_utils/async_caching.py,sha256=2XnaKCHBTTDK6B2R_YZvjJqIRUpbMDIU1uYrq-Lcyp8,486
|
|
@@ -237,7 +237,7 @@ web3/middleware/signing.py,sha256=ozgePUa-wJRLC2IXWqND45WSh_MFJSrdh8LsiZNDIC8,66
|
|
|
237
237
|
web3/middleware/simulate_unmined_transaction.py,sha256=yWanxvM48UoIe3zD5JivMGzxfjXGUrMTG7PIL_o1nWk,1014
|
|
238
238
|
web3/middleware/stalecheck.py,sha256=vFuNDkwpij0dBTYCefxdM9GRp5LedPR_oH9Shg6V10M,3739
|
|
239
239
|
web3/middleware/validation.py,sha256=NHAJyXdpMR5Ec0pw_TzWdNkPJ0M4tSf6xW67Bt30CgY,4578
|
|
240
|
-
web3/providers/__init__.py,sha256=
|
|
240
|
+
web3/providers/__init__.py,sha256=YL93wkBt-uknmuWWXIcO8SvucDUgfcT3pbLTDH-ggu0,827
|
|
241
241
|
web3/providers/async_base.py,sha256=ezQPXP8nXYzDQ4rt64Bd_HFhjB7oCX38hwQSGXHQ5pY,4423
|
|
242
242
|
web3/providers/async_rpc.py,sha256=1tf72qPH8A3IW2ZJus9nORL-PfPgRtmj1YRFASVWyuM,2879
|
|
243
243
|
web3/providers/auto.py,sha256=-dS_-2nhg2jOA432P0w3Ul3NUIso8rTl4uGUGo0XBw0,3447
|
|
@@ -275,9 +275,9 @@ web3/utils/address.py,sha256=KC_IpEbixSCuMhaW6V2QCyyJTYKYGS9c8QtI9_aH7zQ,967
|
|
|
275
275
|
web3/utils/async_exception_handling.py,sha256=gfLuzP7Y5rc21jZVjWEYAOZUMJkJd9CmsL297UKReow,3096
|
|
276
276
|
web3/utils/caching.py,sha256=PgfuXiVgPYQuS0S89-jkNOJ3L2uTRt2MkVBvzMkaAXI,1770
|
|
277
277
|
web3/utils/exception_handling.py,sha256=12xkzIqMAOx0Jcm6PYL98PmWlLPKFll0p9YoLGS_ZNg,3052
|
|
278
|
-
web3-6.
|
|
279
|
-
web3-6.
|
|
280
|
-
web3-6.
|
|
281
|
-
web3-6.
|
|
282
|
-
web3-6.
|
|
283
|
-
web3-6.
|
|
278
|
+
web3-6.20.0.dist-info/LICENSE,sha256=ulnXiEqqFp9VyWe8yMFdtDi70RMBJk3mpY3FKujv6l8,1090
|
|
279
|
+
web3-6.20.0.dist-info/METADATA,sha256=cC9L2SF3-lO9WL9ziLUD6ugwlOPokbWQeeJL_IN2ou4,4522
|
|
280
|
+
web3-6.20.0.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
|
281
|
+
web3-6.20.0.dist-info/entry_points.txt,sha256=2qjzGxFUlYBzoP68fcB3AJyMRunWI70uBoxNp17Brb0,64
|
|
282
|
+
web3-6.20.0.dist-info/top_level.txt,sha256=5lRZg30BFUrz8eUK60C7OAjNT3FI4YsGmA-vZ0WIOik,15
|
|
283
|
+
web3-6.20.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|