From 3e48e0779cee923ad7a385e0492cceb6eb5581a1 Mon Sep 17 00:00:00 2001 From: Klimov Sergei Date: Wed, 26 Nov 2025 23:15:28 +0800 Subject: [PATCH] beacon/config: add ELECTRA, FULU to knownForks (#32674) --- beacon/params/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon/params/config.go b/beacon/params/config.go index b01b739e07..5336220efd 100644 --- a/beacon/params/config.go +++ b/beacon/params/config.go @@ -38,7 +38,7 @@ import ( // across signing different data structures. const syncCommitteeDomain = 7 -var knownForks = []string{"GENESIS", "ALTAIR", "BELLATRIX", "CAPELLA", "DENEB"} +var knownForks = []string{"GENESIS", "ALTAIR", "BELLATRIX", "CAPELLA", "DENEB", "ELECTRA", "FULU"} // ClientConfig contains beacon light client configuration. type ClientConfig struct {