Skip to content

Commit

Permalink
Split MevApi trait into two #11036 (#11081)
Browse files Browse the repository at this point in the history
Co-authored-by: Emilia Hane <elsaemiliaevahane@gmail.com>
  • Loading branch information
0xriazaka and emhane committed Sep 22, 2024
1 parent 405fc43 commit f4d11f4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crates/rpc/rpc-api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub mod servers {
admin::AdminApiServer,
debug::DebugApiServer,
engine::{EngineApiServer, EngineEthApiServer},
mev::MevApiServer,
mev::{MevFullApiServer, MevSimApiServer},
net::NetApiServer,
otterscan::OtterscanServer,
reth::RethApiServer,
Expand Down Expand Up @@ -69,7 +69,7 @@ pub mod clients {
engine::{EngineApiClient, EngineEthApiClient},
ganache::GanacheApiClient,
hardhat::HardhatApiClient,
mev::MevApiClient,
mev::{MevFullApiClient, MevSimApiClient},
net::NetApiClient,
otterscan::OtterscanClient,
reth::RethApiClient,
Expand Down
16 changes: 15 additions & 1 deletion crates/rpc/rpc-api/src/mev.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,21 @@ use jsonrpsee::proc_macros::rpc;
/// Mev rpc interface.
#[cfg_attr(not(feature = "client"), rpc(server, namespace = "mev"))]
#[cfg_attr(feature = "client", rpc(server, client, namespace = "mev"))]
pub trait MevApi {
pub trait MevSimApi {
/// Similar to `mev_sendBundle` but instead of submitting a bundle to the relay, it returns
/// a simulation result. Only fully matched bundles can be simulated.
#[method(name = "simBundle")]
async fn sim_bundle(
&self,
bundle: SendBundleRequest,
sim_overrides: SimBundleOverrides,
) -> jsonrpsee::core::RpcResult<SimBundleResponse>;
}

/// Mev rpc interface.
#[cfg_attr(not(feature = "client"), rpc(server, namespace = "mev"))]
#[cfg_attr(feature = "client", rpc(server, client, namespace = "mev"))]
pub trait MevFullApi {
/// Submitting bundles to the relay. It takes in a bundle and provides a bundle hash as a
/// return value.
#[method(name = "sendBundle")]
Expand Down

0 comments on commit f4d11f4

Please sign in to comment.