neuterPriv method

  1. @override
Bip32PublicKey neuterPriv(
  1. Bip32PrivateKey k
)
override

Private parent key to public Child key

It computes the extended public key corresponding to an extended private key a.k.a the neutered version, as it removes the ability to sign transactions.

Implementation

@override
Bip32PublicKey neuterPriv(Bip32PrivateKey k) =>
    Bip32VerifyKey(k.publicKey.asTypedList);