You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue #4 sets up the first part of the kona-exex, waiting on the L2 origin block.
This ticket is to initialize the derivation pipeline without setting up the main loop.
/// Starts the Kona Execution Extension loop.pubasyncfnstart(mutself) -> Result<()>{// Step 1: Wait for the L2 origin block to be available// Step 2: Initialize the Derivation Pipelinetodo!("run the main loop")}
Adds an utility to create a `kona_derive::DerivationPipeline`
implementation suitable for the rollup node.
In particular, I tried to keep only the providers as generic, because
the actual stage implementations will
most likely be the same for the exex and the standalone mode.
addresses part of #8.
Description
Note
Based on paradigmxyz/reth-exex-examples#12
Issue #4 sets up the first part of the
kona-exex
, waiting on the L2 origin block.This ticket is to initialize the derivation pipeline without setting up the main loop.
Reference: https://github.com/paradigmxyz/reth-exex-examples/pull/12/files#diff-fb2ecd571a8b660d914eac307e6aed9fc4fa610ad0b5521145d0fd6115e963dbR260-R292
Since the
KonaExEx
holds the providers to commit updates, initializing the derivation pipeline withinKonaExEx
is the most straightforward place.The text was updated successfully, but these errors were encountered: