get_code_salt method

Returns the contract code's salt if it is present.

Implementation

Future<ResultOfGetCodeSalt> get_code_salt(ParamsOfGetCodeSalt params) async {
  final res =
      await _tonCore.request('boc.get_code_salt', params.toString());
  return ResultOfGetCodeSalt.fromMap(res);
}