Game Verification

Verify that any game outcome on IntelliVerseX was determined fairly using our provably fair system.

How Provably Fair Works

1

Server Seed Generation

Before each game, our server generates a random seed. A hash of this seed is shown to you before the game starts, committing us to the outcome.

2

Client Seed Input

You can optionally provide your own client seed, which is combined with the server seed to determine the outcome. This ensures we can't predict or manipulate results.

3

Outcome Determination

The game outcome is determined by combining both seeds using a cryptographic hash function (SHA-256).

4

Verification

After the game, the server seed is revealed. You can verify that: (a) the revealed seed matches the pre-game hash, and (b) the outcome was correctly derived from both seeds.

Verify a Game

Find this in your game logs

Manual Verification

For advanced users who want to verify outcomes independently using their own tools:

  1. 1. Obtain the server seed, client seed, and nonce from your game log
  2. 2. Concatenate: server_seed + client_seed + nonce
  3. 3. Hash the result using SHA-256
  4. 4. Convert the first 8 characters of the hash to a decimal number
  5. 5. Apply the game's specific outcome formula (documented in game rules)
  6. 6. Compare with the recorded outcome
View full technical documentation →

Related: Game Logs · RNG Audit · Transparency