Interface ProofResult

interface ProofResult {
    prepareProof: Uint8Array;
    showProof: Uint8Array;
    prepareInstance: Uint8Array;
    showInstance: Uint8Array;
    publicValues: ProofPublicValues;
    timing: ProofTiming;
    serialize(): Uint8Array;
    toBase64(): string;
    toJSON(): SerializedProofJSON;
}

Properties

prepareProof: Uint8Array
showProof: Uint8Array
prepareInstance: Uint8Array
showInstance: Uint8Array
publicValues: ProofPublicValues
timing: ProofTiming

Methods