Skip to content

Type Alias: SimulateError

type SimulateError = {
  description?: string;
  status: SubmitterErrorStatus;
};

Defined in: packages/submitter/lib/handlers/simulate/types.ts:71

Output of a simulation that failed to be carried out for offchain operational reasons (communication with the node, submitter capacity, etc...).

Properties

description?

optional description: string;

Defined in: packages/submitter/lib/handlers/simulate/types.ts:76

Description of the problem.


status

status: SubmitterErrorStatus;

Defined in: packages/submitter/lib/handlers/simulate/types.ts:73