Live evidence.
Every seal proof.epochpay.today produces is anchored to the public chain.epochcoreqcs.com ledger. The hybrid signing keys below are the same keys that sign the EpochCore RAS Universal Verifier waterseal and every SMB sealed event. Click any hash for the canonical chain-verifier resolution.
Two algorithms. Two key IDs. Verified on every seal.
Most-recent watermarks.
Live read of the public seals index. Each row is a real
PROOF_WATERMARK_PDF directive on the chain. Hash links
resolve at chain.epochcoreqcs.com/v1/verify — no login,
no servers in the verification loop.
Want your seal here? Drop a PDF. Your file never leaves this request — only the seal hash and timestamp are indexed.
Pick any hash above. Run this. No EpochCore SDK required.
The chain verifier is a public read endpoint. Standard
curl + python -m json.tool is enough to
prove any seal exists, is dual-signed, and is chain-linked.
# Resolve a seal hash against the public chain. # Example uses a real production seal — try it: curl -sS \ "https://chain.epochcoreqcs.com/v1/verify?hash=fb6b99bfc5c4886bef29d4c928c4633aca3e13f48659f011662cdf341842abe9&full=1" \ | python -m json.tool # A passing response looks like: # { # "ok": true, "found": true, "source": "fifo", # "directive": { "id": "dir_...", "action": "PROOF_WATERMARK_PDF", ... }, # "chain_link": { "chain_link_ok": true }, # "signatures": { "post_quantum_dual_sign": true } # }