Bustabit — Quick Facts
| Provider | Bustabit (independent, self-developed) |
| Year Released | 2014 (as MoneyPot), rebranded 2015 |
| RTP | 99% (1% house edge) |
| House Edge | 1% (fixed, cannot be changed) |
| Max Multiplier | Theoretically unlimited (~4.46 quadrillion x), capped by bankroll |
| Max Win | 1% of site bankroll per round (1.5% per round for all players combined) |
| Min Bet | 1 bit (= 1 μBTC = 0.000001 BTC) |
| Currency | Bitcoin only |
| Provably Fair | ✅ Yes — 52-bit HMAC-SHA256, 10M hash chain, public seeding events |
| Demo Mode | ❌ No (real money only, but you can spectate) |
| Unique Features | Custom betting scripts, backtesting, bankroll investment, bonus pot |
| Availability | bustabit.com only (not available at other casinos) |
| Restricted Countries | USA, Costa Rica |
Every crash game you’ve ever played — Aviator, JetX, Space XY, Stake Crash, BC.Game Crash — traces its DNA back to one game. Bustabit launched in 2014 as a Bitcoin-only multiplier game with a provably fair algorithm, a 1% house edge, and zero visual decoration. It was a graph, a number, and a “Cash Out” button. That’s it.
Over a decade later, Bustabit is still running. It hasn’t been redesigned. It hasn’t added animations, themes, or a flying airplane. What it has is arguably the most transparent crash game ever built: open-source code, public seeding events recorded on BitcoinTalk, a 52-bit hash-to-multiplier formula you can verify yourself, and a bankroll investment system that lets users become the house. This review covers the math, the history, and whether Bustabit is still worth playing in 2026.
A Brief History: From MoneyPot to Bustabit
The crash gambling concept was created by developer Eric Springer in 2014-2015 under the name MoneyPot. It was built on Bitcoin’s infrastructure and introduced two ideas that were revolutionary at the time: a rising multiplier that could crash at any moment, and a provably fair system that let players verify every round using cryptographic hashes.
In 2015, Springer sold MoneyPot to BitcoinTalk member Ryan Havar, who rebranded it as Bustabit and added several features including the bankroll investment system, custom scripting, and the bonus pot mechanism. The game’s code was open-sourced on GitHub, which had two consequences: it established trust through transparency, and it enabled dozens of clones — some fair, many not.
Between 2017 and 2018, larger crypto casinos built their own crash games inspired by Bustabit’s mechanics. Stake launched Chartbet (later renamed Crash) and BC.Game launched Classic Crash, both with 1% house edge. In 2019, Spribe released Aviator — the game that brought crash mechanics to mainstream casinos with social features and visual polish. The genre that Bustabit invented became one of the fastest-growing categories in iGaming.
The Bustabit Formula: How the Crash Point Is Calculated
Bustabit’s crash point algorithm is public. Here’s exactly how it works, based on the v2 code published during the seeding event:
Step 1: Hash Chain (Pre-generated Results)
Before any player places a bet, Bustabit generates a chain of 10,000,000 SHA-256 hashes. Starting from a secret seed, each hash is the SHA-256 of the previous hash’s hexadecimal string. The chain is used in reverse: game #1 uses the 10 millionth hash, game #2 uses the 9,999,999th, and so on. This means every future game’s result already exists and cannot be changed after the fact.
Step 2: HMAC-SHA256 with Client Seed
Each game hash is mixed with a client seed using HMAC-SHA256. The client seed comes from a public “seeding event” held on BitcoinTalk, where the seed is derived from a future Bitcoin block hash — something nobody can predict or control. This ensures Bustabit cannot manipulate results.
Step 3: Extract 52 Bits → Calculate Multiplier
The algorithm takes the 52 most significant bits of the HMAC result and converts them to a number. The crash point formula is:
r = parseInt(hmac_result.slice(0, 13), 16) // 52 bits
X = r / 252 // uniform random in [0, 1)
crashPoint = Math.max(1, Math.floor(99 / (1 – X)) / 100)
// The “99” (not 100) is where the 1% house edge lives
// If the formula produces
The number 99 in the formula (instead of 100) is what creates the 1% house edge. If there were no edge, the formula would be 100 / (1 - X). The difference between 99 and 100 is the operator’s margin — simple and transparent. For a deep dive into how other crash games implement similar formulas, see our algorithm explainer.
Instant Bust Probability
Because of the formula’s structure, roughly 1 in 100 rounds (about 1%) will produce a crash point below 1.00x, resulting in an instant bust. Players lose their entire bet on these rounds regardless of their cashout target. This is not a bug — it’s mathematically necessary for the 1% house edge to work across all possible cashout targets.
What Makes Bustabit Unique
Custom Betting Scripts
Bustabit lets you write JavaScript scripts that automate your betting strategy. Preset scripts include Flat Bet (fixed amount, fixed cashout), Martingale (double after loss), Payout Martingale (double after win), and Sniper (mirror another player’s bets). You can also write fully custom scripts with conditional logic, loss limits, and dynamic cashout targets. More importantly, Bustabit includes a backtesting engine — you can test any script against historical game data or simulated rounds before risking real Bitcoin. No other crash game offers this level of strategic automation.
Bankroll Investment
Players can invest Bitcoin into Bustabit’s bankroll pool. All player winnings are paid from this pool, and investors earn a proportional share of the site’s 1% edge over time. It’s essentially becoming the house. The catch: variance. A player hitting a massive multiplier reduces the bankroll temporarily. Investors can divest and withdraw their stake at any time, but short-term fluctuations are real. This system makes Bustabit function more like a decentralized exchange than a traditional casino.
Bonus Pot
In each round, 1% of every player’s stake goes into a bonus pot. The last player to cash out before the crash wins the pot (or a proportional share based on bet size). This is the only mechanism in Bustabit that allows a player to have a positive expected value — the bonus effectively subsidizes the last cashout, creating an incentive to hold longer. The pot resets each round.
What It Doesn’t Have
Bustabit has no visual theme (just a graph line), no demo mode, no fiat support, no mobile app, no social features beyond a chat room, and no third-party casino integration. The interface hasn’t been updated since launch. If you’re used to Aviator’s airplane animation or Spaceman’s partial cashout, Bustabit will feel primitive. But for players who care about math over presentation, that’s a feature — less code means less latency and fewer things that can go wrong.
Bustabit vs. Modern Crash Games
| Feature | Bustabit | Aviator | Stake Crash | BGaming Crash |
|---|---|---|---|---|
| RTP | 99% | 97%* | 99% | 99% |
| House Edge | 1% | 3%* | 1% | 1% |
| Cost/hr ($1/bet, 100 bets) | $1 | $3 | $1 | $1 |
| Provably Fair | ✅ 52-bit hash chain | ✅ | ✅ | ✅ |
| Open-Source Code | ✅ Yes (GitHub) | ❌ No | ❌ No | ❌ No |
| Custom Scripts | ✅ Full JS scripting | ❌ | ❌ | ❌ |
| Backtesting | ✅ Historical + simulated | ❌ | ❌ | ❌ |
| Bankroll Investment | ✅ Yes | ❌ | ❌ | ❌ |
| Max Multiplier | ~Unlimited (bankroll cap) | 100x | 1,000,000x | 1,000,000x |
| Currency | BTC only | Multi (fiat + crypto) | Multi (crypto) | Multi (fiat + crypto) |
| Dual Bet | ❌ | ✅ | ❌ | ❌ |
| Casino Availability | bustabit.com only | 3,000+ casinos | stake.com only | 500+ casinos |
| Visual Design | Minimal graph (2014 era) | Animated airplane | Modern graph/rocket | Space theme |
*Aviator’s default RTP is 97%, but casinos can configure it to 96% or 94%. Always check in-game.
Pros and Cons
✅ Strengths
99% RTP — tied for the best in any crash game
Fully open-source code on GitHub
Public seeding events with Bitcoin block hash verification
Custom JS betting scripts + backtesting engine
Bankroll investment (become the house)
Bonus pot creates positive EV opportunity for skilled play
Fixed house edge — cannot be changed by the operator
Minimal interface = low latency
❌ Weaknesses
Bitcoin only — no fiat, no other crypto
No demo mode — real money or spectate
Outdated interface (hasn’t changed since 2014)
No mobile app
Available only at bustabit.com (no third-party casinos)
Restricted in USA and Costa Rica
No dual bet, no partial cashout
Malicious third-party scripts reported (download with caution)
Who Should Play Bustabit
Bustabit is for you if: you care about mathematical transparency over visual polish, you want the lowest possible house edge, you’re comfortable with Bitcoin, you enjoy writing or testing betting strategies with scripts, or you’re interested in the bankroll investment side.
Bustabit is not for you if: you want a visual experience (airplane, rockets, themes), you play with fiat currency, you need wide casino availability, you’re looking for bonuses or promotions, or you’re a beginner who benefits from a demo mode. In that case, see our top crash casinos ranking or start with a free crash game.
Bustabit’s Legacy: Why It Matters
Bustabit didn’t just create a game — it created a genre. The concepts it introduced are now standard across the industry:
Provably fair crash mechanics — the idea that a rising multiplier’s crash point can be verified cryptographically. Every modern crash game with provably fair claims traces this concept to Bustabit’s hash chain approach.
The crash point formula — the mathematical structure N / (1 - X) where N determines the house edge is used (with variations) by Stake, BC.Game, and many other platforms. Our algorithm guide shows how different providers implement this concept.
Social multiplayer betting — seeing other players’ bets and cashouts in real time. Aviator took this further with chat and “rain” features, but Bustabit had the live bet feed first.
The 1% edge standard — Bustabit proved that a crash game could be profitable for the operator at just 1% house edge. This became the benchmark for in-house casino originals (Stake Crash 1%, BC.Game Crash 1%, Duel 0%), while third-party providers like Spribe opted for higher margins (3% default for Aviator).
⚠️ Bustabit’s 99% RTP doesn’t mean you’ll break even. Over time, the 1% edge guarantees a loss for the average player. Custom scripts and backtesting do not change the expected value — they only change the variance pattern. The bankroll investment system also carries risk. If gambling is causing you problems, contact GambleAware or the National Council on Problem Gambling.
Related Guides & Reviews
- Crash Game Algorithm Explained — how modern crash games implement the formula Bustabit pioneered
- Provably Fair Explained — step-by-step verification guide
- Crash Game RTP Comparison — where Bustabit ranks against 18+ games
- Aviator Review — the game that brought Bustabit’s concept to mainstream casinos
- Stake Crash Games Review — another 99% RTP crash game with Provably Fair
- BC.Game Crash Review — scripting-friendly crash game inspired by Bustabit
- Crash Game Strategy Guide — Martingale, flat bet, and other strategies analyzed
- Session Cost Calculator — see the real hourly cost at 99% RTP vs 97%
- Crash Game Software — how Bustabit’s open-source code spawned an industry
