ethereum.forks.amsterdam.block_access_lists

Block Access Lists (EIP-7928) implementation for Ethereum Amsterdam fork.

__all__

18
__all__ = [
19
    "BlockAccessListBuilder",
20
    "add_balance_change",
21
    "add_code_change",
22
    "add_nonce_change",
23
    "add_storage_read",
24
    "add_storage_write",
25
    "add_touched_account",
26
    "build_block_access_list",
27
    "compute_block_access_list_hash",
28
    "update_builder_from_tx",
29
]