Independent Verifier

MINES
FAIRNESS

Every mines game is mathematically verifiable. The server cannot change the mine positions after your bet — proven by SHA-256.

01

Before the game starts, the server generates a serverSeed and sends you its SHA-256 hash. It cannot change the seed after this point.

02

You provide a clientSeed. The mine positions are derived from SHA-256(serverSeed:clientSeed:nonce:attempt), ensuring neither party can manipulate the result.

03

After the game, the serverSeed is revealed. You can verify the mine positions were fair by entering the seeds below.

Verify a game
Mine positions
SHA-256(serverSeed)
✓ Mine positions verified
Algorithm
MINE POSITION CALCULATION
for each mine attempt:
  combined = serverSeed + ":" + clientSeed + ":" + nonce + ":" + attempt
  hash = SHA256(combined)
  hex8 = hash[0..7]
  position = parseInt(hex8, 16) % 25 + 1
GRID
SAFE 25 - mineCount cells
MINE 1 to 24 mines
Game History
LIVE
Date Game ID Mines Bet Result Cashout Server Seed Hash Nonce
Loading...
Copied to verifier!