# CreateMultisigModularAccountParams | @account-kit/smart-contracts

> Overview of CreateMultisigModularAccountParams from @account-kit/smart-contracts

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

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

```ts
type CreateMultisigModularAccountParams<
  TTransport,
  TSigner,
  TEntryPointVersion,
> = Pick<
  ToSmartContractAccountParams<
    "MultisigModularAccount",
    TTransport,
    Chain,
    TEntryPointVersion
  >,
  "transport" | "chain"
> &
  object &
  EntryPointParameter<TEntryPointVersion, Chain>;
```

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

## Type Declaration

<table>
  <thead>
    <tr>
      <th align="left">Name</th>
      <th align="left">Type</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `accountAddress?`
      </td>

      <td>
        [`Address`](https://abitype.dev)
      </td>
    </tr>

    <tr>
      <td>
        `factoryAddress?`
      </td>

      <td>
        [`Address`](https://abitype.dev)
      </td>
    </tr>

    <tr>
      <td>
        `initCode?`
      </td>

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

    <tr>
      <td>
        `owners?`
      </td>

      <td>
        [`Address`](https://abitype.dev)\[]
      </td>
    </tr>

    <tr>
      <td>
        `salt?`
      </td>

      <td>
        `bigint`
      </td>
    </tr>

    <tr>
      <td>
        `signer`
      </td>

      <td>
        `TSigner`
      </td>
    </tr>

    <tr>
      <td>
        `threshold`
      </td>

      <td>
        `bigint`
      </td>
    </tr>

  </tbody>
</table>

## 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`
      </td>

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

    <tr>
      <td>
        `TEntryPointVersion` *extends* `"0.6.0"`
      </td>

      <td>
        `"0.6.0"`
      </td>
    </tr>

  </tbody>
</table>