← All Provably Fair Verifiers
🔒 100% in your browser · your seeds never leave your device

Mines Provably Fair Verifier

Recompute the Mines layout from your revealed seeds. Set the mine count to exactly what the round used.

⚠️ Set the mine count to exactly what the round used.

Computed locally via the Web Crypto API (HMAC-SHA256) — no server call. Your seeds and nonce never leave your device. It's the same code we test against Stake's own calculator.

We check more than your round. This confirms one Mines result. Whether the generator is fair overall is what our independent RNG audits answer — millions of real rounds against NIST SP 800-22 + PractRand. Anyone can verify a round; almost nobody audits the generator.

How Mines provably fair works

Mines hides N bombs among 25 tiles. The layout isn't picked all at once — it's drawn sequentially without replacement, one float per mine, exactly the way Stake shows it on its calculation page.

The result comes from the standard Stake-style byte stream:

HMAC-SHA256( key = server_seed , message = "client_seed:nonce:round" )

The exact Mines formula

Start with tiles 0–24. For each mine, take one float and remove that tile from the remaining pool:

for each mine:
  idx = floor( f × tiles_remaining )
  mine = pool[idx];  remove it from pool

The result is the list of mine tiles in draw order — not a shuffle of the whole board, a common mistake in other verifiers.

Frequently asked questions

How are Mines positions generated?

Tiles 0–24 are drawn one at a time without replacement: idx = floor(float × tiles remaining). The first N draws are the mine positions, in the order they were drawn.

Why does draw order matter?

Stake displays mines in the exact sequence they were drawn. A full-board shuffle would give the same set but a different order and can look like a mismatch.

Does the mine count change the layout?

Yes — more mines consume more floats. Always set the same mine count the round used.

Can a Mines board be predicted?

No. Nothing is computable until the server seed is revealed; this tool only checks a finished round.

Formula verified bit-for-bit against Stake's reference calculator (Aug 2026). Other games: Dice · Limbo · Plinko · Mines · Keno · all verifiers. Open methodology: /methodology/. © FairPlay Audit — independent, free, open-source.