Game Fairness Verification

Verify Outcome

Verify the fairness of game outcomes by checking the seed, hash, and multiplier.

How It Works

  1. Server generates a random seed.
  2. Seed is hashed and committed publicly.
  3. Crash multiplier is derived from the seed.
  4. Seed is revealed after the game.
  5. 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);
}