1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
use serde::{Deserialize, Serialize};

/// See [Header](https://docs.rs/alloy/latest/alloy/rpc/types/struct.Header.html).
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct Header {
    #[serde(flatten)]
    inner: alloy::consensus::Header,
}

impl Header {
    pub fn hash_slow(&self) -> alloy::primitives::B256 {
        self.inner.hash_slow()
    }
}

impl alloy::consensus::BlockHeader for Header {
    fn parent_hash(&self) -> alloy::primitives::B256 {
        self.inner.parent_hash()
    }

    fn ommers_hash(&self) -> alloy::primitives::B256 {
        self.inner.ommers_hash()
    }

    fn beneficiary(&self) -> alloy::primitives::Address {
        self.inner.beneficiary()
    }

    fn state_root(&self) -> alloy::primitives::B256 {
        self.inner.state_root()
    }

    fn transactions_root(&self) -> alloy::primitives::B256 {
        self.inner.transactions_root()
    }

    fn receipts_root(&self) -> alloy::primitives::B256 {
        self.inner.receipts_root()
    }

    fn withdrawals_root(&self) -> Option<alloy::primitives::B256> {
        self.inner.withdrawals_root()
    }

    fn logs_bloom(&self) -> alloy::primitives::Bloom {
        self.inner.logs_bloom()
    }

    fn difficulty(&self) -> alloy::primitives::U256 {
        self.inner.difficulty()
    }

    fn number(&self) -> alloy::primitives::BlockNumber {
        self.inner.number()
    }

    fn gas_limit(&self) -> u64 {
        self.inner.gas_limit()
    }

    fn gas_used(&self) -> u64 {
        self.inner.gas_used()
    }

    fn timestamp(&self) -> u64 {
        self.inner.timestamp()
    }

    fn mix_hash(&self) -> Option<alloy::primitives::B256> {
        self.inner.mix_hash()
    }

    fn nonce(&self) -> Option<alloy::primitives::B64> {
        self.inner.nonce()
    }

    fn base_fee_per_gas(&self) -> Option<u64> {
        self.inner.base_fee_per_gas()
    }

    fn blob_gas_used(&self) -> Option<u64> {
        self.inner.blob_gas_used()
    }

    fn excess_blob_gas(&self) -> Option<u64> {
        self.inner.excess_blob_gas()
    }

    fn parent_beacon_block_root(&self) -> Option<alloy::primitives::B256> {
        self.inner.parent_beacon_block_root()
    }

    fn requests_hash(&self) -> Option<alloy::primitives::B256> {
        self.inner.requests_hash()
    }

    fn extra_data(&self) -> &alloy::primitives::Bytes {
        self.inner.extra_data()
    }
}