feat: add ovm BlockFileCodec (#12247)

Co-authored-by: Emilia Hane <elsaemiliaevahane@gmail.com>
This commit is contained in:
Léa Narzis
2024-11-12 22:27:28 +07:00
committed by GitHub
parent aece53ae88
commit 0cd34f911c
8 changed files with 439 additions and 23 deletions

View File

@@ -27,6 +27,11 @@ pub mod commands;
/// made for op-erigon's import needs).
pub mod receipt_file_codec;
/// OVM block, same as EVM block at bedrock, except for signature of deposit transaction
/// not having a signature back then.
/// Enables decoding and encoding `Block` types within file contexts.
pub mod ovm_file_codec;
pub use commands::{import::ImportOpCommand, import_receipts::ImportReceiptsOpCommand};
use reth_optimism_chainspec::OpChainSpec;