feat(wallet): Export Monero seedphrase#515
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughImplements Monero seed-phrase export: adds RPC and backend command to retrieve the seed, wires a new GUI flow (menu button + modal) to fetch and display seed and restore height, introduces a spoiler/reveal overlay in a monospace textbox, updates CHANGELOG, and removes an unused clipboard button. Changes
Sequence Diagram(s)sequenceDiagram
participant U as User
participant W as WalletActionButtons
participant B as SeedPhraseButton
participant RPC as renderer/rpc.ts
participant T as Tauri (lib.rs)
participant CLI as CLI Request (request.rs)
participant MW as Monero Wallet
U->>W: Open actions menu
W->>B: Render SeedPhraseButton
U->>B: Click "Seedphrase"
B->>RPC: getMoneroSeedAndRestoreHeight()
RPC->>T: invoke get_monero_seed
T->>CLI: GetMoneroSeedArgs::request()
CLI->>MW: seed()
MW-->>CLI: { seed }
CLI-->>T: GetMoneroSeedResponse
RPC->>T: invoke get_monero_restore_height
T-->>RPC: GetRestoreHeightResponse
RPC-->>B: [seed, restoreHeight]
B-->>W: onSeedPhraseSuccess([seed, height])
W->>W: setSeedPhrase(...)
W->>U: Show SeedPhraseModal (seed blurred until reveal)
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (9)
✨ Finishing Touches
🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
bugbot run |
|
bugbot run |
Summary by CodeRabbit
New Features
Documentation
Chores
UX