Type Alias: SimulateSuccess
type SimulateSuccess = Omit<EntryPointOutput, "revertData"> & {
description?: undefined;
feeTooLowDuringSimulation: boolean;
maxFeePerGas: bigint;
revertData?: undefined;
status: typeof Success;
submitterFee: bigint;
};Defined in: apps/submitter/lib/handlers/simulate/types.ts:43
Successful simulate call.
Type declaration
description?
optional description: undefined;feeTooLowDuringSimulation
feeTooLowDuringSimulation: boolean;If true, indicates that in simulation mode, the provided maxFeePerGas is lower than the current gas price.
maxFeePerGas
maxFeePerGas: bigint;Estimated max fee per gas (in wei) for the Boop.
revertData?
optional revertData: undefined;status
status: typeof Success;submitterFee
submitterFee: bigint;Total fee requested by the submitter for submitting this boop (in wei).