Fork me on GitHubFork me on GitHub

Welcome to "SPLIT or STEAL" game on BLOCKCHAIN

Provably Fair (How?)

You need Metamask to play this game, but
Metamask is not supported for your browser.
Please use Chrome/Firefox/Opera.

Why don't you join us on telegram and facebook for updates on support and more?

Or

Enter your email id below to get updates.

Enter your email here.
:
Thanks! We will send you an update soon.
Contact Us



What is the game?

It is a two player game where each player is asked to bet some amount(X, Y) to play the game.
Based on X and Y, Smart contract would generate a Reward Matrix, on which game will be played.

What is the Reward Matrix?

R(X,Y,K) =>
(X\Y)SplitSteal
Split(X+Y)/20 \ Min(X+Y, K*Y)
StealMin(X+Y, K*X) \ 0Max(0, (2-K)*((X-Y)/2)

where,
  • X & Y are bet amounts by PlayerX and PlayerY respectively
  • 2 >= K > 1, K is Reward Factor

How to read Reward Matrix case by case?

  1. If X chooses to SPLIT and Y also chooses to SPLIT, then they win (X+Y)/ 2 each, thus player betting lower wins.
  2. If X chooses to SPLIT and Y chooses to STEAL, then Y gains K times of Y (Capped by X+Y) and X gets 0, thus the higher you bet higher you win.
  3. If X chooses to STEAL and Y chooses to SPLIT, then X gains K times of X (Capped by X+Y) and Y gets 0, thus the higher you bet higher you win.
  4. If X chooses to STEAL and Y also chooses to STEAL, then they win (2-K) times of (X-Y)/2, thus player betting higher gets some part back.
    • Also note that reward in this case inversely proportional to Win if only one of thems steals
    • Higher the reward in Single STEAL case Lower the reward in Both STEAL case
  5. If a player's opponent gets disqualified and the player not, then player gains K times of player's bet (Capped by X+Y) irrespective of player's choice.
  6. If both players get disqualified, both loose complete bet.

GAME PLAY

Game has 3 Phases

  1. Registeration, Commit Bets & Submit Encrypted Choice
    • Player will submit their bet amounts and encrypted choices. **(THIS WOULD COST GAS)**
      • Encryption is done by DApp.
      • Players simply need to choose any ODD number for SPLIT or any EVEN number for STEAL
    • This can be done in two ways,


  2. Reveal choice
    • Player will submit unencrypted choice
      • i.e. the number (even or odd) they actually chose in previous round. **(THIS WOULD COST GAS)**
    • Contract would evaluate the encryption of the choice and compare with previously submitted choice.
    • If Both do not match, player will be marked disqualified for that game and an event will be fired.(EVENT)

  3. Claim Reward
    1. Contract would reward player according to Reward Matrix. **(THIS WOULD COST GAS)**
    2. Reward would be given after deducting Game Fees(F) from Reward amount

Abandon Game

Player who started game can abandon it if no body joined the game.
  • If Player abandon's game before Stage Timeout then,else
    • Player's entire bet amount is refunded.
    So it is advisable to let you game be open till it expires.

Stage Timeout

Stage Timeout is used to unlock deadlock situations like,
  1. If a game is in revealing stage since a long time because,
    • Either both players did not reveal their choices, OR
    • One of the players did not reveal choice
    then, Admin can diqualify player(s) who did not reveal after Stage Timeout.

  2. If a game is in claim reward stage since a long time and,
    • Either both players did not claim their rewards, OR
    • One of the players did not claim reward
    then, Admin can diqualify player(s) who did not claim reward.
    • This essentially means that Player should claim reward within Stage Timeout amount of time.
    • This is done so that the ether doesn't get locked in contract address

How is this game Provably Fair?

  1. Contract code can be found here.
  2. All transactions on contract can be found here.