# LightAccountAbi

> Overview of LightAccountAbi

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

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

```ts
type LightAccountAbi<TAccountType, TAccountVersion> =
  TAccountVersion extends keyof (typeof AccountVersionRegistry)[TAccountType]
    ? (typeof AccountVersionRegistry)[TAccountType][TAccountVersion] extends StaticSmartAccountImplementation
      ? (typeof AccountVersionRegistry)[TAccountType][TAccountVersion]["accountAbi"]
      : never
    : never;
```

Defined in: [packages/smart-accounts/src/light-account/registry.ts:86](https://github.com/alchemyplatform/aa-sdk/blob/v5.x.x/packages/smart-accounts/src/light-account/registry.ts#L86)

## Type Parameters

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

  <tbody>
    <tr>
      <td>
        `TAccountType` *extends* [`LightAccountType`](LightAccountType)
      </td>
    </tr>

    <tr>
      <td>
        `TAccountVersion` *extends* [`LightAccountVersion`](LightAccountVersion)\<`TAccountType`>
      </td>
    </tr>

  </tbody>
</table>