bitcoin/taproot/
mod.rs

1// SPDX-License-Identifier: CC0-1.0
2
3//! Bitcoin Taproot.
4//!
5//! This module provides support for taproot tagged hashes.
6//!
7
8pub mod merkle_branch;
9pub mod serialized_signature;
10
11use core::cmp::Reverse;
12use core::fmt;
13use core::iter::FusedIterator;
14
15use hashes::{sha256t_hash_newtype, Hash, HashEngine};
16use internals::write_err;
17use io::Write;
18use secp256k1::{Scalar, Secp256k1};
19
20use crate::consensus::Encodable;
21use crate::crypto::key::{TapTweak, TweakedPublicKey, UntweakedPublicKey, XOnlyPublicKey};
22use crate::prelude::*;
23use crate::{Script, ScriptBuf};
24
25// Re-export these so downstream only has to use one `taproot` module.
26#[rustfmt::skip]
27#[doc(inline)]
28pub use crate::crypto::taproot::{SigFromSliceError, Signature};
29#[doc(inline)]
30pub use merkle_branch::TaprootMerkleBranch;
31
32// Taproot test vectors from BIP-341 state the hashes without any reversing
33sha256t_hash_newtype! {
34    pub struct TapLeafTag = hash_str("TapLeaf");
35
36    /// Taproot-tagged hash with tag \"TapLeaf\".
37    ///
38    /// This is used for computing tapscript script spend hash.
39    #[hash_newtype(forward)]
40    pub struct TapLeafHash(_);
41
42    pub struct TapBranchTag = hash_str("TapBranch");
43
44    /// Tagged hash used in taproot trees.
45    ///
46    /// See BIP-340 for tagging rules.
47    #[hash_newtype(forward)]
48    pub struct TapNodeHash(_);
49
50    pub struct TapTweakTag = hash_str("TapTweak");
51
52    /// Taproot-tagged hash with tag \"TapTweak\".
53    ///
54    /// This hash type is used while computing the tweaked public key.
55    #[hash_newtype(forward)]
56    pub struct TapTweakHash(_);
57}
58
59impl TapTweakHash {
60    /// Creates a new BIP341 [`TapTweakHash`] from key and tweak. Produces `H_taptweak(P||R)` where
61    /// `P` is the internal key and `R` is the merkle root.
62    pub fn from_key_and_tweak(
63        internal_key: UntweakedPublicKey,
64        merkle_root: Option<TapNodeHash>,
65    ) -> TapTweakHash {
66        let mut eng = TapTweakHash::engine();
67        // always hash the key
68        eng.input(&internal_key.serialize());
69        if let Some(h) = merkle_root {
70            eng.input(h.as_ref());
71        } else {
72            // nothing to hash
73        }
74        TapTweakHash::from_engine(eng)
75    }
76
77    /// Converts a `TapTweakHash` into a `Scalar` ready for use with key tweaking API.
78    pub fn to_scalar(self) -> Scalar {
79        // This is statistically extremely unlikely to panic.
80        Scalar::from_be_bytes(self.to_byte_array()).expect("hash value greater than curve order")
81    }
82}
83
84impl TapLeafHash {
85    /// Computes the leaf hash from components.
86    pub fn from_script(script: &Script, ver: LeafVersion) -> TapLeafHash {
87        let mut eng = TapLeafHash::engine();
88        ver.to_consensus().consensus_encode(&mut eng).expect("engines don't error");
89        script.consensus_encode(&mut eng).expect("engines don't error");
90        TapLeafHash::from_engine(eng)
91    }
92}
93
94impl From<LeafNode> for TapNodeHash {
95    fn from(leaf: LeafNode) -> TapNodeHash { leaf.node_hash() }
96}
97
98impl From<&LeafNode> for TapNodeHash {
99    fn from(leaf: &LeafNode) -> TapNodeHash { leaf.node_hash() }
100}
101
102impl TapNodeHash {
103    /// Computes branch hash given two hashes of the nodes underneath it.
104    pub fn from_node_hashes(a: TapNodeHash, b: TapNodeHash) -> TapNodeHash {
105        Self::combine_node_hashes(a, b).0
106    }
107
108    /// Computes branch hash given two hashes of the nodes underneath it and returns
109    /// whether the left node was the one hashed first.
110    fn combine_node_hashes(a: TapNodeHash, b: TapNodeHash) -> (TapNodeHash, bool) {
111        let mut eng = TapNodeHash::engine();
112        if a < b {
113            eng.input(a.as_ref());
114            eng.input(b.as_ref());
115        } else {
116            eng.input(b.as_ref());
117            eng.input(a.as_ref());
118        };
119        (TapNodeHash::from_engine(eng), a < b)
120    }
121
122    /// Assumes the given 32 byte array as hidden [`TapNodeHash`].
123    ///
124    /// Similar to [`TapLeafHash::from_byte_array`], but explicitly conveys that the
125    /// hash is constructed from a hidden node. This also has better ergonomics
126    /// because it does not require the caller to import the Hash trait.
127    pub fn assume_hidden(hash: [u8; 32]) -> TapNodeHash { TapNodeHash::from_byte_array(hash) }
128
129    /// Computes the [`TapNodeHash`] from a script and a leaf version.
130    pub fn from_script(script: &Script, ver: LeafVersion) -> TapNodeHash {
131        TapNodeHash::from(TapLeafHash::from_script(script, ver))
132    }
133}
134
135impl From<TapLeafHash> for TapNodeHash {
136    fn from(leaf: TapLeafHash) -> TapNodeHash { TapNodeHash::from_byte_array(leaf.to_byte_array()) }
137}
138
139/// Maximum depth of a taproot tree script spend path.
140// https://github.com/bitcoin/bitcoin/blob/e826b22da252e0599c61d21c98ff89f366b3120f/src/script/interpreter.h#L229
141pub const TAPROOT_CONTROL_MAX_NODE_COUNT: usize = 128;
142/// Size of a taproot control node.
143// https://github.com/bitcoin/bitcoin/blob/e826b22da252e0599c61d21c98ff89f366b3120f/src/script/interpreter.h#L228
144pub const TAPROOT_CONTROL_NODE_SIZE: usize = 32;
145/// Tapleaf mask for getting the leaf version from first byte of control block.
146// https://github.com/bitcoin/bitcoin/blob/e826b22da252e0599c61d21c98ff89f366b3120f/src/script/interpreter.h#L225
147pub const TAPROOT_LEAF_MASK: u8 = 0xfe;
148/// Tapscript leaf version.
149// https://github.com/bitcoin/bitcoin/blob/e826b22da252e0599c61d21c98ff89f366b3120f/src/script/interpreter.h#L226
150pub const TAPROOT_LEAF_TAPSCRIPT: u8 = 0xc0;
151/// Taproot annex prefix.
152pub const TAPROOT_ANNEX_PREFIX: u8 = 0x50;
153/// Tapscript control base size.
154// https://github.com/bitcoin/bitcoin/blob/e826b22da252e0599c61d21c98ff89f366b3120f/src/script/interpreter.h#L227
155pub const TAPROOT_CONTROL_BASE_SIZE: usize = 33;
156/// Tapscript control max size.
157// https://github.com/bitcoin/bitcoin/blob/e826b22da252e0599c61d21c98ff89f366b3120f/src/script/interpreter.h#L230
158pub const TAPROOT_CONTROL_MAX_SIZE: usize =
159    TAPROOT_CONTROL_BASE_SIZE + TAPROOT_CONTROL_NODE_SIZE * TAPROOT_CONTROL_MAX_NODE_COUNT;
160
161/// The leaf script with its version.
162#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
163pub struct LeafScript<S> {
164    /// The version of the script.
165    pub version: LeafVersion,
166    /// The script, usually `ScriptBuf` or `&Script`.
167    pub script: S,
168}
169
170// type alias for versioned tap script corresponding Merkle proof
171type ScriptMerkleProofMap = BTreeMap<(ScriptBuf, LeafVersion), BTreeSet<TaprootMerkleBranch>>;
172
173/// Represents taproot spending information.
174///
175/// Taproot output corresponds to a combination of a single public key condition (known as the
176/// internal key), and zero or more general conditions encoded in scripts organized in the form of a
177/// binary tree.
178///
179/// Taproot can be spent by either:
180/// - Spending using the key path i.e., with secret key corresponding to the tweaked `output_key`.
181/// - By satisfying any of the scripts in the script spend path. Each script can be satisfied by
182///   providing a witness stack consisting of the script's inputs, plus the script itself and the
183///   control block.
184///
185/// If one or more of the spending conditions consist of just a single key (after aggregation), the
186/// most likely key should be made the internal key.
187/// See [BIP341](https://github.com/bitcoin/bips/blob/master/bip-0341.mediawiki) for more details on
188/// choosing internal keys for a taproot application.
189///
190/// Note: This library currently does not support
191/// [annex](https://github.com/bitcoin/bips/blob/master/bip-0341.mediawiki#cite_note-5).
192#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
193pub struct TaprootSpendInfo {
194    /// The BIP341 internal key.
195    internal_key: UntweakedPublicKey,
196    /// The merkle root of the script tree (None if there are no scripts).
197    merkle_root: Option<TapNodeHash>,
198    /// The sign final output pubkey as per BIP 341.
199    output_key_parity: secp256k1::Parity,
200    /// The tweaked output key.
201    output_key: TweakedPublicKey,
202    /// Map from (script, leaf_version) to (sets of) [`TaprootMerkleBranch`]. More than one control
203    /// block for a given script is only possible if it appears in multiple branches of the tree. In
204    /// all cases, keeping one should be enough for spending funds, but we keep all of the paths so
205    /// that a full tree can be constructed again from spending data if required.
206    script_map: ScriptMerkleProofMap,
207}
208
209impl TaprootSpendInfo {
210    /// Creates a new [`TaprootSpendInfo`] from a list of scripts (with default script version) and
211    /// weights of satisfaction for that script.
212    ///
213    /// See [`TaprootBuilder::with_huffman_tree`] for more detailed documentation.
214    pub fn with_huffman_tree<C, I>(
215        secp: &Secp256k1<C>,
216        internal_key: UntweakedPublicKey,
217        script_weights: I,
218    ) -> Result<Self, TaprootBuilderError>
219    where
220        I: IntoIterator<Item = (u32, ScriptBuf)>,
221        C: secp256k1::Verification,
222    {
223        let builder = TaprootBuilder::with_huffman_tree(script_weights)?;
224        Ok(builder.finalize(secp, internal_key).expect("Huffman Tree is always complete"))
225    }
226
227    /// Creates a new key spend with `internal_key` and `merkle_root`. Provide [`None`] for
228    /// the `merkle_root` if there is no script path.
229    ///
230    /// *Note*: As per BIP341
231    ///
232    /// When the merkle root is [`None`], the output key commits to an unspendable script path
233    /// instead of having no script path. This is achieved by computing the output key point as
234    /// `Q = P + int(hashTapTweak(bytes(P)))G`. See also [`TaprootSpendInfo::tap_tweak`].
235    ///
236    /// Refer to BIP 341 footnote ('Why should the output key always have a taproot commitment, even
237    /// if there is no script path?') for more details.
238    pub fn new_key_spend<C: secp256k1::Verification>(
239        secp: &Secp256k1<C>,
240        internal_key: UntweakedPublicKey,
241        merkle_root: Option<TapNodeHash>,
242    ) -> Self {
243        let (output_key, parity) = internal_key.tap_tweak(secp, merkle_root);
244        Self {
245            internal_key,
246            merkle_root,
247            output_key_parity: parity,
248            output_key,
249            script_map: BTreeMap::new(),
250        }
251    }
252
253    /// Returns the `TapTweakHash` for this [`TaprootSpendInfo`] i.e., the tweak using `internal_key`
254    /// and `merkle_root`.
255    pub fn tap_tweak(&self) -> TapTweakHash {
256        TapTweakHash::from_key_and_tweak(self.internal_key, self.merkle_root)
257    }
258
259    /// Returns the internal key for this [`TaprootSpendInfo`].
260    pub fn internal_key(&self) -> UntweakedPublicKey { self.internal_key }
261
262    /// Returns the merkle root for this [`TaprootSpendInfo`].
263    pub fn merkle_root(&self) -> Option<TapNodeHash> { self.merkle_root }
264
265    /// Returns the output key (the key used in script pubkey) for this [`TaprootSpendInfo`].
266    pub fn output_key(&self) -> TweakedPublicKey { self.output_key }
267
268    /// Returns the parity of the output key. See also [`TaprootSpendInfo::output_key`].
269    pub fn output_key_parity(&self) -> secp256k1::Parity { self.output_key_parity }
270
271    /// Returns a reference to the internal script map.
272    pub fn script_map(&self) -> &ScriptMerkleProofMap { &self.script_map }
273
274    /// Computes the [`TaprootSpendInfo`] from `internal_key` and `node`.
275    ///
276    /// This is useful when you want to manually build a taproot tree without using
277    /// [`TaprootBuilder`].
278    pub fn from_node_info<C: secp256k1::Verification>(
279        secp: &Secp256k1<C>,
280        internal_key: UntweakedPublicKey,
281        node: NodeInfo,
282    ) -> TaprootSpendInfo {
283        // Create as if it is a key spend path with the given merkle root
284        let root_hash = Some(node.hash);
285        let mut info = TaprootSpendInfo::new_key_spend(secp, internal_key, root_hash);
286
287        for leaves in node.leaves {
288            match leaves.leaf {
289                TapLeaf::Hidden(_) => {
290                    // We don't store any information about hidden nodes in TaprootSpendInfo.
291                }
292                TapLeaf::Script(script, ver) => {
293                    let key = (script, ver);
294                    let value = leaves.merkle_branch;
295                    match info.script_map.get_mut(&key) {
296                        None => {
297                            let mut set = BTreeSet::new();
298                            set.insert(value);
299                            info.script_map.insert(key, set);
300                        }
301                        Some(set) => {
302                            set.insert(value);
303                        }
304                    }
305                }
306            }
307        }
308        info
309    }
310
311    /// Constructs a [`ControlBlock`] for particular script with the given version.
312    ///
313    /// # Returns
314    ///
315    /// - If there are multiple control blocks possible, returns the shortest one.
316    /// - If the script is not contained in the [`TaprootSpendInfo`], returns `None`.
317    pub fn control_block(&self, script_ver: &(ScriptBuf, LeafVersion)) -> Option<ControlBlock> {
318        let merkle_branch_set = self.script_map.get(script_ver)?;
319        // Choose the smallest one amongst the multiple script maps
320        let smallest = merkle_branch_set
321            .iter()
322            .min_by(|x, y| x.len().cmp(&y.len()))
323            .expect("Invariant: ScriptBuf map key must contain non-empty set value");
324        Some(ControlBlock {
325            internal_key: self.internal_key,
326            output_key_parity: self.output_key_parity,
327            leaf_version: script_ver.1,
328            merkle_branch: smallest.clone(),
329        })
330    }
331}
332
333impl From<TaprootSpendInfo> for TapTweakHash {
334    fn from(spend_info: TaprootSpendInfo) -> TapTweakHash { spend_info.tap_tweak() }
335}
336
337impl From<&TaprootSpendInfo> for TapTweakHash {
338    fn from(spend_info: &TaprootSpendInfo) -> TapTweakHash { spend_info.tap_tweak() }
339}
340
341/// Builder for building taproot iteratively. Users can specify tap leaf or omitted/hidden branches
342/// in a depth-first search (DFS) walk order to construct this tree.
343///
344/// See Wikipedia for more details on [DFS](https://en.wikipedia.org/wiki/Depth-first_search).
345// Similar to Taproot Builder in Bitcoin Core.
346#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
347pub struct TaprootBuilder {
348    // The following doc-comment is from Bitcoin Core, but modified for Rust. It describes the
349    // current state of the builder for a given tree.
350    //
351    // For each level in the tree, one NodeInfo object may be present. Branch at index 0 is
352    // information about the root; further values are for deeper subtrees being explored.
353    //
354    // During the construction of Taptree, for every right branch taken to reach the position we're
355    // currently working on, there will be a `(Some(_))` entry in branch corresponding to the left
356    // branch at that level.
357    //
358    // For example, imagine this tree:     - N0 -
359    //                                    /      \
360    //                                   N1      N2
361    //                                  /  \    /  \
362    //                                 A    B  C   N3
363    //                                            /  \
364    //                                           D    E
365    //
366    // Initially, branch is empty. After processing leaf A, it would become {None, None, A}. When
367    // processing leaf B, an entry at level 2 already exists, and it would thus be combined with it
368    // to produce a level 1 entry, resulting in {None, N1}. Adding C and D takes us to {None, N1, C}
369    // and {None, N1, C, D} respectively. When E is processed, it is combined with D, and then C,
370    // and then N1, to produce the root, resulting in {N0}.
371    //
372    // This structure allows processing with just O(log n) overhead if the leaves are computed on
373    // the fly.
374    //
375    // As an invariant, there can never be None entries at the end. There can also not be more than
376    // 128 entries (as that would mean more than 128 levels in the tree). The depth of newly added
377    // entries will always be at least equal to the current size of branch (otherwise it does not
378    // correspond to a depth-first traversal of a tree). A branch is only empty if no entries have
379    // ever be processed. A branch having length 1 corresponds to being done.
380    branch: Vec<Option<NodeInfo>>,
381}
382
383impl TaprootBuilder {
384    /// Creates a new instance of [`TaprootBuilder`].
385    pub fn new() -> Self { TaprootBuilder { branch: vec![] } }
386
387    /// Creates a new instance of [`TaprootBuilder`] with a capacity hint for `size` elements.
388    ///
389    /// The size here should be maximum depth of the tree.
390    pub fn with_capacity(size: usize) -> Self {
391        TaprootBuilder { branch: Vec::with_capacity(size) }
392    }
393
394    /// Creates a new [`TaprootSpendInfo`] from a list of scripts (with default script version) and
395    /// weights of satisfaction for that script.
396    ///
397    /// The weights represent the probability of each branch being taken. If probabilities/weights
398    /// for each condition are known, constructing the tree as a Huffman Tree is the optimal way to
399    /// minimize average case satisfaction cost. This function takes as input an iterator of
400    /// `tuple(u32, ScriptBuf)` where `u32` represents the satisfaction weights of the branch. For
401    /// example, [(3, S1), (2, S2), (5, S3)] would construct a [`TapTree`] that has optimal
402    /// satisfaction weight when probability for S1 is 30%, S2 is 20% and S3 is 50%.
403    ///
404    /// # Errors:
405    ///
406    /// - When the optimal Huffman Tree has a depth more than 128.
407    /// - If the provided list of script weights is empty.
408    ///
409    /// # Edge Cases:
410    ///
411    /// If the script weight calculations overflow, a sub-optimal tree may be generated. This should
412    /// not happen unless you are dealing with billions of branches with weights close to 2^32.
413    ///
414    /// [`TapTree`]: crate::taproot::TapTree
415    pub fn with_huffman_tree<I>(script_weights: I) -> Result<Self, TaprootBuilderError>
416    where
417        I: IntoIterator<Item = (u32, ScriptBuf)>,
418    {
419        let mut node_weights = BinaryHeap::<(Reverse<u32>, NodeInfo)>::new();
420        for (p, leaf) in script_weights {
421            node_weights
422                .push((Reverse(p), NodeInfo::new_leaf_with_ver(leaf, LeafVersion::TapScript)));
423        }
424        if node_weights.is_empty() {
425            return Err(TaprootBuilderError::EmptyTree);
426        }
427        while node_weights.len() > 1 {
428            // Combine the last two elements and insert a new node
429            let (p1, s1) = node_weights.pop().expect("len must be at least two");
430            let (p2, s2) = node_weights.pop().expect("len must be at least two");
431            // Insert the sum of first two in the tree as a new node
432            // N.B.: p1 + p2 can not practically saturate as you would need to have 2**32 max u32s
433            // from the input to overflow. However, saturating is a reasonable behavior here as
434            // huffman tree construction would treat all such elements as "very likely".
435            let p = Reverse(p1.0.saturating_add(p2.0));
436            node_weights.push((p, NodeInfo::combine(s1, s2)?));
437        }
438        // Every iteration of the loop reduces the node_weights.len() by exactly 1
439        // Therefore, the loop will eventually terminate with exactly 1 element
440        debug_assert_eq!(node_weights.len(), 1);
441        let node = node_weights.pop().expect("huffman tree algorithm is broken").1;
442        Ok(TaprootBuilder { branch: vec![Some(node)] })
443    }
444
445    /// Adds a leaf script at `depth` to the builder with script version `ver`. Errors if the leaves
446    /// are not provided in DFS walk order. The depth of the root node is 0.
447    pub fn add_leaf_with_ver(
448        self,
449        depth: u8,
450        script: ScriptBuf,
451        ver: LeafVersion,
452    ) -> Result<Self, TaprootBuilderError> {
453        let leaf = NodeInfo::new_leaf_with_ver(script, ver);
454        self.insert(leaf, depth)
455    }
456
457    /// Adds a leaf script at `depth` to the builder with default script version. Errors if the
458    /// leaves are not provided in DFS walk order. The depth of the root node is 0.
459    ///
460    /// See [`TaprootBuilder::add_leaf_with_ver`] for adding a leaf with specific version.
461    pub fn add_leaf(self, depth: u8, script: ScriptBuf) -> Result<Self, TaprootBuilderError> {
462        self.add_leaf_with_ver(depth, script, LeafVersion::TapScript)
463    }
464
465    /// Adds a hidden/omitted node at `depth` to the builder. Errors if the leaves are not provided
466    /// in DFS walk order. The depth of the root node is 0.
467    pub fn add_hidden_node(
468        self,
469        depth: u8,
470        hash: TapNodeHash,
471    ) -> Result<Self, TaprootBuilderError> {
472        let node = NodeInfo::new_hidden_node(hash);
473        self.insert(node, depth)
474    }
475
476    /// Checks if the builder has finalized building a tree.
477    pub fn is_finalizable(&self) -> bool { self.branch.len() == 1 && self.branch[0].is_some() }
478
479    /// Converts the builder into a [`NodeInfo`] if the builder is a full tree with possibly
480    /// hidden nodes
481    ///
482    /// # Errors:
483    ///
484    /// [`IncompleteBuilderError::NotFinalized`] if the builder is not finalized. The builder
485    /// can be restored by calling [`IncompleteBuilderError::into_builder`]
486    pub fn try_into_node_info(mut self) -> Result<NodeInfo, IncompleteBuilderError> {
487        if self.branch().len() != 1 {
488            return Err(IncompleteBuilderError::NotFinalized(self));
489        }
490        Ok(self
491            .branch
492            .pop()
493            .expect("length checked above")
494            .expect("invariant guarantees node info exists"))
495    }
496
497    /// Converts the builder into a [`TapTree`] if the builder is a full tree and
498    /// does not contain any hidden nodes
499    pub fn try_into_taptree(self) -> Result<TapTree, IncompleteBuilderError> {
500        let node = self.try_into_node_info()?;
501        if node.has_hidden_nodes {
502            // Reconstruct the builder as it was if it has hidden nodes
503            return Err(IncompleteBuilderError::HiddenParts(TaprootBuilder {
504                branch: vec![Some(node)],
505            }));
506        }
507        Ok(TapTree(node))
508    }
509
510    /// Checks if the builder has hidden nodes.
511    pub fn has_hidden_nodes(&self) -> bool {
512        self.branch.iter().flatten().any(|node| node.has_hidden_nodes)
513    }
514
515    /// Creates a [`TaprootSpendInfo`] with the given internal key.
516    ///
517    /// Returns the unmodified builder as Err if the builder is not finalizable.
518    /// See also [`TaprootBuilder::is_finalizable`]
519    pub fn finalize<C: secp256k1::Verification>(
520        mut self,
521        secp: &Secp256k1<C>,
522        internal_key: UntweakedPublicKey,
523    ) -> Result<TaprootSpendInfo, TaprootBuilder> {
524        match self.branch.len() {
525            0 => Ok(TaprootSpendInfo::new_key_spend(secp, internal_key, None)),
526            1 =>
527                if let Some(Some(node)) = self.branch.pop() {
528                    Ok(TaprootSpendInfo::from_node_info(secp, internal_key, node))
529                } else {
530                    unreachable!("Size checked above. Builder guarantees the last element is Some")
531                },
532            _ => Err(self),
533        }
534    }
535
536    pub(crate) fn branch(&self) -> &[Option<NodeInfo>] { &self.branch }
537
538    /// Inserts a leaf at `depth`.
539    fn insert(mut self, mut node: NodeInfo, mut depth: u8) -> Result<Self, TaprootBuilderError> {
540        // early error on invalid depth. Though this will be checked later
541        // while constructing TaprootMerkelBranch
542        if depth as usize > TAPROOT_CONTROL_MAX_NODE_COUNT {
543            return Err(TaprootBuilderError::InvalidMerkleTreeDepth(depth as usize));
544        }
545        // We cannot insert a leaf at a lower depth while a deeper branch is unfinished. Doing
546        // so would mean the add_leaf/add_hidden invocations do not correspond to a DFS traversal of a
547        // binary tree.
548        if (depth as usize + 1) < self.branch.len() {
549            return Err(TaprootBuilderError::NodeNotInDfsOrder);
550        }
551
552        while self.branch.len() == depth as usize + 1 {
553            let child = match self.branch.pop() {
554                None => unreachable!("Len of branch checked to be >= 1"),
555                Some(Some(child)) => child,
556                // Needs an explicit push to add the None that we just popped.
557                // Cannot use .last() because of borrow checker issues.
558                Some(None) => {
559                    self.branch.push(None);
560                    break;
561                } // Cannot combine further
562            };
563            if depth == 0 {
564                // We are trying to combine two nodes at root level.
565                // Can't propagate further up than the root
566                return Err(TaprootBuilderError::OverCompleteTree);
567            }
568            node = NodeInfo::combine(node, child)?;
569            // Propagate to combine nodes at a lower depth
570            depth -= 1;
571        }
572
573        if self.branch.len() < depth as usize + 1 {
574            // add enough nodes so that we can insert node at depth `depth`
575            let num_extra_nodes = depth as usize + 1 - self.branch.len();
576            self.branch.extend((0..num_extra_nodes).map(|_| None));
577        }
578        // Push the last node to the branch
579        self.branch[depth as usize] = Some(node);
580        Ok(self)
581    }
582}
583
584impl Default for TaprootBuilder {
585    fn default() -> Self { Self::new() }
586}
587
588/// Error happening when [`TapTree`] is constructed from a [`TaprootBuilder`]
589/// having hidden branches or not being finalized.
590#[derive(Debug, Clone, PartialEq, Eq)]
591#[non_exhaustive]
592pub enum IncompleteBuilderError {
593    /// Indicates an attempt to construct a tap tree from a builder containing incomplete branches.
594    NotFinalized(TaprootBuilder),
595    /// Indicates an attempt to construct a tap tree from a builder containing hidden parts.
596    HiddenParts(TaprootBuilder),
597}
598
599internals::impl_from_infallible!(IncompleteBuilderError);
600
601impl IncompleteBuilderError {
602    /// Converts error into the original incomplete [`TaprootBuilder`] instance.
603    pub fn into_builder(self) -> TaprootBuilder {
604        use IncompleteBuilderError::*;
605
606        match self {
607            NotFinalized(builder) | HiddenParts(builder) => builder,
608        }
609    }
610}
611
612impl core::fmt::Display for IncompleteBuilderError {
613    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
614        use IncompleteBuilderError::*;
615
616        f.write_str(match self {
617            NotFinalized(_) =>
618                "an attempt to construct a tap tree from a builder containing incomplete branches.",
619            HiddenParts(_) =>
620                "an attempt to construct a tap tree from a builder containing hidden parts.",
621        })
622    }
623}
624
625#[cfg(feature = "std")]
626impl std::error::Error for IncompleteBuilderError {
627    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
628        use IncompleteBuilderError::*;
629
630        match *self {
631            NotFinalized(_) | HiddenParts(_) => None,
632        }
633    }
634}
635
636/// Error happening when [`TapTree`] is constructed from a [`NodeInfo`]
637/// having hidden branches.
638#[derive(Debug, Clone, PartialEq, Eq)]
639#[non_exhaustive]
640pub enum HiddenNodesError {
641    /// Indicates an attempt to construct a tap tree from a builder containing hidden parts.
642    HiddenParts(NodeInfo),
643}
644
645internals::impl_from_infallible!(HiddenNodesError);
646
647impl HiddenNodesError {
648    /// Converts error into the original incomplete [`NodeInfo`] instance.
649    pub fn into_node_info(self) -> NodeInfo {
650        use HiddenNodesError::*;
651
652        match self {
653            HiddenParts(node_info) => node_info,
654        }
655    }
656}
657
658impl core::fmt::Display for HiddenNodesError {
659    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
660        use HiddenNodesError::*;
661
662        f.write_str(match self {
663            HiddenParts(_) =>
664                "an attempt to construct a tap tree from a node_info containing hidden parts.",
665        })
666    }
667}
668
669#[cfg(feature = "std")]
670impl std::error::Error for HiddenNodesError {
671    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
672        use HiddenNodesError::*;
673
674        match self {
675            HiddenParts(_) => None,
676        }
677    }
678}
679
680/// Taproot Tree representing a complete binary tree without any hidden nodes.
681///
682/// This is in contrast to [`NodeInfo`], which allows hidden nodes.
683/// The implementations for Eq, PartialEq and Hash compare the merkle root of the tree
684//
685// This is a bug in BIP370 that does not specify how to share trees with hidden nodes,
686// for which we need a separate type.
687#[derive(Clone, Debug, Eq, PartialEq, Hash)]
688#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
689#[cfg_attr(feature = "serde", serde(crate = "actual_serde"))]
690#[cfg_attr(feature = "serde", serde(into = "NodeInfo"))]
691#[cfg_attr(feature = "serde", serde(try_from = "NodeInfo"))]
692pub struct TapTree(NodeInfo);
693
694impl From<TapTree> for NodeInfo {
695    #[inline]
696    fn from(tree: TapTree) -> Self { tree.into_node_info() }
697}
698
699impl TapTree {
700    /// Gets the reference to inner [`NodeInfo`] of this tree root.
701    pub fn node_info(&self) -> &NodeInfo { &self.0 }
702
703    /// Gets the inner [`NodeInfo`] of this tree root.
704    pub fn into_node_info(self) -> NodeInfo { self.0 }
705
706    /// Returns [`TapTreeIter<'_>`] iterator for a taproot script tree, operating in DFS order over
707    /// tree [`ScriptLeaf`]s.
708    pub fn script_leaves(&self) -> ScriptLeaves { ScriptLeaves { leaf_iter: self.0.leaf_nodes() } }
709
710    /// Returns the root [`TapNodeHash`] of this tree.
711    pub fn root_hash(&self) -> TapNodeHash { self.0.hash }
712}
713
714impl TryFrom<TaprootBuilder> for TapTree {
715    type Error = IncompleteBuilderError;
716
717    /// Constructs [`TapTree`] from a [`TaprootBuilder`] if it is complete binary tree.
718    ///
719    /// # Returns
720    ///
721    /// A [`TapTree`] iff the `builder` is complete, otherwise return [`IncompleteBuilderError`]
722    /// error with the content of incomplete `builder` instance.
723    fn try_from(builder: TaprootBuilder) -> Result<Self, Self::Error> { builder.try_into_taptree() }
724}
725
726impl TryFrom<NodeInfo> for TapTree {
727    type Error = HiddenNodesError;
728
729    /// Constructs [`TapTree`] from a [`NodeInfo`] if it is complete binary tree.
730    ///
731    /// # Returns
732    ///
733    /// A [`TapTree`] iff the [`NodeInfo`] has no hidden nodes, otherwise return
734    /// [`HiddenNodesError`] error with the content of incomplete [`NodeInfo`] instance.
735    fn try_from(node_info: NodeInfo) -> Result<Self, Self::Error> {
736        if node_info.has_hidden_nodes {
737            Err(HiddenNodesError::HiddenParts(node_info))
738        } else {
739            Ok(TapTree(node_info))
740        }
741    }
742}
743
744/// Iterator for a taproot script tree, operating in DFS order yielding [`ScriptLeaf`].
745///
746/// Returned by [`TapTree::script_leaves`]. [`TapTree`] does not allow hidden nodes,
747/// so this iterator is guaranteed to yield all known leaves.
748pub struct ScriptLeaves<'tree> {
749    leaf_iter: LeafNodes<'tree>,
750}
751
752impl<'tree> Iterator for ScriptLeaves<'tree> {
753    type Item = ScriptLeaf<'tree>;
754
755    #[inline]
756    fn next(&mut self) -> Option<Self::Item> { ScriptLeaf::from_leaf_node(self.leaf_iter.next()?) }
757
758    fn size_hint(&self) -> (usize, Option<usize>) { self.leaf_iter.size_hint() }
759}
760
761impl<'tree> ExactSizeIterator for ScriptLeaves<'tree> {}
762
763impl<'tree> FusedIterator for ScriptLeaves<'tree> {}
764
765impl<'tree> DoubleEndedIterator for ScriptLeaves<'tree> {
766    #[inline]
767    fn next_back(&mut self) -> Option<Self::Item> {
768        ScriptLeaf::from_leaf_node(self.leaf_iter.next_back()?)
769    }
770}
771/// Iterator for a taproot script tree, operating in DFS order yielding [`LeafNode`].
772///
773/// Returned by [`NodeInfo::leaf_nodes`]. This can potentially yield hidden nodes.
774pub struct LeafNodes<'a> {
775    leaf_iter: core::slice::Iter<'a, LeafNode>,
776}
777
778impl<'a> Iterator for LeafNodes<'a> {
779    type Item = &'a LeafNode;
780
781    #[inline]
782    fn next(&mut self) -> Option<Self::Item> { self.leaf_iter.next() }
783
784    fn size_hint(&self) -> (usize, Option<usize>) { self.leaf_iter.size_hint() }
785}
786
787impl<'tree> ExactSizeIterator for LeafNodes<'tree> {}
788
789impl<'tree> FusedIterator for LeafNodes<'tree> {}
790
791impl<'tree> DoubleEndedIterator for LeafNodes<'tree> {
792    #[inline]
793    fn next_back(&mut self) -> Option<Self::Item> { self.leaf_iter.next_back() }
794}
795/// Represents the node information in taproot tree. In contrast to [`TapTree`], this
796/// is allowed to have hidden leaves as children.
797///
798/// Helper type used in merkle tree construction allowing one to build sparse merkle trees. The node
799/// represents part of the tree that has information about all of its descendants.
800/// See how [`TaprootBuilder`] works for more details.
801///
802/// You can use [`TaprootSpendInfo::from_node_info`] to a get a [`TaprootSpendInfo`] from the merkle
803/// root [`NodeInfo`].
804#[derive(Debug, Clone, PartialOrd, Ord)]
805pub struct NodeInfo {
806    /// Merkle hash for this node.
807    pub(crate) hash: TapNodeHash,
808    /// Information about leaves inside this node.
809    pub(crate) leaves: Vec<LeafNode>,
810    /// Tracks information on hidden nodes below this node.
811    pub(crate) has_hidden_nodes: bool,
812}
813
814impl PartialEq for NodeInfo {
815    fn eq(&self, other: &Self) -> bool { self.hash.eq(&other.hash) }
816}
817
818impl core::hash::Hash for NodeInfo {
819    fn hash<H: core::hash::Hasher>(&self, state: &mut H) { self.hash.hash(state) }
820}
821
822impl Eq for NodeInfo {}
823
824impl NodeInfo {
825    /// Creates a new [`NodeInfo`] with omitted/hidden info.
826    pub fn new_hidden_node(hash: TapNodeHash) -> Self {
827        Self { hash, leaves: vec![], has_hidden_nodes: true }
828    }
829
830    /// Creates a new leaf [`NodeInfo`] with given [`ScriptBuf`] and [`LeafVersion`].
831    pub fn new_leaf_with_ver(script: ScriptBuf, ver: LeafVersion) -> Self {
832        Self {
833            hash: TapNodeHash::from_script(&script, ver),
834            leaves: vec![LeafNode::new_script(script, ver)],
835            has_hidden_nodes: false,
836        }
837    }
838
839    /// Combines two [`NodeInfo`] to create a new parent.
840    pub fn combine(a: Self, b: Self) -> Result<Self, TaprootBuilderError> {
841        let mut all_leaves = Vec::with_capacity(a.leaves.len() + b.leaves.len());
842        let (hash, left_first) = TapNodeHash::combine_node_hashes(a.hash, b.hash);
843        let (a, b) = if left_first { (a, b) } else { (b, a) };
844        for mut a_leaf in a.leaves {
845            a_leaf.merkle_branch.push(b.hash)?; // add hashing partner
846            all_leaves.push(a_leaf);
847        }
848        for mut b_leaf in b.leaves {
849            b_leaf.merkle_branch.push(a.hash)?; // add hashing partner
850            all_leaves.push(b_leaf);
851        }
852        Ok(Self {
853            hash,
854            leaves: all_leaves,
855            has_hidden_nodes: a.has_hidden_nodes || b.has_hidden_nodes,
856        })
857    }
858
859    /// Creates an iterator over all leaves (including hidden leaves) in the tree.
860    pub fn leaf_nodes(&self) -> LeafNodes { LeafNodes { leaf_iter: self.leaves.iter() } }
861
862    /// Returns the root [`TapNodeHash`] of this node info.
863    pub fn node_hash(&self) -> TapNodeHash { self.hash }
864}
865
866impl TryFrom<TaprootBuilder> for NodeInfo {
867    type Error = IncompleteBuilderError;
868
869    fn try_from(builder: TaprootBuilder) -> Result<Self, Self::Error> {
870        builder.try_into_node_info()
871    }
872}
873
874#[cfg(feature = "serde")]
875impl serde::Serialize for NodeInfo {
876    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
877    where
878        S: serde::Serializer,
879    {
880        use serde::ser::SerializeSeq;
881        let mut seq = serializer.serialize_seq(Some(self.leaves.len() * 2))?;
882        for tap_leaf in self.leaves.iter() {
883            seq.serialize_element(&tap_leaf.merkle_branch().len())?;
884            seq.serialize_element(&tap_leaf.leaf)?;
885        }
886        seq.end()
887    }
888}
889
890#[cfg(feature = "serde")]
891impl<'de> serde::Deserialize<'de> for NodeInfo {
892    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
893    where
894        D: serde::Deserializer<'de>,
895    {
896        struct SeqVisitor;
897        impl<'de> serde::de::Visitor<'de> for SeqVisitor {
898            type Value = NodeInfo;
899
900            fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
901                formatter.write_str("Taproot tree in DFS walk order")
902            }
903
904            fn visit_seq<A>(self, mut seq: A) -> Result<Self::Value, A::Error>
905            where
906                A: serde::de::SeqAccess<'de>,
907            {
908                let size = seq
909                    .size_hint()
910                    .map(|x| core::mem::size_of::<usize>() * 8 - x.leading_zeros() as usize)
911                    .map(|x| x / 2) // Each leaf is serialized as two elements.
912                    .unwrap_or(0)
913                    .min(TAPROOT_CONTROL_MAX_NODE_COUNT); // no more than 128 nodes
914                let mut builder = TaprootBuilder::with_capacity(size);
915                while let Some(depth) = seq.next_element()? {
916                    let tap_leaf: TapLeaf = seq
917                        .next_element()?
918                        .ok_or_else(|| serde::de::Error::custom("Missing tap_leaf"))?;
919                    match tap_leaf {
920                        TapLeaf::Script(script, ver) => {
921                            builder =
922                                builder.add_leaf_with_ver(depth, script, ver).map_err(|e| {
923                                    serde::de::Error::custom(format!("Leaf insertion error: {}", e))
924                                })?;
925                        }
926                        TapLeaf::Hidden(h) => {
927                            builder = builder.add_hidden_node(depth, h).map_err(|e| {
928                                serde::de::Error::custom(format!(
929                                    "Hidden node insertion error: {}",
930                                    e
931                                ))
932                            })?;
933                        }
934                    }
935                }
936                NodeInfo::try_from(builder).map_err(|e| {
937                    serde::de::Error::custom(format!("Incomplete taproot tree: {}", e))
938                })
939            }
940        }
941
942        deserializer.deserialize_seq(SeqVisitor)
943    }
944}
945
946/// Leaf node in a taproot tree. Can be either hidden or known.
947#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
948#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
949#[cfg_attr(feature = "serde", serde(crate = "actual_serde"))]
950pub enum TapLeaf {
951    /// A known script
952    Script(ScriptBuf, LeafVersion),
953    /// Hidden Node with the given leaf hash
954    Hidden(TapNodeHash),
955}
956
957impl TapLeaf {
958    /// Obtains the hidden leaf hash if the leaf is hidden.
959    pub fn as_hidden(&self) -> Option<&TapNodeHash> {
960        if let Self::Hidden(v) = self {
961            Some(v)
962        } else {
963            None
964        }
965    }
966
967    /// Obtains a reference to script and version if the leaf is known.
968    pub fn as_script(&self) -> Option<(&Script, LeafVersion)> {
969        if let Self::Script(script, ver) = self {
970            Some((script, *ver))
971        } else {
972            None
973        }
974    }
975}
976
977/// Store information about taproot leaf node.
978#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
979pub struct LeafNode {
980    /// The [`TapLeaf`]
981    leaf: TapLeaf,
982    /// The merkle proof (hashing partners) to get this node.
983    merkle_branch: TaprootMerkleBranch,
984}
985
986impl LeafNode {
987    /// Creates an new [`ScriptLeaf`] from `script` and `ver` and no merkle branch.
988    pub fn new_script(script: ScriptBuf, ver: LeafVersion) -> Self {
989        Self { leaf: TapLeaf::Script(script, ver), merkle_branch: Default::default() }
990    }
991
992    /// Creates an new [`ScriptLeaf`] from `hash` and no merkle branch.
993    pub fn new_hidden(hash: TapNodeHash) -> Self {
994        Self { leaf: TapLeaf::Hidden(hash), merkle_branch: Default::default() }
995    }
996
997    /// Returns the depth of this script leaf in the tap tree.
998    #[inline]
999    pub fn depth(&self) -> u8 {
1000        // Depth is guarded by TAPROOT_CONTROL_MAX_NODE_COUNT.
1001        u8::try_from(self.merkle_branch().len()).expect("depth is guaranteed to fit in a u8")
1002    }
1003
1004    /// Computes a leaf hash for this [`ScriptLeaf`] if the leaf is known.
1005    ///
1006    /// This [`TapLeafHash`] is useful while signing taproot script spends.
1007    ///
1008    /// See [`LeafNode::node_hash`] for computing the [`TapNodeHash`] which returns the hidden node
1009    /// hash if the node is hidden.
1010    #[inline]
1011    pub fn leaf_hash(&self) -> Option<TapLeafHash> {
1012        let (script, ver) = self.leaf.as_script()?;
1013        Some(TapLeafHash::from_script(script, ver))
1014    }
1015
1016    /// Computes the [`TapNodeHash`] for this [`ScriptLeaf`]. This returns the
1017    /// leaf hash if the leaf is known and the hidden node hash if the leaf is
1018    /// hidden.
1019    /// See also, [`LeafNode::leaf_hash`].
1020    #[inline]
1021    pub fn node_hash(&self) -> TapNodeHash {
1022        match self.leaf {
1023            TapLeaf::Script(ref script, ver) => TapLeafHash::from_script(script, ver).into(),
1024            TapLeaf::Hidden(ref hash) => *hash,
1025        }
1026    }
1027
1028    /// Returns reference to the leaf script if the leaf is known.
1029    #[inline]
1030    pub fn script(&self) -> Option<&Script> { self.leaf.as_script().map(|x| x.0) }
1031
1032    /// Returns leaf version of the script if the leaf is known.
1033    #[inline]
1034    pub fn leaf_version(&self) -> Option<LeafVersion> { self.leaf.as_script().map(|x| x.1) }
1035
1036    /// Returns reference to the merkle proof (hashing partners) to get this
1037    /// node in form of [`TaprootMerkleBranch`].
1038    #[inline]
1039    pub fn merkle_branch(&self) -> &TaprootMerkleBranch { &self.merkle_branch }
1040
1041    /// Returns a reference to the leaf of this [`ScriptLeaf`].
1042    #[inline]
1043    pub fn leaf(&self) -> &TapLeaf { &self.leaf }
1044}
1045
1046/// Script leaf node in a taproot tree along with the merkle proof to get this node.
1047/// Returned by [`TapTree::script_leaves`]
1048#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
1049pub struct ScriptLeaf<'leaf> {
1050    /// The version of the script leaf.
1051    version: LeafVersion,
1052    /// The script.
1053    script: &'leaf Script,
1054    /// The merkle proof (hashing partners) to get this node.
1055    merkle_branch: &'leaf TaprootMerkleBranch,
1056}
1057
1058impl<'leaf> ScriptLeaf<'leaf> {
1059    /// Obtains the version of the script leaf.
1060    pub fn version(&self) -> LeafVersion { self.version }
1061
1062    /// Obtains a reference to the script inside the leaf.
1063    pub fn script(&self) -> &Script { self.script }
1064
1065    /// Obtains a reference to the merkle proof of the leaf.
1066    pub fn merkle_branch(&self) -> &TaprootMerkleBranch { self.merkle_branch }
1067
1068    /// Obtains a script leaf from the leaf node if the leaf is not hidden.
1069    pub fn from_leaf_node(leaf_node: &'leaf LeafNode) -> Option<Self> {
1070        let (script, ver) = leaf_node.leaf.as_script()?;
1071        Some(Self { version: ver, script, merkle_branch: &leaf_node.merkle_branch })
1072    }
1073}
1074
1075/// Control block data structure used in Tapscript satisfaction.
1076#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
1077#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
1078#[cfg_attr(feature = "serde", serde(crate = "actual_serde"))]
1079pub struct ControlBlock {
1080    /// The tapleaf version.
1081    pub leaf_version: LeafVersion,
1082    /// The parity of the output key (NOT THE INTERNAL KEY WHICH IS ALWAYS XONLY).
1083    pub output_key_parity: secp256k1::Parity,
1084    /// The internal key.
1085    pub internal_key: UntweakedPublicKey,
1086    /// The merkle proof of a script associated with this leaf.
1087    pub merkle_branch: TaprootMerkleBranch,
1088}
1089
1090impl ControlBlock {
1091    /// Decodes bytes representing a `ControlBlock`.
1092    ///
1093    /// This is an extra witness element that provides the proof that taproot script pubkey is
1094    /// correctly computed with some specified leaf hash. This is the last element in taproot
1095    /// witness when spending a output via script path.
1096    ///
1097    /// # Errors
1098    ///
1099    /// - [`TaprootError::InvalidControlBlockSize`] if `sl` is not of size 1 + 32 + 32N for any N >= 0.
1100    /// - [`TaprootError::InvalidTaprootLeafVersion`] if first byte of `sl` is not a valid leaf version.
1101    /// - [`TaprootError::InvalidInternalKey`] if internal key is invalid (first 32 bytes after the parity byte).
1102    /// - [`TaprootError::InvalidMerkleTreeDepth`] if merkle tree is too deep (more than 128 levels).
1103    pub fn decode(sl: &[u8]) -> Result<ControlBlock, TaprootError> {
1104        if sl.len() < TAPROOT_CONTROL_BASE_SIZE
1105            || (sl.len() - TAPROOT_CONTROL_BASE_SIZE) % TAPROOT_CONTROL_NODE_SIZE != 0
1106        {
1107            return Err(TaprootError::InvalidControlBlockSize(sl.len()));
1108        }
1109        let output_key_parity = match sl[0] & 1 {
1110            0 => secp256k1::Parity::Even,
1111            _ => secp256k1::Parity::Odd,
1112        };
1113
1114        let leaf_version = LeafVersion::from_consensus(sl[0] & TAPROOT_LEAF_MASK)?;
1115        let internal_key = UntweakedPublicKey::from_slice(&sl[1..TAPROOT_CONTROL_BASE_SIZE])
1116            .map_err(TaprootError::InvalidInternalKey)?;
1117        let merkle_branch = TaprootMerkleBranch::decode(&sl[TAPROOT_CONTROL_BASE_SIZE..])?;
1118        Ok(ControlBlock { leaf_version, output_key_parity, internal_key, merkle_branch })
1119    }
1120
1121    /// Returns the size of control block. Faster and more efficient than calling
1122    /// `Self::serialize().len()`. Can be handy for fee estimation.
1123    pub fn size(&self) -> usize {
1124        TAPROOT_CONTROL_BASE_SIZE + TAPROOT_CONTROL_NODE_SIZE * self.merkle_branch.len()
1125    }
1126
1127    /// Serializes to a writer.
1128    ///
1129    /// # Returns
1130    ///
1131    /// The number of bytes written to the writer.
1132    pub fn encode<W: Write + ?Sized>(&self, writer: &mut W) -> io::Result<usize> {
1133        let first_byte: u8 =
1134            i32::from(self.output_key_parity) as u8 | self.leaf_version.to_consensus();
1135        writer.write_all(&[first_byte])?;
1136        writer.write_all(&self.internal_key.serialize())?;
1137        self.merkle_branch.encode(writer)?;
1138        Ok(self.size())
1139    }
1140
1141    /// Serializes the control block.
1142    ///
1143    /// This would be required when using [`ControlBlock`] as a witness element while spending an
1144    /// output via script path. This serialization does not include the [`crate::VarInt`] prefix that would
1145    /// be applied when encoding this element as a witness.
1146    pub fn serialize(&self) -> Vec<u8> {
1147        let mut buf = Vec::with_capacity(self.size());
1148        self.encode(&mut buf).expect("writers don't error");
1149        buf
1150    }
1151
1152    /// Verifies that a control block is correct proof for a given output key and script.
1153    ///
1154    /// Only checks that script is contained inside the taptree described by output key. Full
1155    /// verification must also execute the script with witness data.
1156    pub fn verify_taproot_commitment<C: secp256k1::Verification>(
1157        &self,
1158        secp: &Secp256k1<C>,
1159        output_key: XOnlyPublicKey,
1160        script: &Script,
1161    ) -> bool {
1162        // compute the script hash
1163        // Initially the curr_hash is the leaf hash
1164        let mut curr_hash = TapNodeHash::from_script(script, self.leaf_version);
1165        // Verify the proof
1166        for elem in &self.merkle_branch {
1167            // Recalculate the curr hash as parent hash
1168            curr_hash = TapNodeHash::from_node_hashes(curr_hash, *elem);
1169        }
1170        // compute the taptweak
1171        let tweak =
1172            TapTweakHash::from_key_and_tweak(self.internal_key, Some(curr_hash)).to_scalar();
1173        self.internal_key.tweak_add_check(secp, &output_key, self.output_key_parity, tweak)
1174    }
1175}
1176
1177/// Inner type representing future (non-tapscript) leaf versions. See [`LeafVersion::Future`].
1178///
1179/// NB: NO PUBLIC CONSTRUCTOR!
1180/// The only way to construct this is by converting `u8` to [`LeafVersion`] and then extracting it.
1181#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
1182pub struct FutureLeafVersion(u8);
1183
1184impl FutureLeafVersion {
1185    pub(self) fn from_consensus(version: u8) -> Result<FutureLeafVersion, TaprootError> {
1186        match version {
1187            TAPROOT_LEAF_TAPSCRIPT => unreachable!(
1188                "FutureLeafVersion::from_consensus should be never called for 0xC0 value"
1189            ),
1190            TAPROOT_ANNEX_PREFIX =>
1191                Err(TaprootError::InvalidTaprootLeafVersion(TAPROOT_ANNEX_PREFIX)),
1192            odd if odd & 0xFE != odd => Err(TaprootError::InvalidTaprootLeafVersion(odd)),
1193            even => Ok(FutureLeafVersion(even)),
1194        }
1195    }
1196
1197    /// Returns the consensus representation of this [`FutureLeafVersion`].
1198    #[inline]
1199    pub fn to_consensus(self) -> u8 { self.0 }
1200}
1201
1202impl fmt::Display for FutureLeafVersion {
1203    #[inline]
1204    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fmt::Display::fmt(&self.0, f) }
1205}
1206
1207impl fmt::LowerHex for FutureLeafVersion {
1208    #[inline]
1209    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fmt::LowerHex::fmt(&self.0, f) }
1210}
1211
1212impl fmt::UpperHex for FutureLeafVersion {
1213    #[inline]
1214    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fmt::UpperHex::fmt(&self.0, f) }
1215}
1216
1217/// The leaf version for tapleafs.
1218#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1219pub enum LeafVersion {
1220    /// BIP-342 tapscript.
1221    TapScript,
1222
1223    /// Future leaf version.
1224    Future(FutureLeafVersion),
1225}
1226
1227impl LeafVersion {
1228    /// Creates a [`LeafVersion`] from consensus byte representation.
1229    ///
1230    /// # Errors
1231    ///
1232    /// - If the last bit of the `version` is odd.
1233    /// - If the `version` is 0x50 ([`TAPROOT_ANNEX_PREFIX`]).
1234    pub fn from_consensus(version: u8) -> Result<Self, TaprootError> {
1235        match version {
1236            TAPROOT_LEAF_TAPSCRIPT => Ok(LeafVersion::TapScript),
1237            TAPROOT_ANNEX_PREFIX =>
1238                Err(TaprootError::InvalidTaprootLeafVersion(TAPROOT_ANNEX_PREFIX)),
1239            future => FutureLeafVersion::from_consensus(future).map(LeafVersion::Future),
1240        }
1241    }
1242
1243    /// Returns the consensus representation of this [`LeafVersion`].
1244    pub fn to_consensus(self) -> u8 {
1245        match self {
1246            LeafVersion::TapScript => TAPROOT_LEAF_TAPSCRIPT,
1247            LeafVersion::Future(version) => version.to_consensus(),
1248        }
1249    }
1250}
1251
1252impl fmt::Display for LeafVersion {
1253    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1254        match (self, f.alternate()) {
1255            (LeafVersion::TapScript, true) => f.write_str("tapscript"),
1256            (LeafVersion::TapScript, false) => fmt::Display::fmt(&TAPROOT_LEAF_TAPSCRIPT, f),
1257            (LeafVersion::Future(version), true) => write!(f, "future_script_{:#02x}", version.0),
1258            (LeafVersion::Future(version), false) => fmt::Display::fmt(version, f),
1259        }
1260    }
1261}
1262
1263impl fmt::LowerHex for LeafVersion {
1264    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1265        fmt::LowerHex::fmt(&self.to_consensus(), f)
1266    }
1267}
1268
1269impl fmt::UpperHex for LeafVersion {
1270    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1271        fmt::UpperHex::fmt(&self.to_consensus(), f)
1272    }
1273}
1274
1275/// Serializes [`LeafVersion`] as a `u8` using consensus encoding.
1276#[cfg(feature = "serde")]
1277impl serde::Serialize for LeafVersion {
1278    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
1279    where
1280        S: serde::Serializer,
1281    {
1282        serializer.serialize_u8(self.to_consensus())
1283    }
1284}
1285
1286/// Deserializes [`LeafVersion`] as a `u8` using consensus encoding.
1287#[cfg(feature = "serde")]
1288impl<'de> serde::Deserialize<'de> for LeafVersion {
1289    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
1290    where
1291        D: serde::Deserializer<'de>,
1292    {
1293        struct U8Visitor;
1294        impl<'de> serde::de::Visitor<'de> for U8Visitor {
1295            type Value = LeafVersion;
1296
1297            fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
1298                formatter.write_str("a valid consensus-encoded taproot leaf version")
1299            }
1300
1301            fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
1302            where
1303                E: serde::de::Error,
1304            {
1305                let value = u8::try_from(value).map_err(|_| {
1306                    E::invalid_value(
1307                        serde::de::Unexpected::Unsigned(value),
1308                        &"consensus-encoded leaf version as u8",
1309                    )
1310                })?;
1311                LeafVersion::from_consensus(value).map_err(|_| {
1312                    E::invalid_value(
1313                        ::serde::de::Unexpected::Unsigned(value as u64),
1314                        &"consensus-encoded leaf version as u8",
1315                    )
1316                })
1317            }
1318        }
1319
1320        deserializer.deserialize_u8(U8Visitor)
1321    }
1322}
1323
1324/// Detailed error type for taproot builder.
1325#[derive(Debug, Clone, PartialEq, Eq)]
1326#[non_exhaustive]
1327pub enum TaprootBuilderError {
1328    /// Merkle tree depth must not be more than 128.
1329    InvalidMerkleTreeDepth(usize),
1330    /// Nodes must be added specified in DFS walk order.
1331    NodeNotInDfsOrder,
1332    /// Two nodes at depth 0 are not allowed.
1333    OverCompleteTree,
1334    /// Invalid taproot internal key.
1335    InvalidInternalKey(secp256k1::Error),
1336    /// Called finalize on a empty tree.
1337    EmptyTree,
1338}
1339
1340internals::impl_from_infallible!(TaprootBuilderError);
1341
1342impl fmt::Display for TaprootBuilderError {
1343    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1344        use TaprootBuilderError::*;
1345
1346        match *self {
1347            InvalidMerkleTreeDepth(d) => {
1348                write!(
1349                    f,
1350                    "Merkle Tree depth({}) must be less than {}",
1351                    d, TAPROOT_CONTROL_MAX_NODE_COUNT
1352                )
1353            }
1354            NodeNotInDfsOrder => {
1355                write!(f, "add_leaf/add_hidden must be called in DFS walk order",)
1356            }
1357            OverCompleteTree => write!(
1358                f,
1359                "Attempted to create a tree with two nodes at depth 0. There must\
1360                only be a exactly one node at depth 0",
1361            ),
1362            InvalidInternalKey(ref e) => {
1363                write_err!(f, "invalid internal x-only key"; e)
1364            }
1365            EmptyTree => {
1366                write!(f, "Called finalize on an empty tree")
1367            }
1368        }
1369    }
1370}
1371
1372#[cfg(feature = "std")]
1373impl std::error::Error for TaprootBuilderError {
1374    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
1375        use TaprootBuilderError::*;
1376
1377        match self {
1378            InvalidInternalKey(e) => Some(e),
1379            InvalidMerkleTreeDepth(_) | NodeNotInDfsOrder | OverCompleteTree | EmptyTree => None,
1380        }
1381    }
1382}
1383
1384/// Detailed error type for taproot utilities.
1385#[derive(Debug, Clone, PartialEq, Eq)]
1386#[non_exhaustive]
1387pub enum TaprootError {
1388    /// Proof size must be a multiple of 32.
1389    InvalidMerkleBranchSize(usize),
1390    /// Merkle tree depth must not be more than 128.
1391    InvalidMerkleTreeDepth(usize),
1392    /// The last bit of tapleaf version must be zero.
1393    InvalidTaprootLeafVersion(u8),
1394    /// Invalid control block size.
1395    InvalidControlBlockSize(usize),
1396    /// Invalid taproot internal key.
1397    InvalidInternalKey(secp256k1::Error),
1398    /// Empty tap tree.
1399    EmptyTree,
1400}
1401
1402internals::impl_from_infallible!(TaprootError);
1403
1404impl fmt::Display for TaprootError {
1405    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1406        use TaprootError::*;
1407
1408        match *self {
1409            InvalidMerkleBranchSize(sz) => write!(
1410                f,
1411                "Merkle branch size({}) must be a multiple of {}",
1412                sz, TAPROOT_CONTROL_NODE_SIZE
1413            ),
1414            InvalidMerkleTreeDepth(d) => write!(
1415                f,
1416                "Merkle Tree depth({}) must be less than {}",
1417                d, TAPROOT_CONTROL_MAX_NODE_COUNT
1418            ),
1419            InvalidTaprootLeafVersion(v) => {
1420                write!(f, "Leaf version({}) must have the least significant bit 0", v)
1421            }
1422            InvalidControlBlockSize(sz) => write!(
1423                f,
1424                "Control Block size({}) must be of the form 33 + 32*m where  0 <= m <= {} ",
1425                sz, TAPROOT_CONTROL_MAX_NODE_COUNT
1426            ),
1427            InvalidInternalKey(ref e) => {
1428                write_err!(f, "invalid internal x-only key"; e)
1429            }
1430            EmptyTree => write!(f, "Taproot Tree must contain at least one script"),
1431        }
1432    }
1433}
1434
1435#[cfg(feature = "std")]
1436impl std::error::Error for TaprootError {
1437    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
1438        use TaprootError::*;
1439
1440        match self {
1441            InvalidInternalKey(e) => Some(e),
1442            InvalidMerkleBranchSize(_)
1443            | InvalidMerkleTreeDepth(_)
1444            | InvalidTaprootLeafVersion(_)
1445            | InvalidControlBlockSize(_)
1446            | EmptyTree => None,
1447        }
1448    }
1449}
1450
1451#[cfg(test)]
1452mod test {
1453    use core::str::FromStr;
1454
1455    use hashes::sha256;
1456    use hashes::sha256t::Tag;
1457    use hex::FromHex;
1458    use secp256k1::VerifyOnly;
1459
1460    use super::*;
1461    use crate::sighash::{TapSighash, TapSighashTag};
1462    use crate::{Address, KnownHrp};
1463    extern crate serde_json;
1464
1465    #[cfg(feature = "serde")]
1466    use {
1467        hex::test_hex_unwrap as hex,
1468        serde_test::Configure,
1469        serde_test::{assert_tokens, Token},
1470    };
1471
1472    fn tag_engine(tag_name: &str) -> sha256::HashEngine {
1473        let mut engine = sha256::Hash::engine();
1474        let tag_hash = sha256::Hash::hash(tag_name.as_bytes());
1475        engine.input(tag_hash.as_ref());
1476        engine.input(tag_hash.as_ref());
1477        engine
1478    }
1479
1480    #[test]
1481    fn test_midstates() {
1482        // test that engine creation roundtrips
1483        assert_eq!(tag_engine("TapLeaf").midstate(), TapLeafTag::engine().midstate());
1484        assert_eq!(tag_engine("TapBranch").midstate(), TapBranchTag::engine().midstate());
1485        assert_eq!(tag_engine("TapTweak").midstate(), TapTweakTag::engine().midstate());
1486        assert_eq!(tag_engine("TapSighash").midstate(), TapSighashTag::engine().midstate());
1487
1488        // check that hash creation is the same as building into the same engine
1489        fn empty_hash(tag_name: &str) -> [u8; 32] {
1490            let mut e = tag_engine(tag_name);
1491            e.input(&[]);
1492            TapNodeHash::from_engine(e).to_byte_array()
1493        }
1494        assert_eq!(empty_hash("TapLeaf"), TapLeafHash::hash(&[]).to_byte_array());
1495        assert_eq!(empty_hash("TapBranch"), TapNodeHash::hash(&[]).to_byte_array());
1496        assert_eq!(empty_hash("TapTweak"), TapTweakHash::hash(&[]).to_byte_array());
1497        assert_eq!(empty_hash("TapSighash"), TapSighash::hash(&[]).to_byte_array());
1498    }
1499
1500    #[test]
1501    fn test_vectors_core() {
1502        //! Test vectors taken from Core
1503
1504        // uninitialized writers
1505        //   CHashWriter writer = HasherTapLeaf;
1506        //   writer.GetSHA256().GetHex()
1507        assert_eq!(
1508            TapLeafHash::from_engine(TapLeafTag::engine()).to_string(),
1509            "5212c288a377d1f8164962a5a13429f9ba6a7b84e59776a52c6637df2106facb"
1510        );
1511        assert_eq!(
1512            TapNodeHash::from_engine(TapBranchTag::engine()).to_string(),
1513            "53c373ec4d6f3c53c1f5fb2ff506dcefe1a0ed74874f93fa93c8214cbe9ffddf"
1514        );
1515        assert_eq!(
1516            TapTweakHash::from_engine(TapTweakTag::engine()).to_string(),
1517            "8aa4229474ab0100b2d6f0687f031d1fc9d8eef92a042ad97d279bff456b15e4"
1518        );
1519        assert_eq!(
1520            TapSighash::from_engine(TapSighashTag::engine()).to_string(),
1521            "dabc11914abcd8072900042a2681e52f8dba99ce82e224f97b5fdb7cd4b9c803"
1522        );
1523
1524        // 0-byte
1525        //   CHashWriter writer = HasherTapLeaf;
1526        //   writer << std::vector<unsigned char>{};
1527        //   writer.GetSHA256().GetHex()
1528        // Note that Core writes the 0 length prefix when an empty vector is written.
1529        assert_eq!(
1530            TapLeafHash::hash(&[0]).to_string(),
1531            "ed1382037800c9dd938dd8854f1a8863bcdeb6705069b4b56a66ec22519d5829"
1532        );
1533        assert_eq!(
1534            TapNodeHash::hash(&[0]).to_string(),
1535            "92534b1960c7e6245af7d5fda2588db04aa6d646abc2b588dab2b69e5645eb1d"
1536        );
1537        assert_eq!(
1538            TapTweakHash::hash(&[0]).to_string(),
1539            "cd8737b5e6047fc3f16f03e8b9959e3440e1bdf6dd02f7bb899c352ad490ea1e"
1540        );
1541        assert_eq!(
1542            TapSighash::hash(&[0]).to_string(),
1543            "c2fd0de003889a09c4afcf676656a0d8a1fb706313ff7d509afb00c323c010cd"
1544        );
1545    }
1546
1547    fn _verify_tap_commitments(
1548        secp: &Secp256k1<VerifyOnly>,
1549        out_spk_hex: &str,
1550        script_hex: &str,
1551        control_block_hex: &str,
1552    ) {
1553        let out_pk = XOnlyPublicKey::from_str(&out_spk_hex[4..]).unwrap();
1554        let out_pk = TweakedPublicKey::dangerous_assume_tweaked(out_pk);
1555        let script = ScriptBuf::from_hex(script_hex).unwrap();
1556        let control_block =
1557            ControlBlock::decode(&Vec::<u8>::from_hex(control_block_hex).unwrap()).unwrap();
1558        assert_eq!(control_block_hex, control_block.serialize().to_lower_hex_string());
1559        assert!(control_block.verify_taproot_commitment(secp, out_pk.to_x_only_public_key(), &script));
1560    }
1561
1562    #[test]
1563    fn control_block_verify() {
1564        let secp = Secp256k1::verification_only();
1565        // test vectors obtained from printing values in feature_taproot.py from Bitcoin Core
1566        _verify_tap_commitments(&secp, "51205dc8e62b15e0ebdf44751676be35ba32eed2e84608b290d4061bbff136cd7ba9", "6a", "c1a9d6f66cd4b25004f526bfa873e56942f98e8e492bd79ed6532b966104817c2bda584e7d32612381cf88edc1c02e28a296e807c16ad22f591ee113946e48a71e0641e660d1e5392fb79d64838c2b84faf04b7f5f283c9d8bf83e39e177b64372a0cd22eeab7e093873e851e247714eff762d8a30be699ba4456cfe6491b282e193a071350ae099005a5950d74f73ba13077a57bc478007fb0e4d1099ce9cf3d4");
1567        _verify_tap_commitments(&secp, "5120e208c869c40d8827101c5ad3238018de0f3f5183d77a0c53d18ac28ddcbcd8ad", "f4", "c0a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f40090ab1f4890d51115998242ebce636efb9ede1b516d9eb8952dc1068e0335306199aaf103cceb41d9bc37ec231aca89b984b5fd3c65977ce764d51033ac65adb4da14e029b1e154a85bfd9139e7aa2720b6070a4ceba8264ca61d5d3ac27aceb9ef4b54cd43c2d1fd5e11b5c2e93cf29b91ea3dc5b832201f02f7473a28c63246");
1568        _verify_tap_commitments(
1569            &secp,
1570            "5120567666e7df90e0450bb608e17c01ed3fbcfa5355a5f8273e34e583bfaa70ce09",
1571            "203455139bf238a3067bd72ed77e0ab8db590330f55ed58dba7366b53bf4734279ac",
1572            "c1a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f400",
1573        );
1574        _verify_tap_commitments(&secp, "5120580a19e47269414a55eb86d5d0c6c9b371455d9fd2154412a57dec840df99fe1", "6a", "bca0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f40042ba1bd1c63c03ccff60d4c4d53a653f87909eb3358e7fa45c9d805231fb08c933e1f4e0f9d17f591df1419df7d5b7eb5f744f404c5ef9ecdb1b89b18cafa3a816d8b5dba3205f9a9c05f866d91f40d2793a7586d502cb42f46c7a11f66ad4aa");
1575        _verify_tap_commitments(&secp, "5120228b94a4806254a38d6efa8a134c28ebc89546209559dfe40b2b0493bafacc5b", "6a50", "c0a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f4009c9aed3dfd11ab0e78bf87ef3bf296269dc4b0f7712140386d6980992bab4b45");
1576        _verify_tap_commitments(
1577            &secp,
1578            "5120567666e7df90e0450bb608e17c01ed3fbcfa5355a5f8273e34e583bfaa70ce09",
1579            "203455139bf238a3067bd72ed77e0ab8db590330f55ed58dba7366b53bf4734279ac",
1580            "c1a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f400",
1581        );
1582        _verify_tap_commitments(
1583            &secp,
1584            "5120b0a79103c31fe51eea61d2873bad8a25a310da319d7e7a85f825fa7a00ea3f85",
1585            "203455139bf238a3067bd72ed77e0ab8db590330f55ed58dba7366b53bf4734279ad51",
1586            "c1a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f400",
1587        );
1588        _verify_tap_commitments(&secp, "5120f2f62e854a0012aeba78cd4ba4a0832447a5262d4c6eb4f1c95c7914b536fc6c", "6a86", "c1a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f4009ad3d30479f0689dbdf59a6b840d60ad485b2effbed1825a75ce19a44e460e09056f60ea686d79cfa4fb79f197b2e905ac857a983be4a5a41a4873e865aa950780c0237de279dc063e67deec46ef8e1bc351bf12c4d67a6d568001faf097e797e6ee620f53cfe0f8acaddf2063c39c3577853bb46d61ffcba5a024c3e1216837");
1589        _verify_tap_commitments(&secp, "51202a4772070b49bae68b44315032cdbf9c40c7c2f896781b32b931b73dbfb26d7e", "6af8", "c0a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f4006f183944a14618fc7fe9ceade0f58e43a19d3c3b179ea6c43c29616413b6971c99aaf103cceb41d9bc37ec231aca89b984b5fd3c65977ce764d51033ac65adb4c3462adec78cd04f3cc156bdadec50def99feae0dc6a23664e8a2b0d42d6ca9eb968dfdf46c23af642b2688351904e0a0630e71ffac5bcaba33b9b2c8a7495ec");
1590        _verify_tap_commitments(&secp, "5120a32b0b8cfafe0f0f8d5870030ba4d19a8725ad345cb3c8420f86ac4e0dff6207", "4c", "e8a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f400615da7ac8d078e5fc7f4690fc2127ba40f0f97cc070ade5b3a7919783d91ef3f13734aab908ae998e57848a01268fe8217d70bc3ee8ea8ceae158ae964a4b5f3af20b50d7019bf47fde210eee5c52f1cfe71cfca78f2d3e7c1fd828c80351525");
1591        _verify_tap_commitments(
1592            &secp,
1593            "5120b0a79103c31fe51eea61d2873bad8a25a310da319d7e7a85f825fa7a00ea3f85",
1594            "203455139bf238a3067bd72ed77e0ab8db590330f55ed58dba7366b53bf4734279ad51",
1595            "c1a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f400",
1596        );
1597        _verify_tap_commitments(&secp, "51208678459f1fa0f80e9b89b8ffdcaf46a022bdf60aa45f1fed9a96145edf4ec400", "6a50", "c0a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f4001eff29e1a89e650076b8d3c56302881d09c9df215774ed99993aaed14acd6615");
1598        _verify_tap_commitments(&secp, "5120017316303aed02bcdec424c851c9eacbe192b013139bd9634c4e19b3475b06e1", "61", "02a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f40050462265ca552b23cbb4fe021b474313c8cb87d4a18b3f7bdbeb2b418279ba31fc6509d829cd42336f563363cb3538d78758e0876c71e13012eb2b656eb0edb051a2420a840d5c8c6c762abc7410af2c311f606b20ca2ace56a8139f84b1379a");
1599        _verify_tap_commitments(&secp, "5120896d4d5d2236e86c6e9320e86d1a7822e652907cbd508360e8c71aefc127c77d", "61", "14a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f4001ab0e9d9a4858a0e69605fe9c5a42d739fbe26fa79650e7074f462b02645f7ea1c91802b298cd91e6b5af57c6a013d93397cd2ecbd5569382cc27becf44ff4fff8960b20f846160c159c58350f6b6072cf1b3daa5185b7a42524fb72cbc252576ae46732b8e31ac24bfa7d72f4c3713e8696f99d8ac6c07e4c820a03f249f144");
1600        _verify_tap_commitments(&secp, "512093c7378d96518a75448821c4f7c8f4bae7ce60f804d03d1f0628dd5dd0f5de51", "04ffffffff203455139bf238a3067bd72ed77e0ab8db590330f55ed58dba7366b53bf4734279ba04feffffff87ab", "c1a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f400c9a5cd1f6c8a81f5648e39f9810591df1c9a8f1fe97c92e03ecd7c0c016c951983e05473c6e8238cb4c780ea2ce62552b2a3eee068ceffc00517cd7b97e10dad");
1601        _verify_tap_commitments(&secp, "5120b28d75a7179de6feb66b8bb0bfa2b2c739d1a41cf7366a1b393804a844db8a28", "61", "c4a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f400eebc95ded88fb8050094e8dfa958c3be0894eaff0fafae678206b26918d8d7ac47039d40fe34d04b4155df7f1be7f2a49253c7e87812ea9e569e683ac27459e652d6503aa32d64734d00adfee8798b2eed28858abf3bd038e8fa58eb7df4a2d9");
1602        _verify_tap_commitments(&secp, "512043e4aa733fc6f43c78a31c2b3c192623acf5cc8c01199ebcc4de88067baca83e", "bd4c", "c1a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f4003f7be6f8848b5bddf332c4d7bd83077f73701e2479f70e02b5730e841234d082b8b41ebea96ffd937715d9faeaa6895e6ef3b22919c554b75df12b3371d328023e443d1df50634ecc1cd169803a1e546f0d44304d8fc5056c408e597fed469b8437d6660eaad3cf72e35ba6e5ff7ddd5e293c1e7e813c871df4f46508e9946ec");
1603        _verify_tap_commitments(&secp, "5120ee9aecb28f5f35ce1f8b5ec80275ac0f81bca4a21b29b4632fb4bcbef8823e6a", "2021a5981b13be29c9d4ea179ea44a8b773ea8c02d68f6f6eefd98de20d4bd055fac", "c13359c284c196b6e80f0cf1d93b6a397cf7ee722f0427b705bd954b88ada8838bd2622fd0e104fc50aa763b43c6a792d7d117029983abd687223b4344a9402c618bba7f5fc3fa8a57491f6842acde88c1e675ca35caea3b1a69ee2c2d9b10f615");
1604        _verify_tap_commitments(&secp, "5120885274df2252b44764dcef53c21f21154e8488b7e79fafbc96b9ebb22ad0200d", "6a50", "c1a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f4000793597254158918e3369507f2d6fdbef17d18b1028bbb0719450ded0f42c58f");
1605        _verify_tap_commitments(&secp, "512066f6f6f91d47674d198a28388e1eb05ec24e6ddbba10f16396b1a80c08675121", "6a50", "c1a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f400fe92aff70a2e8e2a4f34a913b99612468a41e0f8ecaff9a729a173d11013c27e");
1606        _verify_tap_commitments(&secp, "5120868ed9307bd4637491ff03e3aa2c216a08fe213cac8b6cedbb9ab31dbfa6512c", "61", "a2a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f400da584e7d32612381cf88edc1c02e28a296e807c16ad22f591ee113946e48a71e46c7eccffefd2d573ec014130e508f0c9963ccebd7830409f7b1b1301725e9fa759d4ef857ec8e0bb42d6d31609d3c7e77de3bfa28c38f93393a6ddbabe819ec560ed4f061fbe742a5fd2a648d5209469420434c8753da3fa7067cc2bb4c172a");
1607        _verify_tap_commitments(&secp, "5120c1a00a9baa82888fd7d30291135a7eaa9e9966a5f16db2b10460572f8b108d8d", "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "5ba0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f4007960d7b37dd1361aee34510e77acb4d27ddca17648a17e28475032538c1eb500f5a747f2c0893f79fe153ae918ac3d696de9322aa679aae62051ff5ed83aa502b338bd907346abd4cd9cf06117cb35d55a5a8dd950843522f8de7b5c7fba1804c38b0778d3d76b383f6db6fdf9d6e770da8fffbfa5152c0b8b38129885bcdee6");
1608        _verify_tap_commitments(&secp, "5120bb9abeff7286b76dfc61800c548fe2621ff47506e47201a85c543b4a9a96fead", "75203455139bf238a3067bd72ed77e0ab8db590330f55ed58dba7366b53bf47342796ead6ead6ead6ead6ead6ead6ead6ead6ead6ead6ead6ead6eadac", "c0a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f4003eb5cdc419e0a6a800f34583ce750f387be34879c26f4230991bd61da743ad9d34d288e79397b709ac22ad8cc57645d593af3e15b97a876362117177ab2519c000000000000000000000000000000000000000000000000000000000000000007160c3a48c8b17bc3aeaf01db9e0a96ac47a5a9fa329e046856e7765e89c8a93ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff07feb9aa7cd72c78e66a85414cd19289f8b0ab1415013dc2a007666aa9248ec1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001fccc8bea662a9442a94f7ba0643c1d7ee7cc689f3b3506b7c8c99fd3f3b3d7772972dcdf2550cf95b65098aea67f72fef10abdcf1cef9815af8f4c4644b060e0000000000000000000000000000000000000000000000000000000000000000");
1609        _verify_tap_commitments(&secp, "5120afddc189ea51094b4cbf463806792e9c8b35dfdc5e01228c78376380d0046b00", "4d09024747703eb9f759ce5ecd839109fecc40974ab16f5173ea390daaa5a78f7abe898165c90990062af998c5dc7989818393158a2c62b7ece727e7f5400d2efd33db8732599f6d1dce6b5b68d2d47317f2de6c9df118f61227f98453225036618aaf058140f2415d134fa69ba041c724ad81387f8c568d12ddc49eb32a71532096181b3f85fd465b8e9a176bb19f45c070baad47a2cc4505414b88c31cb5b0a192b2d2d56c404a37070b04d42c875c4ac351224f5b254f9ad0b820f43cad292d6565f796bf083173e14723f1e543c85a61689ddd5cb6666b240c15c38ce3320bf0c3be9e0322e5ef72366c294d3a2d7e8b8e7db875e7ae814537554f10b91c72b8b413e026bd5d5e917de4b54fa8f43f38771a7f242aa32dcb7ca1b0588dbf54af7ab9455047fbb894cdfdd242166db784276430eb47d4df092a6b8cb160eb982fe7d14a44283bdb4a9861ca65c06fd8b2546cfbfe38bc77f527de1b9bfd2c95a3e283b7b1d1d2b2fa291256a90a7003aefcef47ceabf113865a494af43e96a38b0b00919855eb7722ea2363e0ddfc9c51c08631d01e2a2d56e786b4ff6f1e5d415facc9c2619c285d9ad43001878294157cb025f639fb954271fd1d6173f6bc16535672f6abdd72b0284b4ff3eaf5b7247719d7c39365622610efae6562bef6e08a0b370fba75bb04dbdb90a482d8417e057f8bd021ea6ac32d0d48b08be9f77833b11e5e739960c9837d7583", "c0a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f400ff698adfda0327f188e2ee35f7aecc0f90c9138a350d450648d968c2b5dd7ef94ddd3ec418dc0d03ee4956feb708d838ed2b20e5a193465a6a1467fd3054e1ea141ea4c4c503a6271e19a090e2a69a24282e3be04c4f98720f7a0eb274d9693d13a8e3c139aa625fa2aefd09854570527f9ac545bda1b689719f5cb715612c07");
1610        _verify_tap_commitments(&secp, "5120afddc189ea51094b4cbf463806792e9c8b35dfdc5e01228c78376380d0046b00", "83", "c0a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f4007388cda01113397d4cd00bcfbd08fd68c3cfe3a42cbfe3a7651c1d5e6dacf1ad99aaf103cceb41d9bc37ec231aca89b984b5fd3c65977ce764d51033ac65adb4b59764bec92507e4a4c3f01a06f05980163ca10f1c549bfe01f85fa4f109a1295e607f5ed9f1008048474de336f11f67a1fbf2012f58944dede0ab19a3ca81f5");
1611        _verify_tap_commitments(&secp, "512093c7378d96518a75448821c4f7c8f4bae7ce60f804d03d1f0628dd5dd0f5de51", "04ffffffff203455139bf238a3067bd72ed77e0ab8db590330f55ed58dba7366b53bf4734279ba04feffffff87ab", "c1a0eb12e60a52614986c623cbb6621dcdba3a47e3be6b37e032b7a11c7b98f400c9a5cd1f6c8a81f5648e39f9810591df1c9a8f1fe97c92e03ecd7c0c016c951983e05473c6e8238cb4c780ea2ce62552b2a3eee068ceffc00517cd7b97e10dad");
1612    }
1613
1614    #[test]
1615    fn build_huffman_tree() {
1616        let secp = Secp256k1::verification_only();
1617        let internal_key = UntweakedPublicKey::from_str(
1618            "93c7378d96518a75448821c4f7c8f4bae7ce60f804d03d1f0628dd5dd0f5de51",
1619        )
1620        .unwrap();
1621
1622        let script_weights = vec![
1623            (10, ScriptBuf::from_hex("51").unwrap()), // semantics of script don't matter for this test
1624            (20, ScriptBuf::from_hex("52").unwrap()),
1625            (20, ScriptBuf::from_hex("53").unwrap()),
1626            (30, ScriptBuf::from_hex("54").unwrap()),
1627            (19, ScriptBuf::from_hex("55").unwrap()),
1628        ];
1629        let tree_info =
1630            TaprootSpendInfo::with_huffman_tree(&secp, internal_key, script_weights.clone())
1631                .unwrap();
1632
1633        /* The resulting tree should put the scripts into a tree similar
1634         * to the following:
1635         *
1636         *   1      __/\__
1637         *         /      \
1638         *        /\     / \
1639         *   2   54 52  53 /\
1640         *   3            55 51
1641         */
1642
1643        for (script, length) in [("51", 3), ("52", 2), ("53", 2), ("54", 2), ("55", 3)].iter() {
1644            assert_eq!(
1645                *length,
1646                tree_info
1647                    .script_map
1648                    .get(&(ScriptBuf::from_hex(script).unwrap(), LeafVersion::TapScript))
1649                    .expect("Present Key")
1650                    .iter()
1651                    .next()
1652                    .expect("Present Path")
1653                    .len()
1654            );
1655        }
1656
1657        // Obtain the output key
1658        let output_key = tree_info.output_key();
1659
1660        // Try to create and verify a control block from each path
1661        for (_weights, script) in script_weights {
1662            let ver_script = (script, LeafVersion::TapScript);
1663            let ctrl_block = tree_info.control_block(&ver_script).unwrap();
1664            assert!(ctrl_block.verify_taproot_commitment(
1665                &secp,
1666                output_key.to_x_only_public_key(),
1667                &ver_script.0
1668            ))
1669        }
1670    }
1671
1672    #[test]
1673    fn taptree_builder() {
1674        let secp = Secp256k1::verification_only();
1675        let internal_key = UntweakedPublicKey::from_str(
1676            "93c7378d96518a75448821c4f7c8f4bae7ce60f804d03d1f0628dd5dd0f5de51",
1677        )
1678        .unwrap();
1679
1680        let builder = TaprootBuilder::new();
1681        // Create a tree as shown below
1682        // For example, imagine this tree:
1683        // A, B , C are at depth 2 and D,E are at 3
1684        //                                       ....
1685        //                                     /      \
1686        //                                    /\      /\
1687        //                                   /  \    /  \
1688        //                                  A    B  C  / \
1689        //                                            D   E
1690        let a = ScriptBuf::from_hex("51").unwrap();
1691        let b = ScriptBuf::from_hex("52").unwrap();
1692        let c = ScriptBuf::from_hex("53").unwrap();
1693        let d = ScriptBuf::from_hex("54").unwrap();
1694        let e = ScriptBuf::from_hex("55").unwrap();
1695        let builder = builder.add_leaf(2, a.clone()).unwrap();
1696        let builder = builder.add_leaf(2, b.clone()).unwrap();
1697        let builder = builder.add_leaf(2, c.clone()).unwrap();
1698        let builder = builder.add_leaf(3, d.clone()).unwrap();
1699
1700        // Trying to finalize an incomplete tree returns the Err(builder)
1701        let builder = builder.finalize(&secp, internal_key).unwrap_err();
1702        let builder = builder.add_leaf(3, e.clone()).unwrap();
1703
1704        #[cfg(feature = "serde")]
1705        {
1706            let tree = TapTree::try_from(builder.clone()).unwrap();
1707            // test roundtrip serialization with serde_test
1708            #[rustfmt::skip]
1709            assert_tokens(&tree.readable(), &[
1710                Token::Seq { len: Some(10) },
1711                Token::U64(2), Token::TupleVariant { name: "TapLeaf", variant: "Script", len: 2}, Token::Str("51"), Token::U8(192), Token::TupleVariantEnd,
1712                Token::U64(2), Token::TupleVariant { name: "TapLeaf", variant: "Script", len: 2}, Token::Str("52"), Token::U8(192), Token::TupleVariantEnd,
1713                Token::U64(3), Token::TupleVariant { name: "TapLeaf", variant: "Script", len: 2}, Token::Str("55"), Token::U8(192), Token::TupleVariantEnd,
1714                Token::U64(3), Token::TupleVariant { name: "TapLeaf", variant: "Script", len: 2}, Token::Str("54"), Token::U8(192), Token::TupleVariantEnd,
1715                Token::U64(2), Token::TupleVariant { name: "TapLeaf", variant: "Script", len: 2}, Token::Str("53"), Token::U8(192), Token::TupleVariantEnd,
1716                Token::SeqEnd,
1717            ],);
1718
1719            let node_info = TapTree::try_from(builder.clone()).unwrap().into_node_info();
1720            // test roundtrip serialization with serde_test
1721            #[rustfmt::skip]
1722            assert_tokens(&node_info.readable(), &[
1723                Token::Seq { len: Some(10) },
1724                Token::U64(2), Token::TupleVariant { name: "TapLeaf", variant: "Script", len: 2}, Token::Str("51"), Token::U8(192), Token::TupleVariantEnd,
1725                Token::U64(2), Token::TupleVariant { name: "TapLeaf", variant: "Script", len: 2}, Token::Str("52"), Token::U8(192), Token::TupleVariantEnd,
1726                Token::U64(3), Token::TupleVariant { name: "TapLeaf", variant: "Script", len: 2}, Token::Str("55"), Token::U8(192), Token::TupleVariantEnd,
1727                Token::U64(3), Token::TupleVariant { name: "TapLeaf", variant: "Script", len: 2}, Token::Str("54"), Token::U8(192), Token::TupleVariantEnd,
1728                Token::U64(2), Token::TupleVariant { name: "TapLeaf", variant: "Script", len: 2}, Token::Str("53"), Token::U8(192), Token::TupleVariantEnd,
1729                Token::SeqEnd,
1730            ],);
1731        }
1732
1733        let tree_info = builder.finalize(&secp, internal_key).unwrap();
1734        let output_key = tree_info.output_key();
1735
1736        for script in [a, b, c, d, e] {
1737            let ver_script = (script, LeafVersion::TapScript);
1738            let ctrl_block = tree_info.control_block(&ver_script).unwrap();
1739            assert!(ctrl_block.verify_taproot_commitment(
1740                &secp,
1741                output_key.to_x_only_public_key(),
1742                &ver_script.0
1743            ))
1744        }
1745    }
1746
1747    #[test]
1748    #[cfg(feature = "serde")]
1749    fn test_leaf_version_serde() {
1750        let leaf_version = LeafVersion::TapScript;
1751        // use serde_test to test serialization and deserialization
1752        assert_tokens(&leaf_version, &[Token::U8(192)]);
1753
1754        let json = serde_json::to_string(&leaf_version).unwrap();
1755        let leaf_version2 = serde_json::from_str(&json).unwrap();
1756        assert_eq!(leaf_version, leaf_version2);
1757    }
1758
1759    #[test]
1760    #[cfg(feature = "serde")]
1761    fn test_merkle_branch_serde() {
1762        let dummy_hash = hex!("03ba2a4dcd914fed29a1c630c7e811271b081a0e2f2f52cf1c197583dfd46c1b");
1763        let hash1 = TapNodeHash::from_slice(&dummy_hash).unwrap();
1764        let dummy_hash = hex!("8d79dedc2fa0b55167b5d28c61dbad9ce1191a433f3a1a6c8ee291631b2c94c9");
1765        let hash2 = TapNodeHash::from_slice(&dummy_hash).unwrap();
1766        let merkle_branch = TaprootMerkleBranch::from([hash1, hash2]);
1767        // use serde_test to test serialization and deserialization
1768        serde_test::assert_tokens(
1769            &merkle_branch.readable(),
1770            &[
1771                Token::Seq { len: Some(2) },
1772                Token::Str("03ba2a4dcd914fed29a1c630c7e811271b081a0e2f2f52cf1c197583dfd46c1b"),
1773                Token::Str("8d79dedc2fa0b55167b5d28c61dbad9ce1191a433f3a1a6c8ee291631b2c94c9"),
1774                Token::SeqEnd,
1775            ],
1776        );
1777    }
1778
1779    #[test]
1780    fn bip_341_tests() {
1781        fn process_script_trees(
1782            v: &serde_json::Value,
1783            mut builder: TaprootBuilder,
1784            leaves: &mut Vec<(ScriptBuf, LeafVersion)>,
1785            depth: u8,
1786        ) -> TaprootBuilder {
1787            if v.is_null() {
1788                // nothing to push
1789            } else if v.is_array() {
1790                for leaf in v.as_array().unwrap() {
1791                    builder = process_script_trees(leaf, builder, leaves, depth + 1);
1792                }
1793            } else {
1794                let script = ScriptBuf::from_hex(v["script"].as_str().unwrap()).unwrap();
1795                let ver =
1796                    LeafVersion::from_consensus(v["leafVersion"].as_u64().unwrap() as u8).unwrap();
1797                leaves.push((script.clone(), ver));
1798                builder = builder.add_leaf_with_ver(depth, script, ver).unwrap();
1799            }
1800            builder
1801        }
1802
1803        let data = bip_341_read_json();
1804        // Check the version of data
1805        assert!(data["version"] == 1);
1806        let secp = &secp256k1::Secp256k1::verification_only();
1807
1808        for arr in data["scriptPubKey"].as_array().unwrap() {
1809            let internal_key =
1810                XOnlyPublicKey::from_str(arr["given"]["internalPubkey"].as_str().unwrap()).unwrap();
1811            // process the tree
1812            let script_tree = &arr["given"]["scriptTree"];
1813            let mut merkle_root = None;
1814            if script_tree.is_null() {
1815                assert!(arr["intermediary"]["merkleRoot"].is_null());
1816            } else {
1817                merkle_root = Some(
1818                    TapNodeHash::from_str(arr["intermediary"]["merkleRoot"].as_str().unwrap())
1819                        .unwrap(),
1820                );
1821                let leaf_hashes = arr["intermediary"]["leafHashes"].as_array().unwrap();
1822                let ctrl_blks = arr["expected"]["scriptPathControlBlocks"].as_array().unwrap();
1823                let mut builder = TaprootBuilder::new();
1824                let mut leaves = vec![];
1825                builder = process_script_trees(script_tree, builder, &mut leaves, 0);
1826                let spend_info = builder.finalize(secp, internal_key).unwrap();
1827                for (i, script_ver) in leaves.iter().enumerate() {
1828                    let expected_leaf_hash = leaf_hashes[i].as_str().unwrap();
1829                    let expected_ctrl_blk = ControlBlock::decode(
1830                        &Vec::<u8>::from_hex(ctrl_blks[i].as_str().unwrap()).unwrap(),
1831                    )
1832                    .unwrap();
1833
1834                    let leaf_hash = TapLeafHash::from_script(&script_ver.0, script_ver.1);
1835                    let ctrl_blk = spend_info.control_block(script_ver).unwrap();
1836                    assert_eq!(leaf_hash.to_string(), expected_leaf_hash);
1837                    assert_eq!(ctrl_blk, expected_ctrl_blk);
1838                }
1839            }
1840            let expected_output_key =
1841                XOnlyPublicKey::from_str(arr["intermediary"]["tweakedPubkey"].as_str().unwrap())
1842                    .unwrap();
1843            let expected_tweak =
1844                TapTweakHash::from_str(arr["intermediary"]["tweak"].as_str().unwrap()).unwrap();
1845            let expected_spk =
1846                ScriptBuf::from_hex(arr["expected"]["scriptPubKey"].as_str().unwrap()).unwrap();
1847            let expected_addr =
1848                Address::from_str(arr["expected"]["bip350Address"].as_str().unwrap())
1849                    .unwrap()
1850                    .assume_checked();
1851
1852            let tweak = TapTweakHash::from_key_and_tweak(internal_key, merkle_root);
1853            let (output_key, _parity) = internal_key.tap_tweak(secp, merkle_root);
1854            let addr = Address::p2tr(secp, internal_key, merkle_root, KnownHrp::Mainnet);
1855            let spk = addr.script_pubkey();
1856
1857            assert_eq!(expected_output_key, output_key.to_x_only_public_key());
1858            assert_eq!(expected_tweak, tweak);
1859            assert_eq!(expected_addr, addr);
1860            assert_eq!(expected_spk, spk);
1861        }
1862    }
1863
1864    fn bip_341_read_json() -> serde_json::Value {
1865        let json_str = include_str!("../../tests/data/bip341_tests.json");
1866        serde_json::from_str(json_str).expect("JSON was not well-formatted")
1867    }
1868}