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)
Split
Steal
Split
(X+Y)/2
0 \ Min(X+Y, K*Y)
Steal
Min(X+Y, K*X) \ 0
Max(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?
If X chooses to SPLIT and Y also chooses to SPLIT, then they win (X+Y)/ 2 each, thus player betting lower wins.
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.
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.
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
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.
If both players get disqualified, both loose complete bet.