Interface SerializedProofJSON

interface SerializedProofJSON {
    version: string;
    prepareProof: string;
    showProof: string;
    prepareInstance: string;
    showInstance: string;
    publicValues: {
        expressionResult: boolean;
        deviceKeyX: string;
        deviceKeyY: string;
    };
}

Properties

version: string
prepareProof: string
showProof: string
prepareInstance: string
showInstance: string
publicValues: {
    expressionResult: boolean;
    deviceKeyX: string;
    deviceKeyY: string;
}