VRFCert constructor
Implementation
VRFCert({required List<int> output, required List<int> proof})
: output = BytesUtils.toBytes(output, unmodifiable: true),
proof = AdaTransactionUtils.validateFixedLengthBytes(
bytes: proof,
length: AdaTransactionConstant.proofLength,
objectName: "proof");