Everyone please let us know of other suggestions. Currently we will be focusing on multiple transactions from blockchain.info, stats for high rollers, top winners, top bets etc.
Thanks all for linking this game so much that we wagered 24.3 btc in few days.
A video showing how to put a number into your own tool does nothing to prove fairness. The fact your hashed server seed is NOT shown, and after me pointing it out more than 5 times, you continually deflecting and insisting it does not need to be, just screams "We have no intention of fairness."
Showing the seed would take 2 minutes of code. You've spent more time than that trying to convince everyone you don't need to, when EVERY SINGLE provably fair gambling site online does it.
But, hey, trust you, right?
Did you even watched the video carefully? If you will watch the full video you will see that the server seed is shown, and the algo is published and bets are verified manually not with our tool
The code to verify bets is here http://pachinko.games-bit.com/algo.txt
// Want to compare manually? Enter following values in a PHP script accordingly:
$server_seed = ""; // server seed
$client_seed = ""; // client seed
$hash = hash_hmac('sha512', $server_seed, $client_seed);
$index = 0;
$start = $index * 5;
$end = 5;
$sub = substr($hash, $start, $end);
$roll = intval($sub, 16);
while($roll >= 1000000){
$index++;
$start = $index * 5;
$end = 5;
$sub = substr($hash, $start, $end);
$roll = intval($sub, 16);
if($roll >= 1000000){
if($index * 5 + 5 > 128){
$roll = 99.9999;
}
} else {
break;
}
}
$roll %= 10000;
$roll /= 1000;
echo "
Server Hash: " . hash('sha256', $server_seed);
echo "
Roll Result: " . number_format($roll, 3);
But for that you need to watch the full video. I think your sole intention is to prove that you are right and I am wrong. I already stated that many times that server seed is revealed and you verify bets manually with above code but I think you do not even read the replies before posting here.
Again you have to watch full video to understand whats going on as you were unable to understand with words.