Type Alias: SimulationInput
type SimulationInput = {
entryPoint: Address;
tx: Optional<Boop, "gasLimit" | "executeGasLimit" | "maxFeePerGas" | "submitterFee">;
};Defined in: packages/submitter/lib/interfaces/boop_simulate.ts:8
Properties
entryPoint?
optional entryPoint: Address;Defined in: packages/submitter/lib/interfaces/boop_simulate.ts:10
Optional target entrypoint, in case the submitter supports multiple entrypoints.
tx
tx: Optional<Boop, "gasLimit" | "executeGasLimit" | "maxFeePerGas" | "submitterFee">;Defined in: packages/submitter/lib/interfaces/boop_simulate.ts:16
Boop for which to simulate gas limits and fee parameters. The gas limits and fee parameters are made optional.