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

# WalletAccount

> The provisioned account. Returned by ready() and refreshSession(), and read from account() once the wallet is ready.

```ts theme={null}
interface WalletAccount {
  readonly address: string;
}
```

## Example

```ts theme={null}
const account = await wallet.ready();
account.address; // the provisioned account address
```

## Properties

<ResponseField name="address" type="string" required>
  The provisioned account address. Available once `ready()` resolves; before
  then `account()` returns `null`.
</ResponseField>
