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