# waitForCallsStatus | @account-kit/wallet-client

> Overview of the waitForCallsStatus 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 waitForCallsStatus(client, params): Promise<{}>;
```

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

Waits for the status of a prepared call to be updated, returning after the calls are no longer pending.

## Example

```ts
const result = await client.waitForCallsStatus({ id: "0x1234..." });
console.log(result);
```

## 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>
        [`WaitForCallsStatusParameters`](https://viem.sh)
      </td>

      <td>
        Parameters for waiting for calls status, including the call ID and options for polling.
      </td>
    </tr>

  </tbody>
</table>

## Returns

`Promise`\<\{
}>

A Promise that resolves to the result containing the prepared call status, which includes a transaction receipt after the call is executed.