Zkp component

GetZkpState

Returns the current ZKP state (proof with its related block hash and block number).

const res = await fetch("http://127.0.0.1:8648", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
  jsonrpc: "2.0",
  method: "getZkpState",
  params: [],
  id: 1
})
});
const data = await res.json();

Parameters

No parameters

Returns

PropType / Default
latestBlock
unknown
latestProof
string

On this page