Skip to content

Type Alias: BoopStateEntryPointError

type BoopStateEntryPointError = {
  included: false;
  receipt?: never;
  simulation?: SimulateOutput;
  status:   | OnchainStatus
     | SubmitterErrorStatus;
};

Defined in: packages/submitter/lib/handlers/getState/types.ts:22

Properties

included

included: false;

Defined in: packages/submitter/lib/handlers/getState/types.ts:26

Whether the Boop was included and executed onchain.


receipt?

optional receipt: never;

Defined in: packages/submitter/lib/handlers/getState/types.ts:28


simulation?

optional simulation: SimulateOutput;

Defined in: packages/submitter/lib/handlers/getState/types.ts:33

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: 
  | OnchainStatus
  | SubmitterErrorStatus;

Defined in: packages/submitter/lib/handlers/getState/types.ts:23