A static, public verification surface for verifrax.proof.v1 artifacts.
Proofs are generated privately (engine stays private). Verification is public, portable, and offline-capable.
| Portable Proofs Copy/paste JSON anywhere |
Engine Private No engine code or IP here |
Audit Surface Deterministic schema validation |
VERIFRAX-verify is the public verifier surface for verifrax.proof.v1 proofs.
- Private: The VERIFRAX engine that generates proofs (IP, internals, implementation).
- Public: This repository, hosting a static verifier UI over GitHub Pages.
- Portable: Proofs are plain JSON. Anyone can validate without repo or engine access.
This repository is intentionally minimal:
- no servers
- no secrets
- no signing keys
- no privileged trust
URL: https://verifrax.github.io/VERIFRAX-verify/
The verifier validates:
- JSON parses correctly
schema === "verifrax.proof.v1"- required fields are present and well-formed
artifact.sha256is a valid 64-hex digest- canonical fields are displayed deterministically
Note: Hash recomputation requires local file access. The verifier intentionally avoids fetching or executing anything remotely.
Proofs travel without you.
Once generated, a proof can be shared, archived, or audited without access to:
- the VERIFRAX engine
- the private repository
- any secrets or credentials
A verifrax.proof.v1 document includes:
schemacreated_atrepobaseline_tagcore_dist_hashartifact{ name, path, sha256 }certificate_v1verify_ref(this verifier URL)
This repository is a verification surface, not a signing authority.
- No secrets
- No engine internals
- No remote execution
See:
THREAT_MODEL.mdCLI_SPEC.md
index.html— Verifier UITHREAT_MODEL.md— Threat modelCLI_SPEC.md— CLI and proof contractMARKET_WEDGE.md— Adoption framingWHAT_VERIFRAX_SOLVES.mdWHY_NOT_BLOCKCHAIN.mdUI_WIREFRAME.md
Deployed via GitHub Pages:
- Branch:
main - Folder:
/ - Build: none (static)
- Local file upload for SHA-256 recomputation
- Strict canonical field rendering
- Schema version registry
- Anchor visualization (engine-gated)
MIT License
Copyright (c) 2025 VERIFRAX
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
VERIFRAX
Public verifier: https://verifrax.github.io/VERIFRAX-verify/
AUTHORITATIVE LINKS:
- SPEC: https://github.com/Verifrax/VERIFRAX-SPEC
- PROFILES: https://github.com/Verifrax/VERIFRAX-PROFILES
- VERIFIER: https://github.com/Verifrax/VERIFRAX-verify
- deterministic verification
- minimal dependency footprint
- suitable for CI + local use