$10.00

Ended
Prize

$10.00

paid in USDT
Entries closed

Ended

Entries15
Tickets15
Yours0
Chance
Result

ScamG001

ticket #1

In the draw

15
Ticket allocation (15)

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

EntrantTicketsRange
ScamG001 winner11–1
WebsterAk7 12–2
Marlin7771 13–3
booth 14–4
Easymoneyx0 15–5
mateob400 16–6
RambleGambleFamily 17–7
Dukeioxx 18–8
YoooLucky 19–9
Blbooobrah 110–10
notoriusJSS 111–11
Rawrzz_x 112–12
LuxMyss 113–13
Waggy69 114–14
JorghinoBr 115–15

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)
2e8581aee731605b9b2c64a25d152f244039b9fbf4f62f93cbeaee58536827b5
Client seed
019f961d-dbd0-7883-a844-894fd993c5bb
Nonce
0
Total tickets
15
Server seed (revealed)
84e039d358d1a785ca4b589e92d6cc77dedddbb860a3e33d955325aa16697aad
Winning ticket
#1
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   = "84e039d358d1a785ca4b589e92d6cc77dedddbb860a3e33d955325aa16697aad";
const clientSeed   = "019f961d-dbd0-7883-a844-894fd993c5bb";
const nonce        = 0;
const totalTickets = 15;

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