Roulette - Provably Fair
All round results on PLG.BET are generated using the provably fair algorithm. This means that the results are generated before the bets are accepted and that they can't be altered by casino for their benefit. The process of verify round results is transparent and accessible to everyone.
For the Roulette game, every 24 hours, random number (lotto) and string of random letters and numbers (seed) is generated that will be used to generate all round results for that day.
While Seed is being used, it is hidden from users. Instead, we display the SHA256-Hash of this seed. The SHA256 function is deterministic (you will get the same result with the same input), which proves that the round results has not been changed during the day to favor the casino.
Also, each round of the game has a unique Round ID or Nonce. The combination of Nonce Lotto and Seed determines the outcome of each round.
To check the result of the game, you can use the PHP code given below:
- $server_seed = "39b7d32fcb743c244c569a56d6de4dc27577d6277d6cf155bdcba6d05befcb34";
- $lotto = "0422262831";
- $round_id = "1";
- $hash = hash("sha256", $server_seed."-".$lotto."-".$round_id);
- $roll = hexdec( substr($hash,0,8)) % 15;
- echo "Round $round_id = $roll";
You can execute PHP code straight from your web browser with tools like PHP Tester. Simply copy-paste the code into the window and replace the server_seed, lotto, and round_id values for your own.
Date | Server Seed | Lottery | Rolls |
---|