ZCashAccount.fromOrchardFullViewKey constructor
ZCashAccount.fromOrchardFullViewKey({
- required List<
int> fullViewKeyBytes, - required ZCashAccountConfig config,
- required ZCryptoContext context,
Implementation
factory ZCashAccount.fromOrchardFullViewKey({
required List<int> fullViewKeyBytes,
required ZCashAccountConfig config,
required ZCryptoContext context,
}) {
return ZCashAccount._(
config: config,
sapling: null,
context: context,
orchard: Zip32Orchard.fromFullViewKey(
fvk: fullViewKeyBytes,
context: context,
),
transparent: null,
);
}