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.

<!-- 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 revealWhite-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.
Postman collection, OpenAPI, signing helpers, sample wallet server, white-label params, fraud rules.
Licensing, API keys, per-game revenue share, GGR reporting and payouts.