Every game in GOLD RUSH uses cryptographic randomness that you can verify. We never manipulate the outcome.
Before each game, a random seed is generated. This seed determines where TNT is placed.
You see the SHA-256 hash of the seed BEFORE the game starts. This proves we can't change the outcome.
After the game, the seed is revealed. You can verify that it matches the hash and produces the same TNT positions.
Enter the game details to verify the fairness of any past game.
// Pseudocode for TNT position generation
function getTntPositions(seed, tntCount, gridSize) {
// Create array of all positions [0, 1, 2, ..., 29]
positions = [0..gridSize-1]
// Hash the seed
hash = SHA256(seed)
// Fisher-Yates shuffle using hash bytes
for i from gridSize-1 to 1:
randomByte = hash[i % hash.length]
j = randomByte % (i + 1)
swap(positions[i], positions[j])
// Return first tntCount positions
return positions.slice(0, tntCount).sort()
}