Wheelspin is a luck game, similar to wheel of fortune, built in solidity and deployed in Ethereum Mainnet.
-
mainnet: 0xf17b52226d78070696ff2dddcb08bb65986054e1
-
ropsten: 0x71ff026f519c8aabf9eddde75946701dd83de63c
You will need a web browser and an Ethereum wallet browser extension such as Metamask.
-
deposit some Ether in the contract
-
select the stake and a number X
-
click spin to play your bet
-
if the wheel rolls a number between 1 and your number X you will win a prize
uint public constant MIN_DEPOSIT = 0.1 ether;
uint public constant MAX_ROLL_UNDER = 96;
uint public constant MIN_ROLL_UNDER = 6;
uint public minBet = 0.05 ether;
uint public maxBet = 1 ether;
- Play at your own risk. Lost bets or technical issues might result in financial loss.
Code released under the MIT license.