# multiOwnerPluginActions | @account-kit/smart-contracts

> Creates actions for the MultiOwner plugin, including reading owners and checking ownership. NOTE: this is already added to the client returned from createMultiOwnerModularAccountClient

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

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

```ts
const multiOwnerPluginActions: <TTransport, TChain, TAccount>(
  client,
) => MultiOwnerPluginActions<TAccount>;
```

Defined in: [account-kit/smart-contracts/src/msca/plugins/multi-owner/extension.ts:51](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/smart-contracts/src/msca/plugins/multi-owner/extension.ts#L51)

Creates actions for the MultiOwner plugin, including reading owners and checking ownership.
NOTE: this is already added to the client returned from createMultiOwnerModularAccountClient

## Example

```ts
import { multiOwnerPluginActions } from "@account-kit/smart-contracts";
import { createSmartAccountClient } from "@aa-sdk/core";

const client = createSmartAccountClient(...).extend(multiOwnerPluginActions);
```

## 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>
        `TAccount` *extends* `SmartContractAccount` | `undefined`
      </td>

      <td>
        `SmartContractAccount` | `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 containing the transport, chain, and account information
      </td>
    </tr>

  </tbody>
</table>

## Returns

[`MultiOwnerPluginActions`](../type-aliases/MultiOwnerPluginActions)\<`TAccount`>

an object containing the actions for the MultiOwner plugin, such as `readOwners` and `isOwnerOf`