# defaultAccountState | @account-kit/core

> Overview of the defaultAccountState function from @account-kit/core

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

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

```ts
function defaultAccountState<T>(): AccountState<T>;
```

Defined in: [account-kit/core/src/store/store.ts:311](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/core/src/store/store.ts#L311)

Returns the default state for an account of a supported type.

## Example

```ts
import { defaultAccountState } from "@account-kit/core";

const defaultLightAccountState = defaultAccountState<"LightAccount">();
```

## Type Parameters

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

  <tbody>
    <tr>
      <td>
        `T` *extends* [`SupportedAccountTypes`](../type-aliases/SupportedAccountTypes)
      </td>

      <td />
    </tr>

  </tbody>
</table>

## Returns

[`AccountState`](../type-aliases/AccountState)\<`T`>

The default state for the specified account type