Provably Fair
Verify the fairness of any round using cryptographic hashes
How Provably Fair Works
1
Server Seed Generated: Before the round starts, we generate a random server seed and show you its SHA256 hash.
2
Client Seed Generated: When the round ends, we generate a random client seed.
3
Combined Hash: We combine both seeds: SHA256(serverSeed + clientSeed)
4
Winning Ticket: The hash determines the winning ticket: (hashInt % 1000) + 1
5
Verify Yourself: After the round, you can verify using the revealed seeds!