What it checks
- Parses the receipt and rejects an unsupported spec version.
- Resolves
issuer.key_idagainst the issuer’s published key set, checks the key’s validity window, and verifies the Ed25519 signature over the receipt body. - Recomputes the claim digest and confirms it matches.
- If a
proofis present, verifies the Merkle inclusion proof — and, if you pass an RPC URL, verifies the on-chain anchor too (see anchoring). - Reports the achieved trust level and the verdict.
Running it
From a checkout of the POAW repository:--rpc to check everything except the anchor (signature, schema, and Merkle inclusion), which reports the
anchor as "not_checked_offline" rather than skipping it silently.
The tool prints a JSON report, for example:
valid is only true if every applicable check passes. achieved_trust_level is what the checker could actually
confirm — 2 requires both a verified inclusion proof and a verified on-chain anchor; without --rpc, the ceiling is
1.
In the browser
Until then, use the command-line checker above, or point any RFC 6962-compatible Merkle verifier and an Ed25519 signature check at the receipt’sbody, signature, and proof per the receipt spec.