Beacon Kit Changelog β
v1.1.4: configuration advice β
Improves beacond
handling of transient conditions (which solve themselves) such as a slow execution layer. It will still exit if the execution layer is shut down.
Also, on startup, beacond now issues warnings about deprecated settings, or settings that could be improved.
WARN Automatically raising RPCTimeout ... minimum=2000
Set your RPC timeout to at least 2 seconds:
FILE:
app.toml
rpc-timeout = "2s"
ignoring deprecated setting rpc-retries
This setting is no longer used and should be removed.
FILE:
app.toml
rpc-retries = 10
excessive peering
We recommend that most node operators, including validators, set their maximum inbound peers to 40, and maximum outbound peers to 10. We previously shipped considerably higher default values for this, which can cause excessive memory and CPU consumption.
FILE:
config.toml
max_num_inbound_peers = 40 max_num_outbound_peers = 10
State pruning disabled. This may increase memory footprint considerably
Setting
beacond
to disable state pruning, in which previous states are kept, dramatically increases memory usage. Simple RPC nodes can useeverything
, and validator nodes should useeverything
. The only exception is if your node is being used to calculate block reward claims, in which case thedefault
setting is a good choice, but this should not be done on the validator itself.FILE:
app.toml
pruning = "everything" # typical pruning = "default" # needed for calculating block reward proofs
v1.1.3: fix deposit mismatch
β
This release restructures Consensus Layer and Execution Layer communication to keep them in lock-step.
Now, every RPC communication issue among them will result in a BeaconKit termination but keeps their states in sync so you can easily restart any time and keep going.
To that end, configure Reth to not forget blocks on exit with these command line options:
# Reth execution client required flags
--engine.persistence-threshold 0
--engine.memory-block-buffer-target 0
You donβt need to keep these once the node has completed sync, but they make resuming syncing, or syncing from genesis, more robust.
v1.1.2: security improvements β
This is a security-focused update:
- Harden timestamp validation of EL payload
- Prevent potential panics and node halts while decoding data
v1.1.1: fixes potential halt β
BeaconKit 1.1.1 fixes ASA-2025-001 and ASA-2025-002, which could lead to a network halt. Moreover it hardens some checks around deposit and blob processing.
v1.1.0: BGT minting β
BeaconKit v1.1.0 unlocks minting of tokens towards the BGT contract.