Bitcoin Forum
April 25, 2024, 05:19:17 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: FaucetPay.io Provably Fair Seeding Event for Crash!  (Read 881 times)
MrBit112 (OP)
Copper Member
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
June 15, 2020, 10:43:37 AM
 #1

Welcome to the FaucetPay Provably Fair Seeding Event for Crash!

This will reuse the idea posted by Ryan and used for Bustabit v1.
   
A chain of 10 million (1e7) sha256 hashes was generated, starting with a Server Secret that has been repeatedly fed the output of sha256 hash back into itself 10 million times.

The final hash in the chain is: e3ac72b2b84cb8b64669e0441e50bb24834980ed065a479113505c0984ac32c5, by publicizing it here we are preventing any ability to pick an alternate sha256 chain.
FaucetPay.io will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point.
To avoid criticism that the Server Secret used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of.

The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 635017

The reference code (javascript) is as follows:

Code:
function genGameHash(serverSeed) {
  return crypto.createHash('sha256').update(serverSeed).digest('hex');
}


The method to convert a game hash, mix it with the picked client seed to a money pot multiplier:

Code:
function toFixed(num, fixed) {
    var re = new RegExp('^-?\\d+(?:\.\\d{0,' + (fixed || -1) + '})?');
    return num.toString().match(re)[0];
}

function crashPointFromHash(serverSeed, clientSeed) {

  var actual_hash = CryptoJS.SHA512(clientSeed + "-" + serverSeed).toString();

  var p1 = parseInt((actual_hash.substr(0, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);
  var p2 = parseInt((actual_hash.substr(2, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);
  var p3 = parseInt((actual_hash.substr(4, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);
  var p4 = parseInt((actual_hash.substr(6, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);

  var roll = Math.floor(((p1 / Math.pow(256, 1)) + (p2 / Math.pow(256, 2)) + (p3 / Math.pow(256, 3)) + (p4 / Math.pow(256, 4))) * 1000000);

  var crash_point = toFixed(parseFloat(1000000 / (roll + 1) * 0.96), 2);

  return crash_point;

}

The chain could be generated with code such as:

Code:
var serverSecret =  'If you knew this, you could steal all my money';
var clientSeed = '0000examplehash';

var gamesToGenerate = 1e7;

var serverSeed = serverSecret;

for (var game = gamesToGenerate; game > 0; --game) {
  serverSeed = genGameHash(serverSeed);
  console.log('Game ' +  game + ' has a crash point of ' + (crashPointFromHash(serverSeed, clientSeed) / 100).toFixed(2) +'x', '\t\tHash: ' + serverSeed);
}

var terminatingHash = genGameHash(serverSeed);

console.log('The terminating hash is: ', terminatingHash);

Using our chosen starting serverSeed, the hash terminating the chain is e3ac72b2b84cb8b64669e0441e50bb24834980ed065a479113505c0984ac32c5. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be e3ac72b2b84cb8b64669e0441e50bb24834980ed065a479113505c0984ac32c5.
1714022357
Hero Member
*
Offline Offline

Posts: 1714022357

View Profile Personal Message (Offline)

Ignore
1714022357
Reply with quote  #2

1714022357
Report to moderator
Activity + Trust + Earned Merit == The Most Recognized Users on Bitcointalk
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714022357
Hero Member
*
Offline Offline

Posts: 1714022357

View Profile Personal Message (Offline)

Ignore
1714022357
Reply with quote  #2

1714022357
Report to moderator
1714022357
Hero Member
*
Offline Offline

Posts: 1714022357

View Profile Personal Message (Offline)

Ignore
1714022357
Reply with quote  #2

1714022357
Report to moderator
1714022357
Hero Member
*
Offline Offline

Posts: 1714022357

View Profile Personal Message (Offline)

Ignore
1714022357
Reply with quote  #2

1714022357
Report to moderator
xxjumperxx
Sr. Member
****
Offline Offline

Activity: 504
Merit: 265

Buy Bitcoin!


View Profile
June 15, 2020, 10:49:31 AM
 #2

Welcome to the FaucetPay Provably Fair Seeding Event for Crash!

This will reuse the idea posted by Ryan and used for Bustabit v1.
   
A chain of 10 million (1e7) sha256 hashes was generated, starting with a Server Secret that has been repeatedly fed the output of sha256 hash back into itself 10 million times.

The final hash in the chain is: e3ac72b2b84cb8b64669e0441e50bb24834980ed065a479113505c0984ac32c5, by publicizing it here we are preventing any ability to pick an alternate sha256 chain.
FaucetPay.io will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point.
To avoid criticism that the Server Secret used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of.

The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 635017

The reference code (javascript) is as follows:

Code:
function genGameHash(serverSeed) {
  return crypto.createHash('sha256').update(serverSeed).digest('hex');
}


The method to convert a game hash, mix it with the picked client seed to a money pot multiplier:

Code:
function toFixed(num, fixed) {
    var re = new RegExp('^-?\\d+(?:\.\\d{0,' + (fixed || -1) + '})?');
    return num.toString().match(re)[0];
}

function crashPointFromHash(serverSeed, clientSeed) {

  var actual_hash = CryptoJS.SHA512(clientSeed + "-" + serverSeed).toString();

  var p1 = parseInt((actual_hash.substr(0, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);
  var p2 = parseInt((actual_hash.substr(2, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);
  var p3 = parseInt((actual_hash.substr(4, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);
  var p4 = parseInt((actual_hash.substr(6, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);

  var roll = Math.floor(((p1 / Math.pow(256, 1)) + (p2 / Math.pow(256, 2)) + (p3 / Math.pow(256, 3)) + (p4 / Math.pow(256, 4))) * 1000000);

  var crash_point = toFixed(parseFloat(1000000 / (roll + 1) * 0.96), 2);

  return crash_point;

}

The chain could be generated with code such as:

Code:
var serverSecret =  'If you knew this, you could steal all my money';
var clientSeed = '0000examplehash';

var gamesToGenerate = 1e7;

var serverSeed = serverSecret;

for (var game = gamesToGenerate; game > 0; --game) {
  serverSeed = genGameHash(serverSeed);
  console.log('Game ' +  game + ' has a crash point of ' + (crashPointFromHash(serverSeed, clientSeed) / 100).toFixed(2) +'x', '\t\tHash: ' + serverSeed);
}

var terminatingHash = genGameHash(serverSeed);

console.log('The terminating hash is: ', terminatingHash);

Using our chosen starting serverSeed, the hash terminating the chain is e3ac72b2b84cb8b64669e0441e50bb24834980ed065a479113505c0984ac32c5. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be e3ac72b2b84cb8b64669e0441e50bb24834980ed065a479113505c0984ac32c5.


Quoted to make sure nothing changes.

Archived the Opening post to make sure nothing changes -> https://web.archive.org/web/20200615104847/https://bitcointalk.org/index.php?topic=5255740.msg54623486
MrBit112 (OP)
Copper Member
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
June 15, 2020, 11:05:39 AM
 #3

Welcome to the FaucetPay Provably Fair Seeding Event for Crash!

This will reuse the idea posted by Ryan and used for Bustabit v1.
   
A chain of 10 million (1e7) sha256 hashes was generated, starting with a Server Secret that has been repeatedly fed the output of sha256 hash back into itself 10 million times.

The final hash in the chain is: e3ac72b2b84cb8b64669e0441e50bb24834980ed065a479113505c0984ac32c5, by publicizing it here we are preventing any ability to pick an alternate sha256 chain.
FaucetPay.io will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point.
To avoid criticism that the Server Secret used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of.

The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 635017

The reference code (javascript) is as follows:

Code:
function genGameHash(serverSeed) {
  return crypto.createHash('sha256').update(serverSeed).digest('hex');
}


The method to convert a game hash, mix it with the picked client seed to a money pot multiplier:

Code:
function toFixed(num, fixed) {
    var re = new RegExp('^-?\\d+(?:\.\\d{0,' + (fixed || -1) + '})?');
    return num.toString().match(re)[0];
}

function crashPointFromHash(serverSeed, clientSeed) {

  var actual_hash = CryptoJS.SHA512(clientSeed + "-" + serverSeed).toString();

  var p1 = parseInt((actual_hash.substr(0, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);
  var p2 = parseInt((actual_hash.substr(2, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);
  var p3 = parseInt((actual_hash.substr(4, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);
  var p4 = parseInt((actual_hash.substr(6, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);

  var roll = Math.floor(((p1 / Math.pow(256, 1)) + (p2 / Math.pow(256, 2)) + (p3 / Math.pow(256, 3)) + (p4 / Math.pow(256, 4))) * 1000000);

  var crash_point = toFixed(parseFloat(1000000 / (roll + 1) * 0.96), 2);

  return crash_point;

}

The chain could be generated with code such as:

Code:
var serverSecret =  'If you knew this, you could steal all my money';
var clientSeed = '0000examplehash';

var gamesToGenerate = 1e7;

var serverSeed = serverSecret;

for (var game = gamesToGenerate; game > 0; --game) {
  serverSeed = genGameHash(serverSeed);
  console.log('Game ' +  game + ' has a crash point of ' + (crashPointFromHash(serverSeed, clientSeed) / 100).toFixed(2) +'x', '\t\tHash: ' + serverSeed);
}

var terminatingHash = genGameHash(serverSeed);

console.log('The terminating hash is: ', terminatingHash);

Using our chosen starting serverSeed, the hash terminating the chain is e3ac72b2b84cb8b64669e0441e50bb24834980ed065a479113505c0984ac32c5. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be e3ac72b2b84cb8b64669e0441e50bb24834980ed065a479113505c0984ac32c5.


Quoted to make sure nothing changes.

Archived the Opening post to make sure nothing changes -> https://web.archive.org/web/20200615104847/https://bitcointalk.org/index.php?topic=5255740.msg54623486

Awesome! Thank you.  Smiley
MrBit112 (OP)
Copper Member
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
June 16, 2020, 05:33:09 PM
 #4

Block 635017 is mined

Our client seed will be: 0000000000000000001221b64a1e49b293a743ff06f662ea713ca564d5e20b1e
beerlover
Legendary
*
Offline Offline

Activity: 2856
Merit: 1156



View Profile
June 17, 2020, 06:21:17 AM
 #5

A faucet payment processor along with gambling and trading? Sounds like a one stop hub for all the need. Good collection of services to stand alone and tall Cheesy. You got bunch of services which must need big team to manage; am not sure how effectively your team is going to handle like you may need to watch which faucet is going dry and might need to be removed from listing and updating sports events accordingly under sportsbetting. (Right now under cricket there is match for Eng vs WI on July whereas cricinfo is not showing anything like that but there is match between Ireland vs NZ on 19th June 2020; just 2 more days left which is missing in your listing)

I mean running a dicing or faucet payment processor alone is something different than running a collection of services/businesses. If you are able to manage perfectly then this website may unveil huge potential beyond your dreams. Good luck!

.
.DuelbitsSPORTS.
▄▄▄███████▄▄▄
▄▄█████████████████▄▄
▄██████████████████████▄
██████████████████████████
███████████████████████████
██████████████████████████████
██████████████████████████████
█████████████████████████████
███████████████████████████
█████████████████████████
▀████████████████████████
▀▀███████████████████
██████████████████████████████
██
██
██
██

██
██
██
██

██
██
██
████████▄▄▄▄██▄▄▄██
███▄█▀▄▄▀███▄█████
█████████████▀▀▀██
██▀ ▀██████████████████
███▄███████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
▀█████████████████████▀
▀▀███████████████▀▀
▀▀▀▀█▀▀▀▀
OFFICIAL EUROPEAN
BETTING PARTNER OF
ASTON VILLA FC
██
██
██
██

██
██
██
██

██
██
██
10%   CASHBACK   
          100%   MULTICHARGER   
MrBit112 (OP)
Copper Member
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
June 17, 2020, 07:18:15 PM
 #6

A faucet payment processor along with gambling and trading? Sounds like a one stop hub for all the need. Good collection of services to stand alone and tall Cheesy. You got bunch of services which must need big team to manage; am not sure how effectively your team is going to handle like you may need to watch which faucet is going dry and might need to be removed from listing and updating sports events accordingly under sportsbetting. (Right now under cricket there is match for Eng vs WI on July whereas cricinfo is not showing anything like that but there is match between Ireland vs NZ on 19th June 2020; just 2 more days left which is missing in your listing)

I mean running a dicing or faucet payment processor alone is something different than running a collection of services/businesses. If you are able to manage perfectly then this website may unveil huge potential beyond your dreams. Good luck!


Thanks for the feedback! We really appreciate it  Smiley

Our Sportsbetting API provider isn't the best, to be honest. We are already in talks with a new provider and hopefully, we can implement the new one soon.


Timelord2067
Legendary
*
Offline Offline

Activity: 3654
Merit: 2216


💲🏎️💨🚓


View Profile
June 18, 2020, 01:40:03 AM
 #7

There are a couple of users that can cast an appraising eye over this thread - @LoyceV is one of them and usually others will follow. 

I'm not sure what "crash" you are referring to, however good luck and I hope the crash is ?? successful ??

MrBit112 (OP)
Copper Member
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
June 18, 2020, 10:11:08 PM
 #8

There are a couple of users that can cast an appraising eye over this thread - @LoyceV is one of them and usually others will follow. 

I'm not sure what "crash" you are referring to, however good luck and I hope the crash is ?? successful ??

Crash is a multiplayer gambling game. Where you bet on a curve which goes up.

You can take a look here https://faucetpay.io/crashes
nakamura12
Hero Member
*****
Offline Offline

Activity: 2254
Merit: 669


Bitcoin Casino Est. 2013


View Profile
June 18, 2020, 10:21:20 PM
 #9

There are a couple of users that can cast an appraising eye over this thread - @LoyceV is one of them and usually others will follow. 

I'm not sure what "crash" you are referring to, however good luck and I hope the crash is ?? successful ??
Let's just hope that their crash game will not crash. It's good that players can choose what crypto they will use to bet and win if very lucky. I have checked their site and they have coin swap, and faucet list. The question is I am not familiar with the faucets on the list in their site.

███▄▀██▄▄
░░▄████▄▀████ ▄▄▄
░░████▄▄▄▄░░█▀▀
███ ██████▄▄▀█▌
░▄░░███▀████
░▐█░░███░██▄▄
░░▄▀░████▄▄▄▀█
░█░▄███▀████ ▐█
▀▄▄███▀▄██▄
░░▄██▌░░██▀
░▐█▀████ ▀██
░░█▌██████ ▀▀██▄
░░▀███
▄▄██▀▄███
▄▄▄████▀▄████▄░░
▀▀█░░▄▄▄▄████░░
▐█▀▄▄█████████
████▀███░░▄░
▄▄██░███░░█▌░
█▀▄▄▄████░▀▄░░
█▌████▀███▄░█░
▄██▄▀███▄▄▀
▀██░░▐██▄░░
██▀████▀█▌░
▄██▀▀██████▐█░░
███▀░░
Saint-loup
Legendary
*
Offline Offline

Activity: 2590
Merit: 2348



View Profile
June 21, 2020, 03:36:20 PM
Last edit: June 21, 2020, 04:33:20 PM by Saint-loup
 #10

There are a couple of users that can cast an appraising eye over this thread - @LoyceV is one of them and usually others will follow.  

I'm not sure what "crash" you are referring to, however good luck and I hope the crash is ?? successful ??
It's obviously a crash game, and MrBit112 is posting here which seeds will be used for the games to prevent any house cheating.
If you post the last element of a hash chain you can't guess the previous elements but you can check them once you get them by hashing them till the final element.
But I don't understand why you are quoting loyceV for that? He is a crash game fan?

██
██
██
██
██
██
██
██
██
██
██
██
██
... LIVECASINO.io    Play Live Games with up to 20% cashback!...██
██
██
██
██
██
██
██
██
██
██
██
██
AmoreJaz
Legendary
*
Offline Offline

Activity: 3080
Merit: 1102


Leading Crypto Sports Betting & Casino Platform


View Profile
June 23, 2020, 07:12:19 AM
 #11

There are a couple of users that can cast an appraising eye over this thread - @LoyceV is one of them and usually others will follow. 

I'm not sure what "crash" you are referring to, however good luck and I hope the crash is ?? successful ??
Let's just hope that their crash game will not crash. It's good that players can choose what crypto they will use to bet and win if very lucky. I have checked their site and they have coin swap, and faucet list. The question is I am not familiar with the faucets on the list in their site.

i think a lot of those on the list are new ones. i used btc faucet many years ago so am not also familiar with most of them. but familiarity to them doesnt matter here as a lot of these sites need some min balance before you can withdraw, so it would take time to get those free satoshis to be credited to your account. that is if you have the patience to claim those free satoshis  at a given interval of time.
if nothing else, they gave you long list of faucets to visit for various alts! i dont know if anyone can keep up using them...

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
Chikito
Legendary
*
Offline Offline

Activity: 2366
Merit: 2052



View Profile WWW
June 23, 2020, 08:56:00 AM
 #12

I tried Paid to click ? after clicked and see ads reference, my balance still 0, where to credited?

How much Wagered/day on a crash game? I see small wagering only.



this, https://faucetpay.io/dice < recent bet running like crazy. maybe a hundred wagered per second.

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
MrBit112 (OP)
Copper Member
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
June 26, 2020, 12:31:02 PM
 #13

I tried Paid to click ? after clicked and see ads reference, my balance still 0, where to credited?

How much Wagered/day on a crash game? I see small wagering only.



this, https://faucetpay.io/dice < recent bet running like crazy. maybe a hundred wagered per second.

Yes, many people playing with little amounts. We are a microwallet, therefore it's pretty normal that they are playing with "micro" amounts.
Also, we've just changed our contest to a daily one. You can win now up to $275 every day!
Chikito
Legendary
*
Offline Offline

Activity: 2366
Merit: 2052



View Profile WWW
June 27, 2020, 01:42:28 AM
 #14

I tried Paid to click ? after clicked and see ads reference, my balance still 0, where to credited?
Yes, many people playing with little amounts. We are a microwallet, therefore it's pretty normal that they are playing with "micro" amounts.
Also, we've just changed our contest to a daily one. You can win now up to $275 every day!
My question still isn't answer about credited PTC.

What contest you preference?, The dashbord showed distribution gambling and adds crach games only.

Also, what the minimum of bets?, 0.00000001 SAT/DOGE?, can i do that minimum bet into your Sportsbet games?

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
aria66
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
February 02, 2022, 03:08:21 PM
 #15

If it was not possible for you to predict at all, then how could you balance wins and losses?  This means that if the numbers have already been specified without your intervention, then these numbers may be above ten or twenty on average!  In that case, you would lose completely, but in the game we see that there is a balance, and after a number of large numbers, a number of very small numbers come to balance the game.  However you say all this is a chance and there is no interference in balancing win and lose, if there is no balance then why is there balance in the game and the big and small numbers are always balanced if there is no balance in the chance  .
MrBit112 (OP)
Copper Member
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
January 04, 2023, 02:44:11 PM
Last edit: January 16, 2023, 07:14:24 AM by MrBit112
 #16

Provably Fair Seeding Event Cancelled. Please check new Post

MrBit112 (OP)
Copper Member
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
January 05, 2023, 01:50:22 PM
Last edit: January 16, 2023, 07:16:02 AM by MrBit112
 #17

Provably Fair Seeding Event Cancelled. Please check new Post
klidex
Hero Member
*****
Online Online

Activity: 1372
Merit: 504


Leading Crypto Sports Betting & Casino Platform


View Profile
January 05, 2023, 02:57:42 PM
 #18

I tried Paid to click ? after clicked and see ads reference, my balance still 0, where to credited?

How much Wagered/day on a crash game? I see small wagering only.



this, https://faucetpay.io/dice < recent bet running like crazy. maybe a hundred wagered per second.

Yes, many people playing with little amounts. We are a microwallet, therefore it's pretty normal that they are playing with "micro" amounts.
Also, we've just changed our contest to a daily one. You can win now up to $275 every day!
From what you said, has it been proven true?
You said that you can win now up to $275 every day, which means a win of up to $275 is guaranteed, otherwise you shouldn't have said that.

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
MrBit112 (OP)
Copper Member
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
January 16, 2023, 07:15:45 AM
 #19

Welcome to the new FaucetPay.io V2 Provably Fair Seeding Event for Crash!

This will reuse the idea posted by Ryan and used for Bustabit v1.
  
A chain of 10 million (1e7) sha256 hashes was generated, starting with a Server Secret that has been repeatedly fed the output of sha256 hash back into itself 10 million times.

The final hash in the chain is: 6f2860fd02aaa414a5e9bd518801bed060fb8baa20243c0fc37b96ecde9d449c, by publicizing it here we are preventing any ability to pick an alternate sha256 chain.
FaucetPay.io will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point.
To avoid criticism that the Server Secret used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of.

The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 772214

The reference code (javascript) is as follows:

Code:
function genGameHash(serverSeed) {
  return crypto.createHash('sha256').update(serverSeed).digest('hex');
}


The method to convert a game hash, mix it with the picked client seed to a money pot multiplier:

Code:
function toFixed(num, fixed) {
    var re = new RegExp('^-?\\d+(?:\.\\d{0,' + (fixed || -1) + '})?');
    return num.toString().match(re)[0];
}

function crashPointFromHash(serverSeed, clientSeed) {

  var actual_hash = CryptoJS.SHA512(clientSeed + "-" + serverSeed).toString();

  var p1 = parseInt((actual_hash.substr(0, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);
  var p2 = parseInt((actual_hash.substr(2, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);
  var p3 = parseInt((actual_hash.substr(4, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);
  var p4 = parseInt((actual_hash.substr(6, 2) + '').replace(/[^a-f0-9]/gi, ''), 16);

  var roll = Math.floor(((p1 / Math.pow(256, 1)) + (p2 / Math.pow(256, 2)) + (p3 / Math.pow(256, 3)) + (p4 / Math.pow(256, 4))) * 1000000);

  var crash_point = toFixed(parseFloat(1000000 / (roll + 1) * 0.96), 2);

  return crash_point;

}

The chain could be generated with code such as:

Code:
var serverSecret =  'If you knew this, you could steal all my money';
var clientSeed = '0000examplehash';

var gamesToGenerate = 1e7;

var serverSeed = serverSecret;

for (var game = gamesToGenerate; game > 0; --game) {
  serverSeed = genGameHash(serverSeed);
  console.log('Game ' +  game + ' has a crash point of ' + (crashPointFromHash(serverSeed, clientSeed) / 100).toFixed(2) +'x', '\t\tHash: ' + serverSeed);
}

var terminatingHash = genGameHash(serverSeed);

console.log('The terminating hash is: ', terminatingHash);

Using our chosen starting serverSeed, the hash terminating the chain is 6f2860fd02aaa414a5e9bd518801bed060fb8baa20243c0fc37b96ecde9d449c. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be 6f2860fd02aaa414a5e9bd518801bed060fb8baa20243c0fc37b96ecde9d449c.
Daltonik
Legendary
*
Offline Offline

Activity: 2520
Merit: 1490


View Profile
January 16, 2023, 09:33:58 AM
 #20

I tried Paid to click ? after clicked and see ads reference, my balance still 0, where to credited?
Yes, many people playing with little amounts. We are a microwallet, therefore it's pretty normal that they are playing with "micro" amounts.
Also, we've just changed our contest to a daily one. You can win now up to $275 every day!
My question still isn't answer about credited PTC.

What contest you preference?, The dashbord showed distribution gambling and adds crach games only.

Also, what the minimum of bets?, 0.00000001 SAT/DOGE?, can i do that minimum bet into your Sportsbet games?

In fact, I have the same question after walking through several clicks with viewing ads, I receive a message about allegedly charging a certain amount for PPC, but it does not appear in the profile dashboard or it goes with a delay or it does not make sense for users.

Pages: [1] 2 »  All
  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!