The Morning Slate

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
cmbf540ede0191e9e2bae43aab
Fixture
Ipswich vs Liverpool (EPL)
Market
ASIAN_HANDICAP
Selection
AWAY_HANDICAP (Away -1)
Model probability
0.6672
Edge %
0.00
Drivers
  1. Home Elo advantage: -110 (1569 vs 1679)
  2. Form: home 0.60 / away 0.35
  3. Recent xG avg: home 1.68 / away 1.68
Risk
(none)
Schema version
betclarity-prediction-v3
Published (UTC)
2026-09-01T02:10:07.343Z
Kickoff (UTC)
2026-09-04T19:00:00.000Z

Live recomputation

(Verification will appear here once data is provided.)

Don't trust us, do it yourself

// Recompute the SHA-256 of this prediction's canonical input.
import { createHash } from "node:crypto";

const canonical =
  ``;

const computed = createHash("sha256").update(canonical, "utf8").digest("hex");
console.log("computed:", computed);
console.log("expected:", "ff6643f6bc0834f3d1e9c183e886bf034941cb4a94710d36d81b8c7482a2127f");
console.log("match:   ", computed === "ff6643f6bc0834f3d1e9c183e886bf034941cb4a94710d36d81b8c7482a2127f");