get_crypto_box_seed_phrase method

Future<ResultOfGetCryptoBoxSeedPhrase> get_crypto_box_seed_phrase(
  1. RegisteredCryptoBox params
)

Attention! Store this data in your application for a very short period of time and overwrite it with zeroes ASAP.

Implementation

Future<ResultOfGetCryptoBoxSeedPhrase> get_crypto_box_seed_phrase(
    RegisteredCryptoBox params) async {
  final res = await _tonCore.request(
      'crypto.get_crypto_box_seed_phrase', params.toString());
  return ResultOfGetCryptoBoxSeedPhrase.fromMap(res);
}