ProofResult

Type Alias: ProofResult

type ProofResult = {
  error: string;
  hash: string;
  success: boolean;
};

Defined in: packages/api/src/client/types.gen.ts:285

Type declaration

error?

optional error: string;

Error message if proof generation failed.

hash?

optional hash: string;

The transaction hash if the proof was successfully applied.

success?

optional success: boolean;

Indicates whether the proof generation was successful.