Draw Verification
Choose Your Combat Patrol or Spearhead
Draw Result
- Winner
- Bateman, Leicestershire
- Winning ticket
- #240
- Entries in pool
- 78 (all entrants)
- Winner index
- 75 (0-based)
- Draw executed
- 1 Sep 2026, 8:36 PM
- Entropy source
- secrets.SystemRandom (instant-win positions at setup)
- Fairness mechanism
- SHA-256 commit-reveal — selection by sha256(legion-draw-v1:draw:draw_secret:pool_hash:drand_randomness:counter) rejection sampling
How This Result Was Produced
7 steps, each one checkable against the values published below. Nothing here depends on trusting us — every input is shown.
Verify commitment was published before the draw
This sha256 hash was published when the competition was created. It proves the draw_secret could not have been changed after tickets were sold.
beeb519a061129fb2bf9c82a567fef0b3bd4e2d2f1f383214006137fb8032a91
Verify the pool-freeze commitment was published before the beacon round
sha256 of the exact UTF-8 string 'legion-draw-v1:pool_freeze:' + pool_hash + ':' + drand_chain_hash + ':' + str(round_number) — colon-separated, no spaces, no trailing newline. Published before the targeted round resolved, it pins both the entry pool and the round while the round's randomness was still unknowable. Rebuild it from this page's published values with the command below.
736346326a0511c880574458cf99b4174e96d1d434b49e11131d99f82f1d8003
python3 -c "import hashlib; print(hashlib.sha256('legion-draw-v1:pool_freeze:356ee97674e6ff8898da11780e32c95c8d01d8f0e9e58bba8ce8dc2773740b31:52db9ba70e0cc0f6eaf7803dd07447a1f5477735fd3f661792ba94600c84e971:31829321'.encode()).hexdigest())"
Verify draw_secret matches commitment_hash
The draw_secret is revealed below. sha256(draw_secret) is shown — it must equal the commitment_hash in step 1.
draw_secret (input)
0ef0571802bf96f4641b70f1c1671161a833cca6bdb7d8a5cf64f814fd368f46
sha256(draw_secret) must equal step 1
beeb519a061129fb2bf9c82a567fef0b3bd4e2d2f1f383214006137fb8032a91
Verify the entry pool hash
sha256 of every ticket number in the draw pool, in ascending numeric order, joined with commas and no spaces.
356ee97674e6ff8898da11780e32c95c8d01d8f0e9e58bba8ce8dc2773740b31
Verify the drand beacon randomness
Round 31829321 of the public drand randomness beacon (chain 52db9ba70e0cc0f6eaf7803dd07447a1f5477735fd3f661792ba94600c84e971). This value is published independently by multiple operators and could not have been known when the pool above was frozen. Check it yourself: fetch https://api.drand.sh/52db9ba70e0cc0f6eaf7803dd07447a1f5477735fd3f661792ba94600c84e971/public/31829321, hex-decode the response's 'signature' field into raw bytes, then compute sha256 of those bytes — it must match the value shown here. (Hashing the ASCII hex text of the signature instead of the decoded bytes gives a different, wrong answer.) The command below does exactly that.
bcc62bd7d25fa301d5fb19cc6cdeef7b6d02db06d4c99d6db743786cfbba4c3d
python3 -c "import hashlib, json, urllib.request; r = json.load(urllib.request.urlopen('https://api.drand.sh/52db9ba70e0cc0f6eaf7803dd07447a1f5477735fd3f661792ba94600c84e971/public/31829321')); print(hashlib.sha256(bytes.fromhex(r['signature'])).hexdigest())"
Verify the beacon's BLS signature
Before accepting the randomness above, the platform checked drand's BLS12-381 signature for this round against this chain public key — a relay can withhold a round but cannot forge one without drand's private key. Fetch the round's 'signature' field from the URL above and verify e(H(round_bytes), public_key) == e(signature, G2_generator) yourself with any BLS12-381 library; source: https://drand.love/developer/http-api/.
83cf0f2896adee7eb8b5f01fcad3912212c437e0073e911fb90022d3e760183c8c4b450b6a0a6c3ac6a5776a2d1064510d1fec758c921cc22b0e17e63aaf4bcb5ed66304de9cf809bd274ca73bab4af5a6e9c76a4bc09e76eae8991ef5ece45a
Reproduce the winner selection (rejection sampling)
Starting at counter=0, compute sha256(f'legion-draw-v1:draw:{draw_secret}:{pool_hash}:{drand_randomness}:{counter}') as a 256-bit integer. Let limit be the largest multiple of N below 2^256. If the value is >= limit, increment counter and retry. Otherwise winner_index = value mod N.
counter=0, winner_index=75
Check It Yourself
Run every check in your own browser. It recomputes the hashes and the winner selection locally from the values published on this page, and fetches the drand round directly from the public relays — nothing is sent to our servers, so a pass cannot depend on trusting us.
- Confirm sha256(draw_secret) equals the commitment hash in step 1.
-
Confirm the sha256 of the entry pool below equals the pool hash in step 3. Hash the text
exactly as shown — ticket numbers in ascending numeric order, separated by commas, with no
spaces and no trailing newline.
Entry pool — ticket numbers in ascending numeric order
2,6,9,10,18,19,21,23,28,33,34,35,37,38,40,42,49,56,58,60,63,64,68,71,72,74,76,77,79,80,86,88,89,92,93,99,105,106,110,114,124,125,127,128,132,146,147,150,153,157,159,160,162,167,168,170,171,174,177,182,187,191,193,196,199,200,206,207,211,217,220,227,229,234,235,240,248,249 -
Run the pre-filled command below to reproduce the beacon-seeded rejection-sampling winner
index (counter=?, expected
winner_index=75). This folds in the drand beacon randomness from
the step above alongside the draw secret and pool hash, so the winner could not have been
known until that round resolved.
python3 - <<'PY' import hashlib draw_secret = '0ef0571802bf96f4641b70f1c1671161a833cca6bdb7d8a5cf64f814fd368f46' pool_hash = '356ee97674e6ff8898da11780e32c95c8d01d8f0e9e58bba8ce8dc2773740b31' beacon_randomness = 'bcc62bd7d25fa301d5fb19cc6cdeef7b6d02db06d4c99d6db743786cfbba4c3d' total_entries = 78 counter = 0 limit = (1 << 256) - ((1 << 256) % total_entries) while True: seed = hashlib.sha256(f'legion-draw-v1:draw:{draw_secret}:{pool_hash}:{beacon_randomness}:{counter}'.encode()).digest() candidate = int.from_bytes(seed[:32], 'big') if candidate < limit: print(f'counter={counter} winner_index={candidate % total_entries}') break counter += 1 PY
Full Entry List
All sold tickets with entry method and optional-question answer status (no personal names). Download it to cross-reference ticket numbers against the draw pool; the "In Main Draw" column marks which rows formed it.
Download entry list CSVIndependent Timestamp Proof
Each commitment hash is anchored to the Bitcoin blockchain via
OpenTimestamps. A confirmed
proof establishes the hash existed before the Bitcoin block that attests it —
checkable without trusting our records. Save the commitment hash to a file and check the proof
with the free ots tool:
printf '%s' 'COMMITMENT_HASH' > commitment.txt && ots verify -f commitment.txt proof.ots
Draw commitment — anchored in Bitcoin 24 Aug 2026 15:05 UTC
beeb519a061129fb2bf9c82a567fef0b3bd4e2d2f1f383214006137fb8032a91
Download OTS proof
Instant win commitment — anchored in Bitcoin 25 Aug 2026 15:04 UTC
1119e09963b6f191f41fb8ad5f55538a71029c1a633a42f6ed532754069f63df
Download OTS proof
Pool freeze commitment — anchored in Bitcoin 1 Sep 2026 22:05 UTC
736346326a0511c880574458cf99b4174e96d1d434b49e11131d99f82f1d8003
What this proof does and does not show: Bitcoin confirmation takes hours, while the targeted drand round resolves seconds after the pool freeze — so a confirmed proof here demonstrates the pool-freeze commitment existed before its attesting block, not that the freeze happened before the drand round. The freeze-before-round ordering rests on the commitment having been published before the round resolved (step 2 above) and on our audit records.
Download OTS proof