Total Given Away:Loading...
How It Works
Every game result is generated using HMAC-SHA256 — a cryptographic function that cannot be manipulated. The process:
- Before your bet, we show you the SHA-256 hash of the server seed. The real seed is hidden.
- You supply a client seed (default is random, you can change it).
- A nonce increments by 1 each bet — every bet has a unique result.
- Result is
HMAC-SHA256(serverSeed, "{clientSeed}:{}") - When you rotate seeds, the real server seed is revealed — you can hash it yourself to confirm it matches what was shown before.
// Verify yourself with Node.js:
const crypto = require('crypto')
const hmac = crypto.createHmac('sha256', SERVER_SEED)
hmac.update(`${CLIENT_SEED}:${NONCE}`)
const hex = hmac.digest('hex')
const float = (parseInt(hex.slice(0, 8), 16) % 10000) / 100
Verify a Result