Skip to content
Alchemy Logo

RequestGasAndPaymasterAndDataResponse

type RequestGasAndPaymasterAndDataResponse<TEntryPointVersion> = Pick<
  UserOperationRequest,
  | "callGasLimit"
  | "preVerificationGas"
  | "verificationGasLimit"
  | "maxFeePerGas"
  | "maxPriorityFeePerGas"
> &
  TEntryPointVersion extends "0.6.0"
  ? object
  : TEntryPointVersion extends "0.7.0"
    ? Pick<
        UserOperationRequest<"0.7.0">,
        | "paymaster"
        | "paymasterData"
        | "paymasterVerificationGasLimit"
        | "paymasterPostOpGasLimit"
      >
    : never;

Defined in: account-kit/infra/src/actions/types.ts:71

Type ParameterDefault type

TEntryPointVersion extends EntryPointVersion

EntryPointVersion

Was this page helpful?