-
Notifications
You must be signed in to change notification settings - Fork 216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HD Address Management & Seed Import #2510
base: dev
Are you sure you want to change the base?
Conversation
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Visit the preview URL for this PR (updated for commit 26de7f2): https://walletrc--pull-2510-merge-lzsdoti4.web.app (expires Tue, 21 Jan 2025 15:34:40 GMT) 🔥 via Firebase Hosting GitHub Action 🌎 Sign: f66a4ff03faa546f12f0ae5a841bd9eff2714dcc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested the PR, and here are my observations from the smoke testing:
- Successfully created a new wallet in both modes: With HD Wallet and Without HD Wallet.
- Successfully saved the seed phrase and downloaded the seed file.
Non-HD Wallet Mode:
- The "Create Address" button was disabled.
- Hovering over the button displayed the tooltip: "Current wallet mode does not support multiple addresses."
HD Wallet Mode:
- Successfully created multiple addresses for a single coin.
- Verified that the addresses could be copied and their QR codes were accessible.
Additional Observations:
Wallet Name Missing:
- In 2/5 cases, the wallet name was not visible at the top right corner, causing the logout button to disappear.
- Had to log out via the Settings tab as a workaround.
Video:
https://github.com/user-attachments/assets/f6d92e94-d09e-4b05-88d6-f2388f425e08
Seed File Import Issue:
- When uploading the seed file via the "Import Wallet" option, the message "Wallet name exists" was displayed.
- The seed file being uploaded was the same one downloaded via the "Download Seed File" option in the Settings tab.
Video:
https://github.com/user-attachments/assets/980d5595-57ad-4e83-8d4c-45049b384710
The testing is still left to be completed.
Replaced with comment by @CharlVS. See the comment version history for the original version.
HD Address Management & Seed Import
This PR is the first milestone for HD wallet integration, focusing on HD seed import and address generation. The remaining integration PRs will follow soon.
QA:
Please test the following functionality:
For Devs:
This also adds
WalletType.hdwallet
; please review the implementation. It's not listed in the connect list like otherWalletType
entries so there's some custom code around that.Please test deeply.
General
Screenshots of seed import:
Screenshots of address management:
MIA