# CreateLightAccountParams | @account-kit/smart-contracts

> Overview of CreateLightAccountParams 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 CreateLightAccountParams<TTransport, TSigner, TLightAccountVersion> = Omit<
  CreateLightAccountBaseParams<
    "LightAccount",
    TLightAccountVersion,
    TTransport,
    TSigner
  >,
  | "getAccountInitCode"
  | "entryPoint"
  | "version"
  | "abi"
  | "accountAddress"
  | "type"
> &
  object;
```

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

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

      <td>
        `EntryPointDef`\<[`LightAccountEntryPointVersion`](LightAccountEntryPointVersion)\<`"LightAccount"`, `TLightAccountVersion`>, [`Chain`](https://viem.sh)>
      </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>
        `salt?`
      </td>

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

    <tr>
      <td>
        `version?`
      </td>

      <td>
        `TLightAccountVersion`
      </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>
        `TLightAccountVersion` *extends* [`LightAccountVersion`](LightAccountVersion)\<`"LightAccount"`>
      </td>

      <td>
        [`LightAccountVersion`](LightAccountVersion)\<`"LightAccount"`>
      </td>
    </tr>

  </tbody>
</table>