<aside> 💡

If you just want to check the games, you can do so here: https://jsfiddle.net/deca506/yntmah48/3/

</aside>

For our second seed round we populated the game database with 300k games. For this third round seeding we’re going to bump it to 500K games.

We have just seeded our third round of games and this write will walk through the process. Please note, the process has not changed and is the same as seed cycle one and two.

Here are the high level steps of the process we followed to seed our next batch of provably fair games for BlastCrash, games 500,001-1,000,000.

High Level Steps

  1. Generate a secret 32 byte random number for the Server Seed. This number is the seed for our game chain.
  2. Generate 500K game hashes for this chain using the Server Seed and insert them into the games database.
  3. Initiate the generation of the Client Seed using our GameBrain dApp. The Client Seed generated on this step is used to salt the Server Seed hashes ensuring that neither the house (or anyone else) could have influenced this game chain.
  4. Finally, we tell the game that there is a new Client Seed to use for games 500,001-1,000,000!

Detailed Steps

  1. Generate Server Seed - 1st we use a script like this to generate the random seed value:
const crypto = require('crypto');
const serverSeed = crypto.randomBytes(32).toString('hex');
console.log(serverSeed);