Expand description
Block Access List (BAL) data structures for efficient state access in blockchain execution.
This module provides types for managing Block Access Lists, which optimize state access by pre-computing and organizing data that will be accessed during block execution.
§Key Types
BlockAccessIndex: block access indexBal: Main BAL structure containing a map of accountsBalWrites<T>: Array of (index, value) pairs representing sequential writes to a state itemAccountBal: Complete BAL structure for an account (balance, nonce, code, and storage)AccountInfoBal: Account info BAL data (nonce, balance, code)StorageBal: Storage-level BAL data for an account
Re-exports§
pub use account::AccountBal;pub use account::AccountInfoBal;pub use account::StorageBal;pub use writes::BalWrites;
Modules§
Structs§
- Bal
- BAL structure.
- Block
Access Index - Block access index within a block.
Enums§
- BalError
- BAL error.