-
Notifications
You must be signed in to change notification settings - Fork 331
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
Support addr() descriptors #759
Comments
They are not supported by miniscript, which is the library we use for handling our descriptors. I think the reason is that most of the things that miniscript provides (like estimating the witness size, constructing the witness, etc) wouldn't work without knowing the full script, so they just didn't implement them. Once we complete #485 we should be able to "emulate" them inside bdk, but for the time being we depend on miniscript to add support for them. |
Any updates on support addr() descriptors? |
@jurglic what are you trying to build? There are plenty of ways to use bdk 1.0.0-alpha.* without using descriptors at all (miniscript is an optional dependency of |
Hi, I'm trying to create a balance watcher for a couple of addresses and/or xpubs. I was thinking of using |
I tagged this as a documentation issue since I think we only need a better explanation/example of how to track individual and descriptor derived addresses (aka spks). |
Sorry for the late reply. Yes use SpkTxOutIndex. Insert the spks you care about and then You could also put that |
Is there a reason that
addr()
descriptors aren't supported, so we can doDescriptorPublicKey::from_str("addr(...)")
?The text was updated successfully, but these errors were encountered: