chore(deps): bump gravity-reth to 408ef602 (audit-710 InvalidTransaction filter) + e2e#753
Merged
Conversation
…ion filter) + e2e
Picks up gravity-reth#357: closes the remaining 6 of 9 revm::InvalidTransaction
variants at admission (gas/priority fee, empty authList, balance, chainId,
EIP-3607 sender-with-code). The executor cannot recover from EVMError, so the
filter is the only practical defense.
E2E additions in cluster_test_cases/prague/test_eip7702.py:
P-B7 hand-built type-4 tx with empty authorizationList; oracle = RPC
rejection + chain stays live (gravity_node didn't panic).
P-B8 EIP-3607 designator carve-out: a delegated EOA can still send a plain
type-2 tx with its own key; would silently break all 7702 smart-account
flows without the carve-out.
80464ba to
0115ce5
Compare
keanji-x
approved these changes
Jun 17, 2026
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.
Summary
grethfrom0adbb4c9to408ef602(fix(filter): close gravity-audit#710 + add pipe panic smoke test gravity-reth#357), which closes the remaining 6 of 9revm::InvalidTransactionvariants at the admission filter (gas/priority fee, empty authList, balance, chainId, EIP-3607 sender-with-code). Closes the audit-710 follow-up: the executor cannot recover fromEVMError, so the filter is the only practical defense.cluster_test_cases/prague/test_eip7702.py:authorizationList(eth_account refuses to sign the malformed form, so we encode RLP directly — a hostile client would too). Oracle: RPC rejects at admission + chain keeps producing blocks (gravity_nodedidn't panic onInvalidTransaction::EmptyAuthorizationList).Test plan
RUSTFLAGS="--cfg tokio_unstable" cargo check -p gravity_node— passesRUSTFLAGS="--cfg tokio_unstable" cargo build -p gravity_node -p gravity_cli --profile quick-release— passespython3 gravity_e2e/runner.py prague— 13/13 passed in 92s (existing P-B1..P-B6 + EIP-2935 cases unaffected; new P-B7 confirmed pool-rejectWeb3RPCError -32000 "no items in authorization list for EIP7702 transaction"; P-B8 delegated EOA tx succeeded)