Chains
BNB Beacon Chain
BNB ecosystem’s staking & governance layer
Staking
Earn rewards by securing the network
Build
Explore
Accelerate
Connect
Careers🔥
Explore Opportunities on BNB Chain

As BNB Smart Chain (BSC) continues to scale and transaction volume grows, improving the EVM's performance is critical. A significant recent improvement is the introduction of the Block Access List, a feature designed to enhance efficiency and throughput.
The BALis a new structure added to blocks that significantly improves how the EVM handles state access. In essence, it is a pre-computation of all the storage slots and addresses that a transaction will read from or write to during its execution within a block.
Before BAL, the EVM would execute transactions and determine the necessary state reads and writes dynamically. While functional, this method introduced inefficiencies, particularly in how nodes fetched and validated the state.
The introduction of BAL provides several key performance advantages:
With the access list included in the block body, nodes can immediately fetch the required state data before the transaction is even executed which significantly reduces execution latency. Furthermore, knowing the required state allows for better parallelization of transaction execution, as dependencies are clearer, leading to faster block processing times.
BAL acts as a highly effective hint for state pre-fetching. Validators can use this list to load all necessary data from the database into memory ahead of time. This minimizes disk I/O bottlenecks during the critical path of block validation and execution.
Block reorganizations (reorgs) require validators to rewind and re-execute transactions. By explicitly listing the accessed state, BAL helps streamline this process by making it easier to determine the exact state delta for rollback and re-application, accelerating recovery after a reorg.
The BAL has been integrated into BSC through the implementation of BEP-592. Separately, benchmark testing has been completed in our labs for the proposed EIP-7928 implementation. The testing results for both can be reviewed, and ultimately, the EIP-7928 BAL implementation will be deployed on BSC to supersede BEP-592.
This implementation focuses on providing the benefits of BAL to local node execution without requiring a change to the core consensus mechanism. It enables nodes to utilize the access list for pre-fetching and parallelization internally, providing significant speed-ups for validation and block processing times.
Note: BEP-592 has been fully supported in the latest BSC release, delivering immediate performance benefits to validators and node operators.
The EIP-7928 proposal aims to standardize the BAL structure across the EVM ecosystem. While BSC is enabling the spirit of EIP-7928 to align with future EVM standards, its current implementation deviates slightly from the proposed specification regarding how the BAL is strictly kept and used.
The main difference lies in the integration point within the block structure:
This approach lets BSC capture the performance gains right away without needing a full consensus upgrade or changes to the block header. For now, BAL is integrated in a non-consensus-breaking way through BEP-592, giving nodes immediate internal optimizations.
A future hard fork can then introduce the full block-header changes required for complete EIP-7928 alignment and network-wide consensus support.
Initial performance testing demonstrates the clear improvements achieved by implementing the BAL, primarily through enhanced state pre-fetching and parallel execution capabilities.
*Note: Test results were obtained using AWS i7i.8xlarge hardware specifications.*
Based on the test results and your observations, the summary of performance impact is:
The current results for EIP-7928 are mixed:
This mixed outcome confirms the need for further refinement and suggests that BSC's existing optimizations, such as pre-fetching, may be competing with or mitigating the expected benefits of the nascent EIP-7928 consensus integration, which still requires optimization to achieve stable, overall performance gains.
The implementation of the BAL is a strong step toward a more efficient Ethereum ecosystem. It represents the ongoing commitment of the community to optimize core components of the EVM for mass adoption. As the network grows, features like BAL ensure that the EVM remains the most robust and scalable smart contract platform.