Today we would like to announce our new provably fair system, and referral system at
http://btc-raffle.comHow it works.After the second player joins a round, the round starts and the site will start generating lucky numbers by the hash of latest bitcoin transaction and total pot of each round(in satoshi). It is generated for every second. The hashes shown on the page are in realtime with bitcoin network. The final lucky number is the one after 10-second is up. As you can see, the hash of bitcoin transaction is totally unpredictable and the lucky number is generated after each round is finished.
No one on the earth can know the lucky number before round ends.How to verify.It's pretty straightforward. Use the following script to verify the generated lucky number.
var crypto = require('crypto');
function LuckyNumberGenerator (transactionhash, totalpot) {
//create HMAC using server seed as key and client seed as message
var hash = crypto.createHmac('sha512', transactionhash).update(totalpot).digest('hex');
var index = 0;
var lucky = parseInt(hash.substring(index * 5, index * 5 + 5), 16);
//keep grabbing characters from the hash while greater than
while (lucky >= Math.pow(10, 6)) {
index++;
lucky = parseInt(hash.substring(index * 5, index * 5 + 5), 16);
//if we reach the end of the hash, just default to highest number
if (index * 5 + 5 > 128) {
lucky =99.99;
break;
}
}
lucky %= Math.pow(10, 4);
return lucky + 1; //lucky number is from 1 to 10000;
}
//example:
console.log(LuckyNumberGenerator('1227fe9d6ea50637d42fb169c6b32f4df693098cfda9517e28ed3e31798fd8a8', 880000));
How Our Referral System WorksOnce you are logged into the site click your profile button at the top right side of the site. Then click "Referral" On this page you will see your referral link also the stats of your referrals. Each time one of your referrals place a bet on the site you will earn 1% of the total bet. This last for life.
This is a 100% site revenue commission. (Meaning you take 100% of what we make) We make nothing on referrals we give our members 100%.
Provably Fair
Fast Deposits (Only 1 confirm)
Instant Auto Withdraws
New Raffle Every 10 Seconds
Members Live Chat
Admin Private Support Chat
Player VS Player (Not gambling against the house like every other site)
Join our FREE GIVEAWAY @
https://bitcointalksearch.org/topic/chat-box-giveaway-paid-just-to-talk-1314647Video Demo
https://www.youtube.com/watch?v=-RTjeQbHtDk&feature=youtu.beIf you have any suggestions or ideas on how to improve the site please let us know.
Change Log
1/4/2016 1.0 Set every raffle from 30 seconds to 10 Seconds
1/5/2016 1.1 Added Client Seed to provably fair system