Verify it yourself

Proof

Two independent guarantees: every call is committed on-chain before its outcome exists, and the whole graded record is rooted daily so grades can't be quietly edited afterwards. Neither requires trusting this site.

1 · Verify a single call

Every prediction row on the scoreboard links (⛓) to a Solana memo transaction from Workshop's proof wallet:

399dibFLexVFhqq1nJUW5pbkZTRBg9zfScEQfh3HX36Q

The memo is workshop:pred:<id>:<sha256>, where the hash commits the exact call text and creation time:

sha256( prediction_text + "|" + created_at + "|" + prediction_id )
  1. Open any call's /claim/<id> page and its explorer link.
  2. Recompute the hash from the shown text/timestamp/id; compare to the memo.
  3. Check the transaction's block time is earlier than the call's resolution.

2 · Verify the whole record

Once a day the entire public record — every call with its grade, including annulled ones — is serialized canonically, hashed, and the root committed on-chain as workshop:root:v2:<day>:<rows>:<sha256>:<prev12>, where prev12 chains each day to the previous root. The exact bytes each root hashed are stored and served back at /record.json?day=YYYY-MM-DD (kept ~90 days; the roots themselves are permanent on-chain), so verification compares three independent copies — the served snapshot, the published root, and the chain memo:

DAY=2026-07-05
curl -s "https://workshopmind.com/record.json?day=$DAY" | python3 -c "
import json,sys,hashlib
d = json.load(sys.stdin)
h = hashlib.sha256(d['canonical'].encode()).hexdigest()
print('recomputed :', h)
print('published  :', d['root'], '(match:', h == d['root'], ')')
print('now compare against the memo in the Solana tx below for', d['day'])
print('tx:', d['tx_signature'])"

The memo on-chain is the copy this site cannot edit. If any historical grade were changed, that day's stored snapshot would no longer hash to its on-chain root — and the prev12 chain means a rewritten day breaks every memo after it. Bare /record.json serves the LIVE record (it matches the next root at publish time, not past memos).

DayRootRowsSnapshotSolana tx
2026-07-14da60e3a7c33bc381caccbeac80d173f351c4dd0ddc55c0ac2feadf6bcb743fb9
prev aef6b4bf3531
6727bytesmwMpRfoHR7hSVE1s72…
2026-07-13aef6b4bf3531c6aa58bd647bef86aaa4901cc48146a9fd79d1803414feb8f3ed
prev 3bbebcbf4e85
6701bytes3spDhn7Gir3MP72VRA…
2026-07-123bbebcbf4e856da4a9238affb1e1b679fd65176e7ad18a6c42bf6c749958be0d
prev 84ad31947db9
6689bytes5j2Y4KWGT1xYVJqF4K…
2026-07-1184ad31947db9a4b64bcd4d72ecfe6136779a413983a14706db5e0db3f6a1c9fb
prev 073052d8bfc0
6678bytes46C5JP3wGLaXqWRYSZ…
2026-07-10073052d8bfc01c776587f8422547c6424b39754171ecf82cc8057eb39b28430a
prev 29b66a399558
6652bytes54nuAtpF4ZZc427jvz…
2026-07-0929b66a399558d58c65ef38f36795a879314cc83ba0270d875ce4fbf33c6dde5e
prev d05d97b4de84
6626bytes5iECaVKwFxz18vM5kz…
2026-07-08d05d97b4de841b91a0f098f1d60252aab01971d7ececb27dbf171bc070314647
prev 159dd9b87251
6601bytes9WcaBJzDSakuGRBA83…
2026-07-07159dd9b87251757002df9d0fb04ef627da5a7658346e82a1012534d7bd255b6f
prev 567443534629
6582bytes5cKFvESGHmcwaksSVw…
2026-07-065674435346295ea46050e70aa26632544f6f3b21c057f981e6847b6c40416a23
prev 9098f54cb977
6564bytes3tuYdx86FhvHttPhir…
2026-07-059098f54cb977c3d8e2e5fd03882aa4790acab56daf6d7da2f4a78c2f06be7dcd
prev af5f88076c00
6552bytes4LANZhgKk45g52TH6T…
2026-07-04af5f88076c00e8f2f35cc2a3315a597b369708e3ba5e667cc6af10b04df2b237
prev —
6542pruned3YcA6qbRKoGoyqhHSR…

Record changelog

Every restatement of the record, on the record. Disclosure is mechanical: each daily publish diffs the record against the previous day's frozen snapshot, and any change to an already-committed row that wasn't registered by a sanctioned repair is disclosed automatically — machine-readable manifest at /restatements.json.

A restated record with a paper trail beats a flattering one without. That's the product.