Verify Proof
Verify the proof of a transaction in the tree
const inputBody = '{
"proof": "string",
"key": "string"
}';
const headers = {
'Content-Type':'application/json',
'Accept':'application/json'
};
fetch('/tree/verify-proof',
{
method: 'POST',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
Parameters
Name
Type
Required
Restrictions
Description
Responses
Status
Meaning
Description
Schema
Response Schema
Name
Type
Required
Restrictions
Description
Last updated