$10.00

Ended
Prize

$10.00

paid in BTC
Entries closed

Ended

Entries8
Tickets8
Yours0
Chance
Result

Blbooobrah

ticket #8

In the draw

8
Ticket allocation (8)

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

EntrantTicketsRange
Marlin7771 11–1
RambleGambleFamily 12–2
YoooLucky 13–3
JorghinoBr 14–4
Waggy69 15–5
ScamG001 16–6
LuxMyss 17–7
Blbooobrah winner18–8

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)
27174bb5d8c0378800c0822c779fe6922e09ee088b3819e392e25ef615674f9c
Client seed
019f9625-6d8d-751b-8170-961c7de8ac85
Nonce
0
Total tickets
8
Server seed (revealed)
052c521dd32850505ac21c7353eb48a941539f99c314162be1bba95ff22f8221
Winning ticket
#8
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   = "052c521dd32850505ac21c7353eb48a941539f99c314162be1bba95ff22f8221";
const clientSeed   = "019f9625-6d8d-751b-8170-961c7de8ac85";
const nonce        = 0;
const totalTickets = 8;

// 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);