kona-node-service 0.1.3

An implementation of the OP Stack consensus node service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Core [`RollupNode`] service, composing the available [`NodeActor`]s into various modes of
//! operation.
//!
//! [`NodeActor`]: crate::NodeActor

mod core;
pub use core::RollupNodeService;

mod standard;
pub use standard::{RollupNode, RollupNodeBuilder};

mod mode;
pub use mode::{InteropMode, NodeMode};

pub(crate) mod util;
pub(crate) use util::spawn_and_wait;