fbpx

Rock paper scissors Solidity tutorial

Julien Klepatch

You know Rock paper scissors right? If you don’t, that’s a simple game where in each round 2 players make one of 3 moves:

  • rock
  • paper
  • scissors

Paper beats rock, scissors beat paper, and rock beats scissors. You can also bet money in each round, to make it more interesting.

I will show you how to do this game in a Solidity smart contract with this video tutorial.

It might seems like it’s easy to do, but there is a caveat: on the blockchain, all data is public, there is no private data. So, if the first player sends his move in clear the smart contract, the second player can read this data, even if you mark the variable as private in Solidity. Since the second player can always anticipate the move of the first player, he will always win! Not an ideal situation… how can we prevent this? With a “commit – reveal” scheme. This pattern is not just applicable to this game, but also to all situations where you need to deal with private data on the blockchain. Watch this video and I will show you how it works!

0 Comments

Leave a Reply

More great articles

Installing the The Ganache GUI | Episode 13

https://youtu.be/FwsVS9BzXzM What is Ganache? Ganache is a tool for ethereum dapp developers, supported by the Truffle team. It has 2…

Read Story

Crud – Part IV

If a user does not exist, no error is produced. We should change that. In this video you will learn…

Read Story

ToDo List Ethereum Dapp (Step3) | Writing The Nodejs Backend

This tutorial is part of the series ToDo List Ethereum Dapp. It is the Step 1. Tutorials already published: Intro…

Read Story

Never miss a minute

Get great content to your inbox every week. No spam.
[contact-form-7 id="6" title="Footer CTA Subscribe Form"]
Arrow-up