Skip to main content
These are the decisions that shape your integration. Most are configurable after launch, but getting them right upfront means less iteration once you’re live.

Reward currency

The first decision is which currency you reward players in. This is set at the project level and affects how rewards are displayed, what payout options are available, and how you configure amounts.

In-game currency (Points)

You define a virtual currency unit (coins, gems, tokens) that fits your game. Players see familiar numbers (“2,500 coins”) and cash out via bank transfer, gift cards, or Bitcoin. Most studios use this model.

Bitcoin (sats)

Rewards are denominated in satoshis. Players see their balance in sats and cash out to a Bitcoin Lightning wallet. Best suited for Bitcoin-native games or audiences already familiar with crypto.
Both modes use the same SDK methods (SendReward, GetBalance, ShowModal). The difference is the currency field in API calls and the payout options available to players.
In-game currencyBitcoin
Reward unitVirtual units you defineMillisatoshis (MSATS)
Balance display”12,400 coins""12,400 sats” (UI in sats; API unit is MSATS)
Player payout optionsBank transfer (ACH), gift cards, Cash App, Speed Wallet, BitcoinBitcoin via Lightning only
Audience fitMainstream mobile, casualBitcoin-native, crypto-native
currency fieldPOINTMSATS
The rest of the Earn SDK documentation uses in-game currency as the default. Where behavior differs for Bitcoin rewards, it is called out explicitly.
For display guidelines and UX rules for each mode, see Displaying Rewards.

Reward delivery

You have two options for how rewards reach players. Most studios start with client-side and migrate to server-side for production.

Client-side

Call SendReward directly from Unity. No backend required. Withdrawal limits act as the fraud layer. Best for early development or studios without a backend.

Server-side (recommended)

Your backend calls the Earn API. Required for LTV-based reward sizing. Disables client-side abuse entirely. Recommended for production.
See Reward Economics for guidance on how delivery method affects your reward budget and fraud exposure.

Payout options

Players cash out through the ZBD modal — a WebView you surface with a single method call. You don’t build any payout UI. Available methods depend on the player’s region and your reward currency:
  • Bank transfer (ACH)
  • Gift cards
  • Cash App
  • Speed Wallet
  • Bitcoin via Lightning (ZBD App, Speed Wallet, or other Lightning-compatible options)
ZBD is available in 40+ countries. Check the coverage page to confirm your target regions are supported before integrating.