← All tools

Wheel Verifier

Online Wheel is a customizable game of risk and reward presets. This Wheel Verifier (which operates under the same mathematical principles as our Universal Verifier) lets you select your segment count and risk profile to reproduce the exact sector lands of any round. To audit your session, read our guide to the Server Seed, Client Seed, and Nonce.

Wheel Verifier

Computes the landing segment index. Cross-reference with the operator's payout ladder for your chosen risk profile.
Result

The mechanics of digital wheel segments

Online Wheel games allow you to customize your gaming experience. You can choose the number of segments on the wheel (typically 10, 20, 30, or 50 pockets) and select a risk tier (Low, Medium, or High). Payout multipliers are distributed around the wheel sectors accordingly.

Because the game is completely customizable, it is easy to feel skeptical about whether the wheel pockets are truly uniform or if the casino is shifting the sector positions during high-stake spins. A provably fair wheel verifier lets you reconstruct any spin using standard seed math.

Uniform Probability: Regardless of your risk preset, every single segment on the wheel has an identical, mathematically equal probability of being landed. The risk tiers only change the payout multipliers associated with each pocket—they do not change the wheel’s physics.

The math: Mapping seeds to segments

The verifier calculates the winning pocket index by converting your seeds into a uniform segment number:

1. Generating the segment float

The game combines your server seed, client seed, and nonce under HMAC-SHA256. The first 4 bytes of this hash are converted to a decimal fraction U between 0 and 1:

U = Hex_To_Decimal(First_8_Chars) / 4294967296

2. Mapping to the segment count

To find which segment index landed, the verifier multiplies the fraction U by the total number of segments S (e.g. 10, 20, 30, or 50) and floors the result:

Segment_Index = Floor(U * S)

This index represents a pocket numbered from 0 to S - 1.

Data Sandwich: Auditing a 50-segment wheel spin

Let’s audit an actual spin. You select a 50-segment wheel on High Risk. You spin, and the wheel lands on Segment 42, triggering a massive 15x multiplier.

You rotate your seeds and paste the details into this verifier:

  • Server Seed: a8d29b...
  • Client Seed: wheel_spinning_win
  • Nonce: 12
  • Segments Count: 50

The verifier runs the HMAC-SHA256 hash. The first 4 bytes yield a decimal fraction of U = 0.852491.

Applying the mapping formula:

Segment_Index = Floor(0.852491 * 50) = Floor(42.624) = 42

The calculated segment matches your game history exactly. The spin is validated as cryptographically fair.

Frequently asked questions

What does risk tier mean in Wheel?

Risk tiers change the multipliers on the pockets. Low Risk has multipliers close to 1x on almost all segments, resulting in small, frequent wins. High Risk has many 0x pockets (instant losses) but features massive 50x or 99x payouts on a few segments.

How does a segment count change my win probability?

It changes the payout density. A 10-segment wheel has less resolution than a 50-segment wheel. Sizing up the segments allows the casino to distribute the risk and rewards more granularly, but the house edge remains the same.

Why is my client seed important?

Entering a custom client seed prevents the casino from selecting a server seed that specifically lands on a 0x multiplier segment when your bet size is high. It guarantees mutual trust.