Skip to content

Commit

Permalink
feat(engine): Add Trin Execution client code (alloy-rs#1372)
Browse files Browse the repository at this point in the history
  • Loading branch information
KolbyML authored and lwedge99 committed Oct 8, 2024
1 parent b52c1d0 commit 64aabfd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions crates/rpc-types-engine/src/identification.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ pub enum ClientCode {
NM,
/// Nimbus
NB,
/// Trin Execution
TE,
/// Teku
TK,
/// Prysm
Expand All @@ -47,6 +49,7 @@ impl ClientCode {
Self::LS => "LS",
Self::NM => "NM",
Self::NB => "NB",
Self::TE => "TE",
Self::TK => "TK",
Self::PM => "PM",
Self::RH => "RH",
Expand All @@ -65,6 +68,7 @@ impl ClientCode {
Self::LS => "Lodestar",
Self::NM => "Nethermind",
Self::NB => "Nimbus",
Self::TE => "Trin Execution",
Self::TK => "Teku",
Self::PM => "Prysm",
Self::RH => "Reth",
Expand All @@ -86,6 +90,7 @@ impl FromStr for ClientCode {
"LS" => Ok(Self::LS),
"NM" => Ok(Self::NM),
"NB" => Ok(Self::NB),
"TE" => Ok(Self::TE),
"TK" => Ok(Self::TK),
"PM" => Ok(Self::PM),
"RH" => Ok(Self::RH),
Expand Down

0 comments on commit 64aabfd

Please sign in to comment.