The Morning Slate · Verifier
Verify a prediction
Recompute the SHA-256 hash of any prediction we've published. The hash math runs in your browser — we never receive what you compute. If you arrived via a prediction <code>?id=</code> link, your browser also fetches that prediction's canonical fields from our public dataset to populate the form; the hash computation itself never leaves your machine. You can also do it yourself, fully offline, with the snippets below.
The prediction
- Prediction ID
- cm946f553996f4a23344bc9bab
- Fixture
- Lyon vs Auxerre (LIGUE1)
- Market
- MATCH_RESULT
- Selection
- AWAY (Away win)
- Model probability
- 0.2199
- Edge %
- 5.24
- Drivers
- Home Elo advantage: +127 (1632 vs 1504)
- Form: home 0.46 / away 0.43
- Recent xG avg: home 1.47 / away 1.68
- Risk
- (none)
- Schema version
- betclarity-prediction-v2
- Published (UTC)
- 2026-09-01T02:10:07.343Z
- Kickoff (UTC)
- 2026-09-04T17:00:00.000Z
Live recomputation
(Verification will appear here once data is provided.)
Canonical JSON
{"drivers":["Home Elo advantage: +127 (1632 vs 1504)","Form: home 0.46 / away 0.43","Recent xG avg: home 1.47 / away 1.68"],"edgePercent":5.24,"fixtureId":"cmt29vjnn0e4701mviwlqwvaa","kickoffAt":"2026-09-04T17:00:00.000Z","market":"MATCH_RESULT","modelProbability":0.2199,"publishedAt":"2026-09-01T02:10:07.343Z","risk":"","schemaVersion":"betclarity-prediction-v2","selection":"AWAY"}These are the exact bytes we took the SHA-256 of. Copy them into any SHA-256 tool to verify the hash above yourself.
Don't trust us, do it yourself
// Recompute the SHA-256 of this prediction's canonical input.
import { createHash } from "node:crypto";
const canonical =
`{"drivers":["Home Elo advantage: +127 (1632 vs 1504)","Form: home 0.46 / away 0.43","Recent xG avg: home 1.47 / away 1.68"],"edgePercent":5.24,"fixtureId":"cmt29vjnn0e4701mviwlqwvaa","kickoffAt":"2026-09-04T17:00:00.000Z","market":"MATCH_RESULT","modelProbability":0.2199,"publishedAt":"2026-09-01T02:10:07.343Z","risk":"","schemaVersion":"betclarity-prediction-v2","selection":"AWAY"}`;
const computed = createHash("sha256").update(canonical, "utf8").digest("hex");
console.log("computed:", computed);
console.log("expected:", "8750d5cebd16582217ea61b05dd286b4c8a9182608b9be4db2b4717d9e10cf7e");
console.log("match: ", computed === "8750d5cebd16582217ea61b05dd286b4c8a9182608b9be4db2b4717d9e10cf7e");