feat: pin and Extract world state with adaptive paging#760
Merged
Conversation
harshsingh1002
approved these changes
Aug 18, 2025
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.
Pin debug state export to a fixed block with adaptive paging + storage handling
Summary
This PR updates the world-state → genesis exporter to reliably dump account balances, nonces, contract code, and (optionally) storage from an Erigon/Geth node—even under heavy state and strict RPC timeouts.
latestonce to a specific block number, print it, and use that same hex block for all calls.allocentries and overlay the snapshot.Why
Previous approaches could:
debug_dumpBlockor fatdebug_accountRangecalls.missing trie node … loc: diffif the chain advanced mid-scan.This PR fixes those by pinning the block and keeping RPC calls small and consistent.
What changed
latest→ decimal block → single hex tag used for:debug_accountRange(blockHex, start, n, true, true, true)(lightweight)eth_getCode(addr, blockHex)debug_storageRangeAt(blockHex, null, addr, startKey, n)--page-sizeon timeout down to--min-page-size.--storage-page-sizeon timeout down to--storage-min-page-size.--include-storageis set. Non-zero slots are included inalloc.storage.missing trie node(pruned node), we warn and continue with balances/nonces/code.Usage