Fully TransparentEvery result is
independently verifiable
Before each round, the system generates a secret server seed and publishes its hash. After the round ends, the original seed is revealed so you can verify that the crash point was never altered.
โSeed is generated before the round and cannot be changed after it starts
โHMAC-SHA256 is the industry standard cryptographic algorithm
โFull history of all rounds is stored and publicly accessible
โYou can re-run the algorithm yourself to verify any round
View History & Verify โ verify.js โ Provably Fair // Verify it yourself:
const crypto = require('crypto');
const serverSeed = "cec99f...292c";
const clientSeed = "21120a...b26";
const hash = crypto\n .createHmac('sha256', serverSeed)\n .update(clientSeed)\n .digest('hex');
const h = parseInt(hash.slice(0, 8), 16);
const crashPoint = Math.floor(\n (0xffffffff / h) * 0.99 * 100\n) / 100;
// โ crashPoint = 1.29x โ