# createMultisigModularAccount | @account-kit/smart-contracts

> Creates a multisig modular account using the provided parameters, including transport, chain, signer, account address, and other account settings. It configures the account with multiple owners and the specified threshold.

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

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

```ts
function createMultisigModularAccount<TTransport, TSigner>(
  config,
): Promise<MultisigModularAccount<TSigner>>;
```

Defined in: [account-kit/smart-contracts/src/msca/account/multisigAccount.ts:60](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/smart-contracts/src/msca/account/multisigAccount.ts#L60)

## 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>

  </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>
        [`CreateMultisigModularAccountParams`](../type-aliases/CreateMultisigModularAccountParams)\<`TTransport`, `TSigner`>
      </td>

      <td>
        The parameters for creating a multisig modular account.
      </td>
    </tr>

  </tbody>
</table>

## Returns

`Promise`\<[`MultisigModularAccount`](../type-aliases/MultisigModularAccount)\<`TSigner`>>

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