GUESS 0-10 // CLOSEST NUMBER TAKES THE POT // EVERY 60 SECONDS

PROVABLY FAIR: committed seed + your wallet entropy

ROUND #-
CONNECTING --
POT 0 ETH
PICK YOUR NUMBER
total staked payout multiple if it rolls your stake
LAST ROLLS
no rolls yet
PLACE BET
NUMBER -
ETH

10% house fee / 90% enters the pot

RULES.TXT
> bet ETH on a number 0-10
> round closes every 60s
> roll = hash(seed + wallets) % 11
> closest staked number wins
> pot split by stake weight
> tie = both sides share
> unclaimed never expires

HOW IT WORKS_

01

BET

Pick a number from 0 to 10 and stake ETH before the 60 second timer hits zero. 10% is the house fee, 90% goes into the round pot.

02

ROLL

Before the round opens, the house commits a hidden seed on-chain. Every bet folds the bettor's wallet address into a rolling hash. At close the seed is revealed:

roll = keccak(seed, wallets) % 11

Nobody can steer it - players never see the seed, the house never sees future wallets. If the house refuses to reveal, everyone gets a full refund after 10 minutes.

03

WIN

The staked number closest to the roll takes the pot, split pro rata by stake. Stake 0.5 vs 0.25 vs 0.25 on the winner pays 50% / 25% / 25%. Equidistant tie? Both numbers share.