On-chain • Web3 • Solana

Wave: Transforming Crypto Casinos

Scalable, profitable experiences. Build & play games directly on-chain.

Features

Built for the future

Permissionless, verifiable, on-chain

Plug and Earn

Open-source SDK. Provide your Solana address and earn on every bet made on your site.

Provably Fair

Every result independently verifiable. Users play without trusting a central authority.

Decentralized

Fully on-chain and permissionless. No license needed to start building.

import React from 'react'; import { GambaProvider } from "gamba-react-v2"; import { GambaPlatformProvider, GambaUi } from "gamba-react-ui-v2"; function DoubleOrNothing() { const game = GambaUi.useGame(); const doubleOrNothing = async () => { try { await game.play({ bet: [0, 2], wager: solToLamports(0.1) }) const result = await game.result() if (result.payout > 0) { console.log("Win") } else { console.log("Loss") } } catch (error) { console.error("Error:", error) } }; return ( <GambaUi.PlayButton onClick={doubleOrNothing}> Double or Nothing </GambaUi.PlayButton> ); } function App() { return ( <GambaProvider> <GambaPlatformProvider creator={"<CREATOR_ADDRESS_HERE>"}> <DoubleOrNothing /> </GambaPlatformProvider> </GambaProvider> ); }

✨ Zero deployments

With just a static webpage you can build betting games that interact directly with the Solana blockchain, and collect fees on every bet made via your frontend.

Check out our Github to get started