hdkey_derive_from_xprv_path method

Derives the extended private key from the specified key and path

Implementation

Future<ResultOfHDKeyDeriveFromXPrvPath> hdkey_derive_from_xprv_path(
    ParamsOfHDKeyDeriveFromXPrvPath params) async {
  final res = await _tonCore.request(
      'crypto.hdkey_derive_from_xprv_path', params.toString());
  return ResultOfHDKeyDeriveFromXPrvPath.fromMap(res);
}