10% house fee / 90% enters the pot
> 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
10% house fee / 90% enters the pot
> 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
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.
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.
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.