Game Fairness Verification
Verify Outcome
Verify the fairness of game outcomes by checking the seed, hash, and multiplier.
How It Works
- Server generates a random seed.
- Seed is hashed and committed publicly.
- Crash multiplier is derived from the seed.
- Seed is revealed after the game.
- Verify the seed matches the hash and multiplier.
Crash Algorithm
function generateCrashPoint(seed) {
const h = (seed % 2**52) / 2**52;
const alpha = 1.3;
let crashPoint = 1 / Math.pow(1 - h, 1 / alpha);
crashPoint *= 0.95; // 5% house edge
return Math.max(1, crashPoint);
}