Skip to content

Commit 83a685d

Browse files
Add taproot compiler example usage
1 parent 4e7d7c7 commit 83a685d

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

Cargo.toml

+4
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,7 @@ name = "psbt"
4040

4141
[[example]]
4242
name = "xpub_descriptors"
43+
44+
[[example]]
45+
name = "taproot"
46+
required-features = ["compiler"]

examples/taproot.rs

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
extern crate bitcoin;
2+
extern crate miniscript;
3+
4+
use std::str::FromStr;
5+
6+
#[cfg(feature = "compiler")]
7+
use miniscript::policy::Concrete;
8+
use miniscript::Descriptor;
9+
10+
fn main() {
11+
let policies_str = [
12+
"or(1@pk(A),1@pk(B))",
13+
"or(1@and(pk(A),pk(B)),1@pk(C))",
14+
"or(9@or(10@or(1@pk(A),100@pk(D)),1@pk(B)),1@pk(C))",
15+
"or(1@or(1@or(1@pk(A),1@pk(D)),1@pk(B)),1@pk(C))",
16+
"or(1@pk(A),1@or(1@and(pk(B),pk(C)),1@and(pk(D),older(10))))",
17+
"thresh(1,or(1@pk(A),1@pk(B)),or(1@pk(C),1@or(1@and(pk(E),pk(F)),1@pk(D))))",
18+
"thresh(1,pk(Z),and(pk(A),or(1@pk(B),1@pk(C))),pk(D),or(1@or(1@pk(G),1@pk(E)),1@and(pk(F),pk(X))))",
19+
"thresh(1,and(pk(A),or(1@pk(B),1@pk(C))),or(10@pk(D),7@pk(E)),or(2@or(1@pk(F),1@and(pk(G),pk(H))),7@pk(I)))"
20+
];
21+
let unspendable_key = "UNSPENDABLE_KEY".to_string();
22+
let policies: Vec<Concrete<String>> = policies_str
23+
.into_iter()
24+
.map(|x| Concrete::from_str(x).unwrap())
25+
.collect();
26+
let private_comp: Vec<Descriptor<String>> = policies
27+
.iter()
28+
.map(|pol| {
29+
pol.compile_tr_private(Some(unspendable_key.clone()))
30+
.unwrap()
31+
})
32+
.collect();
33+
let default_comp: Vec<Descriptor<String>> = policies
34+
.iter()
35+
.map(|pol| pol.compile_tr(Some(unspendable_key.clone())).unwrap())
36+
.collect();
37+
38+
for idx in 0..policies.len() {
39+
println!("Example {}", idx + 1);
40+
println!("Policy: {}", policies_str[idx]);
41+
println!("Private compilation: {}", private_comp[idx]);
42+
println!("Default compilation: {}\n", default_comp[idx]);
43+
}
44+
}

0 commit comments

Comments
 (0)