diff --git a/crates/rpc-types-mev/src/eth_calls.rs b/crates/rpc-types-mev/src/eth_calls.rs index cfdc3cb19b1..1b832bb4a98 100644 --- a/crates/rpc-types-mev/src/eth_calls.rs +++ b/crates/rpc-types-mev/src/eth_calls.rs @@ -108,32 +108,32 @@ pub struct CancelPrivateTransactionRequest { /// #[derive(Default, Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] -pub(crate) struct EthSendBundle { +pub struct EthSendBundle { /// A list of hex-encoded signed transactions - pub(crate) txs: Vec, + pub txs: Vec, /// hex-encoded block number for which this bundle is valid #[serde(with = "alloy_serde::quantity")] - pub(crate) block_number: u64, + pub block_number: u64, /// unix timestamp when this bundle becomes active #[serde(default, with = "alloy_serde::quantity::opt", skip_serializing_if = "Option::is_none")] - pub(crate) min_timestamp: Option, + pub min_timestamp: Option, /// unix timestamp how long this bundle stays valid #[serde(default, with = "alloy_serde::quantity::opt", skip_serializing_if = "Option::is_none")] - pub(crate) max_timestamp: Option, + pub max_timestamp: Option, /// list of hashes of possibly reverting txs #[serde(default, skip_serializing_if = "Vec::is_empty")] - pub(crate) reverting_tx_hashes: Vec, + pub reverting_tx_hashes: Vec, /// UUID that can be used to cancel/replace this bundle #[serde(default, rename = "replacementUuid", skip_serializing_if = "Option::is_none")] - pub(crate) replacement_uuid: Option, + pub replacement_uuid: Option, } /// Response from the matchmaker after sending a bundle. #[derive(Deserialize, Debug, Serialize, Clone, PartialEq, Eq)] #[serde(rename_all = "camelCase")] -pub(crate) struct EthBundleHash { +pub struct EthBundleHash { /// Hash of the bundle bodies. - pub(crate) bundle_hash: B256, + pub bundle_hash: B256, } /// Response from the matchmaker after sending a bundle.