$10.00

Ended
Prize

$10.00

paid in BTC
Entries closed

Ended

Entries21
Tickets21
Yours0
Chance
Result

Dalvo0

ticket #18

In the draw

21
Ticket allocation (21)

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

EntrantTicketsRange
RambleGambleFamily 11–1
misterboton 12–2
blackbradpittogFAN 13–3
Dabihgahxadia 14–4
YoooLucky 15–5
RowThaBoatt 16–6
Ox_Astroo 17–7
Blbooobrah 18–8
neverbighlt 19–9
Mymiing 110–10
dougIegend84 111–11
BurtySZN 112–12
RobJomees 113–13
kuunnal 114–14
Najno11 115–15
JorghinoBr 116–16
Naton9002 117–17
Dalvo0 winner118–18
NotActuallyTJR 119–19
MonTanaa_Tony50 120–20
0playbolcarti 121–21

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)
2b157a23751d202109ca6654638b14241f75b29473b3a88a105c8f1cb7a90982
Client seed
019fc971-f988-7f8a-a9a7-d5561f77db6c
Nonce
0
Total tickets
21
Server seed (revealed)
f6f098a8c2b2c92db39509c69aafe474ff0f0bbcf436b05448b34d481a1f0aef
Winning ticket
#18
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   = "f6f098a8c2b2c92db39509c69aafe474ff0f0bbcf436b05448b34d481a1f0aef";
const clientSeed   = "019fc971-f988-7f8a-a9a7-d5561f77db6c";
const nonce        = 0;
const totalTickets = 21;

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