Smoother flow for BIP-85 child seed creation#935
Open
rleed wants to merge 2 commits into
Open
Conversation
nkatha23
reviewed
Jun 3, 2026
There was a problem hiding this comment.
In your PR description you mention that only the first commit should be merged, but the second commit is still included in this PR. Can you drop it?
nkatha23
reviewed
Jun 3, 2026
There was a problem hiding this comment.
from SeedFinalizeView, can the user navigate to view/backup the child seed words if they want to? If yes, worth surfacing that path more clearly since the old flow made it unavoidable.
Contributor
Chaitanya-Keyal
left a comment
There was a problem hiding this comment.
There is a more comprehensive PR open and being reviewed that allows loading of BIP-85 child seeds: #785
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.
Description
Smoother flow for BIP-85 child seed creation
Problem or Issue being addressed
The existing workflow for creating a BIP-85 child seed is inconvenient and security sensitive. Inconvenient because the user must pull out a paper and pencil or other recording device and jot down the new seed words, and security sensitive because those newly recorded seed words must be properly protected. One of the motivations for generating child seed words is to avoid the necessity of backing up many mnemonic phrases, but this motivation is self-defeated by SeedSigner's existing work flow.
Solution
My solution is to add the newly generated seed to the in-memory list of seeds instead of requiring the user to back it up. This requires only a few lines of code changes, since the necessary logic is already implemented and the required screens are already present. (In the event that the user indeed wants to back up the newly generated seed or simply view the seed words in order to transfer them to another device, he/she can of course do so using the existing menu options.)
Additional Information
In my opinion, there are no disadvantages to this change. The exact prior behavior can be reproduced by the user by simply backing up the seed and discarding it, which is orders of magnitude easier/faster/simpler than being forced to make the manual backup when it is unnecessary.
Note: Only the first commit should be merged. The second commit changes the default setting, which would not be desired in the official version.
Screenshots
Only the sequence of the screens is changed. The screens themselves are not modified.
This pull request is categorized as a:
Checklist
I ran
pytestlocallyI included screenshots of any new or modified screens
Should be part of the PR description above.
I added or updated tests
Any new or altered functionality should be covered in a unit test. Any new or updated sequences require FlowTests.
I tested this PR hands-on on the following platform(s):
I have reviewed these notes:
Thank you! Please join our Devs' Telegram group to get more involved.