ethrex-common 17.0.0

Core Ethereum data types and block validation for the ethrex Ethereum execution client
Documentation
mod account;
mod account_update;
pub mod blobs_bundle;
mod block;
pub mod block_access_list;
pub mod block_execution_witness;
mod constants;
#[cfg(all(feature = "eip-8025", target_arch = "riscv64"))]
pub(crate) mod eip8025_cell;
#[cfg(feature = "eip-8025")]
pub mod eip8025_ssz;
mod fork_id;
mod genesis;
pub mod l2;
pub mod payload;
pub mod prover;
mod receipt;
pub mod requests;
pub mod transaction;
pub mod tx_fields;

pub use account::*;
pub use account_update::*;
pub use blobs_bundle::*;
pub use block::*;
pub use block_access_list::{BalSynthesisItem, synthesize_bal_updates};
pub use constants::*;
pub use fork_id::*;
pub use genesis::*;
pub use l2::*;
pub use prover::*;
pub use receipt::*;
pub use transaction::*;
pub use tx_fields::*;