mnemonic_verify method

The phrase supplied will be checked for word length and validated according to the checksum specified in BIP0039.

Implementation

Future<ResultOfMnemonicVerify> mnemonic_verify(
    ParamsOfMnemonicVerify params) async {
  final res =
      await _tonCore.request('crypto.mnemonic_verify', params.toString());
  return ResultOfMnemonicVerify.fromMap(res);
}