getTvcDeployment method

Future<TGetTvcDeploymentResponse> getTvcDeployment({
  1. required TGetTvcDeploymentBody input,
})

Get details about a single TVC Deployment

Sign the provided TGetTvcDeploymentBody with the client's stamp function and submit the request (POST /public/v1/query/get_tvc_deployment).

See also: stampGetTvcDeployment.

Implementation

Future<TGetTvcDeploymentResponse> getTvcDeployment({
  required TGetTvcDeploymentBody input,
}) async {
  return await request<TGetTvcDeploymentBody, TGetTvcDeploymentResponse>(
      "/public/v1/query/get_tvc_deployment",
      input,
      (json) => TGetTvcDeploymentResponse.fromJson(json));
}