From dd8e48d99e7695ec85768eacb09cd0deb0db406d Mon Sep 17 00:00:00 2001 From: Klimov Sergei Date: Fri, 19 Sep 2025 04:09:38 +0800 Subject: [PATCH 1/2] add ELECTRA in beacon knownForks --- 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 2f6ba082c51..85930dbe3b0 100644 --- a/beacon/params/config.go +++ b/beacon/params/config.go @@ -37,7 +37,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"} // ClientConfig contains beacon light client configuration. type ClientConfig struct { From 862d9dc8ede8eea11dc37911bd79ec84d9007a42 Mon Sep 17 00:00:00 2001 From: Klimov Sergei Date: Fri, 3 Oct 2025 01:12:33 +0800 Subject: [PATCH 2/2] Update config.go --- 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 85930dbe3b0..b6060731eaf 100644 --- a/beacon/params/config.go +++ b/beacon/params/config.go @@ -37,7 +37,7 @@ import ( // across signing different data structures. const syncCommitteeDomain = 7 -var knownForks = []string{"GENESIS", "ALTAIR", "BELLATRIX", "CAPELLA", "DENEB", "ELECTRA"} +var knownForks = []string{"GENESIS", "ALTAIR", "BELLATRIX", "CAPELLA", "DENEB", "ELECTRA", "FULU"} // ClientConfig contains beacon light client configuration. type ClientConfig struct {