final case class DerivationPath(decodedPath: Seq[Int], publicBranch: Boolean) extends Product with Serializable
HD key derivation path (see: https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki)
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- DerivationPath
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new DerivationPath(decodedPath: Seq[Int], publicBranch: Boolean)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def bytes: Array[Byte]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val decodedPath: Seq[Int]
- def depth: Int
- def encoded: String
Encode this DerivationPath as a parsable string.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def extended(idx: Int): DerivationPath
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def increased: DerivationPath
- returns
path with last element of the derivation path being increased, e.g. m/1/2 -> m/1/3
- def index: Int
- returns
last element of the derivation path, e.g. 2 for m/1/2
- def isEip3: Boolean
- returns
whether derivation path corresponds to EIP-3
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isMaster: Boolean
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val publicBranch: Boolean
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toPrivateBranch: DerivationPath
Convert the derivation path to private branch.
Convert the derivation path to private branch. See BIP-32 for details.
- returns
derivation path from the private branch
- def toPublicBranch: DerivationPath
Convert the derivation path to public branch.
Convert the derivation path to public branch. See BIP-32 for details.
- returns
derivation path from the public branch
- def toString(): String
- Definition Classes
- DerivationPath → AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()