-
Notifications
You must be signed in to change notification settings - Fork 688
/
Copy pathabc.py
4592 lines (3901 loc) · 118 KB
/
abc.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
from abc import (
ABC,
abstractmethod,
)
from typing import (
TYPE_CHECKING,
Any,
Callable,
ClassVar,
ContextManager,
Dict,
FrozenSet,
Hashable,
Iterable,
Iterator,
List,
MutableMapping,
NamedTuple,
Optional,
Sequence,
Tuple,
Type,
TypeVar,
Union,
)
from eth_bloom import (
BloomFilter,
)
from eth_keys.datatypes import (
PrivateKey,
)
from eth_typing import (
Address,
BlockNumber,
Hash32,
)
from eth_utils import (
ExtendedDebugLogger,
)
from eth.constants import (
BLANK_ROOT_HASH,
)
from eth.exceptions import (
VMError,
)
from eth.typing import (
AccountState,
BytesOrView,
ChainGaps,
HeaderParams,
JournalDBCheckpoint,
VMConfiguration,
)
if TYPE_CHECKING:
from eth.vm.forks.cancun.transactions import (
BlobTransaction,
)
T = TypeVar("T")
# A decoded RLP object of unknown interpretation, with a maximum "depth" of 1.
DecodedZeroOrOneLayerRLP = Union[bytes, List[bytes]]
class MiningHeaderAPI(ABC):
"""
A class to define a block header without ``mix_hash`` and ``nonce`` which can act as
a temporary representation during mining before the block header is sealed.
"""
parent_hash: Hash32
uncles_hash: Hash32
coinbase: Address
state_root: Hash32
transaction_root: Hash32
receipt_root: Hash32
bloom: int
difficulty: int
block_number: BlockNumber
gas_limit: int
gas_used: int
timestamp: int
extra_data: bytes
@property
@abstractmethod
def hash(self) -> Hash32:
"""
Return the hash of the block header.
"""
...
@property
@abstractmethod
def mining_hash(self) -> Hash32:
"""
Return the mining hash of the block header.
"""
@property
@abstractmethod
def hex_hash(self) -> str:
"""
Return the hash as a hex string.
"""
...
@property
@abstractmethod
def is_genesis(self) -> bool:
"""
Return ``True`` if this header represents the genesis block of the chain,
otherwise ``False``.
"""
...
# We can remove this API and inherit from rlp.Serializable when it becomes typesafe
@abstractmethod
def build_changeset(self, *args: Any, **kwargs: Any) -> Any:
"""
Open a changeset to modify the header.
"""
...
# We can remove this API and inherit from rlp.Serializable when it becomes typesafe
@abstractmethod
def as_dict(self) -> Dict[Hashable, Any]:
"""
Return a dictionary representation of the header.
"""
...
@property
@abstractmethod
def base_fee_per_gas(self) -> Optional[int]:
"""
Return the base fee per gas of the block.
Set to None in pre-EIP-1559 (London) header.
"""
...
@property
@abstractmethod
def withdrawals_root(self) -> Optional[Hash32]:
"""
Return the withdrawals root of the block.
Set to None in pre-Shanghai header.
"""
...
class BlockHeaderSedesAPI(ABC):
"""
Serialize and deserialize RLP for a header.
The header may be one of several definitions, like a London (EIP-1559) or
pre-London header.
"""
@classmethod
@abstractmethod
def deserialize(cls, encoded: List[bytes]) -> "BlockHeaderAPI":
"""
Extract a header from an encoded RLP object.
This method is used by rlp.decode(..., sedes=TransactionBuilderAPI).
"""
...
@classmethod
@abstractmethod
def serialize(cls, obj: "BlockHeaderAPI") -> List[bytes]:
"""
Encode a header to a series of bytes used by RLP.
This method is used by rlp.encode(obj).
"""
...
class BlockHeaderAPI(MiningHeaderAPI, BlockHeaderSedesAPI):
"""
A class derived from :class:`~eth.abc.MiningHeaderAPI` to define a block header
after it is sealed.
"""
mix_hash: Hash32
nonce: bytes
# We can remove this API and inherit from rlp.Serializable when it becomes typesafe
@abstractmethod
def copy(self, *args: Any, **kwargs: Any) -> "BlockHeaderAPI":
"""
Return a copy of the header, optionally overwriting any of its properties.
"""
...
@property
@abstractmethod
def parent_beacon_block_root(self) -> Optional[Hash32]:
"""
Return the hash of the parent beacon block.
"""
...
@property
@abstractmethod
def blob_gas_used(self) -> int:
"""
Return blob gas used.
"""
...
@property
@abstractmethod
def excess_blob_gas(self) -> int:
"""
Return excess blob gas.
"""
...
class LogAPI(ABC):
"""
A class to define a written log.
"""
address: Address
topics: Sequence[int]
data: bytes
@property
@abstractmethod
def bloomables(self) -> Tuple[bytes, ...]:
...
class ReceiptAPI(ABC):
"""
A class to define a receipt to capture the outcome of a transaction.
"""
@property
@abstractmethod
def state_root(self) -> bytes:
...
@property
@abstractmethod
def gas_used(self) -> int:
...
@property
@abstractmethod
def bloom(self) -> int:
...
@property
@abstractmethod
def logs(self) -> Sequence[LogAPI]:
...
@property
@abstractmethod
def bloom_filter(self) -> BloomFilter:
...
# We can remove this API and inherit from rlp.Serializable when it becomes typesafe
def copy(self, *args: Any, **kwargs: Any) -> "ReceiptAPI": # noqa: B027
"""
Return a copy of the receipt, optionally overwriting any of its properties.
"""
# This method isn't marked abstract because derived classes implement it by
# deriving from rlp.Serializable but mypy won't recognize it as implemented.
...
@abstractmethod
def encode(self) -> bytes:
"""
This encodes a receipt, no matter if it's: a legacy receipt, a
typed receipt, or the payload of a typed receipt. See more
context in decode.
"""
...
class ReceiptDecoderAPI(ABC):
"""
Responsible for decoding receipts from bytestrings.
"""
@classmethod
@abstractmethod
def decode(cls, encoded: bytes) -> ReceiptAPI:
"""
This decodes a receipt that is encoded to either a typed
receipt, a legacy receipt, or the body of a typed receipt. It assumes
that typed receipts are *not* rlp-encoded first.
If dealing with an object that is always rlp encoded, then use this instead:
rlp.decode(encoded, sedes=ReceiptBuilderAPI)
For example, you may receive a list of receipts via a devp2p request.
Each receipt is either a (legacy) rlp list, or a (new-style)
bytestring. Even if the receipt is a bytestring, it's wrapped in an rlp
bytestring, in that context. New-style receipts will *not* be wrapped
in an RLP bytestring in other contexts. They will just be an EIP-2718
type-byte plus payload of concatenated bytes, which cannot be decoded
as RLP. This happens for example, when calculating the receipt root
hash.
"""
...
class ReceiptBuilderAPI(ReceiptDecoderAPI):
"""
Responsible for encoding and decoding receipts.
Most simply, the builder is responsible for some pieces of the encoding for
RLP. In legacy transactions, this happens using rlp.Serializeable.
Some VMs support multiple distinct transaction types. In that case, the
builder is responsible for dispatching on the different types.
"""
@classmethod
@abstractmethod
def deserialize(cls, encoded: DecodedZeroOrOneLayerRLP) -> "ReceiptAPI":
"""
Extract a receipt from an encoded RLP object.
This method is used by rlp.decode(..., sedes=ReceiptBuilderAPI).
"""
...
@classmethod
@abstractmethod
def serialize(cls, obj: "ReceiptAPI") -> DecodedZeroOrOneLayerRLP:
"""
Encode a receipt to a series of bytes used by RLP.
In the case of legacy receipt, it will actually be a list of
bytes. That doesn't show up here, because pyrlp doesn't export type
annotations.
This method is used by rlp.encode(obj).
"""
...
class BaseTransactionAPI(ABC):
"""
A class to define all common methods of a transaction.
"""
@abstractmethod
def validate(self) -> None:
"""
Hook called during instantiation to ensure that all transaction
parameters pass validation rules.
"""
...
@property
@abstractmethod
def intrinsic_gas(self) -> int:
"""
Convenience property for the return value of `get_intrinsic_gas`
"""
...
@abstractmethod
def get_intrinsic_gas(self) -> int:
"""
Return the intrinsic gas for the transaction which is defined as the amount of
gas that is needed before any code runs.
"""
...
@abstractmethod
def gas_used_by(self, computation: "ComputationAPI") -> int:
"""
Return the gas used by the given computation. In Frontier,
for example, this is sum of the intrinsic cost and the gas used
during computation.
"""
...
# We can remove this API and inherit from rlp.Serializable when it becomes typesafe
@abstractmethod
def copy(self: T, **overrides: Any) -> T:
"""
Return a copy of the transaction.
"""
...
@property
@abstractmethod
def access_list(self) -> Sequence[Tuple[Address, Sequence[int]]]:
"""
Get addresses to be accessed by a transaction, and their storage slots.
"""
...
class TransactionFieldsAPI(ABC):
"""
A class to define all common transaction fields.
"""
@property
@abstractmethod
def nonce(self) -> int:
...
@property
@abstractmethod
def gas_price(self) -> int:
"""
Will raise :class:`AttributeError` if get or set on a 1559 transaction.
"""
...
@property
@abstractmethod
def max_fee_per_gas(self) -> int:
"""
Will default to gas_price if this is a pre-1559 transaction.
"""
...
@property
@abstractmethod
def max_priority_fee_per_gas(self) -> int:
"""
Will default to gas_price if this is a pre-1559 transaction.
"""
...
@property
@abstractmethod
def gas(self) -> int:
...
@property
@abstractmethod
def to(self) -> Address:
...
@property
@abstractmethod
def value(self) -> int:
...
@property
@abstractmethod
def data(self) -> bytes:
...
@property
@abstractmethod
def r(self) -> int:
...
@property
@abstractmethod
def s(self) -> int:
...
@property
@abstractmethod
def hash(self) -> Hash32:
"""
Return the hash of the transaction.
"""
...
@property
@abstractmethod
def chain_id(self) -> Optional[int]:
...
@property
@abstractmethod
def max_fee_per_blob_gas(self) -> int:
...
@property
@abstractmethod
def blob_versioned_hashes(self) -> Sequence[Hash32]:
...
class LegacyTransactionFieldsAPI(TransactionFieldsAPI):
@property
@abstractmethod
def v(self) -> int:
"""
In old transactions, this v field combines the y_parity bit and the
chain ID. All new usages should prefer accessing those fields directly.
But if you must access the original v, then you can cast to this API
first (after checking that type_id is None).
"""
...
class UnsignedTransactionAPI(BaseTransactionAPI):
"""
A class representing a transaction before it is signed.
"""
nonce: int
gas_price: int
gas: int
to: Address
value: int
data: bytes
#
# API that must be implemented by all Transaction subclasses.
#
@abstractmethod
def as_signed_transaction(
self, private_key: PrivateKey, chain_id: int = None
) -> "SignedTransactionAPI":
"""
Return a version of this transaction which has been signed using the
provided `private_key`
"""
...
class TransactionDecoderAPI(ABC):
"""
Responsible for decoding transactions from bytestrings.
Some VMs support multiple distinct transaction types. In that case, the
decoder is responsible for dispatching on the different types.
"""
@classmethod
@abstractmethod
def decode(cls, encoded: bytes) -> "SignedTransactionAPI":
"""
This decodes a transaction that is encoded to either a typed
transaction or a legacy transaction, or even the payload of one of the
transaction types. It assumes that typed transactions are *not*
rlp-encoded first.
If dealing with an object that is rlp encoded first, then use this instead:
rlp.decode(encoded, sedes=TransactionBuilderAPI)
For example, you may receive a list of transactions via a devp2p
request. Each transaction is either a (legacy) rlp list, or a
(new-style) bytestring. Even if the transaction is a bytestring, it's
wrapped in an rlp bytestring, in that context. New-style transactions
will *not* be wrapped in an RLP bytestring in other contexts. They will
just be an EIP-2718 type-byte plus payload of concatenated bytes, which
cannot be decoded as RLP. An example context for this is calculating
the transaction root hash.
"""
...
class TransactionBuilderAPI(TransactionDecoderAPI):
"""
Responsible for creating and encoding transactions.
Most simply, the builder is responsible for some pieces of the encoding for
RLP. In legacy transactions, this happens using rlp.Serializeable. It is
also responsible for initializing the transactions. The two transaction
initializers assume legacy transactions, for now.
Some VMs support multiple distinct transaction types. In that case, the
builder is responsible for dispatching on the different types.
"""
@classmethod
@abstractmethod
def deserialize(cls, encoded: DecodedZeroOrOneLayerRLP) -> "SignedTransactionAPI":
"""
Extract a transaction from an encoded RLP object.
This method is used by rlp.decode(..., sedes=TransactionBuilderAPI).
"""
...
@classmethod
@abstractmethod
def serialize(cls, obj: "SignedTransactionAPI") -> DecodedZeroOrOneLayerRLP:
"""
Encode a transaction to a series of bytes used by RLP.
In the case of legacy transactions, it will actually be a list of
bytes. That doesn't show up here, because pyrlp doesn't export type
annotations.
This method is used by rlp.encode(obj).
"""
...
@classmethod
@abstractmethod
def create_unsigned_transaction(
cls,
*,
nonce: int,
gas_price: int,
gas: int,
to: Address,
value: int,
data: bytes,
) -> UnsignedTransactionAPI:
"""
Create an unsigned transaction.
"""
...
@classmethod
@abstractmethod
def new_transaction(
cls,
nonce: int,
gas_price: int,
gas: int,
to: Address,
value: int,
data: bytes,
v: int,
r: int,
s: int,
) -> "SignedTransactionAPI":
"""
Create a signed transaction.
"""
...
class SignedTransactionAPI(BaseTransactionAPI, TransactionFieldsAPI):
def __init__(self, *args: Any, **kwargs: Any) -> None:
...
"""
A class representing a transaction that was signed with a private key.
"""
@property
@abstractmethod
def sender(self) -> Address:
"""
Convenience and performance property for the return value of `get_sender`
"""
...
@property
@abstractmethod
def y_parity(self) -> int:
"""
The bit used to disambiguate elliptic curve signatures.
The only values this method will return are 0 or 1.
"""
...
type_id: Optional[int]
"""
The type of EIP-2718 transaction
Each EIP-2718 transaction includes a type id (which is the leading
byte, as encoded).
If this transaction is a legacy transaction, that it has no type. Then,
type_id will be None.
"""
# +-------------------------------------------------------------+
# | API that must be implemented by all Transaction subclasses. |
# +-------------------------------------------------------------+
#
# Validation
#
@abstractmethod
def validate(self) -> None:
"""
Hook called during instantiation to ensure that all transaction
parameters pass validation rules.
"""
...
#
# Signature and Sender
#
@property
@abstractmethod
def is_signature_valid(self) -> bool:
"""
Return ``True`` if the signature is valid, otherwise ``False``.
"""
...
@abstractmethod
def check_signature_validity(self) -> None:
"""
Check if the signature is valid. Raise a ``ValidationError`` if the signature
is invalid.
"""
...
@abstractmethod
def get_sender(self) -> Address:
"""
Get the 20-byte address which sent this transaction.
This can be a slow operation. ``transaction.sender`` is always preferred.
"""
...
#
# Conversion to and creation of unsigned transactions.
#
@abstractmethod
def get_message_for_signing(self) -> bytes:
"""
Return the bytestring that should be signed in order to create a signed
transaction.
"""
...
# We can remove this API and inherit from rlp.Serializable when it becomes typesafe
def as_dict(self) -> Dict[Hashable, Any]:
"""
Return a dictionary representation of the transaction.
"""
...
@abstractmethod
def make_receipt(
self,
status: bytes,
gas_used: int,
log_entries: Tuple[Tuple[bytes, Tuple[int, ...], bytes], ...],
) -> ReceiptAPI:
"""
Build a receipt for this transaction.
Transactions have this responsibility because there are different types
of transactions, which have different types of receipts. (See
access-list transactions, which change the receipt encoding)
:param status: success or failure (used to be the state root after execution)
:param gas_used: cumulative usage of this transaction and the previous
ones in the header
:param log_entries: logs generated during execution
"""
...
@abstractmethod
def encode(self) -> bytes:
"""
This encodes a transaction, no matter if it's: a legacy transaction, a
typed transaction, or the payload of a typed transaction. See more
context in decode.
"""
...
class WithdrawalAPI(ABC):
"""
A class to define a withdrawal.
"""
@property
@abstractmethod
def index(self) -> int:
"""
A monotonically increasing index, starting from 0, that increments by 1 per
withdrawal to uniquely identify each withdrawal.
"""
...
@property
@abstractmethod
def validator_index(self) -> int:
"""
The index for the validator on the consensus layer the withdrawal corresponds
to.
"""
...
@property
@abstractmethod
def address(self) -> Address:
"""
The recipient address for the withdrawn ether.
"""
...
@property
@abstractmethod
def amount(self) -> int:
"""
The nonzero amount of ether to withdraw, given in gwei (10**9 wei).
"""
...
@property
@abstractmethod
def hash(self) -> Hash32:
"""
Return the hash of the withdrawal.
"""
...
@abstractmethod
def validate(self) -> None:
"""
Validate withdrawal fields.
"""
...
@abstractmethod
def encode(self) -> bytes:
"""
Return the encoded withdrawal.
"""
...
class BlockAPI(ABC):
"""
A class to define a block.
"""
header: BlockHeaderAPI
transactions: Tuple[SignedTransactionAPI, ...]
uncles: Tuple[BlockHeaderAPI, ...]
withdrawals: Tuple[WithdrawalAPI, ...]
transaction_builder: Type[TransactionBuilderAPI] = None
receipt_builder: Type[ReceiptBuilderAPI] = None
@abstractmethod
def __init__(
self,
header: BlockHeaderAPI,
transactions: Sequence[SignedTransactionAPI],
uncles: Sequence[BlockHeaderAPI],
withdrawals: Optional[
Sequence[WithdrawalAPI]
] = None, # only present post-Shanghai
) -> None:
...
@classmethod
@abstractmethod
def get_transaction_builder(cls) -> Type[TransactionBuilderAPI]:
"""
Return the transaction builder for the block.
"""
...
@classmethod
@abstractmethod
def get_receipt_builder(cls) -> Type[ReceiptBuilderAPI]:
"""
Return the receipt builder for the block.
"""
...
@classmethod
@abstractmethod
def from_header(
cls, header: BlockHeaderAPI, chaindb: "ChainDatabaseAPI"
) -> "BlockAPI":
"""
Instantiate a block from the given ``header`` and the ``chaindb``.
"""
...
@abstractmethod
def get_receipts(self, chaindb: "ChainDatabaseAPI") -> Tuple[ReceiptAPI, ...]:
"""
Fetch the receipts for this block from the given ``chaindb``.
"""
...
@property
@abstractmethod
def hash(self) -> Hash32:
"""
Return the hash of the block.
"""
...
@property
@abstractmethod
def number(self) -> BlockNumber:
"""
Return the number of the block.
"""
...
@property
@abstractmethod
def is_genesis(self) -> bool:
"""
Return ``True`` if this block represents the genesis block of the chain,
otherwise ``False``.
"""
...
# We can remove this API and inherit from rlp.Serializable when it becomes typesafe
def copy(self, *args: Any, **kwargs: Any) -> "BlockAPI": # noqa: B027
"""
Return a copy of the block, optionally overwriting any of its properties.
"""
# This method isn't marked abstract because derived classes implement it by
# deriving from rlp.Serializable but mypy won't recognize it as implemented.
...
class MetaWitnessAPI(ABC):
@property
@abstractmethod
def hashes(self) -> FrozenSet[Hash32]:
...
@property
@abstractmethod
def accounts_queried(self) -> FrozenSet[Address]:
...
@property
@abstractmethod
def account_bytecodes_queried(self) -> FrozenSet[Address]:
...
@abstractmethod
def get_slots_queried(self, address: Address) -> FrozenSet[int]:
...
@property
@abstractmethod
def total_slots_queried(self) -> int:
"""
Summed across all accounts, how many storage slots were queried?
"""
...
class BlockAndMetaWitness(NamedTuple):
"""
After evaluating a block using the VirtualMachine, this information
becomes available.
"""
block: BlockAPI
meta_witness: MetaWitnessAPI
class BlockPersistResult(NamedTuple):
"""
After persisting a block into the active chain, this information
becomes available.
"""
imported_block: BlockAPI
new_canonical_blocks: Tuple[BlockAPI, ...]
old_canonical_blocks: Tuple[BlockAPI, ...]
class BlockImportResult(NamedTuple):
"""
After importing and persisting a block into the active chain, this information
becomes available.
"""
imported_block: BlockAPI
new_canonical_blocks: Tuple[BlockAPI, ...]
old_canonical_blocks: Tuple[BlockAPI, ...]
meta_witness: MetaWitnessAPI
class SchemaAPI(ABC):
"""
A class representing a database schema that maps values to lookup keys.
"""
@staticmethod
@abstractmethod
def make_header_chain_gaps_lookup_key() -> bytes:
"""