docs: add multisig authority rotation guide for Stellar - #137
Merged
truthixify merged 1 commit intoAug 26, 2026
Merged
Conversation
- New guides/stellar/multisig-authority-rotation.mdx covering: - Zero-downtime staged add-then-remove rotation - Emergency rotation on suspected key compromise (fast-revoke and break-glass paths) - Auditor trail: block-by-block annotation of rotation in announcement stream - End-to-end scripted 2-of-3 to fresh 2-of-3 rotation on futurenet - Cross-link added to Recovery Scenarios section in stellar-multisig-withdrawal.mdx - Nav entry added to docs.json Operations group
|
@Mathew2k-hash Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Contributor
|
Merged. The staged add-then-remove rotation is exactly the gap the existing recovery scenarios left open. Nice work @Mathew2k-hash. |
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.
Multisig authority rotation guide for Stellar
Adds an operational runbook for custodians rotating signer keys on Stellar multisig accounts —
picking up where the existing Recovery Scenarios section in stellar-multisig-withdrawal.mdx
leaves off.
What's new
keeping the account continuously authorized. Includes addSigner, verifySignerWeight, and
removeSigner helpers with the overlap-window tradeoffs explained.
the high threshold, and an atomic break-glass add+remove for when they don't. Includes a
follow-up note on moving funds after any compromise.
Wraith announcement stream, a getSignerSetAtLedger Horizon query pattern, and
getAnnouncementsAroundRotation for correlating withdrawals to a signer epoch.
staged add/verify/remove cycles, final signer-set assertion, and annotated expected output.
testnet dry-run, monitoring setup).
Changes
┌──────┬────────┐
│ File │ Change │
├────────────────────────────────────────────────┼───────────────────────┤
│ guides/stellar/multisig-authority-rot │ New guide (709 lines) │
│ ation.mdx │ │
├───────────────────────────────────────┼──────────────────────────────────────────────────┤
│ guides/stellar-multisig-withdrawal.md │ cross-link added at top of Recovery │
│ .mdx │ Scenarios section │
├────────────────────────────────────┼─────────────────────────────────────────────────────┤
│ docs.json │ Nav entry added to Operations group after │
│ │ stellar-multisig-withdrawal │
└────────────────────────────────────┴─────────────────────────────────────────────────────┘
Tested
pnpm run check:snippets — 586 snippets checked, 0 failures.
closes #129