Type Alias: SimulateSuccess
type SimulateSuccess = EntryPointOutput & {
feeTooLowDuringSimulation: boolean;
maxFeePerGas: bigint;
status: typeof Success;
submitterFee: bigint;
};Defined in: apps/submitter/lib/handlers/simulate/types.ts:43
Successful simulate call.
Type declaration
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.
status
status: typeof Success;submitterFee
submitterFee: bigint;Total fee requested by the submitter for submitting this boop (in wei).