$10.00

Ended
Prize

$10.00

paid in BTC
Entries closed

Ended

Entries10
Tickets10
Yours0
Chance
Result

ZakStorm69

ticket #7

In the draw

10
Ticket allocation (10)

In the exact order tickets were assigned — oldest first. The winning ticket falls inside one of these ranges.

EntrantTicketsRange
giggletickler42 11–1
Icegamingraf 12–2
botokar0n 13–3
Garnet_GG 14–4
johnnybones0 15–5
Sophia73 16–6
ZakStorm69 winner17–7
myruto 18–8
lululemonisgreat 19–9
Kick_mafia5577 110–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);