set_code_salt method
Returns the new contract code with salt.
Implementation
Future<ResultOfSetCodeSalt> set_code_salt(ParamsOfSetCodeSalt params) async {
final res =
await _tonCore.request('boc.set_code_salt', params.toString());
return ResultOfSetCodeSalt.fromMap(res);
}