Ethereum casino roulette software |
A PoC of a casino roulette implemented in a smart contract Ethereum Roulette Content Motivation The interface is a regular html page with a jаvascript web3 library that allows you to interact with the Ethereum blockchain using jаvascript. The web3 library is introduced to the page using the Chrome Metamask extension. How to play Each bet has a fixed amount of 0.01 ether (about 6 euros), and you can place a bet by clicking on the playing field: On a number (from 0 to 36) with a payment of 36; Different people can play at the same time. One of the players will press the “Spin the Wheel” button, which will generate a random number, and all bets will be distributed accordingly. When a player wins a bet, the payout is credited to his personal account. The player can click the “Cash out” button at any time and receive his winnings. Keep in mind that at some point roulette may not have enough funds to pay out winnings to all players. Keep reading to understand why this could happen. An accident So, we have to use the current state of the blockchain to find a fair random number, and the formula I chose was to calculate a hash from several factors and use a reminder to divide this hash by 37. The factors used in the hash are: The blockchain of the previous block Safety But an attacker can make a reverse attack by betting on a number, and then waiting for the state of the blockchain to be such that generates this particular number. For this attack to work, the attacker must fulfill 2 conditions: be able to control when the wheel is spinning; The second condition is more complicated. The two factors used in calculating the “random” number relate to the current block, which will only be known when the wheel rotates, making it impossible to guess the “random” number. The problem is that, even unknown, the timestamp values of the current block and complexity are strictly predictable and, even worse, the miner can manipulate them. In a nutshell, it will be very difficult for an ordinary player to guess a random number, but the system is vulnerable to miner attacks. Therefore, additional security measures were taken. Balancing cap Every time the wheel turns and all payouts are credited to the players' accounts, the system checks whether the roulette balance exceeds 2 ether. If so, it sends the surplus to the contract owner (me). Thus, the maximum amount of ether that an attacker can steal is 3 ethers (full roulette with 2 ethers plus 100 bets of 0.01 ether). Keep in mind that players' personal accounts (their respective winnings) are not taken into account when calculating the balance. In other words, a player may have more than 2 ethers on his winning accounts, but he will not be able to cash them out because there are not enough funds in roulette to pay. This is done to prevent a Denial of Service attack, in which a player may have all the winning roulette money in his account, which will prevent other players from playing. Players must be aware of this and withdraw money frequently. Clone a repository What you will need Ganache: You can download a stand-alone ready-made Ganache binary for your chosen platform by clicking the "Download" button on the Ganache website. After that, run it and keep running, this will lead to the deployment of a private Ethereum network on your computer, port 7545. Whisk the ganache and continue to whisk. truffle deployment -reset npm starts dev Go back |
7-10-2023, 01:36 |