generateNewEncryptedHdWallet method
Generates a new encrypted wallet for the specified network with the supplied password
Future
Implementation
Future<EncryptedWallet> generateNewEncryptedHdWallet(
Network network, String password) async {
var hdWallet = await generateNewHdWallet(network);
return encryptHdWallet(hdWallet, password);
}