sp1_cc_host_executor/
lib.rs1pub use rsp_primitives::genesis::Genesis;
6
7mod anchor_builder;
8pub use anchor_builder::{
9 AnchorBuilder, BeaconAnchorBuilder, BeaconAnchorKind, ChainedBeaconAnchorBuilder,
10 ConsensusBeaconAnchor, Eip4788BeaconAnchor, HeaderAnchorBuilder,
11};
12
13mod beacon;
14pub use beacon::BeaconClient;
15
16mod errors;
17pub use errors::{BeaconError, HostError};
18
19mod sketch;
20pub use sketch::EvmSketch;
21
22mod sketch_builder;
23pub use sketch_builder::EvmSketchBuilder;
24
25#[cfg(test)]
26mod test;