Module snowbridge_ethereum::mpt
source · Expand description
Helper types to work with Ethereum’s Merkle Patricia Trie nodes
Structs§
- Intermediate trie node with children (refers to node with same name in Geth). This struct only handles the proof representation, i.e. a child is either empty or a 32-byte hash of its subtree.
- Trie node where
value
is either the RLP-encoded item we’re proving or an intermediate hash (refers to node with same name in Geth) Proof verification should returnvalue
.key
is an implementation detail of the trie.