$10.00

Ended
Prize

$10.00

paid in BTC
Entries closed

Ended

Entries11
Tickets11
Yours0
Chance
Result

DDP7

ticket #10

In the draw

11
Ticket allocation (11)

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

EntrantTicketsRange
dylanpatel1 11–1
TheOriginalGM 12–2
rileyburns67 13–3
ryanalavi 14–4
StillAdicted 15–5
GizzySquizzy 16–6
JohnLocker 17–7
Daar1ck 18–8
Fr0z0no 19–9
DDP7 winner110–10
dp_6769 111–11

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)
26804ed76c3b0806618594ef988e2c19e461558f7f879c9525c0cdd38e8202aa
Client seed
019f9b36-0b44-761e-8e36-89c19a3059c1
Nonce
0
Total tickets
11
Server seed (revealed)
61b89edfbe7ff9b49a42d8e3d690a7ccda7abd7d87b337ab6b68a3fa8ca7f9df
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   = "61b89edfbe7ff9b49a42d8e3d690a7ccda7abd7d87b337ab6b68a3fa8ca7f9df";
const clientSeed   = "019f9b36-0b44-761e-8e36-89c19a3059c1";
const nonce        = 0;
const totalTickets = 11;

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