-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
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
feat(merkle tree): Provide Merkle proofs for tree entries and entry ranges #119
Merged
slowli
merged 4 commits into
main
from
aov-pla-593-provide-merkle-proofs-for-tree-entries-and-entry-ranges
Oct 6, 2023
Merged
feat(merkle tree): Provide Merkle proofs for tree entries and entry ranges #119
slowli
merged 4 commits into
main
from
aov-pla-593-provide-merkle-proofs-for-tree-entries-and-entry-ranges
Oct 6, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #119 +/- ##
==========================================
+ Coverage 31.57% 31.74% +0.17%
==========================================
Files 477 480 +3
Lines 25429 25531 +102
==========================================
+ Hits 8028 8106 +78
- Misses 17401 17425 +24
☔ View full report in Codecov by Sentry. |
slowli
force-pushed
the
aov-pla-593-provide-merkle-proofs-for-tree-entries-and-entry-ranges
branch
from
October 3, 2023 12:29
c3fa628
to
a75c2e9
Compare
4 tasks
RomanBrodetski
approved these changes
Oct 6, 2023
slowli
deleted the
aov-pla-593-provide-merkle-proofs-for-tree-entries-and-entry-ranges
branch
October 6, 2023 14:17
github-merge-queue bot
pushed a commit
that referenced
this pull request
Oct 11, 2023
🤖 I have created a release *beep* *boop* --- ## [16.0.0](core-v15.1.1...core-v16.0.0) (2023-10-11) ### ⚠ BREAKING CHANGES * **vm:** Update Refund model ([#181](#181)) ### Features * change chainId to u64 ([#167](#167)) ([f14bf68](f14bf68)) * **merkle tree:** Provide Merkle proofs for tree entries and entry ranges ([#119](#119)) ([1e30d0b](1e30d0b)) * **storage:** save enum indices in RocksDB ([#162](#162)) ([bab099d](bab099d)) * **vm:** Update Refund model ([#181](#181)) ([92b6f59](92b6f59)) ### Bug Fixes * **db:** drop constraint prover_jobs_fri_l1_batch_number_fkey ([#173](#173)) ([fa71650](fa71650)) * **vm:** Make execution status and stop reason public ([#169](#169)) ([f98c4fa](f98c4fa)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What ❔
Why ❔
These are preparation steps for snapshot syncing. "Plain" Merkle tree proofs could be used in
eth_getProof
implementation.Checklist
zk fmt
andzk lint
.