# CreateModularAccountV2Params | @account-kit/smart-contracts

> Overview of CreateModularAccountV2Params 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 CreateModularAccountV2Params<TTransport, TSigner> = Pick<ToSmartContractAccountParams<"ModularAccountV2", TTransport, Chain, "0.7.0">, "transport" | "chain" | "accountAddress"> & object &
  | {
  factoryAddress?: Address;
  implementationAddress?: Address;
  initCode?: Hex;
  mode?: "default";
  salt?: bigint;
}
  | {
  mode: "7702";
};
```

Defined in: [account-kit/smart-contracts/src/ma-v2/account/modularAccountV2.ts:44](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/smart-contracts/src/ma-v2/account/modularAccountV2.ts#L44)

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

  </tbody>
</table>