Package org.bitcoindevkit
Interface DescriptorPublicKeyInterface
-
- All Implemented Interfaces:
public interface DescriptorPublicKeyInterface
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
DescriptorPublicKeyInterface.Companion
-
Method Summary
Modifier and Type Method Description abstract String
asString()
abstract DescriptorPublicKey
derive(DerivationPath path)
abstract DescriptorPublicKey
extend(DerivationPath path)
abstract Boolean
isMultipath()
Whether or not this key has multiple derivation paths. abstract String
masterFingerprint()
The fingerprint of the master key associated with this key, 0x00000000
if none.
-
-
-
Method Detail
-
derive
abstract DescriptorPublicKey derive(DerivationPath path)
-
extend
abstract DescriptorPublicKey extend(DerivationPath path)
-
isMultipath
abstract Boolean isMultipath()
Whether or not this key has multiple derivation paths.
-
masterFingerprint
abstract String masterFingerprint()
The fingerprint of the master key associated with this key,
0x00000000
if none.
-
-