Wallet creation

PlutoFramework app in the core is a hot wallet. Your users do not have to download separate hot wallet application in order to create a new account in your app.

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)

  • 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).

SetupPasswordPage.xaml

Feel free to change the visuals of this landing page.

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.

MnemonicsPage.xaml

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.

Last updated