-
Notifications
You must be signed in to change notification settings - Fork 2
Tokenomics
Adrijan-Petek edited this page Jan 20, 2026
·
1 revision
Joybit’s on-chain economy is centered around:
- ETH fees paid for gameplay actions
- JOYB rewards credited to players as claimable balances
- A treasury contract that aggregates fees and pays out rewards
The Treasury contract:
- Receives ETH gameplay fees from game contracts
- Tracks pending rewards per player per token (multi-token capable)
- Lets users claim:
- A specific token via
claimReward(token) - All tokens via
claimAllRewards()
- A specific token via
- Player plays a game (free daily play or paid fee).
- Paid fees are forwarded to the treasury.
- On win/claim conditions, the game credits JOYB to the player via
Treasury.creditReward(player, joybitToken, amount). - The player claims their pending JOYB from the treasury.
Many amounts are configurable by the contract owner:
- Per-game
playFee - Card game
winReward - Daily claim
baseRewardandstreakBonus - Match-3
levelRewards[level]
For the exact current values, read contract state on-chain or use the admin UI (if enabled).