$10.00

Ended
Prize

$10.00

paid in BTC
Entries closed

Ended

Entries22
Tickets22
Yours0
Chance
Result

Naton9002

ticket #12

In the draw

22
Ticket allocation (22)

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

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

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)
91ae61b1efd87c7539c591ddde53373ff92400dd8d3d24cb48b27e1870d2747a
Client seed
019fc47d-fbde-7019-a06f-a91a4e15448e
Nonce
0
Total tickets
22
Server seed (revealed)
cba166e033f441af4888cd06a6d8802f6055788d1788e5fb96573a10480d9e9e
Winning ticket
#12
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   = "cba166e033f441af4888cd06a6d8802f6055788d1788e5fb96573a10480d9e9e";
const clientSeed   = "019fc47d-fbde-7019-a06f-a91a4e15448e";
const nonce        = 0;
const totalTickets = 22;

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