Type Alias: SubmitSimulationFailed
type SubmitSimulationFailed = {
description?: string;
revertData?: Bytes;
stage: "simulate" | "submit";
status: Exclude<OnchainStatus, typeof Success>;
};Defined in: packages/submitter/lib/handlers/submit/types.ts:58
Output type of submit who failed simulation "onchain".
Properties
description?
optional description: string;Defined in: packages/submitter/lib/handlers/submit/types.ts:71
Description of the problem.
revertData?
optional revertData: Bytes;Defined in: packages/submitter/lib/handlers/submit/types.ts:68
Depending on the status, either missing, or the revert data matching an Onchain.*Reverted status, or
the the returned encoded error matching an Onchain.*Rejected status. This pertains to simulation.
stage
stage: "simulate" | "submit";Defined in: packages/submitter/lib/handlers/submit/types.ts:62
Whether the error occurred at the simulation stage or at the submit stage.
status
status: Exclude<OnchainStatus, typeof Success>;Defined in: packages/submitter/lib/handlers/submit/types.ts:59