diff --git a/src/components/ChainDataSections.tsx b/src/components/ChainDataSections.tsx index f844aa5..2c9ea42 100644 --- a/src/components/ChainDataSections.tsx +++ b/src/components/ChainDataSections.tsx @@ -343,6 +343,14 @@ function SolanaChainSections({ })()} {data.software_version && (() => { const isTest = /alpha|beta|test/i.test(data.software_version); + // Mirror of slasher-solana's classify_jito_version: any version + // containing "jito" (case-insensitive) is Jito-Solana; anything + // else is vanilla Agave. Vanilla validators forfeit MEV tip + // revenue that would otherwise flow to delegators — that's the + // chip's product story. We deliberately do not chip "Jito" as + // green because being on Jito is the expected state, not an + // achievement; we only call out the deviation. + const isJito = /jito/i.test(data.software_version); return ( )} + {!isJito && !isTest && ( + + vanilla + + )} } />