This page does not send any data to the server. All of the calculations happen right in your browser.
We've the following parameters:
Client Seed: This is a random hexadecimal string generated by your computer. The server does know about this client seed prior to the bet execution. Ideally, it should be freshly generated for each bet. However, some players have their "lucky" client seed which they prefer to keep.
Server Seed: This is a random hexadecimal string generated by the server. It is not shared with the player (until they rotate the seed).
Server Seed Hash: Since the server seed is not shared with the user, the server provides you with a hash of the server seed. This means that you can check (after the seed is rotated) whether the server was using the correct, shown server seed or not. The server seed hash is always unique and corresponds to a server seed being used to play games previously.
If you are interested in checking the code behind this, please open app.js.
Client Seed comes from your browser and is never generated by the server.
Server Seed is generated by the server. It is only shared with you after you rotate the seed.
Nonce starts from 1 and is a count for the games you play (associated to the particular server seed).
The selected number of rows in your game
The risk factor selected in the games
This is the SHA-256 hash of the Server Seed shown prior to rotation of the seed.
This is the result/outcome of the game calculated locally in your game. It should match that shown at the main site.