mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-07-22 07:40:18 +00:00
10 lines
311 B
Rust
10 lines
311 B
Rust
//! Reconstructing and verifying L2 chain state from a Bedrock (L1) channel.
|
|
|
|
pub use apply::{BlockIngestError, Tip, apply_block, validate_against_tip};
|
|
pub use consistency::{
|
|
Anchor, AnchorConsistencyCheck, ChainConsistency, ChainMismatch, verify_chain_consistency,
|
|
};
|
|
|
|
pub mod apply;
|
|
pub mod consistency;
|