> For the complete documentation index, see [llms.txt](https://docs.stacks.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.stacks.co/reference/stacks.js/stacks-wallet/generation/generatewallet.md).

# generateWallet

Creates a new `Wallet` from a BIP39 mnemonic seed phrase and a password. The seed phrase is encrypted with the password and stored in the wallet. Automatically derives the first account.

***

### Usage

```ts
import { randomSeedPhrase, generateWallet } from '@stacks/wallet-sdk';

const secretKey = randomSeedPhrase();

const wallet = await generateWallet({
  secretKey,
  password: 'my-secure-password',
});

console.log(wallet.accounts.length); // 1 (first account auto-derived)
console.log(wallet.encryptedSecretKey); // hex-encoded encrypted mnemonic
```

#### Notes

* The `secretKey` must be a valid BIP39 mnemonic (12 or 24 words).
* The `password` is used to encrypt the mnemonic via `@stacks/encryption`.
* The wallet is returned with one account already derived (index 0).
* Use `generateNewAccount` to add additional accounts to the wallet.

[**Reference Link**](https://github.com/stx-labs/stacks.js/tree/main/packages/wallet-sdk/src/generate.ts#L43)

***

### Signature

```ts
function generateWallet(opts: {
  secretKey: string;
  password: string;
}): Promise<Wallet>;
```

***

### Returns

`Promise<Wallet>`

A promise that resolves to a `Wallet` object containing the encrypted secret key, wallet keys, and one derived account.

***

### Parameters

#### opts (required)

| Property    | Type     | Description                                     |
| ----------- | -------- | ----------------------------------------------- |
| `secretKey` | `string` | A valid BIP39 mnemonic phrase (12 or 24 words). |
| `password`  | `string` | A password used to encrypt the mnemonic.        |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.stacks.co/reference/stacks.js/stacks-wallet/generation/generatewallet.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
