Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.example.com/is-valid-root
const options = {method: 'GET'};fetch('https://api.example.com/is-valid-root', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "valid": true }
{ "message": "<string>"}
Root to validate (hex string).
TODO
Response payload for root validity checks.
Whether the root is currently valid on-chain.
Was this page helpful?