Struct ethers_flashbots::BundleStats [−][src]
pub struct BundleStats {
pub is_simulated: bool,
pub is_sent_to_miners: bool,
pub is_high_priority: bool,
pub simulated_at: Option<DateTime<Utc>>,
pub submitted_at: Option<DateTime<Utc>>,
pub sent_to_miners_at: Option<DateTime<Utc>>,
}Expand description
Represents stats for a submitted bundle.
See Flashbots docs for more information.
Fields
is_simulated: boolWhether the bundle was simulated.
is_sent_to_miners: boolWhether the bundle was sent to miners.
is_high_priority: boolWhether the bundle is high priority.
simulated_at: Option<DateTime<Utc>>When the bundle was simulated
submitted_at: Option<DateTime<Utc>>When the bundle was submitted
sent_to_miners_at: Option<DateTime<Utc>>When the bundle was sent to miners
Trait Implementations
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