Package org.bitcoindevkit
Interface DescriptorInterface
-
- All Implemented Interfaces:
public interface DescriptorInterface
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
DescriptorInterface.Companion
-
Method Summary
Modifier and Type Method Description abstract Boolean
isMultipath()
Whether or not this key has multiple derivation paths. abstract List<Descriptor>
toSingleDescriptors()
Get as many descriptors as different paths in this descriptor. abstract String
toStringWithSecret()
-
-
-
Method Detail
-
isMultipath
abstract Boolean isMultipath()
Whether or not this key has multiple derivation paths.
-
toSingleDescriptors
abstract List<Descriptor> toSingleDescriptors()
Get as many descriptors as different paths in this descriptor.
For multipath descriptors it will return as many descriptors as there is "parallel" paths. For regular descriptors it will just return itself.
-
toStringWithSecret
abstract String toStringWithSecret()
-
-