✨ verifyBlockHash + toShortHeader#1483
Merged
Vectorized merged 8 commits intoOct 1, 2025
Merged
Conversation
0xClandestine
commented
Sep 1, 2025
|
|
||
| // cast block 23270177 --raw | ||
| // vm.getRawBlockHeader(23270177) | ||
| bytes private constant _ETH_BLOCK_23270177 = |
Contributor
Author
There was a problem hiding this comment.
Fork tests are preferred, not sure how you handle them though.
Contributor
Author
There was a problem hiding this comment.
Need to bump forge-std to support vm.getRawBlockHeader.
Owner
There was a problem hiding this comment.
i think we’ll just fake it for now.
when we are really free, we can add a CI that does fork testing.
0xClandestine
commented
Sep 1, 2025
| /// @solidity memory-safe-assembly | ||
| assembly { | ||
| calldatacopy(mload(0x40), header.offset, header.length) | ||
| if iszero(eq(result, keccak256(mload(0x40), header.length))) { |
Contributor
Author
There was a problem hiding this comment.
Is xor more efficient here than iszero + eq?
Contributor
Author
0xClandestine
commented
Sep 4, 2025
Contributor
Author
|
anything else needed on this? |
Vectorized
added a commit
that referenced
this pull request
Oct 6, 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.
Description
Adds minimal block header utilities for state proofs + light client implementations.
Added
BlockHashLib.verifyBlockHash(blockHeader, blockNumber)Validates RLP-encoded headers against
BlockHashLib.blockHash(blockNumber).Added
BlockHashLib.toShortHeader(blockHeader):Efficiently extracts relevant fields from RLP-encoded block headers for MPT proof verification, without full RLP-decoding.
Checklist
Ensure you completed all of the steps below before submitting your pull request:
forge fmt?forge test?Pull requests with an incomplete checklist will be thrown out.