feat(op-reth): add L2 blob transaction support and acceptance tests#152
Open
blockchaindevsh wants to merge 1 commit intosgt_rust_v2from
Open
feat(op-reth): add L2 blob transaction support and acceptance tests#152blockchaindevsh wants to merge 1 commit intosgt_rust_v2from
blockchaindevsh wants to merge 1 commit intosgt_rust_v2from
Conversation
Port L2 blob (EIP-4844) support from op-geth to op-reth, enabling blob transactions on L2 chains when the l2BlobTime config is set. op-reth changes: - Add is_l2_blob_active_at_timestamp() to OpHardforks trait - Add l2_blob_activation_timestamp field to OpChainSpec, parsed from genesis config.optimism.l2BlobTime (same pattern as SGT) - Conditionally allow EIP-4844 txs in txpool validator, payload builder, and node pool setup when L2 blob is active - Use actual blob_gas_used from execution in block assembly when L2 blob is active - Validate blob gas in consensus when L2 blob is active Acceptance tests: - Add l2blob test package under isthmus gate - TestSubmitL2BlobTransaction: sends 3-blob tx, verifies inclusion and blob gas usage in block header - TestSubmitL2BlobTransactionWithDAC: optional DAC server verification Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.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 ports l2 blob feature from op-geth to op-reth, the e2e tests are ported over to the acceptance tests.