-
It's been awhile since rust-bitcoin v0.30 was released, and a new release is in the sight, however, miniscript has not released a crate version supporting bitcoin v0.30 - even though [the PR with the …
-
## Create a new alpha release
### Summary
The BDK 1.0.0-alpha release should be used for **experimentation only**, APIs are still unstable and the code is not fully tested. This alpha.1 release …
-
Some data within a coinstr policy is required as part of the policy itself, namely the output descriptor.
There is other metadata that may need to be stored with the policy that is used by the UI.…
-
Looking at the code below I can't understand how it is possible for the IF statement conditional expression to become true. cnt is already incremented before the IF statement. Is this not redund…
-
~~Importing a descriptor with a label, i expected to be able to use it to filter UTxOs per descriptor in `listunspent`. It's possible using the `addr()` descriptor but not with a non "opaque" one. I'm…
-
I don't know what happened. Everything seems to be the same, but the feature resolver suddenly is working differently. Previously, it did transitively resolve secp dependencies correctly, but the buil…
-
[Here](https://github.com/rust-bitcoin/rust-miniscript/blob/466dd4904b152f621dc1cce9d403187c62f938bf/src/interpreter/mod.rs#LL359C13-L359C70) this Bare script variant should be `true`, not `false`:
`…
-
**Describe the bug**
Hi, I'm experiencing an issue during the finalization of a taproot PSBT in a 1 of N multisig.
When I try to sign and finalize the PSBT with BDK everything goes well until t…
-
July 11, 2023 @ 5:00p
Add comments below to add or comment on topics for [Socratic Seminar #8](https://nashbitdevs.org/socratic-seminar-8/). See also ["Where to Find Topics for Future Seminars"](ht…
-
```
Foo={}
Foo.name=null
Foo.getname=function()
return self.name
end function
foo = new Foo
foo.name = "FooName"
func = @foo.getname
print(func) // Expected: "FooName". Actual: Runt…