Fairness

Our game works in the following steps:
  1. A game is created, we generate a server seed and hash it into SHA256, this is publicly displayed on the website
  2. Someone joins or the bot is called, we fetch a random string from https://random.org
  3. The server seed and the random.org seed is joined together with a '-' (example: 12345-67890). This is called the mod.
  4. Using chanceJS, we use the mod and the player values to pick a winner:
    const chance = new Chance(mod);const outcome = chance.weighted(['creator', 'opponent'], [creatorChance, opponentChance])

Verify these details here: RandomORG Verify and the outcome here