Fairness

Fairness that is provable

All the random number generation on EpicDice is coming from Transactino ID and Server Seed. Transaction ID is generated on Steem blockchian the moment it is broadcasted. While server seed is decided by the house system every 2 minutes. An encoded server seed is published on the Steem blockchain before it was applied in new random number generation. Then the server seed is revealed before next one is generated.

This combination shows that the house would have zero possibility to manipulate the outcome while making sure system security is not compromised.

Dice

Manual verification can be done over playcode.io.

var transId ='<replace with trx_id>'

var result = 1000000
var offset = 0
var length = 5
var endValue = offset + length
var chop
var finalResult
while (result > 999999) {
chop = transId.substring(offset, endValue)
offset += 5
endValue = offset + length
result = parseInt(chop, 16)
finalResult = result % (10000) / 100
finalResult = Math.round(finalResult)
console.log("finalResult : " + finalResult)
if (finalResult === 0) {
result = 1000000
}
}

Between

Manual verification can be done over playcode.io.

rawValue

Face Value

0 - 3

A

4 - 7

2

8 - 11

3

12 - 15

4

16 - 19

5

20 - 23

6

24 - 27

7

28 - 31

8

32 - 35

9

36- 39

10

40 - 43

J

44 - 47

Q

48 - 51

K

Last updated

Was this helpful?