The server's response to a ProofStatusRequest.

interface ProofStatusResponseValue {
    error: undefined | string;
    serializedPCD: undefined | string;
    status: PendingPCDStatus;
}

Properties

error: undefined | string

If status === ERROR, error string from server, else undefined;

serializedPCD: undefined | string

If status === COMPLETE, JSON.stringify(SerializedPCD), else undefined

Generated using TypeDoc