12 releases

new 0.2.3 Jan 16, 2025
0.2.0 Dec 4, 2024
0.1.0 Nov 20, 2024
0.0.2 Jun 22, 2024
0.0.1 Feb 22, 2024

#556 in Magic Beans

Download history 26/week @ 2024-09-25 39/week @ 2024-10-02 31/week @ 2024-10-09 18/week @ 2024-10-16 220/week @ 2024-10-23 105/week @ 2024-10-30 211/week @ 2024-11-06 33/week @ 2024-11-13 293/week @ 2024-11-20 6/week @ 2024-11-27 246/week @ 2024-12-04 112/week @ 2024-12-11 52/week @ 2024-12-18 28/week @ 2024-12-25 91/week @ 2025-01-01 223/week @ 2025-01-08

402 downloads per month
Used in 8 crates (5 directly)

MIT license

1MB
7.5K SLoC

kona-derive

CI Kona Derive License Codecov

A no_std compatible implementation of the OP Stack's derivation pipeline.

Usage

The intended way of working with kona-derive is to use the DerivationPipeline which implements the Pipeline trait. To create an instance of the DerivationPipeline, it's recommended to use the PipelineBuilder as follows.

use std::sync::Arc;
use maili_genesis::RollupConfig;
use kona_derive::sources::EthereumDataSource;
use kona_derive::pipeline::PipelineBuilder;
use kona_derive::attributes::StatefulAttributesBuilder;

let chain_provider = todo!();
let l2_chain_provider = todo!();
let blob_provider = todo!();
let l1_origin = todo!();

let cfg = Arc::new(RollupConfig::default());
let attributes = StatefulAttributesBuilder::new(
   cfg.clone(),
   l2_chain_provider.clone(),
   chain_provider.clone(),
);
let dap = EthereumDataSource::new(
   chain_provider.clone(),
   blob_provider,
   cfg.as_ref()
);

// Construct a new derivation pipeline.
let pipeline = PipelineBuilder::new()
   .rollup_config(cfg)
   .dap_source(dap)
   .l2_chain_provider(l2_chain_provider)
   .chain_provider(chain_provider)
   .builder(attributes)
   .origin(l1_origin)
   .build();

Features

The most up-to-date feature list will be available on the docs.rs Feature Flags tab of the kona-derive crate.

Some features include the following.

  • serde: Serialization and Deserialization support for kona-derive types.
  • test-utils: Test utilities for downstream libraries.

By default, kona-derive enables the serde feature.

Dependencies

~25MB
~665K SLoC