getBootProof method
Get the boot proof for a given ephemeral key.
Sign the provided TGetBootProofBody with the client's stamp function and submit the request (POST /public/v1/query/get_boot_proof).
See also: stampGetBootProof.
Implementation
Future<TGetBootProofResponse> getBootProof({
required TGetBootProofBody input,
}) async {
return await request<TGetBootProofBody, TGetBootProofResponse>(
"/public/v1/query/get_boot_proof",
input,
(json) => TGetBootProofResponse.fromJson(json));
}