Server-Side RNG Demo -- This game uses the platform's Game Aggregation Layer (GAL) with server-side CSPRNG. Every bet is resolved server-side, and you receive an RNG seed hash for provable fairness. No client-side randomness. This is the key architectural difference from the production casino demo games.
Login
Register New Account
Lucky Sevens Slot Server-Side RNG
Your Balance
$0.00
?
?
?
Session
Player: --
Player ID: --
Session ID: --
Game: lucky-sevens
Rounds: 0
Total Bet: $0.00
Total Win: $0.00
RNG Audit Trail
Place a bet to see the RNG seed hashes from the server. Each round produces a cryptographic proof.
Server-Side vs Client-Side RNG

Server-Side RNG (This Demo)

  • CSPRNG runs on the server (Python secrets module)
  • Every bet resolved by the GAL via API call
  • RNG seed hash returned for provable fairness
  • Balance computed from event-sourced wallet
  • RTP controlled server-side (80-99%)
  • Cannot be manipulated by the client
  • Regulatory-compliant architecture

Client-Side RNG (Prod Demo Games)

  • Math.random() runs in the browser
  • Game outcome determined by JavaScript
  • No cryptographic proof of fairness
  • Balance stored in localStorage
  • RTP adjusted via localStorage factor
  • Player can inspect and modify via DevTools
  • For demonstration purposes only