$10.00
EndedPrize
$10.00
paid in BTCEntries closed
Ended
Entries6
Tickets6
Yours0
Chance—
Result
og_mstar
ticket #2In the draw
6Ticket allocation (6)
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 |
| og_mstar winner | 1 | 2–2 |
| jadeh24 | 1 | 3–3 |
| 1 | 4–4 | |
| Revaaa9 | 1 | 5–5 |
| paraders | 1 | 6–6 |
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)
- 344eecbe198a7bede045360c3b3987021b28018e99c88172e476b946aa5ebf0b
- Client seed
- 019fa0a9-6fa0-7662-b714-6a0a6ccd5fec
- Nonce
- 0
- Total tickets
- 6
- Server seed (revealed)
- 210397d5562126df06e5e29d951edb40474321dac944f90f497bf7f141c51137
- Winning ticket
- #2
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 = "210397d5562126df06e5e29d951edb40474321dac944f90f497bf7f141c51137";
const clientSeed = "019fa0a9-6fa0-7662-b714-6a0a6ccd5fec";
const nonce = 0;
const totalTickets = 6;
// 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);