incomingViewingKey method

  1. @override
OrchardIncomingViewingKey incomingViewingKey(
  1. ZCryptoContext context, {
  2. Bip44Changes scope = Bip44Changes.chainInt,
})
override

Returns the incoming viewing key (IVK) for this extended full-view key.

context is required for cryptographic operations. scope allows selecting between internal/external derivation chains.

Implementation

@override
OrchardIncomingViewingKey incomingViewingKey(
  ZCryptoContext context, {
  Bip44Changes scope = Bip44Changes.chainInt,
}) {
  return fvk.toIvk(scope: scope, context: context);
}