Skip to content

Type Alias: ExecuteError

type ExecuteError = {
  description?: string;
  stage: "simulate" | "submit" | "execute";
  status: SubmitterErrorStatus;
};

Defined in: packages/submitter/lib/handlers/execute/types.ts:56

Output of execute calls that fail for other reasons.

Properties

description?

optional description: string;

Defined in: packages/submitter/lib/handlers/execute/types.ts:63

Description of the problem.


stage

stage: "simulate" | "submit" | "execute";

Defined in: packages/submitter/lib/handlers/execute/types.ts:60

Whether the error occurred at the simulation stage or at the submit stage.


status

status: SubmitterErrorStatus;

Defined in: packages/submitter/lib/handlers/execute/types.ts:57