nOOPCodegenAnchor method

Future<TNOOPCodegenAnchorResponse> nOOPCodegenAnchor({
  1. required TNOOPCodegenAnchorBody input,
})

Sign the provided TNOOPCodegenAnchorBody with the client's stamp function and submit the request (POST /tkhq/api/v1/noop-codegen-anchor).

See also: stampNOOPCodegenAnchor.

Implementation

Future<TNOOPCodegenAnchorResponse> nOOPCodegenAnchor({
  required TNOOPCodegenAnchorBody input,
}) async {
  return await request<TNOOPCodegenAnchorBody, TNOOPCodegenAnchorResponse>(
      "/tkhq/api/v1/noop-codegen-anchor",
      input,
      (json) => TNOOPCodegenAnchorResponse.fromJson(json));
}