forked from ethereum/web3.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
482 lines (414 loc) · 12.5 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
import decimal
from ens import (
AsyncENS,
ENS,
)
from eth_abi.codec import (
ABICodec,
)
from eth_utils import (
add_0x_prefix,
apply_to_return_value,
from_wei,
is_address,
is_checksum_address,
keccak as eth_utils_keccak,
remove_0x_prefix,
to_bytes,
to_checksum_address,
to_int,
to_text,
to_wei,
)
from functools import (
wraps,
)
from hexbytes import (
HexBytes,
)
from typing import (
Any,
Coroutine,
Dict,
List,
Optional,
Sequence,
Type,
TYPE_CHECKING,
Union,
cast,
)
from eth_typing import (
AnyAddress,
ChecksumAddress,
HexStr,
Primitives,
)
from eth_typing.abi import TypeStr
from eth_utils import (
combomethod,
)
from web3._utils.abi import (
build_non_strict_registry,
build_strict_registry,
map_abi_data,
)
from web3._utils.empty import (
empty,
)
from web3._utils.encoding import (
hex_encode_abi_type,
to_hex,
to_json,
)
from web3._utils.rpc_abi import (
RPC,
)
from web3._utils.module import (
attach_modules as _attach_modules,
)
from web3._utils.normalizers import (
abi_ens_resolver,
)
from web3.eth import (
AsyncEth,
Eth,
)
from web3.geth import (
AsyncGeth,
AsyncGethAdmin,
AsyncGethPersonal,
AsyncGethTxPool,
Geth,
GethAdmin,
GethMiner,
GethPersonal,
GethTxPool,
)
from web3.manager import (
RequestManager as DefaultRequestManager,
)
from web3.module import (
Module,
)
from web3.net import (
AsyncNet,
Net,
)
from web3.providers import (
AsyncBaseProvider,
BaseProvider,
)
from web3.providers.eth_tester import (
EthereumTesterProvider,
)
from web3.providers.ipc import (
IPCProvider,
)
from web3.providers.async_rpc import (
AsyncHTTPProvider,
)
from web3.providers.rpc import (
HTTPProvider,
)
from web3.providers.websocket import (
WebsocketProvider,
)
from web3.testing import (
Testing,
)
from web3.tracing import (
Tracing,
)
from web3.types import (
AsyncMiddlewareOnion,
MiddlewareOnion,
Wei,
)
if TYPE_CHECKING:
from web3.pm import PM # noqa: F401
from web3._utils.empty import Empty # noqa: F401
def get_async_default_modules() -> Dict[str, Union[Type[Module], Sequence[Any]]]:
return {
"eth": AsyncEth,
"net": AsyncNet,
"geth": (
AsyncGeth,
{
"admin": AsyncGethAdmin,
"personal": AsyncGethPersonal,
"txpool": AsyncGethTxPool,
},
),
}
def get_default_modules() -> Dict[str, Union[Type[Module], Sequence[Any]]]:
return {
"eth": Eth,
"net": Net,
"geth": (
Geth,
{
"admin": GethAdmin,
"miner": GethMiner,
"personal": GethPersonal,
"txpool": GethTxPool,
},
),
"tracing": Tracing,
"testing": Testing,
}
class BaseWeb3:
_strict_bytes_type_checking = True
# Providers
HTTPProvider = HTTPProvider
IPCProvider = IPCProvider
EthereumTesterProvider = EthereumTesterProvider
WebsocketProvider = WebsocketProvider
AsyncHTTPProvider = AsyncHTTPProvider
# Managers
RequestManager = DefaultRequestManager
# mypy types
eth: Union[Eth, AsyncEth]
net: Union[Net, AsyncNet]
geth: Union[Geth, AsyncGeth]
# Encoding and Decoding
@staticmethod
@wraps(to_bytes)
def to_bytes(
primitive: Primitives = None, hexstr: HexStr = None, text: str = None
) -> bytes:
return to_bytes(primitive, hexstr, text)
@staticmethod
@wraps(to_int)
def to_int(
primitive: Primitives = None, hexstr: HexStr = None, text: str = None
) -> int:
return to_int(primitive, hexstr, text)
@staticmethod
@wraps(to_hex)
def to_hex(
primitive: Primitives = None, hexstr: HexStr = None, text: str = None
) -> HexStr:
return to_hex(primitive, hexstr, text)
@staticmethod
@wraps(to_text)
def to_text(
primitive: Primitives = None, hexstr: HexStr = None, text: str = None
) -> str:
return to_text(primitive, hexstr, text)
@staticmethod
@wraps(to_json)
def to_json(obj: Dict[Any, Any]) -> str:
return to_json(obj)
# Currency Utility
@staticmethod
@wraps(to_wei)
def to_wei(number: Union[int, float, str, decimal.Decimal], unit: str) -> Wei:
return cast(Wei, to_wei(number, unit))
@staticmethod
@wraps(from_wei)
def from_wei(number: int, unit: str) -> Union[int, decimal.Decimal]:
return from_wei(number, unit)
# Address Utility
@staticmethod
@wraps(is_address)
def is_address(value: Any) -> bool:
return is_address(value)
@staticmethod
@wraps(is_checksum_address)
def is_checksum_address(value: Any) -> bool:
return is_checksum_address(value)
@staticmethod
@wraps(to_checksum_address)
def to_checksum_address(value: Union[AnyAddress, str, bytes]) -> ChecksumAddress:
return to_checksum_address(value)
@property
def api(self) -> str:
from web3 import __version__
return __version__
@property
def strict_bytes_type_checking(self) -> bool:
return self._strict_bytes_type_checking
@strict_bytes_type_checking.setter
def strict_bytes_type_checking(self, strict_bytes_type_check: bool) -> None:
self.codec = (
ABICodec(build_strict_registry())
if strict_bytes_type_check
else ABICodec(build_non_strict_registry())
)
self._strict_bytes_type_checking = strict_bytes_type_check
@staticmethod
@apply_to_return_value(HexBytes)
def keccak(
primitive: Optional[Primitives] = None,
text: Optional[str] = None,
hexstr: Optional[HexStr] = None,
) -> bytes:
if isinstance(primitive, (bytes, int, type(None))):
input_bytes = to_bytes(primitive, hexstr=hexstr, text=text)
return eth_utils_keccak(input_bytes)
raise TypeError(
f"You called keccak with first arg {primitive!r} and keywords "
f"{{'text': {text!r}, 'hexstr': {hexstr!r}}}. You must call it with "
"one of these approaches: keccak(text='txt'), keccak(hexstr='0x747874'), "
"keccak(b'\\x74\\x78\\x74'), or keccak(0x747874)."
)
@classmethod
def normalize_values(
cls, _w3: "BaseWeb3", abi_types: List[TypeStr], values: List[Any]
) -> List[Any]:
return map_abi_data(zip(abi_types, values))
@combomethod
def solidity_keccak(cls, abi_types: List[TypeStr], values: List[Any]) -> bytes:
"""
Executes keccak256 exactly as Solidity does.
Takes list of abi_types as inputs -- `[uint24, int8[], bool]`
and list of corresponding values -- `[20, [-1, 5, 0], True]`
"""
if len(abi_types) != len(values):
raise ValueError(
"Length mismatch between provided abi types and values. Got "
f"{len(abi_types)} types and {len(values)} values."
)
if isinstance(cls, type):
w3 = None
else:
w3 = cls
normalized_values = cls.normalize_values(w3, abi_types, values)
hex_string = add_0x_prefix(
HexStr(
"".join(
remove_0x_prefix(hex_encode_abi_type(abi_type, value))
for abi_type, value in zip(abi_types, normalized_values)
)
)
)
return cls.keccak(hexstr=hex_string)
def attach_modules(
self, modules: Optional[Dict[str, Union[Type[Module], Sequence[Any]]]]
) -> None:
"""
Attach modules to the `Web3` instance.
"""
_attach_modules(self, modules)
def is_encodable(self, _type: TypeStr, value: Any) -> bool:
return self.codec.is_encodable(_type, value)
@property
def pm(self) -> "PM":
if hasattr(self, "_pm"):
# ignored b/c property is dynamically set
# via enable_unstable_package_management_api
return self._pm # type: ignore
else:
raise AttributeError(
"The Package Management feature is disabled by default until "
"its API stabilizes. To use these features, please enable them by "
"running `w3.enable_unstable_package_management_api()` and try again."
)
def enable_unstable_package_management_api(self) -> None:
from web3.pm import PM # noqa: F811
if not hasattr(self, "_pm"):
self.attach_modules({"_pm": PM})
class AsyncWeb3(BaseWeb3):
# mypy Types
eth: AsyncEth
net: AsyncNet
geth: AsyncGeth
def __init__(
self,
provider: Optional[AsyncBaseProvider] = None,
middlewares: Optional[Sequence[Any]] = None,
modules: Optional[Dict[str, Union[Type[Module], Sequence[Any]]]] = None,
external_modules: Optional[
Dict[str, Union[Type[Module], Sequence[Any]]]
] = None,
ens: Union[AsyncENS, "Empty"] = empty,
) -> None:
self.manager = self.RequestManager(self, provider, middlewares)
self.codec = ABICodec(build_strict_registry())
if modules is None:
modules = get_async_default_modules()
self.attach_modules(modules)
if external_modules is not None:
self.attach_modules(external_modules)
self.ens = ens
def is_connected(self, show_traceback: bool = False) -> Coroutine[Any, Any, bool]:
return self.provider.is_connected(show_traceback)
@property
def middleware_onion(self) -> AsyncMiddlewareOnion:
return cast(AsyncMiddlewareOnion, self.manager.middleware_onion)
@property
def provider(self) -> AsyncBaseProvider:
return cast(AsyncBaseProvider, self.manager.provider)
@provider.setter
def provider(self, provider: AsyncBaseProvider) -> None:
self.manager.provider = provider
@property
async def client_version(self) -> str:
return await self.manager.coro_request(RPC.web3_clientVersion, [])
@property
def ens(self) -> Union[AsyncENS, "Empty"]:
if self._ens is empty:
ns = AsyncENS.from_web3(self)
ns.w3 = self
return ns
return self._ens
@ens.setter
def ens(self, new_ens: Union[AsyncENS, "Empty"]) -> None:
if new_ens:
new_ens.w3 = self # set self object reference for ``AsyncENS.w3``
self._ens = new_ens
class Web3(BaseWeb3):
# mypy types
eth: Eth
net: Net
geth: Geth
def __init__(
self,
provider: Optional[BaseProvider] = None,
middlewares: Optional[Sequence[Any]] = None,
modules: Optional[Dict[str, Union[Type[Module], Sequence[Any]]]] = None,
external_modules: Optional[
Dict[str, Union[Type[Module], Sequence[Any]]]
] = None,
ens: Union[ENS, "Empty"] = empty,
) -> None:
self.manager = self.RequestManager(self, provider, middlewares)
self.codec = ABICodec(build_strict_registry())
if modules is None:
modules = get_default_modules()
self.attach_modules(modules)
if external_modules is not None:
self.attach_modules(external_modules)
self.ens = ens
def is_connected(self, show_traceback: bool = False) -> bool:
return self.provider.is_connected(show_traceback)
@classmethod
def normalize_values(
cls, w3: "BaseWeb3", abi_types: List[TypeStr], values: List[Any]
) -> List[Any]:
return map_abi_data([abi_ens_resolver(w3)], abi_types, values)
@property
def middleware_onion(self) -> MiddlewareOnion:
return cast(MiddlewareOnion, self.manager.middleware_onion)
@property
def provider(self) -> BaseProvider:
return cast(BaseProvider, self.manager.provider)
@provider.setter
def provider(self, provider: BaseProvider) -> None:
self.manager.provider = provider
@property
def client_version(self) -> str:
return self.manager.request_blocking(RPC.web3_clientVersion, [])
@property
def ens(self) -> Union[ENS, "Empty"]:
if self._ens is empty:
ns = ENS.from_web3(self)
ns.w3 = self
return ns
return self._ens
@ens.setter
def ens(self, new_ens: Union[ENS, "Empty"]) -> None:
if new_ens:
new_ens.w3 = self # set self object reference for ``ENS.w3``
self._ens = new_ens