Provably Fair

Don't trust the studio. Verify it.

Fairness you cannot check is just marketing. Every Clutch round can be independently verified by the player — here is exactly how, with a tool to prove it.

Commit. Play. Reveal. Verify.

Before each round we publish the SHA-256 hash of a secret server seed. The crash point is derived deterministically from that seed, so the outcome is fixed before a single bet is placed. After the round we publish the seed — anyone can re-hash it and recompute the exact result.

SHA-256 hash
Derived crash point
The math, in the open

The exact crash-point formula.

No black box. This is the function every one of our crash games uses to turn a seed hash into a result — the same one running in the verifier above.

crash-point.js
// 52 bits of the hash → a crash multiplier.
// The formula carries a built-in 1% house edge (99% RTP).
function crashPoint(hash) {
  const r = parseInt(hash.slice(0, 13), 16);
  const e = Math.pow(2, 52);
  return Math.floor((100 * e - r) / (e - r)) / 100;
}
Beyond the demo

How we earn certification.

🔬

Independent RNG testing

Our RNG and RTP are built to be tested by accredited labs (e.g. iTech Labs / GLI). Reports will be published here as they are completed.

📜

Published methodology

The fairness method, formula and seed-rotation policy are documented openly — not buried in a vendor PDF.

🔁

Seed rotation & history

Server seeds rotate on a published schedule, with the prior seed and a verifiable chain available to players.

Fairness FAQ

What stops you changing the result after bets are placed?
The hash is published before the round. Because SHA-256 is one-way, we cannot find a different seed that produces the same hash — so the committed outcome is mathematically locked.
Can I verify a real round, not just the demo?
Yes. In live games each round exposes its hash beforehand and its seed afterward, plus the round ID. Paste the seed into a verifier (like the one above) and you will recompute the same crash point.
Is the house edge hidden?
No. The 1% edge is a property of the published formula above — roughly 1% of rounds resolve at 1.00×. There is no secret instant-bust layered on top.
Are you certified yet?
We are a new studio and we will not claim certifications we do not hold. Lab reports and licenses will be posted on this page the moment they are issued.

Want the full fairness whitepaper?

Tell us about your platform and we'll get you sandbox keys and a guided demo within 24 hours.

Get a Demo