← /catalog
Crash · 97.10% RTP

Crypto Flight X

Crypto-themed crash with on-chain provable fairness

Crypto Flight X is a high-velocity crash title with provably-fair seed rotation, multi-currency wallets (BTC/ETH/USDT/fiat), and a streamlined HUD designed for mobile-first operators. Ships with the same NexusCore SDK contract as Rocket Rush X — drop in the module, hook up the wallet endpoint, go live.

Crypto Flight X key art
crypto-flight-x.cartridge
RTP
97.10%
Volatility
high
Min bet
0.10
Max bet
2,500.00
Max win
25,000× stake
Aspect
16:9
Per-game SDK

Integration path

  1. 01
    Request launch URL
    Mint a per-player session token through your operator console.
  2. 02
    Embed the game
    Drop the SDK into your client and pass the container selector.
  3. 03
    Wire the wallet
    Handle debit/credit callbacks on your secure wallet endpoint.
  4. 04
    Test in sandbox
    Use the demo URL with the operator=demo flag — no real wallet required.
  5. 05
    Go live
    Switch operator_id to production, flip license to live in the console.
launch-crypto-flight-x.ts
<!-- 1. Open the white-label embed (theme accepts any hex) -->
<iframe
  src="https://crypto-flight-x.lovable.app/embed?token=SIGNED_TOKEN&theme=22d3ee"
  allow="autoplay; fullscreen"
  style="width:100%;aspect-ratio:16/9;border:0"
  id="cfx"
></iframe>

<!-- 2. Listen to postMessage events from the game -->
<script>
window.addEventListener("message", (e) => {
  if (e.origin !== "https://crypto-flight-x.lovable.app") return;
  switch (e.data?.type) {
    case "session_ready":   /* game booted */ break;
    case "round_committed": /* bet placed, debit player */ break;
    case "round_settled":   /* result in, credit win */ break;
    case "round_end":       /* round over */ break;
    case "round_error":     /* rollback */ break;
  }
});
</script>

<!-- 3. Backend endpoints to wire (full spec in openapi.json + integration-kit.zip) -->
// POST /api/public/casino/session    → mint signed token
// POST /api/public/session/resolve   → validate token, return player ctx
// POST /api/public/round/commit      → debit on bet
// POST /api/public/round/settle      → credit on win
// POST /api/public/round/reveal      → provably-fair reveal
Launch URL
https://crypto-flight-x.lovable.app/embed?token={SIGNED_TOKEN} (or demo: ?operator=&player=&theme=&bet=)
Wallet endpoint
POST /api/public/casino/session · /session/resolve · /round/commit · /round/settle · /round/reveal
Currencies
USDCUSDTBTCETHSOLEURUSD
Languages
enespttrjako
Jurisdictions
CuraçaoAnjouan
Resources

Everything else lives in the game's own docs

White-label params, wallet contract, postMessage events, fraud rules, commercials and payout terms are maintained inside the game itself — one source of truth, never out of sync.

Game-side docs

Integration kit & spec

Postman collection, OpenAPI, signing helpers, sample wallet server, white-label params, fraud rules.

Platform side

What OperatorPort handles

Licensing, API keys, per-game revenue share, GGR reporting and payouts.