Create wallets
Generate an EOA wallet
//create an account
var account = await AccountManager.CreateAccount();Get the public address
//get current user account address
var address = await AccountManager.GetPublicAddress();Get the seed phrase
var mnemonic = await AccountManager.GetAccountPhrase();Last updated