# Wallet creation

PlutoFramework allows you to:

* Generate new seed-phrase (new seed-phrase based Account)
* Export the account to JSON file (which can be used in [Polkadot js extension](https://polkadot.js.org/extension/))
* Import existing seed-phrase
* Import existing JSON file account

By default, the first page of the application is set to `SetupPasswordPage.xaml`. This page creates a new seed-phrase based account and setups the password used to secure this newly created account. If the device supports it (usually all modern ones do), it setups the biometric verification as well (Fingerprint recognition/face recognition).

<figure><img src="/files/2M8O55MxHgvFZMwqwb91" alt="" width="375"><figcaption><p>SetupPasswordPage.xaml</p></figcaption></figure>

Feel free to change the visuals of this landing page.

&#x20;If you want to see the seed-phrase of the account (usually for back up), you can view it on `MnemonicsPage.xaml` which can be accessed through `SettingsPage.xaml`. You can also export the account to JSON file. And it allows you to import existing account.

<figure><img src="/files/WYaVaiEgtnaAllx6h6ka" alt="" width="375"><figcaption><p>MnemonicsPage.xaml</p></figcaption></figure>

If you want a more low-level approach, definitelly look into the `PlutoFramework/Model/KeysModel.cs` file to access all account related methods. However, I recommend sticking to what already exists unless you really have to.


---

# Agent Instructions: 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:

```
GET https://plutolabs.gitbook.io/plutoframework/make-your-application/wallet-creation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
