Type Alias: JobResult

Properties overview

  • success: boolean;
type JobResult = {
  error: string;
  hash: string;
  status: string;
  success: boolean;
  tx: string;
};

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

Type declaration

error?

optional error: string;

Error message if proof generation failed for this transaction.

hash?

optional hash: string;

The transaction hash if broadcasted.

status?

optional status: string;

The status of the transaction.

success

success: boolean;

Indicates whether the proof generation for this transaction was successful.

tx?

optional tx: string;

The transaction data.