This raffle uses a commit-reveal random selection process. A secret seed was locked in when the raffle was created — before anyone entered — by publishing its SHA-256 fingerprint (the commitment). Because the seed was fixed before any entrant existed and the final draw seed also depends on the full entrant pool, the organizer cannot have chosen a seed that favors a particular entrant. The checks below run entirely in your browser.
Seed commitment
Published when the raffle was created, before entries opened. The revealed seed for each draw below must hash to exactly this value.
de89b480cb5ba450e5ab4e674e419d881395d5e699d6df6753b552965afc8e0e
How it works
- 1 At creation, a secret server seed is generated and its SHA-256 commitment is published (above). The seed itself stays hidden until the draw.
-
2
At draw time the seed is revealed and combined with the full entrant pool to derive the draw seed:
SHA256(server_seed + "|" + snapshot). - 3 Each entrant gets virtual "slots" equal to their entry count, and the draw seed deterministically selects the winning slots.
- 4 Anyone can confirm the revealed seed matches the commitment and replay the selection to reproduce the same winners.
commitment = SHA256(server_seed) // published before entries opened
snapshot = "id:count,id:count,..." // eligible entrants, sorted by id
draw_seed = SHA256(server_seed + "|" + snapshot)
slots = expand entrants to slot pool based on entries_count
for N = 0, 1, 2... until all winners picked:
// rejection sampling: redraw instead of biasing low slots
for attempt = 0, 1, 2...:
value = parseInt(SHA256(draw_seed + ":" + N + ":" + attempt).substring(0, 8), 16)
if value < 2^32 - (2^32 mod slots.length): break
index = value mod slots.length
winner (position N+1) = entrant owning slot[index]
slots.removeAll(winner's slots)
Draw details
Sep 11, 2026 at 7:39 PMWinners selected (1)
Jerrod stone
Verifying in your browser…
Verified — results are authentic
Verification failed
Revealed server seed
f448ffb35bbd22500c4025ce6e1fe171bb5c1ed77816a282e103c05354928aca
Derived draw seed
902c38b67aae8d620dfb7e48101715712f59dc0db85883a91c5ef57a58f701f4
Eligible entrants (10 entrants, 12 total slots)
[#1405(1), #1413(1), #1415(1), #1420(1), #1421(3), ...]
Entrant #1405: 1 entry
Entrant #1413: 1 entry
Entrant #1415: 1 entry
Entrant #1420: 1 entry
Entrant #1421: 3 entries
Entrant #1422: 1 entry
Entrant #1424: 1 entry
Entrant #1425: 1 entry
Entrant #1426: 1 entry
Entrant #1427: 1 entry