Zip32Sapling.fromExtendedFullViewKeyBytes constructor

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

Implementation

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