Live · provably-fair holder lotteryCA SOON
$LOOTED launch soon
Provably fair

Fairness & verification

Both the hourly card draw and the weekly SOL lottery use one commit-reveal scheme we can't game and you can fully reproduce. Here's the exact flow, a live in-browser verifier, and the honest limits.

01

Commit

Before the window opens we publish only the SHA-256 hash of a secret 256-bit server seed on-chain. We are locked in.

02

Snapshot

At close we read every eligible token account at the finalized slot, convert balances to tickets, and publish a Merkle root over the entries.

03

Reveal

We publish the original seed. Anyone checks SHA-256(seed) equals the committed hash.

04

Roll

We HMAC the seed with the Solana slot hash (unknown at commit) and draw id, then map it across the ticket-weighted holders.

Live verifier

verifying…

This runs the real roll function in your browser against a published test vector (draw #242). If our math is honest, the output matches the published roll exactly.

serverSeedff5e7adbd3148cc0b0d123e4acd09e9d658b7511871ad781f3578da3dbd92ede
slotHashbe1c983c5a45ae9a6ef8a3c55dd67f065cfcd8633b2250c239d1fd24aecd303d
drawId242
expectedRolld9542483e1521be2cf1eff00c90f579e3a6f95771fa71efaf306e11576da73f2

Reference implementation

// roll = HMAC-SHA256(key = serverSeed, msg = slotHash || drawId) function roll(serverSeedHex, slotHashHex, drawId) { const mac = createHmac('sha256', Buffer.from(serverSeedHex, 'hex')) mac.update(Buffer.from(slotHashHex, 'hex')) mac.update(Buffer.from(String(drawId), 'utf8')) return mac.digest('hex') }

What we can't do

  • Change the seed after committing — the hash is on-chain first.
  • Pick the winner — the slot hash isn't known at commit time.
  • Pay the operator or an LP — they're hard-excluded from the draw.
  • Fake a payout — every airdrop and SOL transfer is on-chain.

What still needs trust

  • The operator hot wallet custodies cards until airdrop.
  • Snapshot timing depends on RPC finality.
  • Collector Crypt valuations are third-party.
  • This is a young product — not audited, not legal advice.