🔒 Free — only Results table unlocked
Provably Fair · Hash Chain

Crash — Game Verification Script

Third party script to independently verify Crash game results. All computation runs locally in your browser.
Provably Fair — Bustabit

Provably Fair — Results are determined by HMAC-SHA256(key=salt, msg=gameHash). Take the first 32 bits of the HMAC as integer e. If e % 33 === 0 the game busts at 1×. Otherwise: floor(99 / (1 − e/2³²)) / 100.

Salted hash scheme introduced after Bet # 2561902. See bitcointalk.org #5256606
Updated scheme after Bet # 5282960. See bitcointalk.org #5416694
bustabit // input formula 99/(1−e/2³²) · bust if e%33=0
Game's Hash SHA-256 HEX
Salt Bustabit Salt
Amount of games Max 10 000
Provably Fair — BC.Game

Provably Fair — BC.Game Crash uses the same HMAC-SHA256 scheme as Bustabit. The house-edge check is identical (e % 33 === 0 → 1×), and the multiplier formula is floor(99 / (1 − e/2³²)) / 100. BC.Game publishes its own salt (block hash) per round.

BC.Game uses a publicly verifiable block hash as the salt for each game, ensuring neither the house nor the player can manipulate the outcome. The salt below is BC.Game's genesis/reference salt.
To verify a specific round, paste the round's salt (block hash) from the BC.Game verify page alongside the game hash.
bc.game // input formula 99/(1−e/2³²) · bust if e%33=0
Game's Hash SHA-256 HEX
Salt (Block Hash) BC.Game Salt
Amount of games Max 10 000
Provably Fair — Stake

Provably Fair — Stake's Crash uses HMAC-SHA256(key=salt_bytes, msg=gameHash) where the salt (Bitcoin block hash) is decoded from hex to raw bytes as the HMAC key. The first 8 hex chars of the HMAC are converted to a 32-bit integer int. Formula: Math.max(1, (2³² / (int + 1)) × 0.99).

Stake's 1% house edge is applied as a × 0.99 multiplier on the base crash point — no separate bust threshold.
The salt is Stake's published Bitcoin block hash (decoded as raw bytes). Retrieve your round's salt from the Stake fairness page under "Previous Seed Pair."
stake // input formula (2³²/(int+1))×0.99 · min 1×
Game's Hash SHA-256 HEX
Salt (Server Seed) Stake Salt
Amount of games Max 10 000