Delving into Fairness: Kryptogamers.com

in #gambling5 years ago

Is Kryptogames Fair?


TLDR: No evidence of foul play


provably-fair-bitcoin-casino.jpg
source

@kryptogames has been accused of fixing outcomes, especially with their Blackjack game. In an effort to get a deeper understanding of how gambling on the blockchain works and if it is fair, we decided to do some research and analysis. I listened to and read about parties accusing Kryptogamers of cheating, spent the past week picking @kryptogames brain and discussed this with developers who have a much deeper understanding of the blockchain than most. After researching the subject and getting a clearer picture of how it works, I know that they cannot possibly impact the cards once the first card is dealt.

Accusers Claims

  1. Has played a lot of Blackjack and believes "something is funny" in regards to Kryptogamers.
  2. Highly improbable series of the dealer winning
  3. "Nobody is up"
  • Read more in the comments of this Kryptogames post here
  • We are not going to discuss dividend payments, this is a gambling association, not an investing association, gambling is not investing and this article is not financial advice.
  • If you have any evidence of foul play, please submit it, actual transaction IDs are a must, please let us know the approximate time and date of the transaction along with the size of the bet so we can quickly verify them on steemd.com or steemworld.org and plug them into the verification algorithm
    Screenshot 2019-07-29 at 20.40.37.png
    As you can see, @crypticat, who is the author of this post is up almost 1200 Steem with over 9000 games played (July 29, 2019 20:40pm EST) so the claim that no one is up is false, there must be others too. Please note: Not all those games were Blackjack. Accusation 3 is false!

Statistical Facts


As you can see there is a 0.35% edge in favour of the house, so every Steem you bet you are likely to lose 0.0035 in the long run if you play a perfect game.
Screenshot 2019-07-29 at 20.32.35.pngThis is their game and the odds, you can check yourself at the source here

  • These odds are extremely generous when compared to dice games or slots, but you must know what you are doing.
  • The odds include successful doubles and splits; actual odds of losing a hand are ~53%, not including ties
  • Losing 10 hands in a row is horrible, but not impossible. (0.53)**10 = 0.00175 or approximately 1/571 hands with perfect play
  • You can hit on 20, which has an extremely high chance of losing, so just because you lost 20 times in a row, doesn't mean anything. We can verify your cards!

The most common mistake made when calculating odds is the gamblers falacy where people think that if something happens x times in a row, then it's must be unlikely that it will happen again when in reality the odds of it happening x + 1 times is exactly the same as it happening the first time if you are already at x events due to events being independent of each other. The worst outcome I saw was rolling above 50 something like 18 times in a row. That's one in one quarter million! Please share your stories of extreme events below.

Provably Fair

A provably fair casino gives you the ability to verify the fairness of your bets. In theory, such a casino can’t/won’t cheat you when considering that they’d easily be caught.

Smart contracts platforms like Ethereum and NEO make it impossible for gaming sites to alter results. Games on these platforms are governed by programming code, meaning there’s no chance for a casino owner/employee to change anything.

Basically, a provably fair casino is all about transparency and allowing you to enjoy fair gaming without worry.

Source https://www.gamblingsites.net/blog/pros-and-cons-of-provably-fair-casino-games/

  • I strongly recommend you read this article

How to Verify Kryptogames Bets


Kryptogames made a post about it here But we are going to try and dumb this down for you. As mentioned in the article above each hand (outcome, game) is the result of mixing three things: A client seed, A server seed, and a something which isn't repeatable called a Nonce. Instead of a Nonce, Kryptogames uses the Steemit Transaction ID. Let's look at each one separately.

Client Seed

You can change your client seed at any time, this is determined by your browser, you can also edit it yourself in the memo. Kryptogames has no influence over this!
Screenshot 2019-07-29 at 21.49.02.png

  • Note, shuffling does not change the client seed, refreshing the game does! Wheres my bounty @kryptogames

Server Seed

Screenshot_20190729_220840.jpg
This is fairly confusing and took a while to understand. But their server seed is chosen in advanced of a bet according to a randomization code that is open-sourced and available to audit in the library here, then the server seed hash is published to the blockchain before you make your bet.
Screenshot 2019-07-29 at 22.33.59.png
You can see that they publish a new random server seed every minute to the blockchain in the above screenshot. You can go to https://steemworld.org/@kryptogames and look at the account operations to verify that this seed does indeed change every minute. Thanks, @steemchiller for your amazing site!

Steem Transaction ID

There is no way your Steem Transaction ID can be manipulated by Kryptogames if you think this is possible, I suggest you exit Steem right now. Your transaction ID is generated by the blockchain. You can find it on www.steemd.com/@username or www.steemworld.org/@username here is my Transaction ID from the 1 Steem blackjack hand above. Note, I lost! 114491b277a15118e8a30a8c2ae1f9bf0d5d4499

The Magic of The Cards


The three seeds or strings of characters are fed into an algorithm:

crypto.createHmac('SHA512',client_seed + trx_id.substring(0,10)).update(server_seed).digest('hex');

This means they take those random numbers and letters from the 3 seeds above, mash them up and get a 128 string of hexadecimal characters. The SHA 512 Algorithm is not something Kryptogames made up nor are they lying about this process read all about it here. https://en.bitcoinwiki.org/wiki/SHA-512

  • This output is what determines the cards, obviously, you cannot see for a minute or two after your hand is played or you would probably not hit if you knew you were going to bust!

How to Convert this Hexidecimal String into Cards


It's a base 16 number, most of us only understand base 10 numbers, base 16 includes 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, and f each card is represented by 2 characters in the string. Luckily you can convert Hexidecimals to decimals with this calculator
https://www.rapidtables.com/convert/number/hex-to-decimal.html
*The 128 string is divided into 2 characters each which can be 0-255
*They throw out integers above 208, there are only 4 decks of cards 4x52 = 208! They divide the integers by 52 and add the remainder. So the numbers will always be 0-51

Take a transaction ID, plug it into the Verify Transaction ID found under Provably Fair on https://kryptogamers.com/blackjack, click verify! You get the following if you put in my transaction ID 114491b277a15118e8a30a8c2ae1f9bf0d5d4499

Screenshot 2019-07-29 at 23.04.32.png

-Note the Server seed, Client seed and Steem ID are all verifiable and happened. You can use a blockchain explorer to verify this such as Steemworld or Steemd. None of this is made up.

Pay Attention to the Final Sequence and Use this Chart!

Output: final_sequence = 3,1,22,39,23,4,9,38,27,34,19,19,7,14,45,29,30,42,30,31,43,17,10,41,35,0,4,30,42,45,49,35,48,11,16,34,20,11,45,32,32,36,25,0,2,5,49,33,18
Add one (+1) to each number and you can see your cards.

number to card (1).png Excuse the 13

I got 3 + 1 = 4s , the dealer got a 1 +1 = 2s, my second card was 22+ 1= 10h, shoot, I got 14, dealer is showing 2. I assume the dealer is gonna win, so I hit (dealer has a 39 + 1=40 or an Ace of diamonds), I hit a 23 +1 = Jack...%$@#$@# bust! , even if I stayed dealer would have got that jack, for 13 and then got a 4+1 = 5s 13 +5 = 18 for a win = my loss.

Note: Once the Steem transaction is posted (every 3 seconds) they cannot hack it! We've checked hundreds of transactions, you can too, no evidence that the output doesn't match the cards.

So How Can They Possibly Affect the Outcome?


I am not a programmer but @klye of https://www.steem-roller.com/# is, he says the only way to impact the results is by skipping nonces. Essentially if they don't like the outcome of a bet that happens at the start of a new server ID, they could quickly change the server seed before publishing it, skipping the Steem transaction ID. This would not impact whether you hit or stay, and you could avoid this issue by changing your client seed before every bet. They would only be able to do this once every minute, it would only affect bets place immediately after a new seed is going to be published and it would have to be very fast. I am not accusing them of doing this and there is zero evidence to suggest it, it is theoretically possible.

This does not mean they could manipulate the cards, they could simply just throw away a certain server seed if they don't like how it interacts with the first 3-second Steem transaction ID, before the next 3-second Steemit transaction ID is created and impact the results of a large full tilt gambler who they happen to be watching. This is the only plausible scenario for manipulating the cards and it is highly debatable. I would like to hear what all parties think about this below.

@a0i, @abrockman, @access, @adzrobinson, @aellly, @aferrell, @alexworld, @allcapsonezero, @ano123, @awesomegames007, @backdm, @bafi, @balte, @beesteem, @bengdui, @bluesniper, @brasan, @broncnutz, @brumest, @centering, @cgbartow, @champjus, @chetanpadliya, @chriz85, @clayford08, @coinchaos, @coolguy123, @cryptictruth, @cryptobro1991, @cryptoeera, @cryptoknight12, @cryptopassion, @dalz, @deadspace, @deanliu, @dera123, @dexter-st-jock, @dicetime, @diehard2k9, @donald.porter, @drfk, @duane.dos, @ekushya, @elementm, @emrebeyler, @equinor, @ervin-lemark, @etcmike, @felander, @flutterby29, @for91days, @gabbynhice, @gabrielvlad, @gduran, @georgeknowsall, @glastar, @hitmeasap, @holoz0r, @hotasian, @ilcreativo, @infidel1258, @jason7282, @jassenessaj, @jinuking, @jiujitsu, @johhnnyturbo20,@kim0412, @kaniz, @khaledmreizeeq, @kimxinfo, @kingofgamer, @leoumesh, @lordgod, @lovemetouchme2, @lucasmj, @manusamlive, @mcenoramle, @mcoinz79, @meanbees, @mfblack, @mister-meeseeks, @nanadar, @nathen007, @navorn, @nee-k, @netaterra, @okean123, @oldtimer, @olegpussyking, @parceval, @pasie15, @pepperfoo, @piaristmonk, @primersion, @privatebank, @qam2112, @rawn, @rb17btc, @rb3coins, @rhanna10km, @rosatravels, @satoshibit, @sindong, @sourcemechanic, @ssm1810 @stabrowski, @starfighter, @steemitcuration, @steemit-legacies, @steemshiro, @stimp1024, @stokjockey, @sunit, @sunray, @superlotto, @supermeatboy, @taurusheat, @theb0red1, @thedarkhorse, @thegoliath, @themarkymark, @thomasgutierrez, @tombstone, @transcript-junky, @triplej, @tsnaks, @tunnaingwin, @ugos, @ultima-alianza, @vikisecrets, @walterjay, @wrecktangle27, @wylsacom, @xyzashu, @yangpankil27, @zocken, @cupz, @epicdice, @steem-bet, @steemslotgames

  • I am not suggesting that any of the above names have any association with gambling

TLDR: The only way a hand can be manipulated is by hitting the reset button once every minute very close to on or at the minute to screw with a full-tilt player (aka skipping nonces)

  • @fairbet, @crypticat, @klye are in no way accusing that Kryptogamers is skipping nonces
  • No evidence suggests that the bets are being rigged
  • I do not recommend you gamble, you will lose money in the long run
  • Gambling on the blockchain is just as safe or safer than gambling anywhere else
  • The author holds GAMER tokens but is not being paid by or is associated with Kryptogamers.com

@kryptogames are you able to prove you aren't skipping nonces (not that I am accusing you of it, I just think it could be possible)

Players please provide solid evidence if you have any accusations to avoid looking foolish.

Sort:  

I know how to play Blackjack. I've made a profit on it via Kryptogamers (and have done so overall, across all games) - Blackjack is equal parts skill, and chance (and is much easier when it is house vs player), instead of a table environment where other player's decisions can impact your outcome.

It has felt fair throughout on Kryptogamers. shrug

Agreed!

Posted using Partiko Android

I've played enough and can say that you will have good and bad steaks. I'm one of the profitable players on kryptogames and still believe they are providing a fair game.

Got 2 full houses in a row while studying outcomes today...it was sweet! 90x90 Is 8100 odds I believe.

Posted using Partiko Android

That is nice! In real life I have lost to a straight flush twice in one night to crush my 4 of a kind in holdem. The odds of this happening once is astronomical, but twice is mindblowing. This was a live game at a casino that would never waste their time cheating as they made the same rake on much smaller hand and they are a huge public company.

I used to play a lot of blackjack years ago and while it was rare there was always times when the house just went on an insane winning streak. Talking 20+ hands in a live setting with a shoe. When that happened if you had tried to double up your way out of loosing you go broke without question.

So when I see long streaks of bad cards I know that just about anything is possible. Not saying that I straight up trust these online casinos as I feel anything is possible in the world of cheating when the house has a financial advantage to cheating...but I can't say loosing 15 hands in a row or even 25 times is enough of a reason to think that they are cheating.

I have played video poker and video blackjack in Las Vegas.

The kryptogames site offers several different games. I only played a few games of blackjack and poker at the site.

The blackjack game seems to be very comparable to video blackjack games I played in Las Vegas.

My experience with video poker in Las Vegas may have been with looser machines. But I see no reason to believe that the poker game is not fair.

Of course this is all in my humble opinion. I played much less than 100 games at the kryptogames site, so there is no statistical significance to my opinion.

Thank you so much for using our service! Congratulations! You've earned an ROI of 110.11% with bids of: 0.223$

Received 83.84% upvote from @onlyprofitbot courtesy of @etcmike!

Want to earn more with us? Our APR can reach as high as
13% or more!

More portion of profit will be given to delegators, as the SP pool grows!

Comment below or any post with "@opb !delegate [DelegationAmount]" to find out about current APR, estimated daily earnings in SBD/STEEM

You can now also make bids by commenting "@opb !vote post [BidAmount] [SBD|STEEM]" on any post without the hassle of pasting url to memo!

* Please note you do not have to key in [] for the command to work, APR can be affected by STEEM prices

Thank you so much @fairbet for delving into fairness for our platform kryptogamers and explaining the minute details of our fairness algorithm in very simple terms. Regarding skipping nonces or steem transaction id, no result or card sequence is generated without taking the third parameter "Steem transaction ID" into equation as that is the base of our open-source algorithm of all our games. Anybody who believes differently is welcome to verify any transaction for this.

Thanks again for your fair analysis @fairbet.

From what I have seen of kryptogamers and their offerings I cannot say that they are deceiving users in any way. No evidence to support it.

The changing the server seeds is a bit odd to me, will look more into that to see if it is a possible vector for roll manipulation but seems improbable.

Keep it up folks. :)

I've had a fair relationship with the game. I've mainly only played to win the tokens since they give dividends. I know the basics of blackjack so I haven't won or lost much, but I am hesitant to the idea of making huge bets on here after my experience with magic dice, but I do really like Kryptogames.

Posted using Partiko Android

Magicdice was bad, we are hoping to provide a forum to limit the damage from such things happening.

Thank you for your valiant efforts boss!

This post is supported by $5.0 @tipU upvote funded by @crypticat :)
@tipU voting service: instant, profitable upvotes + profit sharing tokens | For investors.

Thanks for taking the time to put together this well-organized explanation of the technicalities behind this operation. I will make that positive remark for now, but will also be interested to read the other comments. I hope that more players will comment and provide proper evidence, ideally in video form. Someone may figure out an obscure loophole they are taking advantage of. Keep in mind that I am NOT the only person to voice grievances about this operation. I am also continuing to follow up with several Steem blockchain administrators and external online gambling related agencies. My main gripe (aside from the fraud accusation) is that I got sucked into this game through a referral link by another Steemit member. It should be interesting to see where these Kryptogames people will be in six months. Perhaps I will be vindicated, and at such point I will have gotten out early. They are not paying dividends (it seems) unless you play daily. That's like only giving drug addicts a bonus fix if they inject drugs on a regular basis. I thought the whole concept of "staking" was that you get a continuous return on the assets you have staked? Am I the only one who finds that a bit "fishy". As I said, I know in my gut that something is not right here, and I a sticking with that. I am also NOT actively playing (while you ARE @fairbet) and so I am at least OUT of the "roller coaster" and so that perspective may be a good one right now going forward. As you said, ONE of these operation already "took the money and ran". I will NEVER be gambling on the blockchain ever again after this issue. The hope is that my earnings from SteemMonsters will offset the loss of ~ $750 USD worth of Steem, BTC and BCH. Again, you are doing good work with this page, and you have at least attempted to consult with others who are more technically knowlegable. It would have been ideal to know about your profile BEFORE I got involved with this, but "hindsight is 20/20". I WILL be continuing to do some legal research and monitoring on this Kryptogames operation, and if there is ANY proper evidence (both within the Steemit platform OR the larger internet) I WILL pursue whatever legal action possible. If the general consensus here CHANGES so that an increasing number of people start complaining and providing evidence I will already be ahead of the curve and ready to take action. In the meantime, I will follow your posts to stay up-to-date on the pulse of the community relative to this operation. And no, @kryptogames, I have ZERO desire to discuss this issue further with you. There is enough common sense evidence (aside from the algorithm) to convince me that I want NOTHING to do with you people, other than suing (or settling with) you for that 5,000 Steem at some point in the future, if/when an adequate amount of evidence is provided by the community. That is all I have to say on the matter at this time. In conclusion, good effort @fairbet. Hopefully you will stay "in the black" if you continue to play the Kyrptogames.

So everyone commenting has won excellent. All 5 of them, where are all the players that have lost be interesting to see what there thoughts are.
I used to say online poker wad rigged and you had 'independent' people that said no for years til millions were scammed. My gut feelings have got me through life aint no blockchain bullshit gonna convince me to ignore that.
Some random code which none of us understand.
Still doesn't explain why
You can't take cards when dealer has ace(sometimes)
You can't split aces twice
You can't double down aces once split
How many decks of cards they play with
If these are not important then the game is a version of blackjack. Not blackjack so dont advertise it as blackjack

You can't split aces twice

This is ok

The problem is that you can't resplit any other pair. This is not a blackjack game.

Sorry for replying to this old, unrelated post, but you didn't have any posts to comment on. Is there a reason you downvoted my post? I don't use any bidbots ever, I think I was manually curated by some accounts that used to be bidbots, but it has nothing to do with me paying for them. Just seems odd to downvote someone not involved with bidbots. Thanks for your time.

If you read this post @qam2112, you can see they programmed the game with 4 decks of cards, it's very clear. They also explained the rules to their blackjack game and don't want to make it more in favour of the player by allowing resplits and doubles after splits, casinos allow that but they also can kick you out if you're a really good player. The odds are already great if you use a simple blackjack strategy card.

How about this? I will play 10 hands at different times of the day. At a fixed bet of 1 steem. 20 times. Lets see how many wins we get in those 20 times? So that 10 x 20 hands different times in blocks of 10. I will Screenshot them then you get back to me and tell me how it's provably fair.

Posted using Partiko Android

P.S. Also, I "staked" the GAMERS tokens in Steem-Engine, and then when I saw there was no daily dividend payout I proceeded to "unstake" them, and now they seem to have been sucked into some sort of an "unstaked pergatory":

GAMER Krypto Gamers Token 0 $0.00 -33.33% 0 (2746630)

Any idea how to get these token back into the "active" column (the $0.00 above)? Or have I even lost those now also?

Thank you for the detailed reply.

Congratulations @fairbet! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

You got more than 50 replies. Your next target is to reach 100 replies.

You can view your badges on your Steem Board and compare to others on the Steem Ranking
If you no longer want to receive notifications, reply to this comment with the word STOP

Vote for @Steemitboard as a witness to get one more award and increased upvotes!

Coin Marketplace

STEEM 0.27
TRX 0.13
JST 0.032
BTC 61451.22
ETH 2929.56
USDT 1.00
SBD 3.65