web3 7.0.0b3__py3-none-any.whl → 7.0.0b5__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/_normalization.py +1 -3
- ens/async_ens.py +12 -9
- ens/contract_data.py +2 -2
- ens/ens.py +8 -5
- ens/exceptions.py +19 -27
- ens/specs/nf.json +1 -1
- ens/specs/normalization_spec.json +1 -1
- ens/utils.py +17 -10
- web3/__init__.py +2 -7
- web3/_utils/abi.py +30 -29
- web3/_utils/async_transactions.py +7 -4
- web3/_utils/blocks.py +6 -2
- web3/_utils/caching.py +7 -3
- web3/_utils/compat/__init__.py +0 -3
- web3/_utils/contract_sources/compile_contracts.py +1 -1
- web3/_utils/contracts.py +17 -17
- web3/_utils/datatypes.py +5 -1
- web3/_utils/decorators.py +6 -1
- web3/_utils/empty.py +1 -1
- web3/_utils/encoding.py +15 -10
- web3/_utils/error_formatters_utils.py +5 -3
- web3/_utils/events.py +38 -36
- web3/_utils/fee_utils.py +2 -4
- web3/_utils/filters.py +23 -18
- web3/_utils/formatters.py +2 -2
- web3/_utils/math.py +3 -2
- web3/_utils/method_formatters.py +24 -28
- web3/_utils/module.py +2 -1
- web3/_utils/module_testing/__init__.py +0 -3
- web3/_utils/module_testing/eth_module.py +494 -432
- web3/_utils/module_testing/module_testing_utils.py +1 -3
- web3/_utils/module_testing/utils.py +14 -7
- web3/_utils/normalizers.py +3 -3
- web3/_utils/request.py +4 -4
- web3/_utils/rpc_abi.py +5 -19
- web3/_utils/threads.py +8 -7
- web3/_utils/transactions.py +14 -12
- web3/_utils/type_conversion.py +5 -1
- web3/_utils/validation.py +12 -10
- web3/contract/async_contract.py +23 -18
- web3/contract/base_contract.py +69 -74
- web3/contract/contract.py +25 -19
- web3/contract/utils.py +11 -6
- web3/datastructures.py +22 -12
- web3/eth/async_eth.py +38 -32
- web3/eth/base_eth.py +7 -3
- web3/eth/eth.py +20 -15
- web3/exceptions.py +83 -78
- web3/gas_strategies/time_based.py +2 -4
- web3/geth.py +1 -191
- web3/main.py +6 -6
- web3/manager.py +128 -68
- web3/method.py +13 -5
- web3/middleware/base.py +4 -2
- web3/middleware/filter.py +45 -23
- web3/middleware/formatting.py +6 -3
- web3/middleware/names.py +4 -1
- web3/middleware/signing.py +8 -4
- web3/middleware/stalecheck.py +2 -1
- web3/providers/eth_tester/defaults.py +1 -49
- web3/providers/eth_tester/main.py +41 -15
- web3/providers/eth_tester/middleware.py +13 -9
- web3/providers/ipc.py +7 -3
- web3/providers/persistent/async_ipc.py +6 -7
- web3/providers/persistent/persistent.py +11 -1
- web3/providers/persistent/request_processor.py +7 -7
- web3/providers/persistent/websocket.py +3 -3
- web3/providers/rpc/async_rpc.py +24 -7
- web3/providers/rpc/rpc.py +30 -17
- web3/providers/rpc/utils.py +1 -10
- web3/testing.py +4 -4
- web3/tools/benchmark/main.py +13 -9
- web3/tools/benchmark/node.py +2 -8
- web3/tools/benchmark/utils.py +1 -1
- web3/tracing.py +9 -5
- web3/types.py +20 -23
- {web3-7.0.0b3.dist-info → web3-7.0.0b5.dist-info}/METADATA +13 -28
- {web3-7.0.0b3.dist-info → web3-7.0.0b5.dist-info}/RECORD +81 -82
- web3/_utils/module_testing/go_ethereum_personal_module.py +0 -300
- {web3-7.0.0b3.dist-info → web3-7.0.0b5.dist-info}/LICENSE +0 -0
- {web3-7.0.0b3.dist-info → web3-7.0.0b5.dist-info}/WHEEL +0 -0
- {web3-7.0.0b3.dist-info → web3-7.0.0b5.dist-info}/top_level.txt +0 -0
web3/tools/benchmark/main.py
CHANGED
|
@@ -120,20 +120,20 @@ def main(logger: logging.Logger, num_calls: int) -> None:
|
|
|
120
120
|
{
|
|
121
121
|
"name": "eth_gasPrice",
|
|
122
122
|
"params": {},
|
|
123
|
-
"exec": lambda: w3_http.eth.gas_price,
|
|
124
|
-
"async_exec": lambda: async_w3_http.eth.gas_price,
|
|
123
|
+
"exec": lambda w3_http=w3_http: w3_http.eth.gas_price,
|
|
124
|
+
"async_exec": lambda async_w3_http=async_w3_http: async_w3_http.eth.gas_price, # noqa: E501
|
|
125
125
|
},
|
|
126
126
|
{
|
|
127
127
|
"name": "eth_sendTransaction",
|
|
128
128
|
"params": {},
|
|
129
|
-
"exec": lambda: w3_http.eth.send_transaction(
|
|
129
|
+
"exec": lambda w3_http=w3_http, coinbase=coinbase: w3_http.eth.send_transaction( # noqa: E501
|
|
130
130
|
{
|
|
131
131
|
"to": "0xd3CdA913deB6f67967B99D67aCDFa1712C293601",
|
|
132
132
|
"from": coinbase,
|
|
133
133
|
"value": Wei(1),
|
|
134
134
|
}
|
|
135
135
|
),
|
|
136
|
-
"async_exec": lambda: async_w3_http.eth.send_transaction(
|
|
136
|
+
"async_exec": lambda async_w3_http=async_w3_http, async_coinbase=async_coinbase: async_w3_http.eth.send_transaction( # noqa: E501
|
|
137
137
|
{
|
|
138
138
|
"to": "0xd3CdA913deB6f67967B99D67aCDFa1712C293601",
|
|
139
139
|
"from": async_coinbase,
|
|
@@ -144,18 +144,22 @@ def main(logger: logging.Logger, num_calls: int) -> None:
|
|
|
144
144
|
{
|
|
145
145
|
"name": "eth_blockNumber",
|
|
146
146
|
"params": {},
|
|
147
|
-
"exec": lambda: w3_http.eth.block_number,
|
|
148
|
-
"async_exec": lambda: async_w3_http.eth.block_number,
|
|
147
|
+
"exec": lambda w3_http=w3_http: w3_http.eth.block_number,
|
|
148
|
+
"async_exec": lambda async_w3_http=async_w3_http: async_w3_http.eth.block_number, # noqa: E501
|
|
149
149
|
},
|
|
150
150
|
{
|
|
151
151
|
"name": "eth_getBlock",
|
|
152
152
|
"params": {},
|
|
153
|
-
"exec": lambda: w3_http.eth.get_block(1),
|
|
154
|
-
"async_exec": lambda: async_w3_http.eth.get_block(
|
|
153
|
+
"exec": lambda w3_http=w3_http: w3_http.eth.get_block(1),
|
|
154
|
+
"async_exec": lambda async_w3_http=async_w3_http: async_w3_http.eth.get_block( # noqa: E501
|
|
155
|
+
1
|
|
156
|
+
),
|
|
155
157
|
},
|
|
156
158
|
]
|
|
157
159
|
|
|
158
|
-
def benchmark(
|
|
160
|
+
def benchmark(
|
|
161
|
+
method: Dict[str, Any], loop: asyncio.AbstractEventLoop = loop
|
|
162
|
+
) -> None:
|
|
159
163
|
outcomes: Dict[str, Union[str, float]] = defaultdict(lambda: "N/A")
|
|
160
164
|
outcomes["name"] = method["name"]
|
|
161
165
|
outcomes["HTTPProvider"] = sync_benchmark(
|
web3/tools/benchmark/node.py
CHANGED
|
@@ -24,10 +24,7 @@ from web3.tools.benchmark.utils import (
|
|
|
24
24
|
kill_proc_gracefully,
|
|
25
25
|
)
|
|
26
26
|
|
|
27
|
-
GETH_FIXTURE_ZIP = "geth-1.13.
|
|
28
|
-
|
|
29
|
-
# use same coinbase value as in `web3.py/tests/integration/generate_fixtures/common.py`
|
|
30
|
-
COINBASE = "0xdc544d1aa88ff8bbd2f2aec754b1f1e99e1812fd"
|
|
27
|
+
GETH_FIXTURE_ZIP = "geth-1.13.14-fixture.zip"
|
|
31
28
|
|
|
32
29
|
|
|
33
30
|
class GethBenchmarkFixture:
|
|
@@ -84,7 +81,7 @@ class GethBenchmarkFixture:
|
|
|
84
81
|
"--dev.period",
|
|
85
82
|
"100",
|
|
86
83
|
"--datadir",
|
|
87
|
-
|
|
84
|
+
datadir,
|
|
88
85
|
"--nodiscover",
|
|
89
86
|
"--http",
|
|
90
87
|
"--http.port",
|
|
@@ -92,9 +89,6 @@ class GethBenchmarkFixture:
|
|
|
92
89
|
"--http.api",
|
|
93
90
|
"admin,eth,net,web3",
|
|
94
91
|
"--ipcdisable",
|
|
95
|
-
"--allow-insecure-unlock",
|
|
96
|
-
"--miner.etherbase",
|
|
97
|
-
COINBASE[2:],
|
|
98
92
|
"--password",
|
|
99
93
|
os.path.join(datadir, "keystore", "pw.txt"),
|
|
100
94
|
)
|
web3/tools/benchmark/utils.py
CHANGED
|
@@ -17,7 +17,7 @@ def wait_for_socket(ipc_path: str, timeout: int = 30) -> None:
|
|
|
17
17
|
sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
|
|
18
18
|
sock.connect(ipc_path)
|
|
19
19
|
sock.settimeout(timeout)
|
|
20
|
-
except
|
|
20
|
+
except OSError:
|
|
21
21
|
time.sleep(0.01)
|
|
22
22
|
else:
|
|
23
23
|
break
|
web3/tracing.py
CHANGED
|
@@ -53,10 +53,10 @@ class Tracing(Module):
|
|
|
53
53
|
self._default_block = value
|
|
54
54
|
|
|
55
55
|
def trace_replay_transaction_munger(
|
|
56
|
-
self,
|
|
57
|
-
block_identifier: Union[_Hash32, BlockIdentifier],
|
|
58
|
-
mode: TraceMode = ["trace"],
|
|
56
|
+
self, block_identifier: Union[_Hash32, BlockIdentifier], mode: TraceMode = None
|
|
59
57
|
) -> Tuple[Union[BlockIdentifier, _Hash32], TraceMode]:
|
|
58
|
+
if mode is None:
|
|
59
|
+
mode = ["trace"]
|
|
60
60
|
return (block_identifier, mode)
|
|
61
61
|
|
|
62
62
|
trace_replay_transaction: Method[Callable[..., BlockTrace]] = Method(
|
|
@@ -86,9 +86,11 @@ class Tracing(Module):
|
|
|
86
86
|
def trace_call_munger(
|
|
87
87
|
self,
|
|
88
88
|
transaction: TxParams,
|
|
89
|
-
mode: TraceMode =
|
|
89
|
+
mode: TraceMode = None,
|
|
90
90
|
block_identifier: Optional[BlockIdentifier] = None,
|
|
91
91
|
) -> Tuple[TxParams, TraceMode, BlockIdentifier]:
|
|
92
|
+
if mode is None:
|
|
93
|
+
mode = ["trace"]
|
|
92
94
|
if "from" not in transaction and is_checksum_address(
|
|
93
95
|
self.w3.eth.default_account
|
|
94
96
|
):
|
|
@@ -105,8 +107,10 @@ class Tracing(Module):
|
|
|
105
107
|
)
|
|
106
108
|
|
|
107
109
|
def trace_transactions_munger(
|
|
108
|
-
self, raw_transaction: HexStr, mode: TraceMode =
|
|
110
|
+
self, raw_transaction: HexStr, mode: TraceMode = None
|
|
109
111
|
) -> Tuple[HexStr, TraceMode]:
|
|
112
|
+
if mode is None:
|
|
113
|
+
mode = ["trace"]
|
|
110
114
|
return raw_transaction, mode
|
|
111
115
|
|
|
112
116
|
trace_raw_transaction: Method[Callable[..., BlockTrace]] = Method(
|
web3/types.py
CHANGED
|
@@ -5,10 +5,12 @@ from typing import (
|
|
|
5
5
|
Coroutine,
|
|
6
6
|
Dict,
|
|
7
7
|
List,
|
|
8
|
+
Literal,
|
|
8
9
|
NewType,
|
|
9
10
|
Optional,
|
|
10
11
|
Sequence,
|
|
11
12
|
Type,
|
|
13
|
+
TypedDict,
|
|
12
14
|
TypeVar,
|
|
13
15
|
Union,
|
|
14
16
|
)
|
|
@@ -25,9 +27,7 @@ from hexbytes import (
|
|
|
25
27
|
)
|
|
26
28
|
|
|
27
29
|
from web3._utils.compat import (
|
|
28
|
-
Literal,
|
|
29
30
|
NotRequired,
|
|
30
|
-
TypedDict,
|
|
31
31
|
)
|
|
32
32
|
from web3._utils.function_identifiers import (
|
|
33
33
|
FallbackFn,
|
|
@@ -165,6 +165,8 @@ TxData = TypedDict(
|
|
|
165
165
|
TxParams = TypedDict(
|
|
166
166
|
"TxParams",
|
|
167
167
|
{
|
|
168
|
+
"accessList": AccessList,
|
|
169
|
+
"blobVersionedHashes": Sequence[Union[str, HexStr, bytes, HexBytes]],
|
|
168
170
|
"chainId": int,
|
|
169
171
|
"data": Union[bytes, HexStr],
|
|
170
172
|
# addr or ens
|
|
@@ -172,6 +174,7 @@ TxParams = TypedDict(
|
|
|
172
174
|
"gas": int,
|
|
173
175
|
# legacy pricing
|
|
174
176
|
"gasPrice": Wei,
|
|
177
|
+
"maxFeePerBlobGas": Union[str, Wei],
|
|
175
178
|
# dynamic fee pricing
|
|
176
179
|
"maxFeePerGas": Union[str, Wei],
|
|
177
180
|
"maxPriorityFeePerGas": Union[str, Wei],
|
|
@@ -185,15 +188,11 @@ TxParams = TypedDict(
|
|
|
185
188
|
)
|
|
186
189
|
|
|
187
190
|
|
|
188
|
-
WithdrawalData
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
"address": ChecksumAddress,
|
|
194
|
-
"amount": Gwei,
|
|
195
|
-
},
|
|
196
|
-
)
|
|
191
|
+
class WithdrawalData(TypedDict):
|
|
192
|
+
index: int
|
|
193
|
+
validator_index: int
|
|
194
|
+
address: ChecksumAddress
|
|
195
|
+
amount: Gwei
|
|
197
196
|
|
|
198
197
|
|
|
199
198
|
class BlockData(TypedDict, total=False):
|
|
@@ -220,6 +219,9 @@ class BlockData(TypedDict, total=False):
|
|
|
220
219
|
uncles: Sequence[HexBytes]
|
|
221
220
|
withdrawals: Sequence[WithdrawalData]
|
|
222
221
|
withdrawalsRoot: HexBytes
|
|
222
|
+
parentBeaconBlockRoot: HexBytes
|
|
223
|
+
blobGasUsed: int
|
|
224
|
+
excessBlobGas: int
|
|
223
225
|
|
|
224
226
|
# ExtraDataToPOAMiddleware replaces extraData w/ proofOfAuthorityData
|
|
225
227
|
proofOfAuthorityData: HexBytes
|
|
@@ -293,7 +295,7 @@ RPCId = Optional[Union[int, str]]
|
|
|
293
295
|
|
|
294
296
|
|
|
295
297
|
class RPCResponse(TypedDict, total=False):
|
|
296
|
-
error:
|
|
298
|
+
error: RPCError
|
|
297
299
|
id: RPCId
|
|
298
300
|
jsonrpc: Literal["2.0"]
|
|
299
301
|
result: Any
|
|
@@ -340,17 +342,12 @@ class FeeHistory(TypedDict):
|
|
|
340
342
|
reward: List[List[Wei]]
|
|
341
343
|
|
|
342
344
|
|
|
343
|
-
StateOverrideParams =
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
"state": Optional[Dict[HexStr, HexStr]],
|
|
350
|
-
"stateDiff": Optional[Dict[HexStr, HexStr]],
|
|
351
|
-
},
|
|
352
|
-
total=False,
|
|
353
|
-
)
|
|
345
|
+
class StateOverrideParams(TypedDict, total=False):
|
|
346
|
+
balance: Optional[Wei]
|
|
347
|
+
nonce: Optional[int]
|
|
348
|
+
code: Optional[Union[bytes, HexStr]]
|
|
349
|
+
state: Optional[Dict[HexStr, HexStr]]
|
|
350
|
+
stateDiff: Optional[Dict[HexStr, HexStr]]
|
|
354
351
|
|
|
355
352
|
|
|
356
353
|
StateOverride = Dict[ChecksumAddress, StateOverrideParams]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: web3
|
|
3
|
-
Version: 7.0.
|
|
3
|
+
Version: 7.0.0b5
|
|
4
4
|
Summary: web3.py
|
|
5
5
|
Home-page: https://github.com/ethereum/web3.py
|
|
6
6
|
Author: The Ethereum Foundation
|
|
@@ -20,12 +20,12 @@ Requires-Python: >=3.8
|
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Requires-Dist: aiohttp >=3.7.4.post0
|
|
23
|
-
Requires-Dist: eth-abi >=
|
|
24
|
-
Requires-Dist: eth-account >=0.
|
|
23
|
+
Requires-Dist: eth-abi >=5.0.1
|
|
24
|
+
Requires-Dist: eth-account >=0.12.2
|
|
25
25
|
Requires-Dist: eth-hash[pycryptodome] >=0.5.1
|
|
26
|
-
Requires-Dist: eth-typing >=
|
|
26
|
+
Requires-Dist: eth-typing >=4.0.0
|
|
27
27
|
Requires-Dist: eth-utils >=4.0.0
|
|
28
|
-
Requires-Dist: hexbytes
|
|
28
|
+
Requires-Dist: hexbytes >=1.2.0
|
|
29
29
|
Requires-Dist: pydantic >=2.4.0
|
|
30
30
|
Requires-Dist: requests >=2.16.0
|
|
31
31
|
Requires-Dist: typing-extensions >=4.0.1
|
|
@@ -33,46 +33,31 @@ Requires-Dist: websockets >=10.0.0
|
|
|
33
33
|
Requires-Dist: pyunormalize >=15.0.0
|
|
34
34
|
Requires-Dist: pywin32 >=223 ; platform_system == "Windows"
|
|
35
35
|
Provides-Extra: dev
|
|
36
|
-
Requires-Dist: eth-tester[py-evm]
|
|
36
|
+
Requires-Dist: eth-tester[py-evm] <0.12.0b1,>=0.11.0b1 ; extra == 'dev'
|
|
37
37
|
Requires-Dist: py-geth >=4.1.0 ; extra == 'dev'
|
|
38
|
-
Requires-Dist: black >=22.1.0 ; extra == 'dev'
|
|
39
|
-
Requires-Dist: blocklint >=0.2.4 ; extra == 'dev'
|
|
40
|
-
Requires-Dist: flake8 ==3.8.3 ; extra == 'dev'
|
|
41
|
-
Requires-Dist: isort >=5.11.0 ; extra == 'dev'
|
|
42
|
-
Requires-Dist: mypy ==1.4.1 ; extra == 'dev'
|
|
43
|
-
Requires-Dist: types-setuptools >=57.4.4 ; extra == 'dev'
|
|
44
|
-
Requires-Dist: types-requests >=2.26.1 ; extra == 'dev'
|
|
45
38
|
Requires-Dist: sphinx >=5.3.0 ; extra == 'dev'
|
|
46
39
|
Requires-Dist: sphinx-rtd-theme >=1.0.0 ; extra == 'dev'
|
|
47
40
|
Requires-Dist: towncrier <22,>=21 ; extra == 'dev'
|
|
41
|
+
Requires-Dist: build >=0.9.0 ; extra == 'dev'
|
|
48
42
|
Requires-Dist: bumpversion ; extra == 'dev'
|
|
49
43
|
Requires-Dist: flaky >=3.7.0 ; extra == 'dev'
|
|
50
44
|
Requires-Dist: hypothesis >=3.31.2 ; extra == 'dev'
|
|
51
|
-
Requires-Dist:
|
|
45
|
+
Requires-Dist: pre-commit >=3.4.0 ; extra == 'dev'
|
|
52
46
|
Requires-Dist: pytest-asyncio <0.23,>=0.18.1 ; extra == 'dev'
|
|
53
47
|
Requires-Dist: pytest-mock >=1.10 ; extra == 'dev'
|
|
54
48
|
Requires-Dist: pytest-watch >=4.2 ; extra == 'dev'
|
|
55
49
|
Requires-Dist: pytest-xdist >=1.29 ; extra == 'dev'
|
|
50
|
+
Requires-Dist: pytest >=7.0.0 ; extra == 'dev'
|
|
56
51
|
Requires-Dist: setuptools >=38.6.0 ; extra == 'dev'
|
|
57
52
|
Requires-Dist: tox >=3.18.0 ; extra == 'dev'
|
|
58
53
|
Requires-Dist: tqdm >4.32 ; extra == 'dev'
|
|
59
54
|
Requires-Dist: twine >=1.13 ; extra == 'dev'
|
|
60
|
-
Requires-Dist: build >=0.9.0 ; extra == 'dev'
|
|
61
|
-
Requires-Dist: importlib-metadata <5.0 ; (python_version < "3.8") and extra == 'dev'
|
|
62
55
|
Provides-Extra: docs
|
|
63
56
|
Requires-Dist: sphinx >=5.3.0 ; extra == 'docs'
|
|
64
57
|
Requires-Dist: sphinx-rtd-theme >=1.0.0 ; extra == 'docs'
|
|
65
58
|
Requires-Dist: towncrier <22,>=21 ; extra == 'docs'
|
|
66
|
-
Provides-Extra: linter
|
|
67
|
-
Requires-Dist: black >=22.1.0 ; extra == 'linter'
|
|
68
|
-
Requires-Dist: blocklint >=0.2.4 ; extra == 'linter'
|
|
69
|
-
Requires-Dist: flake8 ==3.8.3 ; extra == 'linter'
|
|
70
|
-
Requires-Dist: isort >=5.11.0 ; extra == 'linter'
|
|
71
|
-
Requires-Dist: mypy ==1.4.1 ; extra == 'linter'
|
|
72
|
-
Requires-Dist: types-setuptools >=57.4.4 ; extra == 'linter'
|
|
73
|
-
Requires-Dist: types-requests >=2.26.1 ; extra == 'linter'
|
|
74
59
|
Provides-Extra: tester
|
|
75
|
-
Requires-Dist: eth-tester[py-evm]
|
|
60
|
+
Requires-Dist: eth-tester[py-evm] <0.12.0b1,>=0.11.0b1 ; extra == 'tester'
|
|
76
61
|
Requires-Dist: py-geth >=4.1.0 ; extra == 'tester'
|
|
77
62
|
|
|
78
63
|
# web3.py
|
|
@@ -83,9 +68,9 @@ Requires-Dist: py-geth >=4.1.0 ; extra == 'tester'
|
|
|
83
68
|
|
|
84
69
|
A Python library for interacting with Ethereum.
|
|
85
70
|
|
|
86
|
-
-
|
|
71
|
+
- Python 3.8+ support
|
|
87
72
|
|
|
88
|
-
|
|
73
|
+
______________________________________________________________________
|
|
89
74
|
|
|
90
75
|
## Quickstart
|
|
91
76
|
|
|
@@ -103,6 +88,6 @@ guidelines for [contributing](https://web3py.readthedocs.io/en/latest/contributi
|
|
|
103
88
|
then check out issues that are labeled
|
|
104
89
|
[Good First Issue](https://github.com/ethereum/web3.py/issues?q=is%3Aissue+is%3Aopen+label%3A%22Good+First+Issue%22).
|
|
105
90
|
|
|
106
|
-
|
|
91
|
+
______________________________________________________________________
|
|
107
92
|
|
|
108
93
|
#### Questions on implementation or usage? Join the conversation on [discord](https://discord.gg/GHryRvPB84).
|
|
@@ -1,66 +1,66 @@
|
|
|
1
1
|
ens/__init__.py,sha256=Dtb57dzb4nLJbtR-XCziJs075vqNpmNfiDSIVe5EPnE,285
|
|
2
|
-
ens/_normalization.py,sha256=
|
|
2
|
+
ens/_normalization.py,sha256=U1CbJhX6R1kYPPlYq4IampbSuql97J6tcq3xnIwmpEs,16786
|
|
3
3
|
ens/abis.py,sha256=0Ec_lqe7HBsVpQrID3ccFMhx8Vb7S0TGFbeuRdXhuCE,34745
|
|
4
|
-
ens/async_ens.py,sha256=
|
|
4
|
+
ens/async_ens.py,sha256=jAUIblA4bW-gliAw-cKcu9xYgySBbFbv9tnVAk1iedE,22414
|
|
5
5
|
ens/auto.py,sha256=w_E6Ua5ZmJVxfdii2aG5I_kQG5B9U5Y2qIFKVNhXo98,41
|
|
6
6
|
ens/base_ens.py,sha256=BTYB5SCkif5r08Aou7haMhJABaggOHn3S4tUW4MLsVo,3477
|
|
7
7
|
ens/constants.py,sha256=XCO4Pntwdnw10K_AZ86V0cqcvdUoOkEZvRqoDdFPE_w,913
|
|
8
|
-
ens/contract_data.py,sha256=
|
|
9
|
-
ens/ens.py,sha256=
|
|
10
|
-
ens/exceptions.py,sha256=
|
|
11
|
-
ens/utils.py,sha256=
|
|
12
|
-
ens/specs/nf.json,sha256=
|
|
13
|
-
ens/specs/normalization_spec.json,sha256=
|
|
14
|
-
web3/__init__.py,sha256=
|
|
8
|
+
ens/contract_data.py,sha256=CZa7Uxzq6rT-KonwHHM_wo-5ry0j1DMbikgEaP27Uy8,148602
|
|
9
|
+
ens/ens.py,sha256=4LLQ_XDHhlPlG0-RGAErGZ9ltybg4yKyftdW84AeldE,21718
|
|
10
|
+
ens/exceptions.py,sha256=iJWDuOX1xXNgMlzuPX7NyArLTxK0LoowJyExyRLSDj0,2683
|
|
11
|
+
ens/utils.py,sha256=ZtKimoQdEm1HxsEmJxe1fo1PQZGaP_wRSU6ai9-HVu0,9421
|
|
12
|
+
ens/specs/nf.json,sha256=kGZcTE_UxTl3WZwMUP6m8KbQQOKdw7PWzmuW7ewQSUs,48403
|
|
13
|
+
ens/specs/normalization_spec.json,sha256=xn3N9a-6KHMLu3MeCBsmOxSzIzUQykzE9EscKK1a3w8,3115334
|
|
14
|
+
web3/__init__.py,sha256=30-1_zz8k8y-7EyFf8gjHPyNd9LctEkB0ButoXfDkFg,900
|
|
15
15
|
web3/constants.py,sha256=eQLRQVMFPbgpOjjkPTMHkY-syncJuO-sPX5UrCSRjzQ,564
|
|
16
|
-
web3/datastructures.py,sha256=
|
|
17
|
-
web3/exceptions.py,sha256=
|
|
18
|
-
web3/geth.py,sha256=
|
|
16
|
+
web3/datastructures.py,sha256=Yc45cXgoXvhV0HPvnmkFFOEVDtLr-Pftc_f5q-uQY1M,10939
|
|
17
|
+
web3/exceptions.py,sha256=0hTYMQQQjFMguX3I-ux-rFobNEvLcfZvj0JXKVqfI6U,8246
|
|
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=
|
|
20
|
+
web3/main.py,sha256=m_wgFhgIPkAU6zK7OboX0cS1p-Wh0r894oxyQjejtAE,13936
|
|
21
|
+
web3/manager.py,sha256=SVuQIkGv-U2CejhXBFphDboc17opGdulzJ0s4zusygo,17029
|
|
22
|
+
web3/method.py,sha256=gzMSinK-oMnsxzAD0OCQo3gBXtDRyT-TL9gNt3uncig,7874
|
|
23
23
|
web3/module.py,sha256=zonvW0meqdfG82-KgtYTF9ketsCShK2m9b-HYRBJRZg,4793
|
|
24
24
|
web3/net.py,sha256=Y3vPzHWVFkfHEZoJxjDOt4tp5ERmZrMuyi4ZFOLmIeA,1562
|
|
25
25
|
web3/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
-
web3/testing.py,sha256=
|
|
27
|
-
web3/tracing.py,sha256=
|
|
28
|
-
web3/types.py,sha256=
|
|
26
|
+
web3/testing.py,sha256=Ury_-7XSstJ8bkCfdGEi4Cr76QzSfW7v_zfPlDlLJj0,923
|
|
27
|
+
web3/tracing.py,sha256=ZcOam7t-uEZXyui6Cndv6RYeCZP5jh1TBn2hG8sv17Q,3098
|
|
28
|
+
web3/types.py,sha256=1auFCb-wFN_a0hE7XjUAuPzLyt32xWdPNBXH7frWOtE,12623
|
|
29
29
|
web3/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
web3/_utils/abi.py,sha256=
|
|
30
|
+
web3/_utils/abi.py,sha256=yFKB5DjeEPRGzsoI1SJgUB23fhKGtNvG18xxl3WX2zk,30677
|
|
31
31
|
web3/_utils/async_caching.py,sha256=2XnaKCHBTTDK6B2R_YZvjJqIRUpbMDIU1uYrq-Lcyp8,486
|
|
32
|
-
web3/_utils/async_transactions.py,sha256=
|
|
33
|
-
web3/_utils/blocks.py,sha256=
|
|
34
|
-
web3/_utils/caching.py,sha256=
|
|
35
|
-
web3/_utils/contracts.py,sha256=
|
|
36
|
-
web3/_utils/datatypes.py,sha256=
|
|
37
|
-
web3/_utils/decorators.py,sha256=
|
|
38
|
-
web3/_utils/empty.py,sha256=
|
|
39
|
-
web3/_utils/encoding.py,sha256=
|
|
32
|
+
web3/_utils/async_transactions.py,sha256=C2P1B9F15S0apvqhYCrvx5bU8HA7HTPVJIDsgtHLRno,5225
|
|
33
|
+
web3/_utils/blocks.py,sha256=SZ17qSJuPAH5Dz-eQPGOsZw_QtkG19zvpSYMv6mEDok,2138
|
|
34
|
+
web3/_utils/caching.py,sha256=h0ieRKbeVsYyy86RG_oZxQZgGk5_YDj4hEinfszlK9Y,4841
|
|
35
|
+
web3/_utils/contracts.py,sha256=U_TyoeqP79hGKZEmPqhS3LxuaxUJBxH9aIXK9c5LpsQ,14206
|
|
36
|
+
web3/_utils/datatypes.py,sha256=nI0C9XWl46gFj1RpwuoHfVqb4e73wlaerE1LNyMg3oo,1701
|
|
37
|
+
web3/_utils/decorators.py,sha256=bYIoVL0DjHWU2-KOmg-UYg6rICeThlLVZpH9yM2NT8s,1825
|
|
38
|
+
web3/_utils/empty.py,sha256=ccgxFk5qm2x2ZeD8b17wX5cCAJPkPFuHrNQNMDslytY,132
|
|
39
|
+
web3/_utils/encoding.py,sha256=lP4idUeJWVlTgW7mwACTsZUbH1b9Q7BJLNovPobMlOo,9262
|
|
40
40
|
web3/_utils/ens.py,sha256=2BvzfegBkR7vH3Fq7lo_LsgfT912Zj-mR8eUt6o_lBA,2434
|
|
41
|
-
web3/_utils/error_formatters_utils.py,sha256=
|
|
42
|
-
web3/_utils/events.py,sha256=
|
|
43
|
-
web3/_utils/fee_utils.py,sha256=
|
|
44
|
-
web3/_utils/filters.py,sha256=
|
|
45
|
-
web3/_utils/formatters.py,sha256=
|
|
41
|
+
web3/_utils/error_formatters_utils.py,sha256=uRXm6P6z4cUTTlQRLFLtuC3FYOjR0lrIlQToR5f_gzI,6868
|
|
42
|
+
web3/_utils/events.py,sha256=K-jE53D15WT1AudWJZCA3UPOLpJPlJiPmWoR-ltfHPk,17406
|
|
43
|
+
web3/_utils/fee_utils.py,sha256=hlY-PDtXNddufcpBQHxWmd7wwK3-XcaJ8trRpKKb8sA,2099
|
|
44
|
+
web3/_utils/filters.py,sha256=M9FpffgVXmDaoUk0HjAhVNi9Krq6hMlKE01n_JxHOMQ,11980
|
|
45
|
+
web3/_utils/formatters.py,sha256=RfRZU0aXC99s6OoLMY7D-fcYJyVAYBEwdbw-JIDjbZE,3067
|
|
46
46
|
web3/_utils/function_identifiers.py,sha256=m305lsvUZk-jkPixT0IJd9P5sXqMvmwlwlLeBgEAnBQ,55
|
|
47
47
|
web3/_utils/http.py,sha256=GDHmbeWt7UoHkRBvFt9Py5Vzr2ZLzH9WxAqEYZCJ53s,205
|
|
48
48
|
web3/_utils/hypothesis.py,sha256=4Cm4iOWv-uP9irg_Pv63kYNDYUAGhnUH6fOPWRw3A0g,209
|
|
49
|
-
web3/_utils/math.py,sha256=
|
|
50
|
-
web3/_utils/method_formatters.py,sha256=
|
|
51
|
-
web3/_utils/module.py,sha256=
|
|
52
|
-
web3/_utils/normalizers.py,sha256=
|
|
53
|
-
web3/_utils/request.py,sha256=
|
|
54
|
-
web3/_utils/rpc_abi.py,sha256=
|
|
55
|
-
web3/_utils/threads.py,sha256=
|
|
56
|
-
web3/_utils/transactions.py,sha256=
|
|
57
|
-
web3/_utils/type_conversion.py,sha256=
|
|
49
|
+
web3/_utils/math.py,sha256=4oU5YdbQBXElxK00CxmUZ94ApXFu9QT_TrO0Kho1HTs,1083
|
|
50
|
+
web3/_utils/method_formatters.py,sha256=xLJj6vM4jYIKcpq0rQrXTtqdnvtGLOilapcytL2QHFw,33591
|
|
51
|
+
web3/_utils/module.py,sha256=GuVePloTlIBZwFDOjg0zasp53HSJ32umxN1nQhqW-8Y,3175
|
|
52
|
+
web3/_utils/normalizers.py,sha256=Q5urvzI9nbtNiqzhrrIMtZ5NqOAxWE4Xp5srZFs0Baw,7392
|
|
53
|
+
web3/_utils/request.py,sha256=G-f_UPx6yEKYbc1JjQBJyS0R5FnLDlOoV0OYE2_xREU,8843
|
|
54
|
+
web3/_utils/rpc_abi.py,sha256=WAqi4E46ISt9RzU74zUH4FAez9k9CJ7qr_M94fGzKZ0,8529
|
|
55
|
+
web3/_utils/threads.py,sha256=hNlSd_zheQYN0vC1faWWb9_UQxp_UzaM2fI5C8y0kB0,4245
|
|
56
|
+
web3/_utils/transactions.py,sha256=eGnFlVtzvlcDsF8-Gnbai4rjVP9iWpQ5CaAx6Ml9K8g,8912
|
|
57
|
+
web3/_utils/type_conversion.py,sha256=s6cg3WDCQIarQLWw_GfctaJjXhS_EcokUNO-S_ccvng,873
|
|
58
58
|
web3/_utils/utility_methods.py,sha256=7VCpo5ysvPoGjFuDj5gT1Niva2l3BADUvNeJFlL3Yvg,2559
|
|
59
|
-
web3/_utils/validation.py,sha256=
|
|
59
|
+
web3/_utils/validation.py,sha256=rNkfc5gZ6Ga_PMnG6LQGFKP3830RZag0Sc4ZgFd7dL4,6370
|
|
60
60
|
web3/_utils/windows.py,sha256=IlFUtqYSbUUfFRx60zvEwpiZd080WpOrA4ojm4tmSEE,994
|
|
61
|
-
web3/_utils/compat/__init__.py,sha256=
|
|
61
|
+
web3/_utils/compat/__init__.py,sha256=sLLJLpC7pH6uNCzC1ngSjGsR2v5oZiJsUQDCx2v48OY,526
|
|
62
62
|
web3/_utils/contract_sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
-
web3/_utils/contract_sources/compile_contracts.py,sha256=
|
|
63
|
+
web3/_utils/contract_sources/compile_contracts.py,sha256=C3eLY6gJ4xj9FunNwn4YPb9c8ElORkN8O4ddBa_kKqI,6486
|
|
64
64
|
web3/_utils/contract_sources/contract_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
65
|
web3/_utils/contract_sources/contract_data/_custom_contract_data.py,sha256=nxpN2uS1T338Tp5uVhwY9U1C2m2pdDz7kZv3LoZ0hpo,552
|
|
66
66
|
web3/_utils/contract_sources/contract_data/address_reflector.py,sha256=oBddZz6wMCf7CZ8UFL_i2XWl7b8qwsHrJrgrEBn8hFw,5344
|
|
@@ -85,15 +85,14 @@ web3/_utils/contract_sources/contract_data/simple_resolver.py,sha256=WveX0v15U64
|
|
|
85
85
|
web3/_utils/contract_sources/contract_data/storage_contract.py,sha256=NhoWNlWltNtGBdPwCWQGQfDO4hDTRXCVPWx7jSc58B0,8238
|
|
86
86
|
web3/_utils/contract_sources/contract_data/string_contract.py,sha256=zZdglZ6se_aqMIUKN3-3zR57h8zyDyUQIgtSIXtdSzg,11586
|
|
87
87
|
web3/_utils/contract_sources/contract_data/tuple_contracts.py,sha256=qt0cGM1Kh-LlRYn04-fpSPQJAWcGrvP8EKPCJvsrnvE,23180
|
|
88
|
-
web3/_utils/module_testing/__init__.py,sha256=
|
|
89
|
-
web3/_utils/module_testing/eth_module.py,sha256=
|
|
88
|
+
web3/_utils/module_testing/__init__.py,sha256=tPFAaX7xOR50CPTq24UeY-1CX1LQxxmEOPr0-tIRkoE,376
|
|
89
|
+
web3/_utils/module_testing/eth_module.py,sha256=QDX952Z5bRG2puQjv4M_s7WwBxvhlGdKTo5Mg1_Fx8c,186021
|
|
90
90
|
web3/_utils/module_testing/go_ethereum_admin_module.py,sha256=_c-6SyzZkfAJ-7ySXUpw9FEr4cg-ShRdAGSAHWanCtY,3406
|
|
91
|
-
web3/_utils/module_testing/go_ethereum_personal_module.py,sha256=PRX1dxqxGydHWyzcGVa0EP0IUoiSQyDYaszbmmXDKTU,10432
|
|
92
91
|
web3/_utils/module_testing/go_ethereum_txpool_module.py,sha256=5f8XL8-2x3keyGRaITxMQYl9oQzjgqGn8zobB-j9BPs,1176
|
|
93
|
-
web3/_utils/module_testing/module_testing_utils.py,sha256=
|
|
92
|
+
web3/_utils/module_testing/module_testing_utils.py,sha256=sPsSI4Cm8DWMOjI2eNsleED3daloFpMChk4AQ96gE5w,5559
|
|
94
93
|
web3/_utils/module_testing/net_module.py,sha256=ifUTC-5fTcQbwpm0X09OdD5RSPnn00T8klFeYe8tTm4,1272
|
|
95
94
|
web3/_utils/module_testing/persistent_connection_provider.py,sha256=RDcyBIznwweuG2X-57vq1jhMqYMK9lJRDEpaXuljwuE,16567
|
|
96
|
-
web3/_utils/module_testing/utils.py,sha256=
|
|
95
|
+
web3/_utils/module_testing/utils.py,sha256=7jYtIKfOdrQnj1pDB0gLyoN_b8U3ZyEYbMU4dxaLljs,10023
|
|
97
96
|
web3/_utils/module_testing/web3_module.py,sha256=Y4lYglg_kbrpfwGfjekv52h4B7DaWa3uS15KGrCKL7c,9613
|
|
98
97
|
web3/auto/__init__.py,sha256=ZbzAiCZMdt_tCTTPvH6t8NCVNroKKkt7TSVBBNR74Is,44
|
|
99
98
|
web3/auto/gethdev.py,sha256=MuWD2gxv0xDv_SzPsp9mSkS1oG4P54xFK83qw9NvswA,438
|
|
@@ -102,67 +101,67 @@ web3/beacon/api_endpoints.py,sha256=dkekSCmkat5QIfwKzwm49CyVcRb-pIbn1nZHB4F8M0U,
|
|
|
102
101
|
web3/beacon/async_beacon.py,sha256=y7cvbsDYjRNDZftzcJyXaSLCsRrASAGxfyCwE53oCG4,7472
|
|
103
102
|
web3/beacon/beacon.py,sha256=wgSmF-5hu_95L6onnlA33ADDoASFf9OZf-YWnqnY0VY,6640
|
|
104
103
|
web3/contract/__init__.py,sha256=EX_RmT8D2DDKKsk1U8grCNdLq9b1rF-8xWaR53CBiew,187
|
|
105
|
-
web3/contract/async_contract.py,sha256=
|
|
106
|
-
web3/contract/base_contract.py,sha256=
|
|
107
|
-
web3/contract/contract.py,sha256=
|
|
108
|
-
web3/contract/utils.py,sha256=
|
|
104
|
+
web3/contract/async_contract.py,sha256=LiYBEOh11myVOuHss9iwHDQcLAHtsSW1mlzpcDnMvmo,20515
|
|
105
|
+
web3/contract/base_contract.py,sha256=Vbgd00EAsfYBcYwTE_-8lVN62CrqLD9z4CeRPJbs3ik,37011
|
|
106
|
+
web3/contract/contract.py,sha256=cF0tsOjbJpg6zOBqZ_02btl3O4HTABcEnUzYzFiDcpo,20124
|
|
107
|
+
web3/contract/utils.py,sha256=t57K5BZS_K6H_BQSpEXjcObkbRQyYLbjx41dolNWzII,12510
|
|
109
108
|
web3/eth/__init__.py,sha256=CrYZXIlIdKTmznnLNUaA-C3eLvftBnmlVt9uxm-dwAI,124
|
|
110
|
-
web3/eth/async_eth.py,sha256=
|
|
111
|
-
web3/eth/base_eth.py,sha256=
|
|
112
|
-
web3/eth/eth.py,sha256=
|
|
109
|
+
web3/eth/async_eth.py,sha256=y4Qhc8Y6v_dvtxO68ZWDtszR8vE4oJZxVxEP_QDPUFU,24084
|
|
110
|
+
web3/eth/base_eth.py,sha256=UUH0Fw0HVa_mBEQ_CbCDO01yCVDsj33d8yOv7Oe-QD0,6905
|
|
111
|
+
web3/eth/eth.py,sha256=dho9oFYq27CAbSB-xRC2eGDzppmjcird_OtuKz4XsMQ,21002
|
|
113
112
|
web3/gas_strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
113
|
web3/gas_strategies/rpc.py,sha256=3Va-32jdmHkX7tzQCmh17ms2D6te5zZcqHP1326BdpY,352
|
|
115
|
-
web3/gas_strategies/time_based.py,sha256=
|
|
114
|
+
web3/gas_strategies/time_based.py,sha256=Va3dbi6B7uAyTXWZBLhJ7oqARf_qnqmyb5O7sC16yH8,8981
|
|
116
115
|
web3/middleware/__init__.py,sha256=3aCt9x2A9x_Hg0QnqsN0MDbm2yw2WFTNjzlt1ytYrdQ,2414
|
|
117
116
|
web3/middleware/attrdict.py,sha256=NY5yxlFOfLBBmcIjl8R-uP2dTz9ITIyTttG8-QcJWCI,2259
|
|
118
|
-
web3/middleware/base.py,sha256=
|
|
117
|
+
web3/middleware/base.py,sha256=6rywe6AQtN0HBqXrtAYs6nTPR16XhtW87A4cXa7iB28,3553
|
|
119
118
|
web3/middleware/buffered_gas_estimate.py,sha256=EmxUd-uO959UVroPsPKkl7oDa8Tw6N8BQLB6Urng5Eo,1647
|
|
120
|
-
web3/middleware/filter.py,sha256=
|
|
121
|
-
web3/middleware/formatting.py,sha256=
|
|
119
|
+
web3/middleware/filter.py,sha256=vaQUJYKGRIHNgt1zPzRLfx_wICbL0uT7OcYGBlIzdD4,22174
|
|
120
|
+
web3/middleware/formatting.py,sha256=hqe5XQE1n5Fmj6riJp7i3oIoZkd-4ChQc7UK8f3HB6I,7567
|
|
122
121
|
web3/middleware/gas_price_strategy.py,sha256=ZjZ6pe3z0mDGLZHYoFXp4_fZIePqukljEh9f4mZUyIA,3779
|
|
123
|
-
web3/middleware/names.py,sha256=
|
|
122
|
+
web3/middleware/names.py,sha256=OBpsvCmcTItth4TcvUNUvcYmINnudtCHq3n6YO_BkNs,4309
|
|
124
123
|
web3/middleware/proof_of_authority.py,sha256=0AT4jr5CmTdrvl8Jiy-WYy8IFDYBOEaesgHDwpn0c7M,1429
|
|
125
124
|
web3/middleware/pythonic.py,sha256=awc8I6lLzVc2Iv138sps2uf6dMQipskLRBTdvTEEIgQ,348
|
|
126
|
-
web3/middleware/signing.py,sha256=
|
|
127
|
-
web3/middleware/stalecheck.py,sha256=
|
|
125
|
+
web3/middleware/signing.py,sha256=8obqMCxrTuYgXezfTtic5CFrDrAqHikb-0PhQ3NmOz8,5742
|
|
126
|
+
web3/middleware/stalecheck.py,sha256=oWRA69BGIbNGjHSnUVOBnoxOYJZYjzRzlqqL5RRlnzk,2680
|
|
128
127
|
web3/middleware/validation.py,sha256=QxActrJk_zsXXiwpadP2MUjZBS5E50OJOtUwVrm9XVo,4280
|
|
129
128
|
web3/providers/__init__.py,sha256=PLRNgSNqMjXKGM-qAatJTGSaQjmjzQW6jYxS3lVX_w0,470
|
|
130
129
|
web3/providers/async_base.py,sha256=NGmg36qihjvhnx1OXIB0fg2kkc0rbFlJV5iFPzr0nGY,5323
|
|
131
130
|
web3/providers/auto.py,sha256=Zx3CHKoRkmiw3Jte2BLNPiJAFd8rDXNGfA3XtxZvHgc,3465
|
|
132
131
|
web3/providers/base.py,sha256=47r2USOZP3cc78fk2K8yFR7MoI2AMqKClGltPqbV4Xg,4468
|
|
133
|
-
web3/providers/ipc.py,sha256=
|
|
132
|
+
web3/providers/ipc.py,sha256=EEl5qf09VzOUslztSNIckeLk8Wvsch0Bc0iGaZePBwQ,5768
|
|
134
133
|
web3/providers/legacy_websocket.py,sha256=TuGCB26n9b9USXLUFNI5htKNZV7f_5pfsl_iro2N9e4,3953
|
|
135
134
|
web3/providers/eth_tester/__init__.py,sha256=J6wazY3hQySsUfpFgwCXbEMo-CGEZjRo11RCg4UXKmA,83
|
|
136
|
-
web3/providers/eth_tester/defaults.py,sha256=
|
|
137
|
-
web3/providers/eth_tester/main.py,sha256=
|
|
138
|
-
web3/providers/eth_tester/middleware.py,sha256=
|
|
135
|
+
web3/providers/eth_tester/defaults.py,sha256=YCck0DUgNl_RtFjVYox4m5yfh4-LvrAuvKSJDc7VcBs,12776
|
|
136
|
+
web3/providers/eth_tester/main.py,sha256=U19sNDeHs36A4IYQ0HFGyXdZvuXiYvoSMNWVuki0WwI,7807
|
|
137
|
+
web3/providers/eth_tester/middleware.py,sha256=mrPHXTWrkRq3q6QV3pMmVwdEov3VXSryY6OrcSB2SwY,13137
|
|
139
138
|
web3/providers/persistent/__init__.py,sha256=S1s8m1cjPOjD-CCrWrLDP0PGlP1FUqgEw2KdrDeMPgk,283
|
|
140
|
-
web3/providers/persistent/async_ipc.py,sha256=
|
|
141
|
-
web3/providers/persistent/persistent.py,sha256=
|
|
139
|
+
web3/providers/persistent/async_ipc.py,sha256=PLKYtekhMYDvJlH5vpyvHJUYkhrUzebyh153l-243Iw,7215
|
|
140
|
+
web3/providers/persistent/persistent.py,sha256=_rAuGuMWNMgLo3pv9aGXwNLwLSOPL2Qo00-fZYWADZs,3918
|
|
142
141
|
web3/providers/persistent/persistent_connection.py,sha256=56yjpwDMM2phkJ_M5_QB-A6_CjZc5VrkWhNDweA70d0,1109
|
|
143
|
-
web3/providers/persistent/request_processor.py,sha256=
|
|
142
|
+
web3/providers/persistent/request_processor.py,sha256=8MwXX-BwTLawg0h8xV_NllOX7xiR5T4KpA4gNISAHD0,11540
|
|
144
143
|
web3/providers/persistent/utils.py,sha256=gfY7w1HB8xuE7OujSrbwWYjQuQ8nzRBoxoL8ESinqWM,1140
|
|
145
|
-
web3/providers/persistent/websocket.py,sha256=
|
|
144
|
+
web3/providers/persistent/websocket.py,sha256=rRFEustuPOyKekyNmDGTBc_qosCNuvXRTLq7C9Ont6g,6901
|
|
146
145
|
web3/providers/rpc/__init__.py,sha256=d20CaZ6vOXlud5sh6I5JnT_zEGBMpbXl-vCDFMxBNoY,89
|
|
147
|
-
web3/providers/rpc/async_rpc.py,sha256=
|
|
148
|
-
web3/providers/rpc/rpc.py,sha256=
|
|
149
|
-
web3/providers/rpc/utils.py,sha256=
|
|
146
|
+
web3/providers/rpc/async_rpc.py,sha256=B8TYOk5pK3584dxjdMUB_S-0GFh5TJp60QDCSOk2vC8,4674
|
|
147
|
+
web3/providers/rpc/rpc.py,sha256=8rFTCfA-56qV2AEQ9E5qncFqdfUU-oz3mn2W3UYqC44,4683
|
|
148
|
+
web3/providers/rpc/utils.py,sha256=U0Zd-wSjPs9K2yskWPfGm7_V1gfnCtIf0ppu53NxLFs,2212
|
|
150
149
|
web3/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
150
|
web3/scripts/release/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
151
|
web3/scripts/release/test_package.py,sha256=DH0AryllcF4zfpWSd0NLPSQGHNoC-Qng5WYYbS5_4c8,1534
|
|
153
152
|
web3/tools/benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
|
-
web3/tools/benchmark/main.py,sha256=
|
|
155
|
-
web3/tools/benchmark/node.py,sha256=
|
|
153
|
+
web3/tools/benchmark/main.py,sha256=9VeU4AXMya-BAOYOnfO34GEuxLeg3fS_zM56BKID60E,5768
|
|
154
|
+
web3/tools/benchmark/node.py,sha256=8WXkFGRczZ_ECFu6kvP51wyAKs6M_rRSGsNX4smuBE8,3253
|
|
156
155
|
web3/tools/benchmark/reporting.py,sha256=G2bj_Eo2kBV06GARDYK9zr0VqesiR0_5JLKvhAo6zRM,912
|
|
157
|
-
web3/tools/benchmark/utils.py,sha256=
|
|
156
|
+
web3/tools/benchmark/utils.py,sha256=7OOdUD71AVWi0cowAE9ekMgqlfcJwk3vrNnMCHtiGdU,1696
|
|
158
157
|
web3/utils/__init__.py,sha256=pswH3MW_mro5zrHn_q8Pto-iS1jrbtEH3UtQ9qioiKM,455
|
|
159
158
|
web3/utils/abi.py,sha256=naNkD7_XQGV8hd4CkxytLKWCcgzUjkb7q3ERwRVNICI,498
|
|
160
159
|
web3/utils/address.py,sha256=KC_IpEbixSCuMhaW6V2QCyyJTYKYGS9c8QtI9_aH7zQ,967
|
|
161
160
|
web3/utils/async_exception_handling.py,sha256=gfLuzP7Y5rc21jZVjWEYAOZUMJkJd9CmsL297UKReow,3096
|
|
162
161
|
web3/utils/caching.py,sha256=4U-vh61m1dlslwEn_Nl7ybIlMF4W2IAcvMTH-iFzrNM,1618
|
|
163
162
|
web3/utils/exception_handling.py,sha256=12xkzIqMAOx0Jcm6PYL98PmWlLPKFll0p9YoLGS_ZNg,3052
|
|
164
|
-
web3-7.0.
|
|
165
|
-
web3-7.0.
|
|
166
|
-
web3-7.0.
|
|
167
|
-
web3-7.0.
|
|
168
|
-
web3-7.0.
|
|
163
|
+
web3-7.0.0b5.dist-info/LICENSE,sha256=ulnXiEqqFp9VyWe8yMFdtDi70RMBJk3mpY3FKujv6l8,1090
|
|
164
|
+
web3-7.0.0b5.dist-info/METADATA,sha256=LKO7i65_Ddg8zXy1rI1ViR4Cahs8Wo22STpm7OT26xg,3967
|
|
165
|
+
web3-7.0.0b5.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
166
|
+
web3-7.0.0b5.dist-info/top_level.txt,sha256=iwupuJh7wgypXrpk_awszyri3TahRr5vxSphNyvt1bU,9
|
|
167
|
+
web3-7.0.0b5.dist-info/RECORD,,
|