Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 868 Bytes

RngTillHundred.md

File metadata and controls

35 lines (21 loc) · 868 Bytes

RNG Till Hundred

A provably fair algorithm for generating a number between 0 and 99.99.

The Provably Fair System (PFS) is the mechanism by which the player can verify in real time that the results of the games were fair.

Find out all about provably fair system.

Information sources:

Example:

use Gambling\Tech\RngTillHundred;

$serverSeed = 'random hash';
$clientSeed = 'player string';
$nonce = 1;

// your lucky number 
$number = (new RngTillHundred())($serverSeed, $clientSeed, $nonce);

Implementation in file dice/RngTillHundred.php


Go back