Skip to content
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

Add mnemonic_to_descriptors example #746

Conversation

vladimirfomene
Copy link
Contributor

Description

Using bdk-cli it is simple for a new user to generate a mnemonic phrase and descriptors. This might
not be clear for new users when using bdk itself.

Notes to the reviewers

This was initially requested by one user but might be relevant for other users as well.

Checklists

All Submissions:

  • I've signed all my commits
  • I followed the contribution guidelines
  • I ran cargo fmt and cargo clippy before committing

New Features:

  • I've added tests for the new feature
  • I've added docs for the new feature

Bugfixes:

  • This pull request breaks the existing API
  • I've added tests to reproduce the issue which are now passing
  • I'm linking the issue being fixed by this PR

@vladimirfomene vladimirfomene force-pushed the mnemonic-to-descriptor-example branch 2 times, most recently from 1efe7fb to 2d67e10 Compare September 20, 2022 09:16
Copy link
Contributor

@rajarshimaitra rajarshimaitra left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ACK.. Thanks for writing this.. Would be a really helpful example.. Few comments below..

@danielabrozzoni
Copy link
Member

I agree with Raj that this example should also cover creating the actual descriptor, instead of stopping at the xprv

However, you don't really need to manipulate the mnemonic that much to create a descriptor with bdk, as the descriptor! macro also accepts mnemonics (or pairs (mnemonics, passphrase))

    let mnemonic: GeneratedKey<_, Tap> =
        Mnemonic::generate((WordCount::Words12, Language::English))
            .map_err(|_| BDK_Error::Generic("Mnemonic generation error".to_string()))?;
   
    println!("Mnemonic phrase: {}", mnemonic);
    let mnemonic_with_passphrase = (mnemonic, None);

    let external_path = DerivationPath::from_str("m/86h/0h/0h/0").unwrap();
    let internal_path = DerivationPath::from_str("m/86h/0h/0h/1").unwrap();

    let external_descriptor = descriptor!(tr((mnemonic_with_passphrase.clone(), external_path)))?;
    let internal_descriptor = descriptor!(tr((mnemonic_with_passphrase, internal_path)))?;
    println!("{}", external_descriptor);
    println!("{}", internal_descriptor);

This greatly simplifies your whole example, and I think it's the right way to go, as it shows how powerful the descriptor! macro really is :)

@vladimirfomene vladimirfomene force-pushed the mnemonic-to-descriptor-example branch 2 times, most recently from 256b1f1 to a2a09bb Compare November 24, 2022 06:12
@vladimirfomene
Copy link
Contributor Author

Thanks @danielabrozzoni for helping me with the debugging! @notmandatory this was built on top of #800.

@vladimirfomene vladimirfomene force-pushed the mnemonic-to-descriptor-example branch 2 times, most recently from d5469ec to 2470305 Compare November 24, 2022 06:37
Copy link
Contributor

@rajarshimaitra rajarshimaitra left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tACK 2470305

I will go through the network fix more closely later.. If this is scheduled for 0.25, I think this can go in now..

@notmandatory
Copy link
Member

I merged PR #800, go ahead and re-base this PR, just to make sure the history will look good.

This was initially requested by one user but might be
relevant for other users as well.
@vladimirfomene vladimirfomene force-pushed the mnemonic-to-descriptor-example branch from 2470305 to df905a8 Compare November 24, 2022 18:19
Copy link
Member

@notmandatory notmandatory left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ACK df905a8

@notmandatory notmandatory merged commit 235961a into bitcoindevkit:master Nov 24, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants