# PrepareCallsResult

> Overview of PrepareCallsResult

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

{/* This file is auto-generated by TypeDoc. Do not edit manually. */}

```ts
type PrepareCallsResult =
  | Exclude<
      PrepareCallsResponse,
      {
        type: "paymaster-permit";
      }
    >
  | Omit<
      Extract<
        PrepareCallsResponse,
        {
          type: "paymaster-permit";
        }
      >,
      "modifiedRequest"
    >;
```

Defined in: [packages/wallet-apis/src/actions/prepareCalls.ts:42](https://github.com/alchemyplatform/aa-sdk/blob/v5.x.x/packages/wallet-apis/src/actions/prepareCalls.ts#L42)