SaplingSpendVerificationKey.fromBytes constructor

SaplingSpendVerificationKey.fromBytes(
  1. List<int> pk
)

Implementation

factory SaplingSpendVerificationKey.fromBytes(List<int> pk) {
  return SaplingSpendVerificationKey(RedJubJubPublicKey.fromBytes(pk).point);
}