# lightAccountClientActions | @account-kit/smart-contracts

> Provides a set of actions for managing a light account client, including transferring ownership.

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

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

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

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

Provides a set of actions for managing a light account client, including transferring ownership.

## Example

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

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

## 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* `LightAccount`\<`TSigner`> | `undefined`
      </td>

      <td>
        `LightAccount`\<`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 instance for which to provide the light account actions
      </td>
    </tr>

  </tbody>
</table>

## Returns

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

An object containing the available light account client actions