-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy patheth_module.py
4835 lines (4290 loc) · 183 KB
/
eth_module.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
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import asyncio
import json
import math
import pytest
from random import (
randint,
)
import re
from typing import (
TYPE_CHECKING,
Any,
Callable,
List,
Type,
Union,
cast,
)
import eth_abi as abi
from eth_typing import (
BlockNumber,
ChecksumAddress,
HexAddress,
HexStr,
)
from eth_utils import (
is_boolean,
is_bytes,
is_checksum_address,
is_dict,
is_integer,
is_list_like,
is_same_address,
is_string,
remove_0x_prefix,
to_bytes,
)
from eth_utils.toolz import (
assoc,
)
from hexbytes import (
HexBytes,
)
from web3._utils.ens import (
ens_addresses,
)
from web3._utils.error_formatters_utils import (
PANIC_ERROR_CODES,
)
from web3._utils.fee_utils import (
PRIORITY_FEE_MIN,
)
from web3._utils.method_formatters import (
to_hex_if_integer,
)
from web3._utils.module_testing.module_testing_utils import (
assert_contains_log,
async_mock_offchain_lookup_request_response,
flaky_geth_dev_mining,
mock_offchain_lookup_request_response,
)
from web3._utils.module_testing.utils import (
RequestMocker,
)
from web3._utils.type_conversion import (
to_hex_if_bytes,
)
from web3.exceptions import (
BlockNotFound,
ContractCustomError,
ContractLogicError,
ContractPanicError,
InvalidAddress,
InvalidTransaction,
MultipleFailedRequests,
NameNotFound,
OffchainLookup,
TimeExhausted,
TooManyRequests,
TransactionNotFound,
TransactionTypeMismatch,
Web3RPCError,
Web3ValidationError,
Web3ValueError,
)
from web3.middleware import (
ExtraDataToPOAMiddleware,
SignAndSendRawMiddlewareBuilder,
)
from web3.types import (
ENS,
BlockData,
FilterParams,
Nonce,
RPCEndpoint,
StateOverrideParams,
SyncStatus,
TxData,
TxParams,
Wei,
)
UNKNOWN_ADDRESS = ChecksumAddress(
HexAddress(HexStr("0xdEADBEeF00000000000000000000000000000000"))
)
UNKNOWN_HASH = HexStr(
"0xdeadbeef00000000000000000000000000000000000000000000000000000000"
)
# "test offchain lookup" as an abi-encoded string
OFFCHAIN_LOOKUP_TEST_DATA = "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001474657374206f6666636861696e206c6f6f6b7570000000000000000000000000" # noqa: E501
OFFCHAIN_LOOKUP_4BYTE_DATA = "0x556f1830"
OFFCHAIN_LOOKUP_RETURN_DATA = "00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001a0da96d05a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f776562332e70792f676174657761792f7b73656e6465727d2f7b646174617d2e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001768747470733a2f2f776562332e70792f6761746577617900000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001474657374206f6666636861696e206c6f6f6b757000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001474657374206f6666636861696e206c6f6f6b7570000000000000000000000000" # noqa: E501
# "web3py" as an abi-encoded string
WEB3PY_AS_HEXBYTES = "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000067765623370790000000000000000000000000000000000000000000000000000" # noqa: E501
RLP_ACCESS_LIST = [
(
"0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae",
(
"0x0000000000000000000000000000000000000000000000000000000000000003",
"0x0000000000000000000000000000000000000000000000000000000000000007",
),
),
("0xbb9bc244d798123fde783fcc1c72d3bb8c189413", ()),
]
RPC_ACCESS_LIST = [
{
"address": "0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae",
"storageKeys": (
"0x0000000000000000000000000000000000000000000000000000000000000003",
"0x0000000000000000000000000000000000000000000000000000000000000007",
),
},
{"address": "0xbb9bc244d798123fde783fcc1c72d3bb8c189413", "storageKeys": ()},
]
if TYPE_CHECKING:
from _pytest.monkeypatch import MonkeyPatch # noqa: F401
from web3.contract import ( # noqa: F401
AsyncContract,
Contract,
)
from web3.main import ( # noqa: F401
AsyncWeb3,
Web3,
)
def abi_encoded_offchain_lookup_contract_address(
w3: Union["Web3", "AsyncWeb3"],
offchain_lookup_contract: Union["Contract", "AsyncContract"],
) -> HexAddress:
return HexAddress(
remove_0x_prefix(
w3.to_hex(
abi.encode(
["address"],
[to_bytes(hexstr=offchain_lookup_contract.address)],
)
)
)
)
class AsyncEthModuleTest:
@pytest.mark.asyncio
async def test_eth_gas_price(self, async_w3: "AsyncWeb3") -> None:
gas_price = await async_w3.eth.gas_price
assert gas_price > 0
@pytest.mark.asyncio
async def test_is_connected(self, async_w3: "AsyncWeb3") -> None:
is_connected = await async_w3.is_connected()
assert is_connected is True
@pytest.mark.asyncio
async def test_eth_send_transaction_legacy(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
"gasPrice": await async_w3.eth.gas_price,
}
txn_hash = await async_w3.eth.send_transaction(txn_params)
txn = await async_w3.eth.get_transaction(txn_hash)
assert is_same_address(txn["from"], cast(ChecksumAddress, txn_params["from"]))
assert is_same_address(txn["to"], cast(ChecksumAddress, txn_params["to"]))
assert txn["value"] == 1
assert txn["gas"] == 21000
assert txn["gasPrice"] == txn_params["gasPrice"]
@pytest.mark.asyncio
async def test_eth_modify_transaction_legacy(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
"gasPrice": async_w3.to_wei(
1, "gwei"
), # must be greater than base_fee post London
}
txn_hash = await async_w3.eth.send_transaction(txn_params)
modified_txn_hash = await async_w3.eth.modify_transaction(
txn_hash, gasPrice=(cast(Wei, txn_params["gasPrice"] * 2)), value=Wei(2)
)
modified_txn = await async_w3.eth.get_transaction(modified_txn_hash)
assert is_same_address(
modified_txn["from"], cast(ChecksumAddress, txn_params["from"])
)
assert is_same_address(
modified_txn["to"], cast(ChecksumAddress, txn_params["to"])
)
assert modified_txn["value"] == 2
assert modified_txn["gas"] == 21000
assert modified_txn["gasPrice"] == cast(int, txn_params["gasPrice"]) * 2
@pytest.mark.asyncio
async def test_eth_modify_transaction(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
"maxPriorityFeePerGas": async_w3.to_wei(1, "gwei"),
"maxFeePerGas": async_w3.to_wei(2, "gwei"),
}
txn_hash = await async_w3.eth.send_transaction(txn_params)
modified_txn_hash = await async_w3.eth.modify_transaction(
txn_hash,
value=Wei(2),
maxPriorityFeePerGas=(cast(Wei, txn_params["maxPriorityFeePerGas"] * 2)),
maxFeePerGas=(cast(Wei, txn_params["maxFeePerGas"] * 2)),
)
modified_txn = await async_w3.eth.get_transaction(modified_txn_hash)
assert is_same_address(
modified_txn["from"], cast(ChecksumAddress, txn_params["from"])
)
assert is_same_address(
modified_txn["to"], cast(ChecksumAddress, txn_params["to"])
)
assert modified_txn["value"] == 2
assert modified_txn["gas"] == 21000
assert (
modified_txn["maxPriorityFeePerGas"]
== cast(Wei, txn_params["maxPriorityFeePerGas"]) * 2
)
assert modified_txn["maxFeePerGas"] == cast(Wei, txn_params["maxFeePerGas"]) * 2
@pytest.mark.asyncio
async def test_async_eth_sign_transaction(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
"maxFeePerGas": async_w3.to_wei(2, "gwei"),
"maxPriorityFeePerGas": async_w3.to_wei(1, "gwei"),
"nonce": Nonce(0),
}
result = await async_w3.eth.sign_transaction(txn_params)
signatory_account = async_w3.eth.account.recover_transaction(result["raw"])
assert async_keyfile_account_address_dual_type == signatory_account
assert result["tx"]["to"] == txn_params["to"]
assert result["tx"]["value"] == txn_params["value"]
assert result["tx"]["gas"] == txn_params["gas"]
assert result["tx"]["maxFeePerGas"] == txn_params["maxFeePerGas"]
assert (
result["tx"]["maxPriorityFeePerGas"] == txn_params["maxPriorityFeePerGas"]
)
assert result["tx"]["nonce"] == txn_params["nonce"]
@pytest.mark.asyncio
async def test_eth_sign_typed_data(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
async_skip_if_testrpc: Callable[["AsyncWeb3"], None],
) -> None:
validJSONMessage = """
{
"types": {
"EIP712Domain": [
{"name": "name", "type": "string"},
{"name": "version", "type": "string"},
{"name": "chainId", "type": "uint256"},
{"name": "verifyingContract", "type": "address"}
],
"Person": [
{"name": "name", "type": "string"},
{"name": "wallet", "type": "address"}
],
"Mail": [
{"name": "from", "type": "Person"},
{"name": "to", "type": "Person"},
{"name": "contents", "type": "string"}
]
},
"primaryType": "Mail",
"domain": {
"name": "Ether Mail",
"version": "1",
"chainId": "0x01",
"verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
},
"message": {
"from": {
"name": "Cow",
"wallet": "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"
},
"to": {
"name": "Bob",
"wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB"
},
"contents": "Hello, Bob!"
}
}
"""
async_skip_if_testrpc(async_w3)
signature = HexBytes(
await async_w3.eth.sign_typed_data(
async_keyfile_account_address_dual_type, json.loads(validJSONMessage)
)
)
assert len(signature) == 32 + 32 + 1
@pytest.mark.asyncio
async def test_invalid_eth_sign_typed_data(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
async_skip_if_testrpc: Callable[["AsyncWeb3"], None],
) -> None:
async_skip_if_testrpc(async_w3)
invalid_typed_message = """
{
"types": {
"EIP712Domain": [
{"name": "name", "type": "string"},
{"name": "version", "type": "string"},
{"name": "chainId", "type": "uint256"},
{"name": "verifyingContract", "type": "address"}
],
"Person": [
{"name": "name", "type": "string"},
{"name": "wallet", "type": "address"}
],
"Mail": [
{"name": "from", "type": "Person"},
{"name": "to", "type": "Person[2]"},
{"name": "contents", "type": "string"}
]
},
"primaryType": "Mail",
"domain": {
"name": "Ether Mail",
"version": "1",
"chainId": "0x01",
"verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
},
"message": {
"from": {
"name": "Cow",
"wallet": "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"
},
"to": [{
"name": "Bob",
"wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB"
}],
"contents": "Hello, Bob!"
}
}
"""
with pytest.raises(
Web3ValueError,
match=r".*Expected 2 items for array type Person\[2\], got 1 items.*",
):
await async_w3.eth.sign_typed_data(
async_keyfile_account_address_dual_type,
json.loads(invalid_typed_message),
)
@pytest.mark.asyncio
async def test_async_eth_sign_transaction_legacy(
self, async_w3: "AsyncWeb3", async_keyfile_account_address: ChecksumAddress
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address,
"to": async_keyfile_account_address,
"value": Wei(1),
"gas": 21000,
"gasPrice": await async_w3.eth.gas_price,
"nonce": Nonce(0),
}
result = await async_w3.eth.sign_transaction(txn_params)
signatory_account = async_w3.eth.account.recover_transaction(result["raw"])
assert async_keyfile_account_address == signatory_account
assert result["tx"]["to"] == txn_params["to"]
assert result["tx"]["value"] == txn_params["value"]
assert result["tx"]["gas"] == txn_params["gas"]
assert result["tx"]["gasPrice"] == txn_params["gasPrice"]
assert result["tx"]["nonce"] == txn_params["nonce"]
@pytest.mark.asyncio
async def test_async_eth_sign_transaction_hex_fees(
self, async_w3: "AsyncWeb3", async_keyfile_account_address: ChecksumAddress
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address,
"to": async_keyfile_account_address,
"value": Wei(1),
"gas": 21000,
"maxFeePerGas": hex(async_w3.to_wei(2, "gwei")),
"maxPriorityFeePerGas": hex(async_w3.to_wei(1, "gwei")),
"nonce": Nonce(0),
}
result = await async_w3.eth.sign_transaction(txn_params)
signatory_account = async_w3.eth.account.recover_transaction(result["raw"])
assert async_keyfile_account_address == signatory_account
assert result["tx"]["to"] == txn_params["to"]
assert result["tx"]["value"] == txn_params["value"]
assert result["tx"]["gas"] == txn_params["gas"]
assert result["tx"]["maxFeePerGas"] == int(str(txn_params["maxFeePerGas"]), 16)
assert result["tx"]["maxPriorityFeePerGas"] == int(
str(txn_params["maxPriorityFeePerGas"]), 16
)
assert result["tx"]["nonce"] == txn_params["nonce"]
@pytest.mark.asyncio
@pytest.mark.xfail(
reason="async name_to_address_middleware has not been implemented yet"
)
async def test_async_eth_sign_transaction_ens_names(
self, async_w3: "AsyncWeb3", async_keyfile_account_address: ChecksumAddress
) -> None:
with ens_addresses(
async_w3, {"unlocked-account.eth": async_keyfile_account_address}
):
txn_params: TxParams = {
"from": "unlocked-account.eth",
"to": "unlocked-account.eth",
"value": Wei(1),
"gas": 21000,
"maxFeePerGas": async_w3.to_wei(2, "gwei"),
"maxPriorityFeePerGas": async_w3.to_wei(1, "gwei"),
"nonce": Nonce(0),
}
result = await async_w3.eth.sign_transaction(txn_params)
signatory_account = async_w3.eth.account.recover_transaction(result["raw"])
assert async_keyfile_account_address == signatory_account
assert result["tx"]["to"] == async_keyfile_account_address
assert result["tx"]["value"] == txn_params["value"]
assert result["tx"]["gas"] == txn_params["gas"]
assert result["tx"]["maxFeePerGas"] == txn_params["maxFeePerGas"]
assert (
result["tx"]["maxPriorityFeePerGas"]
== txn_params["maxPriorityFeePerGas"]
)
assert result["tx"]["nonce"] == txn_params["nonce"]
@pytest.mark.asyncio
async def test_eth_send_transaction(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
"maxFeePerGas": async_w3.to_wei(3, "gwei"),
"maxPriorityFeePerGas": async_w3.to_wei(1, "gwei"),
}
txn_hash = await async_w3.eth.send_transaction(txn_params)
txn = await async_w3.eth.get_transaction(txn_hash)
assert is_same_address(txn["from"], cast(ChecksumAddress, txn_params["from"]))
assert is_same_address(txn["to"], cast(ChecksumAddress, txn_params["to"]))
assert txn["value"] == 1
assert txn["gas"] == 21000
assert txn["maxFeePerGas"] == txn_params["maxFeePerGas"]
assert txn["maxPriorityFeePerGas"] == txn_params["maxPriorityFeePerGas"]
assert txn["gasPrice"] <= txn["maxFeePerGas"] # effective gas price
@pytest.mark.asyncio
async def test_eth_send_transaction_default_fees(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
}
txn_hash = await async_w3.eth.send_transaction(txn_params)
txn = await async_w3.eth.get_transaction(txn_hash)
assert is_same_address(txn["from"], cast(ChecksumAddress, txn_params["from"]))
assert is_same_address(txn["to"], cast(ChecksumAddress, txn_params["to"]))
assert txn["value"] == 1
assert txn["gas"] == 21000
assert is_integer(txn["maxPriorityFeePerGas"])
assert is_integer(txn["maxFeePerGas"])
assert txn["gasPrice"] <= txn["maxFeePerGas"] # effective gas price
@pytest.mark.asyncio
async def test_eth_send_transaction_hex_fees(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
"maxFeePerGas": hex(250 * 10**9),
"maxPriorityFeePerGas": hex(2 * 10**9),
}
txn_hash = await async_w3.eth.send_transaction(txn_params)
txn = await async_w3.eth.get_transaction(txn_hash)
assert is_same_address(txn["from"], cast(ChecksumAddress, txn_params["from"]))
assert is_same_address(txn["to"], cast(ChecksumAddress, txn_params["to"]))
assert txn["value"] == 1
assert txn["gas"] == 21000
assert txn["maxFeePerGas"] == 250 * 10**9
assert txn["maxPriorityFeePerGas"] == 2 * 10**9
@pytest.mark.asyncio
async def test_eth_send_transaction_no_gas(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"maxFeePerGas": Wei(250 * 10**9),
"maxPriorityFeePerGas": Wei(2 * 10**9),
}
txn_hash = await async_w3.eth.send_transaction(txn_params)
txn = await async_w3.eth.get_transaction(txn_hash)
assert is_same_address(txn["from"], cast(ChecksumAddress, txn_params["from"]))
assert is_same_address(txn["to"], cast(ChecksumAddress, txn_params["to"]))
assert txn["value"] == 1
assert txn["gas"] == 121000 # 21000 + buffer
@pytest.mark.asyncio
async def test_eth_send_transaction_with_gas_price(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
"gasPrice": Wei(1),
"maxFeePerGas": Wei(250 * 10**9),
"maxPriorityFeePerGas": Wei(2 * 10**9),
}
with pytest.raises(TransactionTypeMismatch):
await async_w3.eth.send_transaction(txn_params)
@pytest.mark.asyncio
async def test_eth_send_transaction_no_priority_fee(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
"maxFeePerGas": Wei(250 * 10**9),
}
with pytest.raises(
InvalidTransaction, match="maxPriorityFeePerGas must be defined"
):
await async_w3.eth.send_transaction(txn_params)
@pytest.mark.asyncio
async def test_eth_send_transaction_no_max_fee(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
maxPriorityFeePerGas = async_w3.to_wei(2, "gwei")
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
"maxPriorityFeePerGas": maxPriorityFeePerGas,
}
txn_hash = await async_w3.eth.send_transaction(txn_params)
txn = await async_w3.eth.get_transaction(txn_hash)
assert is_same_address(txn["from"], cast(ChecksumAddress, txn_params["from"]))
assert is_same_address(txn["to"], cast(ChecksumAddress, txn_params["to"]))
assert txn["value"] == 1
assert txn["gas"] == 21000
block = await async_w3.eth.get_block("latest")
assert txn["maxFeePerGas"] == maxPriorityFeePerGas + 2 * block["baseFeePerGas"]
@pytest.mark.asyncio
async def test_eth_send_transaction_max_fee_less_than_tip(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
"maxFeePerGas": Wei(1 * 10**9),
"maxPriorityFeePerGas": Wei(2 * 10**9),
}
with pytest.raises(
InvalidTransaction, match="maxFeePerGas must be >= maxPriorityFeePerGas"
):
await async_w3.eth.send_transaction(txn_params)
@pytest.mark.asyncio
async def test_validation_middleware_chain_id_mismatch(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
wrong_chain_id = 1234567890
actual_chain_id = await async_w3.eth.chain_id
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
"maxFeePerGas": async_w3.to_wei(2, "gwei"),
"maxPriorityFeePerGas": async_w3.to_wei(1, "gwei"),
"chainId": wrong_chain_id,
}
with pytest.raises(
Web3ValidationError,
match=f"The transaction declared chain ID {wrong_chain_id}, "
f"but the connected node is on {actual_chain_id}",
):
await async_w3.eth.send_transaction(txn_params)
@pytest.mark.asyncio
async def test_ExtraDataToPOAMiddleware(
self, async_w3: "AsyncWeb3", request_mocker: Type[RequestMocker]
) -> None:
async_w3.middleware_onion.inject(ExtraDataToPOAMiddleware, "poa", layer=0)
extra_data = f"0x{'ff' * 33}"
async with request_mocker(
async_w3,
mock_results={"eth_getBlockByNumber": {"extraData": extra_data}},
):
block = await async_w3.eth.get_block("latest")
assert "extraData" not in block
assert block["proofOfAuthorityData"] == to_bytes(hexstr=extra_data)
# clean up
async_w3.middleware_onion.remove("poa")
@pytest.mark.asyncio
async def test_async_eth_send_raw_transaction(
self, async_w3: "AsyncWeb3", keyfile_account_pkey: HexStr
) -> None:
keyfile_account = async_w3.eth.account.from_key(keyfile_account_pkey)
txn = {
"chainId": 131277322940537, # the chainId set for the fixture
"from": keyfile_account.address,
"to": keyfile_account.address,
"value": Wei(0),
"gas": 21000,
"nonce": await async_w3.eth.get_transaction_count(
keyfile_account.address, "pending"
),
"gasPrice": 10**9,
}
signed = keyfile_account.sign_transaction(txn)
txn_hash = await async_w3.eth.send_raw_transaction(signed.raw_transaction)
assert txn_hash == HexBytes(signed.hash)
@pytest.mark.asyncio
async def test_async_sign_and_send_raw_middleware(
self, async_w3: "AsyncWeb3", keyfile_account_pkey: HexStr
) -> None:
keyfile_account = async_w3.eth.account.from_key(keyfile_account_pkey)
txn: TxParams = {
"from": keyfile_account.address,
"to": keyfile_account.address,
"value": Wei(0),
"gas": 21000,
}
async_w3.middleware_onion.inject(
SignAndSendRawMiddlewareBuilder.build(keyfile_account), "signing", layer=0
)
txn_hash = await async_w3.eth.send_transaction(txn)
assert isinstance(txn_hash, HexBytes)
# clean up
async_w3.middleware_onion.remove("signing")
@pytest.mark.asyncio
async def test_GasPriceStrategyMiddleware(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
}
two_gwei_in_wei = async_w3.to_wei(2, "gwei")
def gas_price_strategy(w3: "Web3", txn: TxParams) -> Wei:
return two_gwei_in_wei
async_w3.eth.set_gas_price_strategy(gas_price_strategy)
txn_hash = await async_w3.eth.send_transaction(txn_params)
txn = await async_w3.eth.get_transaction(txn_hash)
assert txn["gasPrice"] == two_gwei_in_wei
async_w3.eth.set_gas_price_strategy(None) # reset strategy
@pytest.mark.asyncio
async def test_gas_price_strategy_middleware_hex_value(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
}
two_gwei_in_wei = async_w3.to_wei(2, "gwei")
def gas_price_strategy(_w3: "Web3", _txn: TxParams) -> str:
return hex(two_gwei_in_wei)
async_w3.eth.set_gas_price_strategy(gas_price_strategy) # type: ignore
txn_hash = await async_w3.eth.send_transaction(txn_params)
txn = await async_w3.eth.get_transaction(txn_hash)
assert txn["gasPrice"] == two_gwei_in_wei
async_w3.eth.set_gas_price_strategy(None) # reset strategy
@pytest.mark.asyncio
@pytest.mark.parametrize(
"max_fee", (1000000000, None), ids=["with_max_fee", "without_max_fee"]
)
async def test_gas_price_from_strategy_bypassed_for_dynamic_fee_txn(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
max_fee: Wei,
) -> None:
max_priority_fee = async_w3.to_wei(1, "gwei")
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
"maxPriorityFeePerGas": max_priority_fee,
}
if max_fee is not None:
txn_params = assoc(txn_params, "maxFeePerGas", max_fee)
def gas_price_strategy(w3: "Web3", txn: TxParams) -> Wei:
return async_w3.to_wei(2, "gwei")
async_w3.eth.set_gas_price_strategy(gas_price_strategy)
txn_hash = await async_w3.eth.send_transaction(txn_params)
txn = await async_w3.eth.get_transaction(txn_hash)
latest_block = await async_w3.eth.get_block("latest")
assert (
txn["maxFeePerGas"] == max_fee
if max_fee is not None
else 2 * latest_block["baseFeePerGas"] + max_priority_fee
)
assert txn["maxPriorityFeePerGas"] == max_priority_fee
assert txn["gasPrice"] <= txn["maxFeePerGas"] # effective gas price
async_w3.eth.set_gas_price_strategy(None) # reset strategy
@pytest.mark.asyncio
async def test_gas_price_from_strategy_bypassed_for_dynamic_fee_txn_no_tip(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
txn_params: TxParams = {
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
"gas": 21000,
"maxFeePerGas": Wei(1000000000),
}
def gas_price_strategy(_w3: "Web3", _txn: TxParams) -> Wei:
return async_w3.to_wei(2, "gwei")
async_w3.eth.set_gas_price_strategy(gas_price_strategy)
with pytest.raises(
InvalidTransaction, match="maxPriorityFeePerGas must be defined"
):
await async_w3.eth.send_transaction(txn_params)
async_w3.eth.set_gas_price_strategy(None) # reset strategy
@pytest.mark.asyncio
async def test_eth_estimate_gas(
self,
async_w3: "AsyncWeb3",
async_keyfile_account_address_dual_type: ChecksumAddress,
) -> None:
gas_estimate = await async_w3.eth.estimate_gas(
{
"from": async_keyfile_account_address_dual_type,
"to": async_keyfile_account_address_dual_type,
"value": Wei(1),
}
)
assert is_integer(gas_estimate)
assert gas_estimate > 0
@pytest.mark.asyncio
@pytest.mark.parametrize(
"params",
(
{
"nonce": 1, # int
"balance": 1, # int
"code": HexStr("0x"), # HexStr
# with state
"state": {HexStr(f"0x{'00' * 32}"): HexStr(f"0x{'00' * 32}")},
},
{
"nonce": HexStr("0x1"), # HexStr
"balance": HexStr("0x1"), # HexStr
"code": b"\x00", # bytes
# with stateDiff
"stateDiff": {HexStr(f"0x{'00' * 32}"): HexStr(f"0x{'00' * 32}")},
},
),
)
async def test_eth_estimate_gas_with_override_param_type_check(
self,
async_w3: "AsyncWeb3",
async_math_contract: "AsyncContract",
params: StateOverrideParams,
) -> None:
accounts = await async_w3.eth.accounts
txn_params: TxParams = {"from": accounts[0]}
# assert does not raise
await async_w3.eth.estimate_gas(
txn_params, None, {async_math_contract.address: params}
)
@pytest.mark.asyncio
async def test_eth_fee_history(self, async_w3: "AsyncWeb3") -> None:
fee_history = await async_w3.eth.fee_history(1, "latest", [50])
assert is_list_like(fee_history["baseFeePerGas"])
assert is_list_like(fee_history["gasUsedRatio"])
assert is_integer(fee_history["oldestBlock"])
assert fee_history["oldestBlock"] >= 0
assert is_list_like(fee_history["reward"])
if len(fee_history["reward"]) > 0:
assert is_list_like(fee_history["reward"][0])
@pytest.mark.asyncio
async def test_eth_fee_history_with_integer(
self, async_w3: "AsyncWeb3", async_empty_block: BlockData
) -> None:
fee_history = await async_w3.eth.fee_history(
1, async_empty_block["number"], [50]
)
assert is_list_like(fee_history["baseFeePerGas"])
assert is_list_like(fee_history["gasUsedRatio"])
assert is_integer(fee_history["oldestBlock"])
assert fee_history["oldestBlock"] >= 0
assert is_list_like(fee_history["reward"])
if len(fee_history["reward"]) > 0:
assert is_list_like(fee_history["reward"][0])
@pytest.mark.asyncio
async def test_eth_fee_history_no_reward_percentiles(
self, async_w3: "AsyncWeb3"
) -> None:
fee_history = await async_w3.eth.fee_history(1, "latest")
assert is_list_like(fee_history["baseFeePerGas"])
assert is_list_like(fee_history["gasUsedRatio"])
assert is_integer(fee_history["oldestBlock"])
assert fee_history["oldestBlock"] >= 0
@pytest.mark.asyncio
async def test_eth_max_priority_fee(self, async_w3: "AsyncWeb3") -> None:
max_priority_fee = await async_w3.eth.max_priority_fee
assert is_integer(max_priority_fee)
@pytest.mark.asyncio
async def test_eth_max_priority_fee_with_fee_history_calculation(
self, async_w3: "AsyncWeb3", request_mocker: Type[RequestMocker]
) -> None:
async with request_mocker(
async_w3,
mock_errors={RPCEndpoint("eth_maxPriorityFeePerGas"): {}},
mock_results={RPCEndpoint("eth_feeHistory"): {"reward": [[0]]}},
):
with pytest.warns(
UserWarning,
match=(
"There was an issue with the method eth_maxPriorityFeePerGas. "
"Calculating using eth_feeHistory."
),
):
priority_fee = await async_w3.eth.max_priority_fee
assert is_integer(priority_fee)
assert priority_fee == PRIORITY_FEE_MIN
@pytest.mark.asyncio
async def test_eth_getBlockByHash(
self, async_w3: "AsyncWeb3", async_empty_block: BlockData
) -> None:
block = await async_w3.eth.get_block(async_empty_block["hash"])
assert block["hash"] == async_empty_block["hash"]
@pytest.mark.asyncio
async def test_eth_getBlockByHash_not_found(self, async_w3: "AsyncWeb3") -> None:
with pytest.raises(BlockNotFound):
await async_w3.eth.get_block(UNKNOWN_HASH)
@pytest.mark.asyncio
async def test_eth_getBlockByHash_pending(self, async_w3: "AsyncWeb3") -> None:
block = await async_w3.eth.get_block("pending")
assert block["hash"] is None
@pytest.mark.asyncio
async def test_eth_getBlockByNumber_with_integer(
self, async_w3: "AsyncWeb3", async_empty_block: BlockData
) -> None:
block = await async_w3.eth.get_block(async_empty_block["number"])
assert block["number"] == async_empty_block["number"]
@pytest.mark.asyncio
async def test_eth_getBlockByNumber_latest(
self, async_w3: "AsyncWeb3", async_empty_block: BlockData