# multiOwnerLightAccountClientActions | @account-kit/smart-contracts

> Generates client actions for a multi-owner light account, including the ability to update owners.

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

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

```ts
const multiOwnerLightAccountClientActions: <
  TTransport,
  TChain,
  TSigner,
  TAccount,
>(
  client,
) => MultiOwnerLightAccountClientActions<TSigner, TAccount>;
```

Defined in: [account-kit/smart-contracts/src/light-account/decorators/multiOwnerLightAccount.ts:39](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/smart-contracts/src/light-account/decorators/multiOwnerLightAccount.ts#L39)

Generates client actions for a multi-owner light account, including the ability to update owners.

## Example

```ts
import { multiOwnerLightAccountClientActions, createMultiOwnerLightAccount } from "@account-kit/smart-contracts";
import { createAlchemySmartAccountClient } from "@account-kit/infra";
import { sepolia } from "@account-kit/infra";

const smartAccountClient = createAlchemySmartAccountClient({
 account: await createMultiOwnerLightAccount(...),
 apiKey: "your-api-key",
 chain: sepolia,
}).extend(multiOwnerLightAccountClientActions);
```

## Type Parameters

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

  <tbody>
    <tr>
      <td>
        `TTransport` *extends* [`Transport`](https://viem.sh)
      </td>

      <td>
        [`Transport`](https://viem.sh)
      </td>
    </tr>

    <tr>
      <td>
        `TChain` *extends* [`Chain`](https://viem.sh) | `undefined`
      </td>

      <td>
        [`Chain`](https://viem.sh) | `undefined`
      </td>
    </tr>

    <tr>
      <td>
        `TSigner` *extends* `SmartAccountSigner`
      </td>

      <td>
        `SmartAccountSigner`
      </td>
    </tr>

    <tr>
      <td>
        `TAccount` *extends* `MultiOwnerLightAccount`\<`TSigner`> | `undefined`
      </td>

      <td>
        `MultiOwnerLightAccount`\<`TSigner`> | `undefined`
      </td>
    </tr>

  </tbody>
</table>

## 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>
        [`Client`](https://viem.sh)\<`TTransport`, `TChain`, `TAccount`>
      </td>

      <td>
        the client for interacting with the multi-owner light account
      </td>
    </tr>

  </tbody>
</table>

## Returns

[`MultiOwnerLightAccountClientActions`](../type-aliases/MultiOwnerLightAccountClientActions)\<`TSigner`, `TAccount`>

an object containing the client actions specifically for a multi-owner light account