dryrun method

Future<DryRunResponse> dryrun(
  1. DryRunRequest request
)

Executes TEAL program(s) in context and returns debugging information about the execution. This endpoint is only enabled when a node's configuration file sets EnableDeveloperAPI to true. /v2/teal/dryrun

Implementation

Future<DryRunResponse> dryrun(DryRunRequest request) async {
  return _applicationRepository.dryrun(request);
}