> ## Documentation Index
> Fetch the complete documentation index at: https://docs.endstate.io/llms.txt
> Use this file to discover all available pages before exploring further.

# wallet.account

> The provisioned account, or null until ready() has resolved.

```ts theme={null}
account(): WalletAccount | null
```

The provisioned [`WalletAccount`](/sdks/web/reference/wallet/WalletAccount), or `null` until [`ready()`](/sdks/web/reference/wallet/ready) has resolved. Returns to `null` after [`destroy()`](/sdks/web/reference/wallet/destroy). Use it for a synchronous read once setup is done; use [`ready()`](/sdks/web/reference/wallet/ready) when you need to wait.

## Example

```ts theme={null}
const account = wallet.account(); // null until ready() resolves
```
