SPIN THE WHEEL
TRY YOUR LUCK
Place your chip on a number, then spin the wheel. Each spin uses a hidden
server seed, a client seed, and a
round number to generate a verifiable random result between 1 and 30.
Winning Number
—
Place your chip
Tap a number to drop your $GME chip.
You must place a chip before spinning.
You must place a chip before spinning.
24h Leaderboard (Prototype)
Every correct guess adds +1 win to your local session stats and would
send a payload to a backend in a full build. This demo just shows what would be tracked.
Player not set yet – you’ll be asked for an alias + wallet on your first spin.
Wins this session: 0 • Spins last 30 min (this wallet): 0 / 20
demo – no on-chain auth
Fairness & Verification Details ▶
Server seed hash (commitment)
…
Server seed (shown here for demo verification)
[not set yet]
Client seed (fixed for this session)
…
Current spin round
1
Formula
combined = serverSeed + ":" + clientSeed + ":" + round
hash = SHA256(combined)
value = first 8 hex chars of hash, as integer
result = (value mod 30) + 1
hash = SHA256(combined)
value = first 8 hex chars of hash, as integer
result = (value mod 30) + 1
Last spin – combined string
—
Last spin – SHA256 hash
—
You can recompute any spin in an external SHA-256 tool using the values above.
Applying
(value mod 30) + 1 to the integer from the first 8 hex chars
should give the same Winning Number shown above.
