17 releases (4 stable)
8.0.1-alpha.0 | Nov 9, 2022 |
---|---|
7.0.2-alpha.0 | Jan 22, 2024 |
7.0.0 | May 21, 2022 |
7.0.0-10 | Mar 19, 2022 |
5.1.0 | Mar 23, 2021 |
#3 in #miniscript
93 downloads per month
Used in 12 crates
(9 directly)
4MB
44K
SLoC
Minimum Supported Rust Version: 1.41.1
Miniscript
Library for handling Miniscript, which is a subset of Bitcoin Script designed to support simple and general tooling. Miniscripts represent threshold circuits of spending conditions, and can therefore be easily visualized or serialized as human-readable strings.
High-Level Features
This library supports
- Output descriptors including embedded Miniscripts
- Parsing and serializing descriptors to a human-readable string format
- Compilation of abstract spending policies to Miniscript (enabled by the
compiler
flag) - Semantic analysis of Miniscripts and spending policies, with user-defined public key types
- Encoding and decoding Miniscript as Bitcoin Script, given key types that
are convertible to
bitcoin::PublicKey
- Determining satisfiability, and optimal witnesses, for a given descriptor;
completing an unsigned
bitcoin::TxIn
with appropriate data - Determining the specific keys, hash preimages and timelocks used to spend coins in a given Bitcoin transaction
no_std
support enabled by disabling thedefault-features
and enabling"no-std"
. Seeembedded/
for an example.
More information can be found in the documentation
or in the examples/
directory
Minimum Supported Rust Version (MSRV)
This library should always compile with any combination of features (minus
no-std
) on Rust 1.41.1 or Rust 1.47 with no-std
.
Some dependencies do not play nicely with our MSRV, if you are running the tests you may need to pin as follows:
cargo update --package url --precise 2.2.2
cargo update --package form_urlencoded --precise 1.0.1
Contributing
Contributions are generally welcome. If you intend to make larger changes please discuss them in an issue before PRing them to avoid duplicate work and architectural mismatches. If you have any questions or ideas you want to discuss please join us in ##miniscript on Libera.
Release Notes
See CHANGELOG.md.
Dependencies
~7.5MB
~95K SLoC