Skip to content

Type Alias: ExecuteInput

type ExecuteInput = {
  boop: Boop;
  entryPoint?: Address;
  timeout?: number;
};

Defined in: apps/submitter/lib/handlers/execute/types.ts:8

Input of an execute call (boop/execute route).

Properties

boop

boop: Boop;

Defined in: apps/submitter/lib/handlers/execute/types.ts:13

Boop to execute.


entryPoint?

optional entryPoint: Address;

Defined in: apps/submitter/lib/handlers/execute/types.ts:10

Optional target entrypoint, in case the submitter supports multiple entrypoints.


timeout?

optional timeout: number;

Defined in: apps/submitter/lib/handlers/execute/types.ts:21

Optional time to wait for the receipt, otherwise the submitter will use its default value.

The submitter is free to honor this timeout or not based on its own policies (e.g. it might not apply a timeout that is too low or set a cap on the maximum timeout value).