SaplingDiversifierKey constructor

SaplingDiversifierKey(
  1. List<int> bytes
)

Implementation

SaplingDiversifierKey(List<int> bytes)
  : inner =
        bytes
            .exc(
              operation: "SaplingDiversifierKey",
              name: "bytes",
              reason: "Invalid sapling diversifier key bytes length.",
              length: 32,
            )
            .asImmutableBytes;