Skip to content
Alchemy Logo

PrepareCallsResult

type PrepareCallsResult =
  | Exclude<
      PrepareCallsResponse,
      {
        type: "paymaster-permit";
      }
    >
  | (Omit<
      Extract<
        PrepareCallsResponse,
        {
          type: "paymaster-permit";
        }
      >,
      "modifiedRequest"
    > &
      object);

Defined in: packages/wallet-apis/src/actions/prepareCalls.ts:42

Was this page helpful?