<aside> 💡
If you just want to check the games, you can do so here: https://jsfiddle.net/deca506/k4vdop8u/2/
</aside>
For our first seed round we populated the game database with 200k games. We anticipated this would last for about 60 days and we were close. Now, we have just seeded our second round of games as we are nearing the end of the first seed cycle.
Here are the high level steps of the process we followed to seed our next batch of provably fair games for BlastCrash, games 200001-500000.
const crypto = require('crypto');
const serverSeed = crypto.randomBytes(32).toString('hex');
console.log(serverSeed);
The output from that script is an important secret called the Server Seed. That value is private/secret and not revealed to anyone.