//! Configuration for the [`SequencerActor`].
//!//! [`SequencerActor`]: super::SequencerActor
useurl::Url;/// Configuration for the [`SequencerActor`].
////// [`SequencerActor`]: super::SequencerActor
#[derive(Default, Debug, Clone, PartialEq, Eq)]pubstructSequencerConfig{/// Whether or not the sequencer is enabled at startup.
pubsequencer_stopped:bool,
/// Whether or not the sequencer is in recovery mode.
pubsequencer_recovery_mode:bool,
/// The [`Url`] for the conductor RPC endpoint. If [`Some`], enables the conductor service.
pubconductor_rpc_url:Option<Url>,
/// The confirmation delay for the sequencer.
publ1_conf_delay:u64,
}