# createMultiOwnerLightAccount | @account-kit/smart-contracts

> Creates a multi-owner light account using the provided parameters, including transport, chain, signer, initialization code, version, account address, factory address, salt, and owners. Ensures the owners list is deduplicated, ordered, and valid.

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

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

```ts
function createMultiOwnerLightAccount<
  TTransport,
  TSigner,
  TLightAccountVersion,
>(config): Promise<MultiOwnerLightAccount<TSigner, TLightAccountVersion>>;
```

Defined in: [account-kit/smart-contracts/src/light-account/accounts/multiOwner.ts:83](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/smart-contracts/src/light-account/accounts/multiOwner.ts#L83)

## 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>
        `TSigner` *extends* `SmartAccountSigner`\<`any`>
      </td>

      <td>
        `SmartAccountSigner`\<`any`>
      </td>
    </tr>

    <tr>
      <td>
        `TLightAccountVersion` *extends* `"v2.0.0"`
      </td>

      <td>
        `"v2.0.0"`
      </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>
        `config`
      </td>

      <td>
        [`CreateMultiOwnerLightAccountParams`](../type-aliases/CreateMultiOwnerLightAccountParams)\<`TTransport`, `TSigner`, `TLightAccountVersion`>
      </td>

      <td>
        The parameters for creating a multi-owner light account
      </td>
    </tr>

  </tbody>
</table>

## Returns

`Promise`\<[`MultiOwnerLightAccount`](../type-aliases/MultiOwnerLightAccount)\<`TSigner`, `TLightAccountVersion`>>

A promise that resolves to a `MultiOwnerLightAccount` object containing the created account information and methods