Skip to main content

reth_trie_common/
target_v2.rs

1//! V2 proof targets and chunking.
2
3use crate::Nibbles;
4use alloc::vec::Vec;
5use alloy_primitives::{keccak256, map::B256Map, B256};
6use revm::state::EvmState;
7
8/// Target describes a proof target. For every proof target given, a proof calculator will calculate
9/// and return all nodes whose path is a prefix of the target's `key_nibbles`.
10#[derive(Debug, Copy, Clone)]
11pub struct ProofV2Target {
12    /// The key of the proof target, as nibbles.
13    pub key_nibbles: Nibbles,
14    /// The known-parent context for this target.
15    pub parent: ProofV2TargetParent,
16}
17
18impl ProofV2Target {
19    /// Returns a new [`ProofV2Target`] which matches all trie nodes whose path is a prefix of this
20    /// key.
21    pub fn new(key: B256) -> Self {
22        // SAFETY: key is a B256 and so is exactly 32-bytes.
23        let key_nibbles = unsafe { Nibbles::unpack_unchecked(key.as_slice()) };
24        Self { key_nibbles, parent: ProofV2TargetParent::NONE }
25    }
26
27    /// Returns the key the target was initialized with.
28    pub fn key(&self) -> B256 {
29        B256::from_slice(&self.key_nibbles.pack())
30    }
31
32    /// Sets the already-revealed parent branch of this target.
33    pub const fn with_parent(mut self, parent: ProofV2TargetParent) -> Self {
34        self.parent = parent;
35        self
36    }
37}
38
39impl From<B256> for ProofV2Target {
40    fn from(key: B256) -> Self {
41        Self::new(key)
42    }
43}
44
45/// The already-revealed parent branch of a [`ProofV2Target`].
46///
47/// [`Self::NONE`] indicates that no parent is known and the proof must include the actual trie
48/// root. A known parent at path length `n` makes the proof start at its direct child at length
49/// `n + 1`. In particular, a known parent at path length zero means the root branch is already
50/// revealed, so the proof starts at one of its direct children. Known parent path lengths are
51/// always less than 64.
52///
53/// Parent contexts are ordered from broadest to narrowest: [`Self::NONE`] precedes every known
54/// parent, and known parents are ordered by path length.
55#[derive(Debug, Default, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
56pub struct ProofV2TargetParent(Option<u8>);
57
58impl ProofV2TargetParent {
59    /// No parent branch is known, so the proof must include the actual trie root.
60    pub const NONE: Self = Self(None);
61
62    /// Returns a known parent branch with the given logical path length.
63    ///
64    /// # Panics
65    ///
66    /// Panics if `path_len` is greater than or equal to 64.
67    pub const fn new(path_len: usize) -> Self {
68        assert!(path_len < 64, "parent path length must be less than 64");
69        Self(Some(path_len as u8))
70    }
71
72    /// Returns `true` if the parent branch is already known.
73    pub const fn is_known(self) -> bool {
74        self.0.is_some()
75    }
76
77    /// Returns the logical path length of the known parent branch, if any.
78    pub const fn path_len(self) -> Option<usize> {
79        match self.0 {
80            Some(path_len) => Some(path_len as usize),
81            None => None,
82        }
83    }
84
85    /// Returns the path of the known parent branch for the target path, if any.
86    pub fn path(self, mut target_path: Nibbles) -> Option<Nibbles> {
87        target_path.truncate(self.path_len()?);
88        Some(target_path)
89    }
90}
91
92/// A set of account and storage V2 proof targets. The account and storage targets do not need to
93/// necessarily overlap.
94#[derive(Debug, Default)]
95pub struct MultiProofTargetsV2 {
96    /// The set of account proof targets to generate proofs for.
97    pub account_targets: Vec<ProofV2Target>,
98    /// The sets of storage proof targets to generate proofs for.
99    pub storage_targets: B256Map<Vec<ProofV2Target>>,
100}
101
102impl MultiProofTargetsV2 {
103    /// Returns true is there are no account or storage targets.
104    pub fn is_empty(&self) -> bool {
105        self.account_targets.is_empty() && self.storage_targets.is_empty()
106    }
107
108    /// Returns the number of items that will be considered during chunking.
109    pub fn chunking_length(&self) -> usize {
110        self.account_targets.len() +
111            self.storage_targets.values().map(|slots| slots.len()).sum::<usize>()
112    }
113
114    /// Returns an iterator that yields chunks of the specified size.
115    pub fn chunks(self, chunk_size: usize) -> impl Iterator<Item = Self> {
116        ChunkedMultiProofTargetsV2::new(self, chunk_size)
117    }
118
119    /// Returns a set of [`MultiProofTargetsV2`] and the total amount of storage targets, based on
120    /// the given state.
121    pub fn from_state(state: EvmState) -> (Self, usize) {
122        let mut targets = Self::default();
123        targets.account_targets.reserve(state.len());
124        targets.storage_targets.reserve(state.len());
125        let mut storage_target_count = 0;
126        for (addr, account) in state {
127            // if the account was not touched, or if the account was selfdestructed, do not
128            // fetch proofs for it
129            //
130            // Since selfdestruct can only happen in the same transaction, we can skip
131            // prefetching proofs for selfdestructed accounts
132            //
133            // See: https://eips.ethereum.org/EIPS/eip-6780
134            if !account.is_touched() || account.is_selfdestructed() {
135                continue
136            }
137
138            let hashed_address = keccak256(addr);
139
140            if account.info != account.original_info() {
141                targets.account_targets.push(hashed_address.into());
142            }
143
144            let mut storage_slots = Vec::with_capacity(account.storage.len());
145            for (key, slot) in account.storage {
146                // do nothing if unchanged
147                if !slot.is_changed() {
148                    continue
149                }
150
151                let hashed_slot = keccak256(B256::new(key.to_be_bytes()));
152                storage_slots.push(ProofV2Target::from(hashed_slot));
153            }
154
155            storage_target_count += storage_slots.len();
156            if !storage_slots.is_empty() {
157                targets.storage_targets.insert(hashed_address, storage_slots);
158            }
159        }
160
161        (targets, storage_target_count)
162    }
163}
164
165/// An iterator that yields chunks of V2 proof targets of at most `size` account and storage
166/// targets.
167///
168/// Unlike legacy chunking, V2 preserves account targets exactly as they were (including their
169/// parent metadata). Account targets must appear in a chunk. Storage targets for those accounts
170/// are chunked together, but if they exceed the chunk size, subsequent chunks contain only the
171/// remaining storage targets without repeating the account target.
172#[derive(Debug)]
173pub struct ChunkedMultiProofTargetsV2 {
174    /// Remaining account targets to process
175    account_targets: alloc::vec::IntoIter<ProofV2Target>,
176    /// Storage targets by account address
177    storage_targets: B256Map<Vec<ProofV2Target>>,
178    /// Current account being processed (if any storage slots remain)
179    current_account_storage: Option<(B256, alloc::vec::IntoIter<ProofV2Target>)>,
180    /// Chunk size
181    size: usize,
182}
183
184impl ChunkedMultiProofTargetsV2 {
185    /// Creates a new chunked iterator for the given targets.
186    pub fn new(targets: MultiProofTargetsV2, size: usize) -> Self {
187        Self {
188            account_targets: targets.account_targets.into_iter(),
189            storage_targets: targets.storage_targets,
190            current_account_storage: None,
191            size,
192        }
193    }
194}
195
196impl Iterator for ChunkedMultiProofTargetsV2 {
197    type Item = MultiProofTargetsV2;
198
199    fn next(&mut self) -> Option<Self::Item> {
200        let mut chunk = MultiProofTargetsV2::default();
201        let mut count = 0;
202
203        // First, finish any remaining storage slots from previous account
204        if let Some((account_addr, ref mut storage_iter)) = self.current_account_storage {
205            let remaining_capacity = self.size - count;
206            let slots: Vec<_> = storage_iter.by_ref().take(remaining_capacity).collect();
207
208            count += slots.len();
209            chunk.storage_targets.insert(account_addr, slots);
210
211            // If iterator is exhausted, clear current_account_storage
212            if storage_iter.len() == 0 {
213                self.current_account_storage = None;
214            }
215        }
216
217        // Process account targets and their storage
218        while count < self.size {
219            let Some(account_target) = self.account_targets.next() else {
220                break;
221            };
222
223            // Add the account target
224            chunk.account_targets.push(account_target);
225            count += 1;
226
227            // Check if this account has storage targets
228            let account_addr = account_target.key();
229            if let Some(storage_slots) = self.storage_targets.remove(&account_addr) {
230                let remaining_capacity = self.size - count;
231
232                if storage_slots.len() <= remaining_capacity {
233                    // Optimization: We can take all slots, just move the vec
234                    count += storage_slots.len();
235                    chunk.storage_targets.insert(account_addr, storage_slots);
236                } else {
237                    // We need to split the storage slots
238                    let mut storage_iter = storage_slots.into_iter();
239                    let slots_in_chunk: Vec<_> =
240                        storage_iter.by_ref().take(remaining_capacity).collect();
241                    count += slots_in_chunk.len();
242
243                    chunk.storage_targets.insert(account_addr, slots_in_chunk);
244
245                    // Save remaining storage slots for next chunk
246                    self.current_account_storage = Some((account_addr, storage_iter));
247                    break;
248                }
249            }
250        }
251
252        // Process any remaining storage-only entries (accounts not in account_targets)
253        while let Some((account_addr, storage_slots)) = self.storage_targets.iter_mut().next() &&
254            count < self.size
255        {
256            let account_addr = *account_addr;
257            let storage_slots = core::mem::take(storage_slots);
258            let remaining_capacity = self.size - count;
259
260            // Always remove from the map - if there are remaining slots they go to
261            // current_account_storage
262            self.storage_targets.remove(&account_addr);
263
264            if storage_slots.len() <= remaining_capacity {
265                // Optimization: We can take all slots, just move the vec
266                count += storage_slots.len();
267                chunk.storage_targets.insert(account_addr, storage_slots);
268            } else {
269                // We need to split the storage slots
270                let mut storage_iter = storage_slots.into_iter();
271                let slots_in_chunk: Vec<_> =
272                    storage_iter.by_ref().take(remaining_capacity).collect();
273
274                chunk.storage_targets.insert(account_addr, slots_in_chunk);
275
276                // Save remaining storage slots for next chunk
277                if storage_iter.len() > 0 {
278                    self.current_account_storage = Some((account_addr, storage_iter));
279                }
280                break;
281            }
282        }
283
284        if chunk.account_targets.is_empty() && chunk.storage_targets.is_empty() {
285            None
286        } else {
287            Some(chunk)
288        }
289    }
290}