feat(stellar): add on-chain multisig quorum rotation for signers#148
Open
EmperorNexus wants to merge 1 commit into
Open
feat(stellar): add on-chain multisig quorum rotation for signers#148EmperorNexus wants to merge 1 commit into
EmperorNexus wants to merge 1 commit into
Conversation
…ith-protocol#104) Add rotate_signers flow to stealth-sender and wraith-names (the two Timelock + Multisig Upgradable contracts per GOVERNANCE.md), gated by quorum approval from current signers plus a 7-day timelock matching the existing upgrade timelock. Invalid thresholds (zero, or greater than the proposed signer count) are rejected with a dedicated error. Execution emits SignersRotated; cancellation fully clears pending proposal state so a new rotation can be proposed immediately. Update MULTISIG.md with the on-chain rotation runbook. Futurenet rehearsal is called out as a follow-up since it requires a live deployment. Closes wraith-protocol#104
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.
Overview
This PR adds an on-chain multi-sig quorum rotation flow to \stealth-sender\ and \wraith-names\ — the two Timelock + Multisig Upgradable contracts per GOVERNANCE.md. Instead of requiring a full contract redeploy to change signers or threshold, current governance signers can now propose, approve, and execute rotations behind a 7-day timelock.
Related Issue
Closes #104
Changes
Multisig Rotation Module
Validation & Safety
Documentation
Verification Results
\
cargo test -p stealth-sender
✅ 7/7 passed (5 new multisig tests + 2 existing)
cargo test -p wraith-names
✅ 5/5 passed (existing tests, no regressions)
\\
Acceptance Criteria