I really know very little, I started studying python a short time ago, and I can only do some automations (mainly with Selenium).
but the keys are those in the text below provided on the website (betting site).
-----------------------------------------------------------------------------------------------------------------------------------
Chain Generation
To generate the chain, we start with safely random bytes. From there, we iterate 10 million times, feeding the previous seed into a sha256 function. Double's games read the chain in reverse order.
The final / terminal seed of this chain is 492bd10144a3525e2745718fe4d25e08affbea483872d8e8b86191b20ce0a7a8
Generating a hash
For fair randomness, we create a sha256 hmac hash using the server seed as the key and the client seed as the value.
The sha256 10 million hash Crash chain was generated on 2019-04-04 05:59 AM UTC. We decided to use 0000000000000000000415ebb64b0d51ccee0bb55826e43846e5bea777d91966, the Bitcoin block hash 570132, extracted on 2019-04-04 06:35 AM UTC as the client seed for this chain.
Generating a crash point
Using this hash just generated, we generate a crash point through the following code:
VIEW CODE SNIPPETS