$10.00
EndedPrize
$10.00
paid in BTCEntries closed
Ended
Entries8
Tickets8
Yours0
Chance—
Result
Blbooobrah
ticket #8In the draw
8Ticket allocation (8)
In the exact order tickets were assigned — oldest first. The winning ticket falls inside one of these ranges.
| Entrant | Tickets | Range |
|---|---|---|
| Marlin7771 | 1 | 1–1 |
| RambleGambleFamily | 1 | 2–2 |
| YoooLucky | 1 | 3–3 |
| JorghinoBr | 1 | 4–4 |
| Waggy69 | 1 | 5–5 |
| ScamG001 | 1 | 6–6 |
| LuxMyss | 1 | 7–7 |
| Blbooobrah winner | 1 | 8–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);