EIP-8383 would cut the beacon block retention window by three quarters
EIP-8383, "Reduce CL Block Retention Window", was added to the EIPs repository on 23 September 2026 as a Draft in the Networking category, authored by Kevaundray Wedderburn and created 17 August 2026.
It reduces the minimum consensus-layer block-serving window from 33,024 epochs to 8,192:
MIN_EPOCHS_FOR_BLOCK_REQUESTS = 8192
The argument is about where the existing number came from. Per the abstract, the current window is a worst-case weak-subjectivity calculation using MAX_SAFETY_DECAY = 100. In practice, checkpoint sync uses SAFETY_DECAY = 10, which at current mainnet churn parameters gives a weak-subjectivity bound of 3,532 epochs — well inside the proposed 8,192.
Discussion is at ethereum-magicians thread 29449.

The part worth noticing
The change is not a relaxation of the security assumption; it is an alignment of the rule with the assumption already in use. Weak subjectivity is the idea that a node syncing from scratch must start from a checkpoint no older than some bound, or it cannot distinguish the canonical chain from a fork built by exited validators. The retention window exists so that any node can serve blocks back to that bound. If the bound in practice is 3,532 epochs and the rule demands 33,024, nine tenths of that history is being stored to satisfy a parameter nobody uses.
What it buys is disk, and disk is the quiet constraint on who runs a node. Roughly four months of beacon blocks instead of roughly fourteen. For a home validator that is the difference between a commodity SSD and a deliberate storage purchase, which is exactly where decentralisation is won or lost.
📌 Status is Draft, category Networking. No client has committed to it, no fork carries it, and the safety margin between 3,532 and 8,192 is the part that will get argued over — because it is the room left for churn parameters to change without the rule needing to change again.