We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement LeafNodes and their commitments.
LeafNodes are made of extension + suffix nodes. It also has a stem that defines its parent from the stem tree (InternalNode for us).
The commitment goes as follows: H(1, stem, C1, C2, 0, ...) C1 = commitment of first half of values C2 = commitment of second half of values
A value at index i is represented by numbers in slots at index 2i and 2i+1:
See https://ethereum.org/de/roadmap/verkle-trees/ for more info on Verkle Tries on Ethereum.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Implement LeafNodes and their commitments.
LeafNodes are made of extension + suffix nodes.
It also has a stem that defines its parent from the stem tree (InternalNode for us).
The commitment goes as follows:
H(1, stem, C1, C2, 0, ...)
C1 = commitment of first half of values
C2 = commitment of second half of values
A value at index i is represented by numbers in slots at index 2i and 2i+1:
See https://ethereum.org/de/roadmap/verkle-trees/ for more info on Verkle Tries on Ethereum.
The text was updated successfully, but these errors were encountered: