JsonProof
type JsonProof = {
maxProofsVerified: 0 | 1 | 2;
proof: Base64ProofString;
publicInput: string[];
publicOutput: string[];
};
Defined in: lib/proof-system/zkprogram.ts:141
Serializable representation of a Pickles proof, useful for caching compiled proofs.
Properties
maxProofsVerified
maxProofsVerified: 0 | 1 | 2;
Defined in: lib/proof-system/zkprogram.ts:146
proof
proof: Base64ProofString;
Defined in: lib/proof-system/zkprogram.ts:147
publicInput
publicInput: string[];
Defined in: lib/proof-system/zkprogram.ts:143
Array of string, where each string is a Field in the publicInput of this proof
publicOutput
publicOutput: string[];
Defined in: lib/proof-system/zkprogram.ts:145
Array of string, where each string is a Field in the publicOutput of this proof