$10.00
EndedPrize
$10.00
paid in BTCEntries closed
Ended
Entries10
Tickets10
Yours0
Chance—
Result
ZakStorm69
ticket #7In the draw
10Ticket allocation (10)
In the exact order tickets were assigned — oldest first. The winning ticket falls inside one of these ranges.
| Entrant | Tickets | Range |
|---|---|---|
| giggletickler42 | 1 | 1–1 |
| Icegamingraf | 1 | 2–2 |
| botokar0n | 1 | 3–3 |
| Garnet_GG | 1 | 4–4 |
| johnnybones0 | 1 | 5–5 |
| Sophia73 | 1 | 6–6 |
| ZakStorm69 winner | 1 | 7–7 |
| myruto | 1 | 8–8 |
| lululemonisgreat | 1 | 9–9 |
| Kick_mafia5577 | 1 | 10–10 |
Provably fair
The seed is out. Everything needed to reproduce this draw is below — the check runs in your own browser.
- Server seed hash (published before the draw)
- 31b04d2c01a469635a30c590c22c7067d63b5751be6d03f3324cb1bcbf59f17c
- Client seed
- 019fcd95-a5c3-76e5-81c7-274f87034a3a
- Nonce
- 0
- Total tickets
- 10
- Server seed (revealed)
- 6916d8a89ce04091e6ab9bbf81e0cb37502265b9e52f83501f8f3d36c251c5bd
- Winning ticket
- #7
Could not run the check in this browser.
Reproduce it yourself
// Reproduce this draw with Node (no dependencies)
const { createHmac, createHash } = require("node:crypto");
const serverSeed = "6916d8a89ce04091e6ab9bbf81e0cb37502265b9e52f83501f8f3d36c251c5bd";
const clientSeed = "019fcd95-a5c3-76e5-81c7-274f87034a3a";
const nonce = 0;
const totalTickets = 10;
// 1. The published hash must match the revealed seed
console.log("seed hash:", createHash("sha256").update(serverSeed).digest("hex"));
// 2. The seed's hex string is the HMAC key
const hmac = createHmac("sha256", serverSeed)
.update(`${clientSeed}:${nonce}`)
.digest("hex");
// 3. First 13 hex chars = 52 bits, exact in float64
const n = parseInt(hmac.slice(0, 13), 16);
console.log("winning ticket:", (n % totalTickets) + 1);