Expand description
Helper function for calculating Merkle proofs and hashes.
Functionsยง
- calculate_
ommers_ root - Calculates the root hash for ommer/uncle headers.
- calculate_
receipt_ root - Calculates the receipt root.
- calculate_
transaction_ root - Calculate a transaction root.
- calculate_
withdrawals_ root - Calculates the root hash of the withdrawals.
- ordered_
trie_ root - Compute a trie root of the collection of rlp encodable items.
- ordered_
trie_ root_ with_ encoder - Compute a trie root of the collection of items with a custom encoder.
- state_
root - Calculates the root hash of the state represented as MPT.
- state_
root_ ref_ unhashed - Hashes and sorts account keys, then proceeds to calculating the root hash of the state
represented as MPT.
See
state_root_unsorted
for more info. - state_
root_ unhashed - Hashes and sorts account keys, then proceeds to calculating the root hash of the state
represented as MPT.
See
state_root_unsorted
for more info. - state_
root_ unsorted - Sorts the hashed account keys and calculates the root hash of the state represented as MPT.
See
state_root
for more info. - storage_
root - Calculates the root hash of account storage trie.
- storage_
root_ unhashed - Hashes storage keys, sorts them and them calculates the root hash of the storage trie.
See
storage_root_unsorted
for more info. - storage_
root_ unsorted - Sorts and calculates the root hash of account storage trie.
See
storage_root
for more info.