feature(trie): create rawDB trieDB engine#3277
Closed
MaksymMalicki wants to merge 92 commits intomainfrom
Closed
Conversation
…Eth/juno into maksym/trie-interface
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Signed-off-by: MaksymMalicki <81577596+MaksymMalicki@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Signed-off-by: MaksymMalicki <81577596+MaksymMalicki@users.noreply.github.com>
Signed-off-by: MaksymMalicki <81577596+MaksymMalicki@users.noreply.github.com>
…Eth/juno into maksym/trie-interface
…indEth/juno into maksym/trie-root-to-hash
Signed-off-by: MaksymMalicki <81577596+MaksymMalicki@users.noreply.github.com>
Signed-off-by: MaksymMalicki <81577596+MaksymMalicki@users.noreply.github.com>
Signed-off-by: MaksymMalicki <81577596+MaksymMalicki@users.noreply.github.com>
…Eth/juno into maksym/trie-interface
rawDB engine as a standalone packagerawDB trieDB engine
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3277 +/- ##
==========================================
- Coverage 76.17% 76.14% -0.04%
==========================================
Files 326 328 +2
Lines 32326 32393 +67
==========================================
+ Hits 24624 24665 +41
- Misses 5931 5945 +14
- Partials 1771 1783 +12 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This was referenced Nov 19, 2025
Signed-off-by: MaksymMalicki <81577596+MaksymMalicki@users.noreply.github.com>
This file contains hidden or 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
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.
This PR should be reviewed after #3017.
It introduces rawDB engine for the
trie2, which is used by the new state. In this PR:pathdbandhashdbboth in structure and interfaces.Contract,ClassandContract Storagesare written directly to the pebbleDB and read directly from it. The writing is done in theUpdate()method, which takes the nodesets generated bytrie2.Commit(), flattens them and writes them to the DB. For reading, thereadNode()method was introduced.rawdbas atriedbengineNext PR to review: #3278