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
//! Standard implementation of the [RollupNode] service, using the governance approved
//! OP Stack configuration of components.
//!
//! See: <https://specs.optimism.io/protocol/rollup-node.html>

mod node;
pub use node::RollupNode;

mod builder;
pub use builder::RollupNodeBuilder;