buildHdWalletFromMnemonic method
- @SquadronMethod()
- @hdWalletMarshaler
- @stringListMarshaler List<
String> mnemonic, - int accountIndex
Implementation
@SquadronMethod()
@hdWalletMarshaler
Future<HdWallet> buildHdWalletFromMnemonic(
@stringListMarshaler List<String> mnemonic,
int accountIndex,
) async =>
HdWallet.fromMnemonic(mnemonic.join(" "), accountIndex: accountIndex);