Provably-fair proof
This page reproduces the winner computation from public inputs. You can recompute every step in your browser's DevTools — don't trust our math, verify it.
1. Pre-commit (server_seed_hash)
Published when the draw went live (2026-06-15T06:44:04.262Z).
a1f6a7fb9b7bdb665ee43aff296b30114b621a727dccedddcd5070cc180056c72. Reveal (server_seed)
Revealed after draw (2026-06-29T06:43:28.598Z).
077d43438c34f4486713d8a01bb0b2c3ab350df1929b3bfd4740bf0bb5a102b7Hash check: ✓ sha256(server_seed) === published hash
3. Client seed inputs (all sold eggs)
| # | Wallet | Winner? |
|---|---|---|
| 22 | Es5494...p7bs | 🎉 |
4. Derived client_seed
client_seed = sha256(sorted by entry_number, joined as "N:wallet" with '|')
3971f658be390f84993b890e5a4ef1e4b0886200156044a74f4bb370c057dc1f5. External entropy (Bitcoin block)
Mixed into the HMAC input so the draw depends on a value the operator could not have known when the server seed was committed ( 2026-06-15T06:44:04.262Z). Any Bitcoin block mined after the commit works — we take the tip at draw time.
000000000000000000000ce9b4f243a3239a5a1020434fe9fc803878a3e12aaablock time2026-06-29T06:35:41.000ZCross-check on mempool.space or blockstream.info.
6. Winner computation
HMAC-SHA256(server_seed, "client_seed:lotto_id:source:height:hash"), first 16 hex chars, mod sold_count (1).
hmac = 14063792d466252709219129f1b4898a778374e21fbc8509cdfdc4152484b86cComputed index: 0 → winning egg: #22
7. Independent verification
Show JS snippet (paste into DevTools)
const seed = "077d43438c34f4486713d8a01bb0b2c3ab350df1929b3bfd4740bf0bb5a102b7";
const hashStr = "a1f6a7fb9b7bdb665ee43aff296b30114b621a727dccedddcd5070cc180056c7";
const clientSeed = "3971f658be390f84993b890e5a4ef1e4b0886200156044a74f4bb370c057dc1f";
const lottoId = "4cc17630-b913-4782-b48a-481f93d81c8d";
const sold = 1;
const entropy = "mempool.space:955896:000000000000000000000ce9b4f243a3239a5a1020434fe9fc803878a3e12aaa";
async function run() {
const enc = new TextEncoder();
const seedBytes = enc.encode(seed);
const hashed = await crypto.subtle.digest("SHA-256", seedBytes);
const recomputed = [...new Uint8Array(hashed)]
.map((b) => b.toString(16).padStart(2, "0")).join("");
console.log("hashOk:", recomputed === hashStr);
const key = await crypto.subtle.importKey(
"raw", seedBytes, { name: "HMAC", hash: "SHA-256" }, false, ["sign"]
);
const message = entropy
? clientSeed + ":" + lottoId + ":" + entropy
: clientSeed + ":" + lottoId;
const sig = await crypto.subtle.sign("HMAC", key, enc.encode(message));
const hex = [...new Uint8Array(sig)]
.map((b) => b.toString(16).padStart(2, "0")).join("");
const idx = Number(BigInt("0x" + hex.slice(0, 16)) % BigInt(sold));
console.log("hmac:", hex);
console.log("winnerIndex:", idx);
}
run();