$10.00

Ended
Prize

$10.00

paid in BTC
Entries closed

Ended

Entries23
Tickets23
Yours0
Chance
Result

Bababobny3

ticket #10

In the draw

23
Ticket allocation (23)

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

EntrantTicketsRange
Kazedxx 11–1
Bankrollbet 12–2
CharlesDRaveN 13–3
Marlin7771 14–4
Naton9002 15–5
luckitypbeat 16–6
RambleGambleFamily 17–7
brobezoz 18–8
YoooLucky 19–9
Bababobny3 winner110–10
Blbooobrah 111–11
BurtySZN 112–12
GronksGems 113–13
WallyTahkiinte 114–14
fix_r0s 115–15
JorghinoBr 116–16
sIotdaddy1982 117–17
Mymiing 118–18
RobJomees 119–19
ZainSaleem 120–20
Waggy69 121–21
LuxMyss 122–22
fabriicamo 123–23

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)
8b1af837b2f240f8ddadf004974f596c91a91758e0501f4eb8515bcd424a65d8
Client seed
019fc482-3d63-71a0-b3ed-5bfa2d68226f
Nonce
0
Total tickets
23
Server seed (revealed)
b2e94f44005b234619d96ba872730a69b957737a262571b3a715e75b64e56ab3
Winning ticket
#10
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   = "b2e94f44005b234619d96ba872730a69b957737a262571b3a715e75b64e56ab3";
const clientSeed   = "019fc482-3d63-71a0-b3ed-5bfa2d68226f";
const nonce        = 0;
const totalTickets = 23;

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