@@ -20,6 +20,7 @@ use crate::{hash256, MiniscriptKey, ToPublicKey};
20
20
21
21
type DescriptorSinglePublicKey = SinglePub ;
22
22
type DescriptorExtendedPublicKey = DescriptorXKey < bip32:: ExtendedPubKey > ;
23
+ type DescriptorMultiExtendedPublicKey = DescriptorMultiXKey < bip32:: ExtendedPubKey > ;
23
24
24
25
/// The descriptor pubkey, either a single pubkey or an xpub.
25
26
#[ derive( Debug , Eq , PartialEq , Clone , Ord , PartialOrd , Hash ) ]
@@ -29,7 +30,7 @@ pub enum DescriptorPublicKey {
29
30
/// Extended public key (xpub).
30
31
XPub ( DescriptorExtendedPublicKey ) ,
31
32
/// Multiple extended public keys.
32
- MultiXPub ( DescriptorMultiXKey < bip32 :: ExtendedPubKey > ) ,
33
+ MultiXPub ( DescriptorMultiExtendedPublicKey ) ,
33
34
}
34
35
35
36
/// The descriptor secret key, either a single private key or an xprv.
@@ -311,22 +312,26 @@ impl fmt::Display for DescriptorExtendedPublicKey {
311
312
}
312
313
}
313
314
315
+ impl fmt:: Display for DescriptorMultiExtendedPublicKey {
316
+ fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
317
+ maybe_fmt_master_id ( f, & self . origin ) ?;
318
+ self . xkey . fmt ( f) ?;
319
+ fmt_derivation_paths ( f, self . derivation_paths . paths ( ) ) ?;
320
+ match self . wildcard {
321
+ Wildcard :: None => { }
322
+ Wildcard :: Unhardened => write ! ( f, "/*" ) ?,
323
+ Wildcard :: Hardened => write ! ( f, "/*h" ) ?,
324
+ }
325
+ Ok ( ( ) )
326
+ }
327
+ }
328
+
314
329
impl fmt:: Display for DescriptorPublicKey {
315
330
fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
316
331
match * self {
317
332
DescriptorPublicKey :: Single ( ref pk) => pk. fmt ( f) ,
318
333
DescriptorPublicKey :: XPub ( ref xpub) => xpub. fmt ( f) ,
319
- DescriptorPublicKey :: MultiXPub ( ref xpub) => {
320
- maybe_fmt_master_id ( f, & xpub. origin ) ?;
321
- xpub. xkey . fmt ( f) ?;
322
- fmt_derivation_paths ( f, xpub. derivation_paths . paths ( ) ) ?;
323
- match xpub. wildcard {
324
- Wildcard :: None => { }
325
- Wildcard :: Unhardened => write ! ( f, "/*" ) ?,
326
- Wildcard :: Hardened => write ! ( f, "/*h" ) ?,
327
- }
328
- Ok ( ( ) )
329
- }
334
+ DescriptorPublicKey :: MultiXPub ( ref xpub) => xpub. fmt ( f) ,
330
335
}
331
336
}
332
337
}
@@ -664,18 +669,38 @@ impl DescriptorInnerKey for DescriptorExtendedPublicKey {
664
669
}
665
670
}
666
671
672
+ impl DescriptorInnerKey for DescriptorMultiExtendedPublicKey {
673
+ fn master_fingerprint ( & self ) -> bip32:: Fingerprint {
674
+ if let Some ( ( fingerprint, _) ) = self . origin {
675
+ fingerprint
676
+ } else {
677
+ self . xkey . fingerprint ( )
678
+ }
679
+ }
680
+
681
+ fn full_derivation_path ( & self ) -> Option < bip32:: DerivationPath > {
682
+ None
683
+ }
684
+
685
+ fn has_wildcard ( & self ) -> bool {
686
+ self . wildcard != Wildcard :: None
687
+ }
688
+
689
+ fn at_derivation_index ( self , _index : u32 ) -> Result < DefiniteDescriptorKey , ConversionError > {
690
+ Err ( ConversionError :: MultiKey )
691
+ }
692
+
693
+ fn is_multipath ( & self ) -> bool {
694
+ true
695
+ }
696
+ }
697
+
667
698
impl DescriptorPublicKey {
668
699
/// The fingerprint of the master key associated with this key, `0x00000000` if none.
669
700
pub fn master_fingerprint ( & self ) -> bip32:: Fingerprint {
670
701
match * self {
671
702
DescriptorPublicKey :: XPub ( ref xpub) => xpub. master_fingerprint ( ) ,
672
- DescriptorPublicKey :: MultiXPub ( ref xpub) => {
673
- if let Some ( ( fingerprint, _) ) = xpub. origin {
674
- fingerprint
675
- } else {
676
- xpub. xkey . fingerprint ( )
677
- }
678
- }
703
+ DescriptorPublicKey :: MultiXPub ( ref xpub) => xpub. master_fingerprint ( ) ,
679
704
DescriptorPublicKey :: Single ( ref single) => single. master_fingerprint ( ) ,
680
705
}
681
706
}
@@ -691,7 +716,7 @@ impl DescriptorPublicKey {
691
716
match * self {
692
717
DescriptorPublicKey :: XPub ( ref xpub) => xpub. full_derivation_path ( ) ,
693
718
DescriptorPublicKey :: Single ( ref single) => single. full_derivation_path ( ) ,
694
- DescriptorPublicKey :: MultiXPub ( _) => None ,
719
+ DescriptorPublicKey :: MultiXPub ( _) => self . full_derivation_path ( ) ,
695
720
}
696
721
}
697
722
@@ -706,7 +731,7 @@ impl DescriptorPublicKey {
706
731
match * self {
707
732
DescriptorPublicKey :: Single ( ref single) => single. has_wildcard ( ) ,
708
733
DescriptorPublicKey :: XPub ( ref xpub) => xpub. has_wildcard ( ) ,
709
- DescriptorPublicKey :: MultiXPub ( ref xpub) => xpub. wildcard != Wildcard :: None ,
734
+ DescriptorPublicKey :: MultiXPub ( ref xpub) => xpub. has_wildcard ( ) ,
710
735
}
711
736
}
712
737
@@ -732,15 +757,15 @@ impl DescriptorPublicKey {
732
757
match self {
733
758
DescriptorPublicKey :: Single ( single) => single. at_derivation_index ( index) ,
734
759
DescriptorPublicKey :: XPub ( xpub) => xpub. at_derivation_index ( index) ,
735
- DescriptorPublicKey :: MultiXPub ( _ ) => Err ( ConversionError :: MultiKey ) ,
760
+ DescriptorPublicKey :: MultiXPub ( xpub ) => xpub . at_derivation_index ( index ) ,
736
761
}
737
762
}
738
763
739
764
/// Whether or not this key has multiple derivation paths.
740
765
pub fn is_multipath ( & self ) -> bool {
741
766
match * self {
742
767
DescriptorPublicKey :: Single ( ..) | DescriptorPublicKey :: XPub ( ..) => self . is_multipath ( ) ,
743
- DescriptorPublicKey :: MultiXPub ( _) => true ,
768
+ DescriptorPublicKey :: MultiXPub ( _) => self . is_multipath ( ) ,
744
769
}
745
770
}
746
771
@@ -1458,7 +1483,7 @@ mod test {
1458
1483
fn get_multipath_xpub (
1459
1484
key_str : & str ,
1460
1485
num_paths : usize ,
1461
- ) -> DescriptorMultiXKey < bip32 :: ExtendedPubKey > {
1486
+ ) -> DescriptorMultiExtendedPublicKey {
1462
1487
let desc_key = DescriptorPublicKey :: from_str ( key_str) . unwrap ( ) ;
1463
1488
assert_eq ! ( desc_key. num_der_paths( ) , num_paths) ;
1464
1489
match desc_key {
0 commit comments