getAppProofs method

Future<TGetAppProofsResponse> getAppProofs({
  1. required TGetAppProofsBody input,
})

List the app proofs for the given activity.

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

See also: stampGetAppProofs.

Implementation

Future<TGetAppProofsResponse> getAppProofs({
  required TGetAppProofsBody input,
}) async {
  return await request<TGetAppProofsBody, TGetAppProofsResponse>(
      "/public/v1/query/list_app_proofs",
      input,
      (json) => TGetAppProofsResponse.fromJson(json));
}