Type Alias: BoopStateEntryPointError
type BoopStateEntryPointError = {
included: false;
receipt: never;
simulation: SimulationResult;
status: | EntryPointStatus
| SubmitterErrorSimulationMaybeAvailable;
};Defined in: packages/submitter/lib/interfaces/BoopState.ts:23
Properties
included
included: false;Defined in: packages/submitter/lib/interfaces/BoopState.ts:27
Whether the Boop was included and executed onchain.
receipt?
optional receipt: never;Defined in: packages/submitter/lib/interfaces/BoopState.ts:29
simulation?
optional simulation: SimulationResult;Defined in: packages/submitter/lib/interfaces/BoopState.ts:34
The result of simulation. Not guaranteed to be available, as a submitter does not have to presimulate a tx before submitting, nor does he have to persist the simulation result.
status
status:
| EntryPointStatus
| SubmitterErrorSimulationMaybeAvailable;Defined in: packages/submitter/lib/interfaces/BoopState.ts:24