pub struct StatsSimulated {
pub is_high_priority: bool,
pub is_simulated: bool,
pub simulated_at: String,
pub received_at: String,
pub considered_by_builders_at: Vec<ConsideredByBuildersAt>,
pub sealed_by_builders_at: Vec<SealedByBuildersAt>,
}
Expand description
Response for flashbots_getBundleStatsV2
represents stats for a single bundle
Note: this is V2: https://docs.flashbots.net/flashbots-auction/searchers/advanced/rpc-endpoint#flashbots_getbundlestatsv2
Timestamp format: “2022-10-06T21:36:06.322Z
Fields§
§is_high_priority: bool
boolean representing if this searcher has a high enough reputation to be in the high priority queue
is_simulated: bool
representing whether the bundle gets simulated. All other fields will be omitted except simulated field if API didn’t receive bundle
simulated_at: String
time at which the bundle gets simulated
received_at: String
time at which the bundle API received the bundle
considered_by_builders_at: Vec<ConsideredByBuildersAt>
indicates time at which each builder selected the bundle to be included in the target block
sealed_by_builders_at: Vec<SealedByBuildersAt>
indicates time at which each builder sealed a block containing the bundle
Trait Implementations§
source§impl Clone for StatsSimulated
impl Clone for StatsSimulated
source§fn clone(&self) -> StatsSimulated
fn clone(&self) -> StatsSimulated
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for StatsSimulated
impl Debug for StatsSimulated
source§impl Default for StatsSimulated
impl Default for StatsSimulated
source§fn default() -> StatsSimulated
fn default() -> StatsSimulated
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for StatsSimulated
impl<'de> Deserialize<'de> for StatsSimulated
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for StatsSimulated
impl PartialEq for StatsSimulated
source§impl Serialize for StatsSimulated
impl Serialize for StatsSimulated
impl Eq for StatsSimulated
impl StructuralPartialEq for StatsSimulated
Auto Trait Implementations§
impl Freeze for StatsSimulated
impl RefUnwindSafe for StatsSimulated
impl Send for StatsSimulated
impl Sync for StatsSimulated
impl Unpin for StatsSimulated
impl UnwindSafe for StatsSimulated
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)