docs: add Stellar offline transaction signing guide#54
Merged
truthixify merged 1 commit intoJun 25, 2026
Merged
Conversation
- Add guides/stellar-offline-signing.mdx covering threat model, three-step build-offline/sign-offline/submit-online workflow, SDK primitives usage, QR code and USB transfer patterns, hardware wallet integration with honest current limitations, and stealth-specific air-gap guidance for spending keys - Register page in docs.json under Guides > Operations - Add cross-link from sdk/chains/stellar.mdx See Also section - Add cross-link from guides/privacy-best-practices.mdx See Also section Closes wraith-protocol#40
|
@baedboibidex-cmyk 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
|
Clean merge. 585-line offline signing guide with airgap workflow + verification path is solid. Thanks @baedboibidex-cmyk. |
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.
PR Message: Stellar offline transaction signing guide (#40)
Summary
Adds
guides/stellar-offline-signing.mdx— a complete guide for building Stellar transactions online, signing them on an air-gapped machine, and submitting them without the private key ever touching an internet-connected device.What changed
guides/stellar-offline-signing.mdxcovering:inspectTransactionpattern)docs.json** — page registered under Guides → Operationssdk/chains/stellar.mdx** — See Also cross-link addedguides/privacy-best-practices.mdx** — See Also cross-link addedAcceptance criteria
<Warning>block states that Ledger/Trezor cannot yet derive Wraith stealth scalars; documents what hardware wallets CAN do today (sign with regular Stellar keypair as a multisig signer)Design decisions
prepareOfflineStellarTransactionnot yet in SDK — the issue notes "SDK is gaining" this helper. Documented the pattern using existing Stellar SDK primitives (TransactionBuilder,Transaction,xdr.DecoratedSignature) and added a<Note>block indicating the helper is coming as a drop-in replacement.qrcode(most common npm package) for generation andzbarcamfor scanning, with a USB fallback section for camera-restricted environments. Avoided prescribing a single mandatory tool.Follow-ups
prepareOfflineStellarTransactionshipsCloses #40