# sendPreparedCalls | @account-kit/wallet-client

> Overview of the sendPreparedCalls function from @account-kit/wallet-client

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

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

```ts
function sendPreparedCalls(client, params): Promise<{}>;
```

Defined in: [account-kit/wallet-client/src/client/actions/sendPreparedCalls.ts:53](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/wallet-client/src/client/actions/sendPreparedCalls.ts#L53)

Sends prepared calls by submitting a signed user operation.
This method is used after signing the signature request returned from prepareCalls.

## Example

```ts
// First prepare the calls
const preparedCalls = await client.prepareCalls({
  calls: [
    {
      to: "0x1234...",
      data: "0xabcdef...",
      value: "0x0",
    },
  ],
  capabilities: {
    paymasterService: { policyId: "your-policy-id" },
  },
});

// Then sign the calls
const signedCalls = await client.signPreparedCalls(preparedCalls);

// Then send the prepared calls with the signature
const result = await client.sendPreparedCalls({
  signedCalls,
});
```

## Parameters

<table>
  <thead>
    <tr>
      <th align="left">Parameter</th>
      <th align="left">Type</th>
      <th align="left">Description</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `client`
      </td>

      <td>
        `InnerWalletApiClient`
      </td>

      <td>
        The wallet API client to use for the request
      </td>
    </tr>

    <tr>
      <td>
        `params`
      </td>

      <td>
        [`SendPreparedCallsParams`](../type-aliases/SendPreparedCallsParams)
      </td>

      <td>
        Parameters for sending prepared calls
      </td>
    </tr>

  </tbody>
</table>

## Returns

`Promise`\<\{
}>

A Promise that resolves to the result containing the call ID