From 9443565ce2322fc65f481754c07f3d0c21ad510b Mon Sep 17 00:00:00 2001 From: shaaibu7 Date: Tue, 10 Mar 2026 12:29:52 +0100 Subject: [PATCH 1/3] feat: add gean client to clients list --- data/client-teams.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/data/client-teams.tsx b/data/client-teams.tsx index d0b50d1..6905735 100644 --- a/data/client-teams.tsx +++ b/data/client-teams.tsx @@ -100,4 +100,17 @@ export const clientTeamsData: ClientTeam[] = [ { type: 'github', url: 'https://github.com/lambdaclass' }, ], }, + { + id: 'gean', + name: 'gean', + language: 'Golang', + description: + 'A Go consensus client for Lean Ethereum, built around the idea that protocol simplicity is a security property.', + leanRepo: 'https://github.com/geanlabs/gean', + links: [ + { type: 'website', url: 'https://geanlabs.com/' }, + { type: 'twitter', url: 'https://x.com/geanclient' }, + { type: 'github', url: 'https://github.com/geanlabs' }, + ], + }, ]; From 63e40c42d1bbd63d6e407af2ca2ab850a226a9b3 Mon Sep 17 00:00:00 2001 From: shaaibu7 Date: Tue, 10 Mar 2026 12:31:56 +0100 Subject: [PATCH 2/3] feat: add gean as devnet participant --- data/devnets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/devnets.ts b/data/devnets.ts index abf332e..ca46964 100644 --- a/data/devnets.ts +++ b/data/devnets.ts @@ -111,7 +111,7 @@ export const devnetsData: Devnet[] = [ 'Coalesce multiple aggregates for the same message into one final aggregate', 'Ensure blocks contain a single aggregate per message instead of multiple aggregates', ], - clients: ['Ream', 'Zeam', 'Qlean', 'Lantern', 'Grandine', 'ethlambda', 'Peam'], + clients: ['Ream', 'Zeam', 'Qlean', 'Lantern', 'Grandine', 'ethlambda', 'Peam', 'gean'], links: [], }, ]; From 313b8b29d13001807daa78aa032091dc4f95fc72 Mon Sep 17 00:00:00 2001 From: shaaibu7 Date: Tue, 10 Mar 2026 15:03:51 +0100 Subject: [PATCH 3/3] chore: update Go naming and clients array --- data/client-teams.tsx | 2 +- data/devnets.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/client-teams.tsx b/data/client-teams.tsx index 6905735..2852b06 100644 --- a/data/client-teams.tsx +++ b/data/client-teams.tsx @@ -103,7 +103,7 @@ export const clientTeamsData: ClientTeam[] = [ { id: 'gean', name: 'gean', - language: 'Golang', + language: 'Go', description: 'A Go consensus client for Lean Ethereum, built around the idea that protocol simplicity is a security property.', leanRepo: 'https://github.com/geanlabs/gean', diff --git a/data/devnets.ts b/data/devnets.ts index ca46964..44ab74d 100644 --- a/data/devnets.ts +++ b/data/devnets.ts @@ -111,7 +111,7 @@ export const devnetsData: Devnet[] = [ 'Coalesce multiple aggregates for the same message into one final aggregate', 'Ensure blocks contain a single aggregate per message instead of multiple aggregates', ], - clients: ['Ream', 'Zeam', 'Qlean', 'Lantern', 'Grandine', 'ethlambda', 'Peam', 'gean'], + clients: ['Ream', 'Zeam', 'Qlean', 'Lantern', 'Grandine', 'ethlambda', 'gean', 'Peam'], links: [], }, ];