checkDerivePath method

Future<String?> checkDerivePath(
  1. String seed,
  2. dynamic path,
  3. CryptoType cryptoType
)

Implementation

Future<String?> checkDerivePath(
    String seed, path, CryptoType cryptoType) async {
  final String crypto = cryptoType.toString().split('.')[1];
  dynamic res = await serviceRoot.webView!
      .evalJavascript('keyring.checkDerivePath("$seed", "$path", "$crypto")');
  return res;
}