run_get method

Future<ResultOfRunGet> run_get(
  1. ParamsOfRunGet params
)

Executes a get-method of FIFT contract that fulfills the smc-guidelines https://test.ton.org/smc-guidelines.txt and returns the result data from TVM's stack

Implementation

Future<ResultOfRunGet> run_get(ParamsOfRunGet params) async {
  final res = await _tonCore.request('tvm.run_get', params.toString());
  return ResultOfRunGet.fromMap(res);
}