Transparency
Provably Fair
Every spin on NoxLoot uses SHA-256 cryptographic hashing. You can independently verify that every result was determined fairly before the spin happened — no trust required.
How It Works
1
Server Seed
Before you spin, we generate a random server seed and show you its SHA-256 hash. We cannot change the seed after showing you the hash.
2
Client Seed
You provide your own client seed (or we generate one). This ensures we cannot predict or manipulate the outcome.
3
Nonce
A counter that increments with each spin. This ensures each spin produces a unique result even with the same seeds.
Verification Formula
combined_hash = HMAC-SHA256(server_seed, client_seed + ":" + nonce)
item_index = parseInt(combined_hash.slice(0, 8), 16) % total_weight
// Walk the weighted item list to find the winning itemVerify a Spin
Enter the values from any spin to independently verify the result. You can find these values in the spin verification dialog after each open.