Skip to content

Enumeration: EntryPointStatus

Defined in: packages/submitter/lib/interfaces/status.ts:54

Possible outcomes of submitting the Boop to the onchain EntryPoint contract, either during simulation or onchain execution.

Enumeration Members

CallReverted

CallReverted: "entrypointCallReverted";

Defined in: packages/submitter/lib/interfaces/status.ts:82

The call made by the account's execute function reverted.


ExecuteFailed

ExecuteFailed: "entrypointExecuteFailed";

Defined in: packages/submitter/lib/interfaces/status.ts:77

The account's execute function returned indicate a failure. This is typically caused by an incorrect input from the user.


ExecuteReverted

ExecuteReverted: "entrypointExecuteReverted";

Defined in: packages/submitter/lib/interfaces/status.ts:71

The account's execute call reverted. This indicates either a dysfunctional account or a dysfunctional submitter.


PaymentValidationReverted

PaymentValidationReverted: "entrypointPaymentValidationReverted";

Defined in: packages/submitter/lib/interfaces/status.ts:88

The paymaster's payout call reverted. This indicates either a dysfunctional paymaster or a dysfunctional submitter.


PayoutFailed

PayoutFailed: "entrypointPayoutFailed";

Defined in: packages/submitter/lib/interfaces/status.ts:94

When self-paying and the payment from the account fails, either because IAccount.payout reverts, consumes too much gas, or does not transfer the full cost to the submitter.


Success

Success: "entrypointSuccess";

Defined in: packages/submitter/lib/interfaces/status.ts:56

The Boop succeeded: the intended call was made without errors.


UnexpectedReverted

UnexpectedReverted: "entrypointUnexpectedReverted";

Defined in: packages/submitter/lib/interfaces/status.ts:99

Unexpected revert of the submission, most likely out-of-gas.


ValidationFailed

ValidationFailed: "entrypointValidationFailed";

Defined in: packages/submitter/lib/interfaces/status.ts:65

The account validation of the Boop failed.


ValidationReverted

ValidationReverted: "entrypointValidationReverted";

Defined in: packages/submitter/lib/interfaces/status.ts:62

The account validation of the Boop reverted. This indicates either a dysfunctional account or a dysfunctional submitter.