Game Verification
Verify that any game outcome on IntelliVerseX was determined fairly using our provably fair system.
How Provably Fair Works
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.
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.
Outcome Determination
The game outcome is determined by combining both seeds using a cryptographic hash function (SHA-256).
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
Manual Verification
For advanced users who want to verify outcomes independently using their own tools:
- 1. Obtain the server seed, client seed, and nonce from your game log
- 2. Concatenate: server_seed + client_seed + nonce
- 3. Hash the result using SHA-256
- 4. Convert the first 8 characters of the hash to a decimal number
- 5. Apply the game's specific outcome formula (documented in game rules)
- 6. Compare with the recorded outcome
Related: Game Logs · RNG Audit · Transparency