kona-derive 0.4.5

A no_std derivation pipeline implementation for the OP Stack
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Module containing the derivation pipeline.

mod builder;
pub use builder::PipelineBuilder;

mod core;
pub use core::DerivationPipeline;

mod types;
pub use types::{
    AttributesQueueStage, BatchProviderStage, BatchStreamStage, ChannelProviderStage,
    ChannelReaderStage, FrameQueueStage, IndexedAttributesQueueStage, L1RetrievalStage,
    PolledAttributesQueueStage,
};