Lootixo Lootixo
Cases Free Cases More games Deposit
Lootixo • Transparency

Provably Fair

We’re offering a provably-fair system designed to let players independently verify outcomes. This page explains the model

✅ Deterministic, seed-based rolls

What “Provably Fair” Means

Provably fair uses cryptographic commitments (hashes) and deterministic generation so that the outcome can be verified after the round—without trusting a “black box”.

  • The server commits to a seed by publishing its hash.
  • Client seed + nonce are combined with the server seed to produce a deterministic roll.
  • The roll is mapped to an outcome using a published drop table.
Status: the model is in place, and the verification UI/checker will be enabled during rollout.

How Results Are Generated

Each round produces a hash from the seeds and nonce. That hash is converted into a number, then mapped to an outcome.

server_seed_hash = SHA256(server_seed) result_hash = SHA256(server_seed + ":" + client_seed + ":" + nonce) roll = convert(result_hash) // deterministic number 0..1 outcome = map_to_drop_table(roll) // case drop / wheel / dice
Exact formatting (delimiters), conversion method, and mapping rules will be published alongside the public checker.