#script #bitcoin #crypto #string-format

no-std miniscript

Miniscript: a subset of Bitcoin Script designed for analysis

45 releases (11 major breaking)

11.0.0 Nov 22, 2023
10.0.0 May 25, 2023
9.0.2 Aug 8, 2023
9.0.1 Mar 9, 2023
0.1.0 Nov 13, 2018

#1422 in Magic Beans

Download history 8089/week @ 2023-12-07 7970/week @ 2023-12-14 3849/week @ 2023-12-21 3766/week @ 2023-12-28 6291/week @ 2024-01-04 8007/week @ 2024-01-11 9376/week @ 2024-01-18 8500/week @ 2024-01-25 9283/week @ 2024-02-01 8184/week @ 2024-02-08 10790/week @ 2024-02-15 11089/week @ 2024-02-22 13668/week @ 2024-02-29 10885/week @ 2024-03-07 9955/week @ 2024-03-14 10691/week @ 2024-03-21

46,944 downloads per month
Used in 139 crates (49 directly)

CC0 license

4.5MB
45K SLoC

Build

Minimum Supported Rust Version: 1.48.0

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 the default-features and enabling "no-std". See embedded/ for an example.

More information can be found in the documentation or in the examples/ directory

Building

The cargo feature std is enabled by default. At least one of the features std or no-std or both must be enabled.

Enabling the no-std feature does not disable std. To disable the std feature you must disable default features. The no-std feature only enables additional features required for this crate to be usable without std. Both can be enabled without conflict.

Minimum Supported Rust Version (MSRV)

This library should always compile with any combination of features on Rust 1.48.0.

Some dependencies do not play nicely with our MSRV, if you are running the tests you may need to pin some dependencies. See ./contrib/test.sh for current pinning.

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.

Benchmarks

We use a custom Rust compiler configuration conditional to guard the bench mark code. To run the bench marks use: RUSTFLAGS='--cfg=bench' cargo +nightly bench.

Release Notes

See CHANGELOG.md.

Licensing

The code in this project is licensed under the Creative Commons CC0 1.0 Universal license. We use the SPDX license list and SPDX IDs.

Dependencies

~7MB
~88K SLoC