bankai_types/fetch/evm/
beacon.rs

1use crate::{fetch::evm::MmrProof, verify::evm::beacon::BeaconHeader};
2use serde::{Deserialize, Serialize};
3
4#[cfg_attr(any(feature = "verifier-types", feature = "std"), derive(Debug, Clone))]
5#[derive(Serialize, Deserialize)]
6pub struct BeaconHeaderProof {
7    pub header: BeaconHeader,
8    pub mmr_proof: MmrProof,
9}