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

# KeystoreAccount

```ts theme={null}
type KeystoreAccount: {
  "address": string;
  "mnemonic": {
     "entropy": string;
     "locale": string;
     "path": string;
    };
  "privateKey": string;
};
```

The contents of a JSON Keystore Wallet.

## Type declaration

### address

```ts theme={null}
address: string;
```

### mnemonic?

```ts theme={null}
optional mnemonic: {
  "entropy": string;
  "locale": string;
  "path": string;
};
```

### mnemonic.entropy

```ts theme={null}
entropy: string;
```

### mnemonic.locale?

```ts theme={null}
optional locale: string;
```

### mnemonic.path?

```ts theme={null}
optional path: string;
```

### privateKey

```ts theme={null}
privateKey: string;
```

## Source

[wallet/json-keystore.ts:28](https://github.com/dominant-strategies/quais.js/blob/c1c12d43f9d34c6baad2b0542bd6d0acd6fefcbf/src/wallet/json-keystore.ts#L28)
