Bitcoin Forum
April 25, 2024, 03:33:53 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Question/opinions on pocketdice's claim of provably fair.  (Read 2084 times)
keepinquiet (OP)
Full Member
***
Offline Offline

Activity: 420
Merit: 151



View Profile
June 02, 2015, 04:08:56 AM
 #1

Pocketdice claims to be provably fair. And they are - sort of. Ish.

Where I find fault in it is in the fact that unlike card-based games that have a static deck that is shuffled and then 'cut' or re-shuffled by a client seed, pocketdice makes a list of 30 "random" numbers from 1-6. Those are then shuffled, then client-seed shuffled.

No big deal, right? Totally fair, totally provable.

Except for the fact that your roll tendencies can be tracked. Maybe you ALWAYS go "Higher than 8".

So what if pocketdice's 30 "random numbers" have 9 1's, 7 2's 5 3's, 5 4's, 3 5's and 1 6?

That seriously skews the odds in pocketdice's favor. Which is absolutely not provably fair. Real dice have an equal chance to land on any number. When your array is is [1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 6] you do have a chance to roll higher than 8, but it's pretty slim.

When I started looking at it tonight, the first thing I did was click on a random past bet to see the roll array. It had 7 6's in it. If it's truly fair, in a 30 number array of 1-6, each number should be represented 5 times.

That being said, as I typed that, I realized something - PD rolls 2 dice. Why the hell is it an array of 30 instead of 12? You don't need that many.

Unless you're skewing the odds.

Ever since 999dice effed me over and I exposed them (to no avail, their profit is supposedly up 1000 BTC since it happened about 2-3 months ago. Funny. How does a .1% edge site make 1000 BTC in 2-3 months?) I've been taking a really close look at all the gambling sites I come across.

Just trying to hold everyone to a standard. Not trying to be a dick. If it's an oversight that pocketdice never realized, they will fix it.

If not, well, I sure as hell wouldn't bet there.
1714059233
Hero Member
*
Offline Offline

Posts: 1714059233

View Profile Personal Message (Offline)

Ignore
1714059233
Reply with quote  #2

1714059233
Report to moderator
1714059233
Hero Member
*
Offline Offline

Posts: 1714059233

View Profile Personal Message (Offline)

Ignore
1714059233
Reply with quote  #2

1714059233
Report to moderator
1714059233
Hero Member
*
Offline Offline

Posts: 1714059233

View Profile Personal Message (Offline)

Ignore
1714059233
Reply with quote  #2

1714059233
Report to moderator
"I'm sure that in 20 years there will either be very large transaction volume or no volume." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
NLNico
Legendary
*
hacker
Offline Offline

Activity: 1876
Merit: 1289


DiceSites.com owner


View Profile WWW
June 02, 2015, 04:50:22 AM
Last edit: June 02, 2015, 05:13:54 AM by NLNico
 #2

Correct, nice found again. To be provably fair it should generate the number sets based on both the server- and clientseed[1]. Actually it will be easier to just generate 2 numbers 1-6. Ideally it will not be "per roll" anyway, but just the "nonce way". There are several problems with "per roll" even in a perfect technical implementation, for example: the player has to write down each seed between each roll and verify per roll (instead of just copying 1 seed for hundreds of rolls.)

Again, I agree that, in theory, currently it is too easy for Pocket Dice to cheat with the current provably fair implementation. The client's seed is not really used to generate the random result. But I can still imagine it is not wrong on purpose - it should be changed though.

Possible better way: Basically any dice site calculates a number between 0-100. And it is very easy for them to generate 2 numbers between 0-100 from 1 "result hash" (they actually do this already if the result is more than 100.) Then just make 0-16.6666=1,16.6666-33.3333=2, ....., 83.3333-100=6. So the "normal" provably fair method with "nonce method", used on all popular dice sites, can definitely be implemented here and that would be much better.

Or just take set of 12 numbers and do the Fisher-Yates shuffle with the sha2 of server+clientseed+nonce (and delimiters in between) as Mersenne Twister seed, I guess.

1. And ideally the client seed is not made with Math.random() like it is now.

tspacepilot
Legendary
*
Offline Offline

Activity: 1456
Merit: 1076


I may write code in exchange for bitcoins.


View Profile
June 02, 2015, 05:45:24 AM
 #3


When I started looking at it tonight, the first thing I did was click on a random past bet to see the roll array. It had 7 6's in it. If it's truly fair, in a 30 number array of 1-6, each number should be represented 5 times.


I'm not saying you're wrong about the skewiness of an entire distribution of numbers generated as you describe, however, if I understand you correctly, the line I quote you on above is completely wrong.

In a truly-fair array of 30 random numbers 1-6, the crucial property is that you cannot predict at all how many times each number should be represented.  In a single draw of 30 random numbers, if they're truly random, they might be all 1s, you don't know untill you draw.  Now, if the numbers are truly random then the long-term expected average distribution should approach an equal distribution of 1,2,3,4,5,6 as you sample size approaches infinity.  But it's simply not correct to say that if you draw 30 random numbers from 1-6 that you can expect to find them equally distributed---that would be a decidely non-random distribution.
Coef
Hero Member
*****
Offline Offline

Activity: 882
Merit: 1000


Exhausted


View Profile
June 02, 2015, 06:14:22 AM
 #4

In a truly-fair array of 30 random numbers 1-6, the crucial property is that you cannot predict at all how many times each number should be represented.  In a single draw of 30 random numbers, if they're truly random, they might be all 1s, you don't know untill you draw.  Now, if the numbers are truly random then the long-term expected average distribution should approach an equal distribution of 1,2,3,4,5,6 as you sample size approaches infinity.  But it's simply not correct to say that if you draw 30 random numbers from 1-6 that you can expect to find them equally distributed---that would be a decidely non-random distribution.

Correct. But the main problem I see here is that the generation process of that 30 numbers is not described clearly.
The site may be doing it fairly, or may be not. We simply don't know about that, and so it is not provably fair.

tspacepilot
Legendary
*
Offline Offline

Activity: 1456
Merit: 1076


I may write code in exchange for bitcoins.


View Profile
June 02, 2015, 06:17:59 AM
 #5

In a truly-fair array of 30 random numbers 1-6, the crucial property is that you cannot predict at all how many times each number should be represented.  In a single draw of 30 random numbers, if they're truly random, they might be all 1s, you don't know untill you draw.  Now, if the numbers are truly random then the long-term expected average distribution should approach an equal distribution of 1,2,3,4,5,6 as you sample size approaches infinity.  But it's simply not correct to say that if you draw 30 random numbers from 1-6 that you can expect to find them equally distributed---that would be a decidely non-random distribution.

Correct. But the main problem I see here is that the generation process of that 30 numbers is not described clearly.
The site may be doing it fairly, or may be not. We simply don't know about that, and so it is not provably fair.

I see (better now), thanks.  I wanted to clarify that part of the OP just to make sure I wasn't completely misunderstanding.
keepinquiet (OP)
Full Member
***
Offline Offline

Activity: 420
Merit: 151



View Profile
June 02, 2015, 10:45:53 AM
 #6

In a truly-fair array of 30 random numbers 1-6, the crucial property is that you cannot predict at all how many times each number should be represented.  In a single draw of 30 random numbers, if they're truly random, they might be all 1s, you don't know untill you draw.  Now, if the numbers are truly random then the long-term expected average distribution should approach an equal distribution of 1,2,3,4,5,6 as you sample size approaches infinity.  But it's simply not correct to say that if you draw 30 random numbers from 1-6 that you can expect to find them equally distributed---that would be a decidely non-random distribution.

Correct. But the main problem I see here is that the generation process of that 30 numbers is not described clearly.
The site may be doing it fairly, or may be not. We simply don't know about that, and so it is not provably fair.

I see (better now), thanks.  I wanted to clarify that part of the OP just to make sure I wasn't completely misunderstanding.

Yep. WHile you're right, it could be all 1's - since the generation of THOSE numbers is, as they put it, "random" it could be anything, including intentionally skewing the weight of numbers in their favor based on your betting history.

Until those numbers are provably fair, the entire system isn't.
adaseb
Legendary
*
Offline Offline

Activity: 3738
Merit: 1708



View Profile
June 02, 2015, 12:18:55 PM
 #7

Honestly, its probably next to impossible to prove if its truly fair or not. Some say that if you don't reset your client seed, then your rolls can be altered.


.BEST..CHANGE.███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
tspacepilot
Legendary
*
Offline Offline

Activity: 1456
Merit: 1076


I may write code in exchange for bitcoins.


View Profile
June 02, 2015, 02:45:17 PM
 #8

In a truly-fair array of 30 random numbers 1-6, the crucial property is that you cannot predict at all how many times each number should be represented.  In a single draw of 30 random numbers, if they're truly random, they might be all 1s, you don't know untill you draw.  Now, if the numbers are truly random then the long-term expected average distribution should approach an equal distribution of 1,2,3,4,5,6 as you sample size approaches infinity.  But it's simply not correct to say that if you draw 30 random numbers from 1-6 that you can expect to find them equally distributed---that would be a decidely non-random distribution.

Correct. But the main problem I see here is that the generation process of that 30 numbers is not described clearly.
The site may be doing it fairly, or may be not. We simply don't know about that, and so it is not provably fair.

I see (better now), thanks.  I wanted to clarify that part of the OP just to make sure I wasn't completely misunderstanding.

Yep. WHile you're right, it could be all 1's - since the generation of THOSE numbers is, as they put it, "random" it could be anything, including intentionally skewing the weight of numbers in their favor based on your betting history.
Actually, intentially skewing would be a form of non-random.  I just think it's crucial to get the terms right in these sorts of conversations to avoid confusino
Quote
Until those numbers are provably fair, the entire system isn't.
Yes, I understand the issue now.

XinXan
Hero Member
*****
Offline Offline

Activity: 1064
Merit: 505


View Profile
June 02, 2015, 04:36:29 PM
 #9

Honestly, its probably next to impossible to prove if its truly fair or not. Some say that if you don't reset your client seed, then your rolls can be altered.



That was the case with 999dice when op exposed them aswell, its impossible to prove they are not fair but this should lead to them changing their system, if they dont then you know something its wrong, i used to believe 999dice wasnt a scam, i personally won 2 btc there once but after they changed their system to something that was the same, made me think again about them.
Pocket Dice
Sr. Member
****
Offline Offline

Activity: 342
Merit: 250



View Profile WWW
June 03, 2015, 02:07:48 PM
 #10

Hi guys! Thanks for your questions. This is really an interesting topic for discussion.

Initially when we just started Pocket Dice we've researched the randomization methods other dice sites were using at that time. Based on this research we've created our algorithm that we're currently using at Pocket Dice as it seemed transparent to us.

But we understand your point about the unobvious source of those 30 initial numbers. We're now thinking about redesigning the randomization process so that it is clear for everyone.

Here's what we can do:
1. We generate server seed for next roll. Hash it and send to user with previous roll.
2. JS generates new client seed for each roll and sends it with bet info.
3. We hash two seeds with hmac_sha512(server_seed, client_seed) and parse 2 numbers 1-6 from that hash.

What do you think? We're open for conversation, let's discuss.

Pocket Dice team.

keepinquiet (OP)
Full Member
***
Offline Offline

Activity: 420
Merit: 151



View Profile
June 04, 2015, 04:40:54 PM
 #11

That works, but then causes the issue of "I need to copy and paste a crapton of stuff to verify bets."

Consider going the nonce route. You create a server seed. I can then let my browser pick a client seed, or I can set one manually. Then each bet is different via nonce.

The massive benefit to the end user is they only need to record info ONCE to validate possibly hundreds of bets.

Real glad to see a positive response to this. Thanks!
cyber_sonic
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
November 02, 2016, 02:12:24 PM
 #12

the 30 numbers are fair as long as they want it to be. once they want people to lose oney, the start making it unfair just by hitting the LOOT switch.  Tongue
Ryan Dugan
Hero Member
*****
Offline Offline

Activity: 924
Merit: 501


View Profile WWW
November 06, 2016, 06:37:40 PM
 #13

I dont know what to think anymore. If they use a seed what is to say they dont manipulate the process of how they use the seed ?
How do we know the number we chose is generated properly against the number on the seed ?

cyber_sonic
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
November 22, 2016, 06:33:45 AM
 #14

i created a pocketdice roll checker with the logic provided in the site.

http://pocketdice.ga/

hope you find this useful.

the game seems to be provably fair to me now.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!