forked from ethereum/web3.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasync_contract.py
621 lines (544 loc) · 19.3 KB
/
async_contract.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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
import copy
from typing import (
TYPE_CHECKING,
Any,
Awaitable,
Callable,
Dict,
Iterable,
List,
Optional,
Sequence,
cast,
)
from eth_typing import (
ChecksumAddress,
)
from eth_utils import (
combomethod,
)
from eth_utils.toolz import (
partial,
)
from hexbytes import (
HexBytes,
)
from web3._utils.abi import (
fallback_func_abi_exists,
filter_by_type,
receive_func_abi_exists,
)
from web3._utils.async_transactions import (
fill_transaction_defaults as async_fill_transaction_defaults,
)
from web3._utils.contracts import (
async_parse_block_identifier,
parse_block_identifier_no_extra_call,
)
from web3._utils.datatypes import (
PropertyCheckingFactory,
)
from web3._utils.events import (
AsyncEventFilterBuilder,
get_event_data,
)
from web3._utils.filters import (
AsyncLogFilter,
)
from web3._utils.function_identifiers import (
FallbackFn,
ReceiveFn,
)
from web3._utils.normalizers import (
normalize_abi,
normalize_address_no_ens,
normalize_bytecode,
)
from web3.contract.base_contract import (
BaseContract,
BaseContractCaller,
BaseContractConstructor,
BaseContractEvent,
BaseContractEvents,
BaseContractFunction,
BaseContractFunctions,
NonExistentFallbackFunction,
NonExistentReceiveFunction,
)
from web3.contract.utils import (
async_build_transaction_for_function,
async_call_contract_function,
async_estimate_gas_for_function,
async_transact_with_contract_function,
find_functions_by_identifier,
get_function_by_identifier,
)
from web3.exceptions import (
ABIFunctionNotFound,
NoABIFound,
NoABIFunctionsFound,
)
from web3.types import (
ABI,
BlockIdentifier,
CallOverride,
EventData,
TxParams,
)
if TYPE_CHECKING:
from ens import AsyncENS # noqa: F401
from web3 import AsyncWeb3 # noqa: F401
class AsyncContractFunctions(BaseContractFunctions):
def __init__(
self,
abi: ABI,
w3: "AsyncWeb3",
address: Optional[ChecksumAddress] = None,
decode_tuples: Optional[bool] = False,
) -> None:
super().__init__(abi, w3, AsyncContractFunction, address, decode_tuples)
def __getattr__(self, function_name: str) -> "AsyncContractFunction":
if self.abi is None:
raise NoABIFound(
"There is no ABI found for this contract.",
)
if "_functions" not in self.__dict__:
raise NoABIFunctionsFound(
"The abi for this contract contains no function definitions. ",
"Are you sure you provided the correct contract abi?",
)
elif function_name not in self.__dict__["_functions"]:
raise ABIFunctionNotFound(
f"The function '{function_name}' was not found in this contract's abi.",
" Are you sure you provided the correct contract abi?",
)
else:
return super().__getattribute__(function_name)
class AsyncContractEvents(BaseContractEvents):
def __init__(
self, abi: ABI, w3: "AsyncWeb3", address: Optional[ChecksumAddress] = None
) -> None:
super().__init__(abi, w3, AsyncContractEvent, address)
class AsyncContract(BaseContract):
functions: AsyncContractFunctions = None
caller: "AsyncContractCaller" = None
# mypy types
w3: "AsyncWeb3"
#: Instance of :class:`ContractEvents` presenting available Event ABIs
events: AsyncContractEvents = None
def __init__(self, address: Optional[ChecksumAddress] = None) -> None:
"""Create a new smart contract proxy object.
:param address: Contract address as 0x hex string"""
if self.w3 is None:
raise AttributeError(
"The `Contract` class has not been initialized. Please use the "
"`web3.contract` interface to create your contract class."
)
if address:
self.address = normalize_address_no_ens(address)
if not self.address:
raise TypeError(
"The address argument is required to instantiate a contract."
)
self.functions = AsyncContractFunctions(
self.abi, self.w3, self.address, decode_tuples=self.decode_tuples
)
self.caller = AsyncContractCaller(
self.abi, self.w3, self.address, decode_tuples=self.decode_tuples
)
self.events = AsyncContractEvents(self.abi, self.w3, self.address)
self.fallback = AsyncContract.get_fallback_function(
self.abi, self.w3, AsyncContractFunction, self.address
)
self.receive = AsyncContract.get_receive_function(
self.abi, self.w3, AsyncContractFunction, self.address
)
@classmethod
def factory(
cls, w3: "AsyncWeb3", class_name: Optional[str] = None, **kwargs: Any
) -> "AsyncContract":
kwargs["w3"] = w3
normalizers = {
"abi": normalize_abi,
"address": normalize_address_no_ens,
"bytecode": normalize_bytecode,
"bytecode_runtime": normalize_bytecode,
}
contract = cast(
AsyncContract,
PropertyCheckingFactory(
class_name or cls.__name__,
(cls,),
kwargs,
normalizers=normalizers,
),
)
contract.functions = AsyncContractFunctions(
contract.abi, contract.w3, decode_tuples=contract.decode_tuples
)
contract.caller = AsyncContractCaller(
contract.abi,
contract.w3,
contract.address,
decode_tuples=contract.decode_tuples,
)
contract.events = AsyncContractEvents(contract.abi, contract.w3)
contract.fallback = AsyncContract.get_fallback_function(
contract.abi,
contract.w3,
AsyncContractFunction,
)
contract.receive = AsyncContract.get_receive_function(
contract.abi,
contract.w3,
AsyncContractFunction,
)
return contract
@classmethod
def constructor(cls, *args: Any, **kwargs: Any) -> "AsyncContractConstructor":
"""
:param args: The contract constructor arguments as positional arguments
:param kwargs: The contract constructor arguments as keyword arguments
:return: a contract constructor object
"""
if cls.bytecode is None:
raise ValueError(
"Cannot call constructor on a contract that does not have "
"'bytecode' associated with it"
)
return AsyncContractConstructor(cls.w3, cls.abi, cls.bytecode, *args, **kwargs)
@combomethod
def find_functions_by_identifier(
cls,
contract_abi: ABI,
w3: "AsyncWeb3",
address: ChecksumAddress,
callable_check: Callable[..., Any],
) -> List["AsyncContractFunction"]:
return cast(
List[AsyncContractFunction],
find_functions_by_identifier(
contract_abi, w3, address, callable_check, AsyncContractFunction
),
)
@combomethod
def get_function_by_identifier(
cls, fns: Sequence["AsyncContractFunction"], identifier: str
) -> "AsyncContractFunction":
return get_function_by_identifier(fns, identifier)
class AsyncContractConstructor(BaseContractConstructor):
# mypy types
w3: "AsyncWeb3"
@combomethod
async def transact(self, transaction: Optional[TxParams] = None) -> HexBytes:
return await self.w3.eth.send_transaction(self._get_transaction(transaction))
@combomethod
async def build_transaction(
self, transaction: Optional[TxParams] = None
) -> TxParams:
"""
Build the transaction dictionary without sending
"""
built_transaction = self._build_transaction(transaction)
return await async_fill_transaction_defaults(self.w3, built_transaction)
@combomethod
async def estimate_gas(
self,
transaction: Optional[TxParams] = None,
block_identifier: Optional[BlockIdentifier] = None,
) -> int:
transaction = self._estimate_gas(transaction)
return await self.w3.eth.estimate_gas(
transaction, block_identifier=block_identifier
)
class AsyncContractFunction(BaseContractFunction):
# mypy types
w3: "AsyncWeb3"
def __call__(self, *args: Any, **kwargs: Any) -> "AsyncContractFunction":
clone = copy.copy(self)
if args is None:
clone.args = tuple()
else:
clone.args = args
if kwargs is None:
clone.kwargs = {}
else:
clone.kwargs = kwargs
clone._set_function_info()
return clone
@classmethod
def factory(cls, class_name: str, **kwargs: Any) -> "AsyncContractFunction":
return PropertyCheckingFactory(class_name, (cls,), kwargs)(kwargs.get("abi"))
async def call(
self,
transaction: Optional[TxParams] = None,
block_identifier: BlockIdentifier = None,
state_override: Optional[CallOverride] = None,
ccip_read_enabled: Optional[bool] = None,
) -> Any:
"""
Execute a contract function call using the `eth_call` interface.
This method prepares a ``Caller`` object that exposes the contract
functions and public variables as callable Python functions.
Reading a public ``owner`` address variable example:
.. code-block:: python
ContractFactory = w3.eth.contract(
abi=wallet_contract_definition["abi"]
)
# Not a real contract address
contract = ContractFactory("0x2f70d3d26829e412A602E83FE8EeBF80255AEeA5")
# Read "owner" public variable
addr = contract.functions.owner().call()
:param transaction: Dictionary of transaction info for web3 interface
:return: ``Caller`` object that has contract public functions
and variables exposed as Python methods
"""
call_transaction = self._get_call_txparams(transaction)
block_id = await async_parse_block_identifier(self.w3, block_identifier)
return await async_call_contract_function(
self.w3,
self.address,
self._return_data_normalizers,
self.function_identifier,
call_transaction,
block_id,
self.contract_abi,
self.abi,
state_override,
ccip_read_enabled,
self.decode_tuples,
*self.args,
**self.kwargs,
)
async def transact(self, transaction: Optional[TxParams] = None) -> HexBytes:
setup_transaction = self._transact(transaction)
return await async_transact_with_contract_function(
self.address,
self.w3,
self.function_identifier,
setup_transaction,
self.contract_abi,
self.abi,
*self.args,
**self.kwargs,
)
async def estimate_gas(
self,
transaction: Optional[TxParams] = None,
block_identifier: Optional[BlockIdentifier] = None,
) -> int:
setup_transaction = self._estimate_gas(transaction)
return await async_estimate_gas_for_function(
self.address,
self.w3,
self.function_identifier,
setup_transaction,
self.contract_abi,
self.abi,
block_identifier,
*self.args,
**self.kwargs,
)
async def build_transaction(
self, transaction: Optional[TxParams] = None
) -> TxParams:
built_transaction = self._build_transaction(transaction)
return await async_build_transaction_for_function(
self.address,
self.w3,
self.function_identifier,
built_transaction,
self.contract_abi,
self.abi,
*self.args,
**self.kwargs,
)
@staticmethod
def get_fallback_function(
abi: ABI,
async_w3: "AsyncWeb3",
address: Optional[ChecksumAddress] = None,
) -> "AsyncContractFunction":
if abi and fallback_func_abi_exists(abi):
return AsyncContractFunction.factory(
"fallback",
w3=async_w3,
contract_abi=abi,
address=address,
function_identifier=FallbackFn,
)()
return cast(AsyncContractFunction, NonExistentFallbackFunction())
@staticmethod
def get_receive_function(
abi: ABI,
async_w3: "AsyncWeb3",
address: Optional[ChecksumAddress] = None,
) -> "AsyncContractFunction":
if abi and receive_func_abi_exists(abi):
return AsyncContractFunction.factory(
"receive",
w3=async_w3,
contract_abi=abi,
address=address,
function_identifier=ReceiveFn,
)()
return cast(AsyncContractFunction, NonExistentReceiveFunction())
class AsyncContractEvent(BaseContractEvent):
# mypy types
w3: "AsyncWeb3"
@combomethod
async def get_logs(
self,
argument_filters: Optional[Dict[str, Any]] = None,
fromBlock: Optional[BlockIdentifier] = None,
toBlock: Optional[BlockIdentifier] = None,
block_hash: Optional[HexBytes] = None,
) -> Awaitable[Iterable[EventData]]:
"""Get events for this contract instance using eth_getLogs API.
This is a stateless method, as opposed to createFilter.
It can be safely called against nodes which do not provide
eth_newFilter API, like Infura nodes.
If there are many events,
like ``Transfer`` events for a popular token,
the Ethereum node might be overloaded and timeout
on the underlying JSON-RPC call.
Example - how to get all ERC-20 token transactions
for the latest 10 blocks:
.. code-block:: python
from = max(mycontract.web3.eth.block_number - 10, 1)
to = mycontract.web3.eth.block_number
events = mycontract.events.Transfer.getLogs(fromBlock=from, toBlock=to)
for e in events:
print(e["args"]["from"],
e["args"]["to"],
e["args"]["value"])
The returned processed log values will look like:
.. code-block:: python
(
AttributeDict({
'args': AttributeDict({}),
'event': 'LogNoArguments',
'logIndex': 0,
'transactionIndex': 0,
'transactionHash': HexBytes('...'),
'address': '0xF2E246BB76DF876Cef8b38ae84130F4F55De395b',
'blockHash': HexBytes('...'),
'blockNumber': 3
}),
AttributeDict(...),
...
)
See also: :func:`web3.middleware.filter.local_filter_middleware`.
:param argument_filters:
:param fromBlock: block number or "latest", defaults to "latest"
:param toBlock: block number or "latest". Defaults to "latest"
:param blockHash: block hash. blockHash cannot be set at the
same time as fromBlock or toBlock
:yield: Tuple of :class:`AttributeDict` instances
"""
abi = self._get_event_abi()
# Call JSON-RPC API
logs = await self.w3.eth.get_logs(
self._get_event_filter_params(
abi, argument_filters, fromBlock, toBlock, block_hash
)
)
# Convert raw binary data to Python proxy objects as described by ABI
return tuple( # type: ignore
get_event_data(self.w3.codec, abi, entry) for entry in logs
)
@combomethod
async def create_filter(
self,
*, # PEP 3102
argument_filters: Optional[Dict[str, Any]] = None,
fromBlock: Optional[BlockIdentifier] = None,
toBlock: BlockIdentifier = "latest",
address: Optional[ChecksumAddress] = None,
topics: Optional[Sequence[Any]] = None,
) -> AsyncLogFilter:
"""
Create filter object that tracks logs emitted by this contract event.
"""
filter_builder = AsyncEventFilterBuilder(self._get_event_abi(), self.w3.codec)
self._set_up_filter_builder(
argument_filters,
fromBlock,
toBlock,
address,
topics,
filter_builder,
)
log_filter = await filter_builder.deploy(self.w3)
log_filter.log_entry_formatter = get_event_data(
self.w3.codec, self._get_event_abi()
)
log_filter.builder = filter_builder
return log_filter
@combomethod
def build_filter(self) -> AsyncEventFilterBuilder:
builder = AsyncEventFilterBuilder(
self._get_event_abi(),
self.w3.codec,
formatter=get_event_data(self.w3.codec, self._get_event_abi()),
)
builder.address = self.address
return builder
class AsyncContractCaller(BaseContractCaller):
# mypy types
w3: "AsyncWeb3"
def __init__(
self,
abi: ABI,
w3: "AsyncWeb3",
address: ChecksumAddress,
transaction: Optional[TxParams] = None,
block_identifier: BlockIdentifier = None,
ccip_read_enabled: Optional[bool] = None,
decode_tuples: Optional[bool] = False,
) -> None:
super().__init__(abi, w3, address, decode_tuples=decode_tuples)
if self.abi:
if transaction is None:
transaction = {}
self._functions = filter_by_type("function", self.abi)
for func in self._functions:
fn: AsyncContractFunction = AsyncContractFunction.factory(
func["name"],
w3=self.w3,
contract_abi=self.abi,
address=self.address,
function_identifier=func["name"],
decode_tuples=decode_tuples,
)
# TODO: The no_extra_call method gets around the fact that we can't call
# the full async method from within a class's __init__ method. We need
# to see if there's a way to account for all desired elif cases.
block_id = parse_block_identifier_no_extra_call(
self.w3, block_identifier
)
caller_method = partial(
self.call_function,
fn,
transaction=transaction,
block_identifier=block_id,
ccip_read_enabled=ccip_read_enabled,
)
setattr(self, func["name"], caller_method)
def __call__(
self,
transaction: Optional[TxParams] = None,
block_identifier: BlockIdentifier = None,
ccip_read_enabled: Optional[bool] = None,
) -> "AsyncContractCaller":
if transaction is None:
transaction = {}
return type(self)(
self.abi,
self.w3,
self.address,
transaction=transaction,
block_identifier=block_identifier,
ccip_read_enabled=ccip_read_enabled,
decode_tuples=self.decode_tuples,
)