web3 7.12.1__py3-none-any.whl → 7.14.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.
- ens/async_ens.py +9 -5
- ens/base_ens.py +1 -1
- ens/utils.py +2 -1
- web3/_utils/abi.py +5 -5
- web3/_utils/async_transactions.py +12 -9
- web3/_utils/batching.py +1 -1
- web3/_utils/caching/caching_utils.py +2 -2
- web3/_utils/contracts.py +5 -5
- web3/_utils/ens.py +1 -1
- web3/_utils/events.py +1 -1
- web3/_utils/module_testing/eth_module.py +133 -125
- web3/_utils/module_testing/go_ethereum_admin_module.py +7 -6
- web3/_utils/module_testing/go_ethereum_debug_module.py +5 -4
- web3/_utils/module_testing/go_ethereum_txpool_module.py +6 -3
- web3/_utils/module_testing/module_testing_utils.py +1 -1
- web3/_utils/module_testing/net_module.py +4 -3
- web3/_utils/module_testing/persistent_connection_provider.py +132 -20
- web3/_utils/module_testing/utils.py +7 -6
- web3/_utils/module_testing/web3_module.py +15 -11
- web3/_utils/normalizers.py +3 -3
- web3/_utils/transactions.py +2 -1
- web3/contract/async_contract.py +13 -13
- web3/contract/base_contract.py +11 -12
- web3/contract/utils.py +7 -7
- web3/eth/async_eth.py +3 -14
- web3/exceptions.py +8 -1
- web3/gas_strategies/time_based.py +1 -1
- web3/main.py +24 -11
- web3/manager.py +11 -13
- web3/middleware/__init__.py +1 -1
- web3/middleware/base.py +5 -5
- web3/middleware/buffered_gas_estimate.py +1 -1
- web3/middleware/filter.py +10 -9
- web3/middleware/formatting.py +11 -5
- web3/middleware/gas_price_strategy.py +1 -1
- web3/middleware/names.py +4 -4
- web3/middleware/signing.py +3 -3
- web3/middleware/stalecheck.py +2 -2
- web3/middleware/validation.py +2 -2
- web3/module.py +3 -3
- web3/providers/async_base.py +2 -2
- web3/providers/base.py +2 -2
- web3/providers/eth_tester/defaults.py +2 -2
- web3/providers/eth_tester/main.py +1 -1
- web3/providers/eth_tester/middleware.py +2 -2
- web3/providers/persistent/persistent.py +8 -7
- web3/providers/persistent/persistent_connection.py +1 -1
- web3/providers/persistent/subscription_manager.py +67 -14
- web3/providers/persistent/utils.py +1 -1
- web3/types.py +16 -3
- web3/utils/subscriptions.py +26 -4
- {web3-7.12.1.dist-info → web3-7.14.0.dist-info}/METADATA +1 -1
- {web3-7.12.1.dist-info → web3-7.14.0.dist-info}/RECORD +56 -57
- ens/specs/.DS_Store +0 -0
- {web3-7.12.1.dist-info → web3-7.14.0.dist-info}/WHEEL +0 -0
- {web3-7.12.1.dist-info → web3-7.14.0.dist-info}/licenses/LICENSE +0 -0
- {web3-7.12.1.dist-info → web3-7.14.0.dist-info}/top_level.txt +0 -0
web3/utils/subscriptions.py
CHANGED
|
@@ -30,6 +30,7 @@ from web3.types import (
|
|
|
30
30
|
FilterParams,
|
|
31
31
|
LogReceipt,
|
|
32
32
|
SyncProgress,
|
|
33
|
+
TopicFilter,
|
|
33
34
|
TxData,
|
|
34
35
|
)
|
|
35
36
|
|
|
@@ -50,7 +51,7 @@ TSubscription = TypeVar("TSubscription", bound="EthSubscription[Any]")
|
|
|
50
51
|
class EthSubscriptionContext(Generic[TSubscription, TSubscriptionResult]):
|
|
51
52
|
def __init__(
|
|
52
53
|
self,
|
|
53
|
-
async_w3: "AsyncWeb3",
|
|
54
|
+
async_w3: "AsyncWeb3[Any]",
|
|
54
55
|
subscription: TSubscription,
|
|
55
56
|
result: TSubscriptionResult,
|
|
56
57
|
**kwargs: Any,
|
|
@@ -110,11 +111,14 @@ class EthSubscription(Generic[TSubscriptionResult]):
|
|
|
110
111
|
handler: Optional[EthSubscriptionHandler] = None,
|
|
111
112
|
handler_context: Optional[Dict[str, Any]] = None,
|
|
112
113
|
label: Optional[str] = None,
|
|
114
|
+
parallelize: Optional[bool] = None,
|
|
113
115
|
) -> None:
|
|
114
116
|
self._subscription_params = subscription_params
|
|
115
117
|
self._handler = handler_wrapper(handler)
|
|
116
118
|
self._handler_context = handler_context or {}
|
|
117
119
|
self._label = label
|
|
120
|
+
|
|
121
|
+
self.parallelize = parallelize
|
|
118
122
|
self.handler_call_count = 0
|
|
119
123
|
|
|
120
124
|
@property
|
|
@@ -128,6 +132,7 @@ class EthSubscription(Generic[TSubscriptionResult]):
|
|
|
128
132
|
handler: Optional[EthSubscriptionHandler] = None,
|
|
129
133
|
handler_context: Optional[Dict[str, Any]] = None,
|
|
130
134
|
label: Optional[str] = None,
|
|
135
|
+
parallelize: Optional[bool] = None,
|
|
131
136
|
) -> "EthSubscription[Any]":
|
|
132
137
|
subscription_type = subscription_params[0]
|
|
133
138
|
subscription_arg = (
|
|
@@ -135,7 +140,10 @@ class EthSubscription(Generic[TSubscriptionResult]):
|
|
|
135
140
|
)
|
|
136
141
|
if subscription_type == "newHeads":
|
|
137
142
|
return NewHeadsSubscription(
|
|
138
|
-
handler=handler,
|
|
143
|
+
handler=handler,
|
|
144
|
+
handler_context=handler_context,
|
|
145
|
+
label=label,
|
|
146
|
+
parallelize=parallelize,
|
|
139
147
|
)
|
|
140
148
|
elif subscription_type == "logs":
|
|
141
149
|
subscription_arg = subscription_arg or {}
|
|
@@ -144,6 +152,7 @@ class EthSubscription(Generic[TSubscriptionResult]):
|
|
|
144
152
|
handler=handler,
|
|
145
153
|
handler_context=handler_context,
|
|
146
154
|
label=label,
|
|
155
|
+
parallelize=parallelize,
|
|
147
156
|
)
|
|
148
157
|
elif subscription_type == "newPendingTransactions":
|
|
149
158
|
subscription_arg = subscription_arg or False
|
|
@@ -152,10 +161,14 @@ class EthSubscription(Generic[TSubscriptionResult]):
|
|
|
152
161
|
handler=handler,
|
|
153
162
|
handler_context=handler_context,
|
|
154
163
|
label=label,
|
|
164
|
+
parallelize=parallelize,
|
|
155
165
|
)
|
|
156
166
|
elif subscription_type == "syncing":
|
|
157
167
|
return SyncingSubscription(
|
|
158
|
-
handler=handler,
|
|
168
|
+
handler=handler,
|
|
169
|
+
handler_context=handler_context,
|
|
170
|
+
label=label,
|
|
171
|
+
parallelize=parallelize,
|
|
159
172
|
)
|
|
160
173
|
else:
|
|
161
174
|
params = (
|
|
@@ -168,6 +181,7 @@ class EthSubscription(Generic[TSubscriptionResult]):
|
|
|
168
181
|
handler=handler,
|
|
169
182
|
handler_context=handler_context,
|
|
170
183
|
label=label,
|
|
184
|
+
parallelize=parallelize,
|
|
171
185
|
)
|
|
172
186
|
|
|
173
187
|
@property
|
|
@@ -202,10 +216,11 @@ class LogsSubscription(EthSubscription[LogReceipt]):
|
|
|
202
216
|
address: Optional[
|
|
203
217
|
Union[Address, ChecksumAddress, List[Address], List[ChecksumAddress]]
|
|
204
218
|
] = None,
|
|
205
|
-
topics: Optional[
|
|
219
|
+
topics: Optional[Sequence[TopicFilter]] = None,
|
|
206
220
|
handler: LogsSubscriptionHandler = None,
|
|
207
221
|
handler_context: Optional[Dict[str, Any]] = None,
|
|
208
222
|
label: Optional[str] = None,
|
|
223
|
+
parallelize: Optional[bool] = None,
|
|
209
224
|
) -> None:
|
|
210
225
|
self.address = address
|
|
211
226
|
self.topics = topics
|
|
@@ -222,6 +237,7 @@ class LogsSubscription(EthSubscription[LogReceipt]):
|
|
|
222
237
|
handler=handler,
|
|
223
238
|
handler_context=handler_context,
|
|
224
239
|
label=label,
|
|
240
|
+
parallelize=parallelize,
|
|
225
241
|
)
|
|
226
242
|
|
|
227
243
|
|
|
@@ -237,12 +253,14 @@ class NewHeadsSubscription(EthSubscription[BlockData]):
|
|
|
237
253
|
label: Optional[str] = None,
|
|
238
254
|
handler: Optional[NewHeadsSubscriptionHandler] = None,
|
|
239
255
|
handler_context: Optional[Dict[str, Any]] = None,
|
|
256
|
+
parallelize: Optional[bool] = None,
|
|
240
257
|
) -> None:
|
|
241
258
|
super().__init__(
|
|
242
259
|
subscription_params=("newHeads",),
|
|
243
260
|
handler=handler,
|
|
244
261
|
handler_context=handler_context,
|
|
245
262
|
label=label,
|
|
263
|
+
parallelize=parallelize,
|
|
246
264
|
)
|
|
247
265
|
|
|
248
266
|
|
|
@@ -261,6 +279,7 @@ class PendingTxSubscription(EthSubscription[Union[HexBytes, TxData]]):
|
|
|
261
279
|
label: Optional[str] = None,
|
|
262
280
|
handler: Optional[PendingTxSubscriptionHandler] = None,
|
|
263
281
|
handler_context: Optional[Dict[str, Any]] = None,
|
|
282
|
+
parallelize: Optional[bool] = None,
|
|
264
283
|
) -> None:
|
|
265
284
|
self.full_transactions = full_transactions
|
|
266
285
|
super().__init__(
|
|
@@ -268,6 +287,7 @@ class PendingTxSubscription(EthSubscription[Union[HexBytes, TxData]]):
|
|
|
268
287
|
handler=handler,
|
|
269
288
|
handler_context=handler_context,
|
|
270
289
|
label=label,
|
|
290
|
+
parallelize=parallelize,
|
|
271
291
|
)
|
|
272
292
|
|
|
273
293
|
|
|
@@ -283,10 +303,12 @@ class SyncingSubscription(EthSubscription[SyncProgress]):
|
|
|
283
303
|
label: Optional[str] = None,
|
|
284
304
|
handler: Optional[SyncingSubscriptionHandler] = None,
|
|
285
305
|
handler_context: Optional[Dict[str, Any]] = None,
|
|
306
|
+
parallelize: Optional[bool] = None,
|
|
286
307
|
) -> None:
|
|
287
308
|
super().__init__(
|
|
288
309
|
subscription_params=("syncing",),
|
|
289
310
|
handler=handler,
|
|
290
311
|
handler_context=handler_context,
|
|
291
312
|
label=label,
|
|
313
|
+
parallelize=parallelize,
|
|
292
314
|
)
|
|
@@ -1,47 +1,46 @@
|
|
|
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=
|
|
4
|
+
ens/async_ens.py,sha256=UzpN6Y1VGy3c0W1VQLPKhA8AWQYDJ4JwhdbdDRWjMq4,22734
|
|
5
5
|
ens/auto.py,sha256=w_E6Ua5ZmJVxfdii2aG5I_kQG5B9U5Y2qIFKVNhXo98,41
|
|
6
|
-
ens/base_ens.py,sha256=
|
|
6
|
+
ens/base_ens.py,sha256=QfKsRS4Of4JziV5iytvAxSjIGrkHEQ2CU0uNbjHtq9s,3512
|
|
7
7
|
ens/constants.py,sha256=XCO4Pntwdnw10K_AZ86V0cqcvdUoOkEZvRqoDdFPE_w,913
|
|
8
8
|
ens/contract_data.py,sha256=CZa7Uxzq6rT-KonwHHM_wo-5ry0j1DMbikgEaP27Uy8,148602
|
|
9
9
|
ens/ens.py,sha256=-avaYLLwUAPj8cYxP5fcH5h9aVabG5xuvBkwh5yTbMQ,21722
|
|
10
10
|
ens/exceptions.py,sha256=5h-t3G-lwYchYe4JgHaxD_a_llh56sS6qzo9Rpa0S0o,2442
|
|
11
|
-
ens/utils.py,sha256=
|
|
12
|
-
ens/specs/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
11
|
+
ens/utils.py,sha256=DYPCrIFJPrnWNa-d3-oX2YlKXlLM9dQz43XzVoS4k5I,9354
|
|
13
12
|
ens/specs/nf.json,sha256=tPXKzdhgu9gqNi0UhKC1kzPqSBgy4yHm5TL19RQHBqU,49038
|
|
14
13
|
ens/specs/normalization_spec.json,sha256=8mmjBj4OoYCn7pD4P7hqKP_qy6rpYzpyRinSH3CCP9M,3171499
|
|
15
14
|
web3/__init__.py,sha256=P11QAEV_GYoZq9ij8gDzFx5tKzJY2aMXG-keg2Lg1xs,1277
|
|
16
15
|
web3/constants.py,sha256=eQLRQVMFPbgpOjjkPTMHkY-syncJuO-sPX5UrCSRjzQ,564
|
|
17
16
|
web3/datastructures.py,sha256=J5rdpnuS10pKUfPYqcoorkDw-aHHZNrdiW-Bh7dVDwI,11514
|
|
18
|
-
web3/exceptions.py,sha256=
|
|
17
|
+
web3/exceptions.py,sha256=9qWjvZM-snQTITs8FJbTMnVQygM80ciddwOkSgiioY8,9783
|
|
19
18
|
web3/geth.py,sha256=xVBZWSksBo2ipesAN9V5hzDc_te7kU8ueicFdvpkSO4,7370
|
|
20
19
|
web3/logs.py,sha256=ROs-mDMH_ZOecE7hfbWA5yp27G38FbLjX4lO_WtlZxQ,198
|
|
21
|
-
web3/main.py,sha256=
|
|
22
|
-
web3/manager.py,sha256=
|
|
20
|
+
web3/main.py,sha256=Juqz6suZlWV5uteuQfnELl_1j3m0ZXetC6nYoo3N4s8,16454
|
|
21
|
+
web3/manager.py,sha256=W4STd7iBKaOyZi7ghCCm14tijMXIszblyvPuaq-kum0,22641
|
|
23
22
|
web3/method.py,sha256=BCYend146F5Q149VB2VN11_Z3x8y0lJZH8ShF_VxwV4,8682
|
|
24
|
-
web3/module.py,sha256=
|
|
23
|
+
web3/module.py,sha256=9XHdY0TZxkOj0SYTlE3YLo9OkghS9IhsZ-FEGItLoLk,5632
|
|
25
24
|
web3/net.py,sha256=Y3vPzHWVFkfHEZoJxjDOt4tp5ERmZrMuyi4ZFOLmIeA,1562
|
|
26
25
|
web3/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
26
|
web3/testing.py,sha256=Ury_-7XSstJ8bkCfdGEi4Cr76QzSfW7v_zfPlDlLJj0,923
|
|
28
27
|
web3/tracing.py,sha256=ZcOam7t-uEZXyui6Cndv6RYeCZP5jh1TBn2hG8sv17Q,3098
|
|
29
|
-
web3/types.py,sha256
|
|
28
|
+
web3/types.py,sha256=-BDNWxVkTT6veJoN0XcDAKYjAIZiy7gWdpIezvNqm-8,15459
|
|
30
29
|
web3/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
-
web3/_utils/abi.py,sha256=
|
|
30
|
+
web3/_utils/abi.py,sha256=pa3AYPmVRbWpC3wVRczD30UVBobs-aFUwCLLAaGlq7E,27574
|
|
32
31
|
web3/_utils/abi_element_identifiers.py,sha256=m305lsvUZk-jkPixT0IJd9P5sXqMvmwlwlLeBgEAnBQ,55
|
|
33
32
|
web3/_utils/async_caching.py,sha256=2XnaKCHBTTDK6B2R_YZvjJqIRUpbMDIU1uYrq-Lcyp8,486
|
|
34
|
-
web3/_utils/async_transactions.py,sha256=
|
|
35
|
-
web3/_utils/batching.py,sha256=
|
|
33
|
+
web3/_utils/async_transactions.py,sha256=NJ6RP-mWVe7vkUQ99DBGwjt1k8zZ7Rnfzc7e36B4KOs,5641
|
|
34
|
+
web3/_utils/batching.py,sha256=ZU0K_4pkKYLz87Ml4eEdCk8ll2TAFZj-VLMfv18PnD0,6093
|
|
36
35
|
web3/_utils/blocks.py,sha256=SZ17qSJuPAH5Dz-eQPGOsZw_QtkG19zvpSYMv6mEDok,2138
|
|
37
|
-
web3/_utils/contracts.py,sha256=
|
|
36
|
+
web3/_utils/contracts.py,sha256=UMHbz6MQzHrSjoJVTjHTw3bqHQVjts4mnpYqSDMyb6I,12116
|
|
38
37
|
web3/_utils/datatypes.py,sha256=nI0C9XWl46gFj1RpwuoHfVqb4e73wlaerE1LNyMg3oo,1701
|
|
39
38
|
web3/_utils/decorators.py,sha256=AfueuAYbSAOJZmwv9JBK27iDglO3Rvqmsi6uJckt6QQ,1774
|
|
40
39
|
web3/_utils/empty.py,sha256=ccgxFk5qm2x2ZeD8b17wX5cCAJPkPFuHrNQNMDslytY,132
|
|
41
40
|
web3/_utils/encoding.py,sha256=6A5ObPUgYiaCVcfIW1EC7PlAQ9iOxliJFPS4TbZEV88,9637
|
|
42
|
-
web3/_utils/ens.py,sha256=
|
|
41
|
+
web3/_utils/ens.py,sha256=Z2mZhIFB0NRTdLaBMWpp3z7_Z6UR_mSjosrUx5QNUkw,2696
|
|
43
42
|
web3/_utils/error_formatters_utils.py,sha256=GQmUUW22B2N5e4vX6aiiLenwiwPhE89HfPSt_vYttw0,7405
|
|
44
|
-
web3/_utils/events.py,sha256=
|
|
43
|
+
web3/_utils/events.py,sha256=KLLvWeaxu-_mF_MCUjFy3yiLHiJoqW3dhVN6gUA4UZM,17041
|
|
45
44
|
web3/_utils/fee_utils.py,sha256=MFt27R9E3qFP-Hf87-Lzv0JAiuYRE_qqafyTmzctAYA,2145
|
|
46
45
|
web3/_utils/filters.py,sha256=_LxE-LbuhElTUfW-_fV1tqfdWHxS6a_RyoInD2m6nN0,12243
|
|
47
46
|
web3/_utils/formatters.py,sha256=ld6hUnt4awpbZ6-AoOCDrGM6wgup_e-8G4FxEa3SytM,3719
|
|
@@ -51,16 +50,16 @@ web3/_utils/hypothesis.py,sha256=4Cm4iOWv-uP9irg_Pv63kYNDYUAGhnUH6fOPWRw3A0g,209
|
|
|
51
50
|
web3/_utils/math.py,sha256=4oU5YdbQBXElxK00CxmUZ94ApXFu9QT_TrO0Kho1HTs,1083
|
|
52
51
|
web3/_utils/method_formatters.py,sha256=HI44SfDbg3mhIYJ9JujlsrLDHnhrv-ZVQdTte1gaTxE,41496
|
|
53
52
|
web3/_utils/module.py,sha256=GuVePloTlIBZwFDOjg0zasp53HSJ32umxN1nQhqW-8Y,3175
|
|
54
|
-
web3/_utils/normalizers.py,sha256=
|
|
53
|
+
web3/_utils/normalizers.py,sha256=i1uktLgpkU7Itzv6-MTYhq3y3Q17YE31PXlxH3iYzgQ,7462
|
|
55
54
|
web3/_utils/rpc_abi.py,sha256=m6aHop1di0dl9TrxPi3R-CYfzGMN9ILx4dNjVZF-8YE,8595
|
|
56
55
|
web3/_utils/threads.py,sha256=hNlSd_zheQYN0vC1faWWb9_UQxp_UzaM2fI5C8y0kB0,4245
|
|
57
|
-
web3/_utils/transactions.py,sha256=
|
|
56
|
+
web3/_utils/transactions.py,sha256=fIJrUnhfRxU_6hr4Y3LEmvrlp-vS0MeniYUaR3OuoDg,9058
|
|
58
57
|
web3/_utils/type_conversion.py,sha256=s6cg3WDCQIarQLWw_GfctaJjXhS_EcokUNO-S_ccvng,873
|
|
59
58
|
web3/_utils/utility_methods.py,sha256=4rOzuxbBrxl2LcRih6sRDcHghwqzLOXxVbJxCXoA6Os,2591
|
|
60
59
|
web3/_utils/validation.py,sha256=vdeum81mzZaQ5G8HlmwQnDcWPLAW7aaennRqzv2wG3E,13352
|
|
61
60
|
web3/_utils/windows.py,sha256=IlFUtqYSbUUfFRx60zvEwpiZd080WpOrA4ojm4tmSEE,994
|
|
62
61
|
web3/_utils/caching/__init__.py,sha256=ri-5UGz5PPuYW9W1c2BX5lUJn1oZuvErbDz5NweiveA,284
|
|
63
|
-
web3/_utils/caching/caching_utils.py,sha256=
|
|
62
|
+
web3/_utils/caching/caching_utils.py,sha256=VLBDoi2IRWPBfNuGQtccPdnbIfj-igvgD8ZXZmsKPTc,14283
|
|
64
63
|
web3/_utils/caching/request_caching_validation.py,sha256=9CaL1jJWc8Q_sM0GPixmmJc_Enh6aiC6PKxo9VlpM_Y,9947
|
|
65
64
|
web3/_utils/compat/__init__.py,sha256=RUD0S8wzEv2a9o1UhJD0SIECjzatjJl7vc6RCM2d1Fs,571
|
|
66
65
|
web3/_utils/contract_sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -90,15 +89,15 @@ web3/_utils/contract_sources/contract_data/storage_contract.py,sha256=ARz6J3Gmsn
|
|
|
90
89
|
web3/_utils/contract_sources/contract_data/string_contract.py,sha256=sk6TWvzH7GkRxwioXFm2a7J99riySqipn2EQhfYdzLY,11228
|
|
91
90
|
web3/_utils/contract_sources/contract_data/tuple_contracts.py,sha256=7RlKfKRVXhjJN1j7D4YlQM6BswK3c0VaSxcnPVwAgcg,23176
|
|
92
91
|
web3/_utils/module_testing/__init__.py,sha256=Xr_S46cjr0mypD_Y4ZbeF1EJ-XWfNxWUks5ykhzN10c,485
|
|
93
|
-
web3/_utils/module_testing/eth_module.py,sha256=
|
|
94
|
-
web3/_utils/module_testing/go_ethereum_admin_module.py,sha256=
|
|
95
|
-
web3/_utils/module_testing/go_ethereum_debug_module.py,sha256=
|
|
96
|
-
web3/_utils/module_testing/go_ethereum_txpool_module.py,sha256=
|
|
97
|
-
web3/_utils/module_testing/module_testing_utils.py,sha256=
|
|
98
|
-
web3/_utils/module_testing/net_module.py,sha256=
|
|
99
|
-
web3/_utils/module_testing/persistent_connection_provider.py,sha256=
|
|
100
|
-
web3/_utils/module_testing/utils.py,sha256=
|
|
101
|
-
web3/_utils/module_testing/web3_module.py,sha256=
|
|
92
|
+
web3/_utils/module_testing/eth_module.py,sha256=YmiE0Y1oMUbvIZ99SZ3XAoHc220fWUZDfNJ3hJqdKHQ,197196
|
|
93
|
+
web3/_utils/module_testing/go_ethereum_admin_module.py,sha256=gqtRbbt5AKPq8xKcnQH9kULxJMTK32WA68E8eggQgic,3445
|
|
94
|
+
web3/_utils/module_testing/go_ethereum_debug_module.py,sha256=k2eXf71F4ANwYlTmua-PJvANy5jmcmPx72FDfmSM_q0,4173
|
|
95
|
+
web3/_utils/module_testing/go_ethereum_txpool_module.py,sha256=IXWuu1xG4hKJr6ULonfW3KKrCitFhITCSj3JlU_62eY,1223
|
|
96
|
+
web3/_utils/module_testing/module_testing_utils.py,sha256=eMd6jpkDgcnFfqVwMsoqHfmDLFmbd1bNVUx53gKytpE,5644
|
|
97
|
+
web3/_utils/module_testing/net_module.py,sha256=nsc1T5THY9gm_ORakvhz_PwWlGC4X-peLfHSO3AK9po,1296
|
|
98
|
+
web3/_utils/module_testing/persistent_connection_provider.py,sha256=8xc9iZr5xq1Zx9q3p9awJY9_gnu27ApKiMLOCDtokGI,34802
|
|
99
|
+
web3/_utils/module_testing/utils.py,sha256=urYKZqNpJRRA2u_JBI1zy1fZpnvnxz6a23gpNs4Hp5M,13558
|
|
100
|
+
web3/_utils/module_testing/web3_module.py,sha256=JtckjOMhJZLV7aHVvNlgR9nNPwv2nUGX2dOB2UUNx6k,27720
|
|
102
101
|
web3/auto/__init__.py,sha256=ZbzAiCZMdt_tCTTPvH6t8NCVNroKKkt7TSVBBNR74Is,44
|
|
103
102
|
web3/auto/gethdev.py,sha256=MuWD2gxv0xDv_SzPsp9mSkS1oG4P54xFK83qw9NvswA,438
|
|
104
103
|
web3/beacon/__init__.py,sha256=Ac6YiNgU8D8Ynnh5RwSCx2NwPyjnpFjpXeHuSssFbaU,113
|
|
@@ -106,48 +105,48 @@ web3/beacon/api_endpoints.py,sha256=rkoy4d6igjgHbI0HSE9FEdZSYw94KhPz1gGaPdEjMCg,
|
|
|
106
105
|
web3/beacon/async_beacon.py,sha256=CWchRZANN57174sWz90177eMz0kfQPROQlBLGWNxqs8,9763
|
|
107
106
|
web3/beacon/beacon.py,sha256=awL60kk7syulb2tuwkOFnkS1eki_tZxAk4p34LGPGho,8707
|
|
108
107
|
web3/contract/__init__.py,sha256=qeZRtTw9xriwoD82w6vePDuPBZ35-CMVdkzViBSH3Qs,293
|
|
109
|
-
web3/contract/async_contract.py,sha256=
|
|
110
|
-
web3/contract/base_contract.py,sha256=
|
|
108
|
+
web3/contract/async_contract.py,sha256=1B9FZKoVJLMc4Ih7wh5kGiHdMbNOWby1qub4GnvpYfo,20599
|
|
109
|
+
web3/contract/base_contract.py,sha256=ECEgPUPpy3ayLCFF9xTWY4N63R8K7lFdyLj03BZnEEM,54390
|
|
111
110
|
web3/contract/contract.py,sha256=-TJJMjwybZmQo8-DtGhrjIr7TwVXFoiIsdMan1NFgQY,20562
|
|
112
|
-
web3/contract/utils.py,sha256=
|
|
111
|
+
web3/contract/utils.py,sha256=99blp5jj-xOih9JTUfdSfDHZwuNZRKgl0GfC3Tgj9O0,18626
|
|
113
112
|
web3/eth/__init__.py,sha256=qDLxOcHHIzzPD7xzwy6Wcs0lLPQieB7WN0Ax25ctit8,197
|
|
114
|
-
web3/eth/async_eth.py,sha256=
|
|
113
|
+
web3/eth/async_eth.py,sha256=Bzg9aH7TeyyrCM-lIL-YFIQVLMtecYXryVEwyw67wwY,24540
|
|
115
114
|
web3/eth/base_eth.py,sha256=UUH0Fw0HVa_mBEQ_CbCDO01yCVDsj33d8yOv7Oe-QD0,6905
|
|
116
115
|
web3/eth/eth.py,sha256=zYhotz6GFRVl951oljXHnnlF1GJTgFlgJlA09Soji5k,20806
|
|
117
116
|
web3/gas_strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
117
|
web3/gas_strategies/rpc.py,sha256=lQnKJSSZAjE2_klwdr7tkZkPiYN9mkz1IqbVS2WNo6M,351
|
|
119
|
-
web3/gas_strategies/time_based.py,sha256=
|
|
120
|
-
web3/middleware/__init__.py,sha256=
|
|
118
|
+
web3/gas_strategies/time_based.py,sha256=Big3EfvklkuCJEjHtFs8DLFgY_72BReRyKs0icf7QzQ,9071
|
|
119
|
+
web3/middleware/__init__.py,sha256=uYGi5y5cp10sU2eawpZkPFFo0wDMz9f8aU-t582zZlA,2835
|
|
121
120
|
web3/middleware/attrdict.py,sha256=tIoMEZ3BkmEafnwitGY70o0GS9ShfwReDMxkHuvcOwI,2092
|
|
122
|
-
web3/middleware/base.py,sha256=
|
|
123
|
-
web3/middleware/buffered_gas_estimate.py,sha256=
|
|
124
|
-
web3/middleware/filter.py,sha256=
|
|
125
|
-
web3/middleware/formatting.py,sha256=
|
|
126
|
-
web3/middleware/gas_price_strategy.py,sha256=
|
|
127
|
-
web3/middleware/names.py,sha256=
|
|
121
|
+
web3/middleware/base.py,sha256=DWspmIMF_X5upHw82CCZNAIWLJ2dTawlMTFFQaaDIU0,5745
|
|
122
|
+
web3/middleware/buffered_gas_estimate.py,sha256=8HumDBDfhB2RomSqO8aK9439CskgWgyj0fIXvfDzCME,1652
|
|
123
|
+
web3/middleware/filter.py,sha256=Oo-gbjKY8f8FAZu9m1eu9CDKhRxwPIrHQWVVJ18V-JU,22271
|
|
124
|
+
web3/middleware/formatting.py,sha256=C9NtURX9KILY9EHClhVEUILeYHuzf5iliN24g2YU7u8,7813
|
|
125
|
+
web3/middleware/gas_price_strategy.py,sha256=_RztgnWqiH9FIL7Vpdc0I8mzHoM7f4mV-Lz3aeIqJe4,3784
|
|
126
|
+
web3/middleware/names.py,sha256=ArqdBq0-B_l5tERlK3omrLfFPlfI5uJ7L2tC_CJuNpE,4329
|
|
128
127
|
web3/middleware/proof_of_authority.py,sha256=0AT4jr5CmTdrvl8Jiy-WYy8IFDYBOEaesgHDwpn0c7M,1429
|
|
129
128
|
web3/middleware/pythonic.py,sha256=awc8I6lLzVc2Iv138sps2uf6dMQipskLRBTdvTEEIgQ,348
|
|
130
|
-
web3/middleware/signing.py,sha256=
|
|
131
|
-
web3/middleware/stalecheck.py,sha256=
|
|
132
|
-
web3/middleware/validation.py,sha256=
|
|
129
|
+
web3/middleware/signing.py,sha256=86HhqWSaUWpvfkGJ8mcSwc6bTOBMjTTRR4xjAtP34hE,5910
|
|
130
|
+
web3/middleware/stalecheck.py,sha256=V8xZ_CWnl1eK6KwxCOvEyOCznL6Pn3aJYUepZkIuvqQ,2690
|
|
131
|
+
web3/middleware/validation.py,sha256=DQq43d0TKYfueuq_8V12R-YjICuFZIKlQegjOehtA10,4286
|
|
133
132
|
web3/providers/__init__.py,sha256=YkcSzE9AubvSp-UfvJjyCrdepvziysbqeq2LT0ImDoc,936
|
|
134
|
-
web3/providers/async_base.py,sha256=
|
|
133
|
+
web3/providers/async_base.py,sha256=QdgeVVklfz87bjCTwv2QZMuiRCkmr6nJNIFjGc1eNKo,8251
|
|
135
134
|
web3/providers/auto.py,sha256=9Jacts6375zHEG969lm5LOdmnhG4kJFnh4jMYOySQWU,4300
|
|
136
|
-
web3/providers/base.py,sha256=
|
|
135
|
+
web3/providers/base.py,sha256=JAyGGGT6l7bK_f2shzaiuO3OHKKrt8_Ap1taawqbBgQ,6862
|
|
137
136
|
web3/providers/ipc.py,sha256=Rc0x4cW3NietQz0BjOygs78GzVGqgz0fHFZM6HalpVg,6518
|
|
138
137
|
web3/providers/legacy_websocket.py,sha256=uQb5SmoFPFI809q_2iRhDEo5SkSW3T9tYXuf48stp9A,4744
|
|
139
138
|
web3/providers/eth_tester/__init__.py,sha256=UggyBQdeAyjy1awATW1933jkJcpqqaUYUQEFAQnA2o0,163
|
|
140
|
-
web3/providers/eth_tester/defaults.py,sha256=
|
|
141
|
-
web3/providers/eth_tester/main.py,sha256=
|
|
142
|
-
web3/providers/eth_tester/middleware.py,sha256=
|
|
139
|
+
web3/providers/eth_tester/defaults.py,sha256=S8ZfCw_a1sBBPjcpTgZpaLu1N-gdOSIPuskheokV1pM,12624
|
|
140
|
+
web3/providers/eth_tester/main.py,sha256=88hp1jWB9wCeii-oxF5D6msbR-L4H5N16oMHjLclbo0,7812
|
|
141
|
+
web3/providers/eth_tester/middleware.py,sha256=eInobWZPQ-P6TSJdMJs8uUugRq0MZ76VIOf6E0kJRow,13740
|
|
143
142
|
web3/providers/persistent/__init__.py,sha256=X7tFKJL5BXSwciq5_bRwGRB6bfdWBkIPPWMqCjXIKrA,411
|
|
144
143
|
web3/providers/persistent/async_ipc.py,sha256=6HDKo9hIXhag3nyTbp6J-ZktPLnG-9iHCduQUGD7raM,5049
|
|
145
|
-
web3/providers/persistent/persistent.py,sha256=
|
|
146
|
-
web3/providers/persistent/persistent_connection.py,sha256=
|
|
144
|
+
web3/providers/persistent/persistent.py,sha256=hBtFd3dCqCJd7ueF-gBampi_dJOvR1le672XAEAnSs0,19464
|
|
145
|
+
web3/providers/persistent/persistent_connection.py,sha256=5engUnR5BgV0YISskcNmoE-Ypa5P7P8T4dULIqnSbzQ,3016
|
|
147
146
|
web3/providers/persistent/request_processor.py,sha256=QLVn5MiNwDVsO9hsHPlkUH4zW4H74HRK-duPot4H4Yk,14141
|
|
148
147
|
web3/providers/persistent/subscription_container.py,sha256=yd5pjjz_YnRLuUoxZUxt29Md1VUTemdUIBq8PCJre6Y,1734
|
|
149
|
-
web3/providers/persistent/subscription_manager.py,sha256=
|
|
150
|
-
web3/providers/persistent/utils.py,sha256=
|
|
148
|
+
web3/providers/persistent/subscription_manager.py,sha256=IpCY1P_NtqvlGX493Tb8znWIIMyUiReJ2DPq32EQSJA,13961
|
|
149
|
+
web3/providers/persistent/utils.py,sha256=U7Yu30h4FtU0JfJnFfyNleZJxmNoejQCuU6MeMJjTRo,1145
|
|
151
150
|
web3/providers/persistent/websocket.py,sha256=STf31VNdwidMeAeeL1r5f8v3l66xChKkxZpnZzUiYO8,4577
|
|
152
151
|
web3/providers/rpc/__init__.py,sha256=mObsuwjr7xyHnnRlwzsmbp2JgZdn2NXSSctvpye4AuQ,149
|
|
153
152
|
web3/providers/rpc/async_rpc.py,sha256=S3Dd1gvAJSouYsZg7K-r_uS4BO0YsAPY1wD_3NJng4w,6345
|
|
@@ -164,9 +163,9 @@ web3/utils/address.py,sha256=nzPLiWWCG9BqstDeDOcDwEpteJ8im6ywjLHKpd5akhw,1186
|
|
|
164
163
|
web3/utils/async_exception_handling.py,sha256=OoKbLNwWcY9dxLCbOfxcQPSB1OxWraNqcw8V0ZX-JaQ,3173
|
|
165
164
|
web3/utils/caching.py,sha256=miulUjLOjlOfTux8HWBklpRIa6_fVNTVFHIWcbZt27o,2591
|
|
166
165
|
web3/utils/exception_handling.py,sha256=n-MtO5LNzJDVzHTzO6olzfb2_qEVtVRvink0ixswg-Y,2917
|
|
167
|
-
web3/utils/subscriptions.py,sha256=
|
|
168
|
-
web3-7.
|
|
169
|
-
web3-7.
|
|
170
|
-
web3-7.
|
|
171
|
-
web3-7.
|
|
172
|
-
web3-7.
|
|
166
|
+
web3/utils/subscriptions.py,sha256=ElRi5Vxae1DI2T75KR28DJ7ALe69aZbzfohJXV2W9w4,9371
|
|
167
|
+
web3-7.14.0.dist-info/licenses/LICENSE,sha256=ENGC4gSn0kYaC_mlaXOEwCKmA6W7Z9MeSemc5O2k-h0,1095
|
|
168
|
+
web3-7.14.0.dist-info/METADATA,sha256=y6vx8R3F0hatblIMEWeD4h50fLKIFrUVviSaoGV_7Mo,5621
|
|
169
|
+
web3-7.14.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
170
|
+
web3-7.14.0.dist-info/top_level.txt,sha256=iwupuJh7wgypXrpk_awszyri3TahRr5vxSphNyvt1bU,9
|
|
171
|
+
web3-7.14.0.dist-info/RECORD,,
|
ens/specs/.DS_Store
DELETED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|