diff --git a/crates/clients/chainbound/src/mev_bundle.rs b/crates/clients/chainbound/src/mev_bundle.rs index 6a1e748..09c8659 100644 --- a/crates/clients/chainbound/src/mev_bundle.rs +++ b/crates/clients/chainbound/src/mev_bundle.rs @@ -19,12 +19,38 @@ pub enum BlockBuilder { Titan, /// RPC URL: F1b, - /// RPC URL: - Blocknative, /// RPC URL: Nfactorial, /// RPC URL: Buildai, + /// RPC URL: + Loki, + /// RPC URL: + Gambit, + /// RPC URL: + ETHBuilder, + /// RPC URL: + Payload, + /// RPC URL: + LightSpeedBuilder, + /// RPC URL: + Jetbldr, + /// RPC URL: + PenguinBuild, + /// RPC URL: + EdenNetwork, + /// RPC URL: + TBuilder, + /// RPC URL: + Eigenphi, + /// RPC URL: + BlockBleeder, + /// RPC URL: + SecureRPC, + /// RPC URL: + PandaBuilder, + /// RPC URL: + SmithBot, /// Custom builder name (must be supported by the Echo RPC). /// This can be useful if a new Echo version comes out and this @@ -45,9 +71,22 @@ impl ToString for BlockBuilder { BlockBuilder::Builder0x69 => "builder0x69".to_string(), BlockBuilder::Titan => "titan".to_string(), BlockBuilder::F1b => "f1b".to_string(), - BlockBuilder::Blocknative => "blocknative".to_string(), BlockBuilder::Nfactorial => "nfactorial".to_string(), BlockBuilder::Buildai => "buildai".to_string(), + BlockBuilder::Loki => "loki".to_string(), + BlockBuilder::Gambit => "gambit".to_string(), + BlockBuilder::ETHBuilder => "ethbuilder".to_string(), + BlockBuilder::Payload => "payload".to_string(), + BlockBuilder::LightSpeedBuilder => "lightspeedbuilder".to_string(), + BlockBuilder::Jetbldr => "jetbldr".to_string(), + BlockBuilder::PenguinBuild => "penguinbuild".to_string(), + BlockBuilder::EdenNetwork => "edennetwork".to_string(), + BlockBuilder::TBuilder => "tbuilder".to_string(), + BlockBuilder::Eigenphi => "eigenphi".to_string(), + BlockBuilder::BlockBleeder => "blockbleeder".to_string(), + BlockBuilder::SecureRPC => "securerpc".to_string(), + BlockBuilder::PandaBuilder => "pandabuilder".to_string(), + BlockBuilder::SmithBot => "smithbot".to_string(), BlockBuilder::Other(name) => name.to_string(), BlockBuilder::All => "all".to_string(), }