Zip32Sapling.fromExtendedFullViewKey constructor

Zip32Sapling.fromExtendedFullViewKey(
  1. List<int> bytes
)

Implementation

factory Zip32Sapling.fromExtendedFullViewKey(List<int> bytes) {
  final fvk = SaplingExtendedFullViewKey.fromBytes(bytes);
  return Zip32Sapling(privateKey: null, publicKey: fvk);
}