AggLayer: validate destination_network during bridge-out#2778
Merged
Fumuran merged 3 commits intoandrew-validate-destination-network-bridge-infrom Apr 28, 2026
Conversation
…rew-validate-destination-network-bridge-out
7fb6bb8
into
andrew-validate-destination-network-bridge-in
15 checks passed
Fumuran
added a commit
that referenced
this pull request
Apr 29, 2026
* refactor: add a destination network check to the claim script * docs: remove redundant clarification * refactor: move Miden network ID constant to constants.masm file * chore: fix comment leftovers * refactor: rename ClaimDataSource Simulated to Mainnet * AggLayer: validate `destination_network` during bridge-out (#2778) * refactor: add destination network check during bridge-out * docs: add inline comments to the test
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
Adds an AggLayer-aligned guard on bridge-out: a
B2AGGnote’s destination network ID must not equal Miden’s AggLayer network ID (MIDEN_NETWORK_ID). This matches the rule that an exit cannot target the current chain as its destination, and complements the existing CLAIM path that requires leaves to target Miden as the destination.Changes
bridge_out.masm: Early inbridge_out, assertdestination_network ≠ MIDEN_NETWORK_ID. New errorERR_B2AGG_DESTINATION_NETWORK_IS_MIDEN.b2agg.masm/SPEC.md: Document the new failure mode in theB2AGG/bridge-outflow.bridge_out.rs:test_bridge_out_fails_when_destination_is_miden_network— registered faucet, B2AGG note withAggLayerBridge::MIDEN_NETWORK_ID, expects the new error.Closes: #2747