ckdPub method

  1. @override
Bip32PublicKey ckdPub(
  1. Bip32PublicKey parentKey,
  2. int index
)
override

Public parent key to public child key

It computes a child extended public key from the parent extended public key. It is only defined for non-hardened child keys.

Implementation

@override
Bip32PublicKey ckdPub(Bip32PublicKey parentKey, int index) =>
    _ckd(parentKey, index) as Bip32PublicKey;