Pages:
Author

Topic: FaucetPay.io Provably Fair Seeding Event for Crash! (Read 886 times)

legendary
Activity: 2520
Merit: 1490
     -  I remember this faucet pay, but now I don't seem to use it, because I don't think it's useful. Then it seems dangerous to deposit cryptocurrencies, and I was also not comfortable when I opened an account on this platform during that time.

<...>

Faucet does not pay this is where, as it seems to me, it was supposed to reward users for viewing ads, but in fact you are simply awarded REWARD POINTS, but there are no conditions for turning them into something with which you could bet, in any case, this is what I see.
sr. member
Activity: 1918
Merit: 442
Eloncoin.org - Mars, here we come!
     -  I remember this faucet pay, but now I don't seem to use it, because I don't think it's useful. Then it seems dangerous to deposit cryptocurrencies, and I was also not comfortable when I opened an account on this platform during that time.

But there are other website platforms, one of which is faucet pay, for receiving payment when you withdraw money in cryptocurrency, such as Saldito, which is also a useless website platform.
Well why? Can you elaborate more?
I visited this website but it seems I did not see any reason a dangerous to deposit -- if you will use metamask to connect in your browser, just use a dummy one and not directly into your hot wallet or cold wallet.

I tried playing Crash and I like it, pretty simple UI.
sr. member
Activity: 742
Merit: 282
     -  I remember this faucet pay, but now I don't seem to use it, because I don't think it's useful. Then it seems dangerous to deposit cryptocurrencies, and I was also not comfortable when I opened an account on this platform during that time.

But there are other website platforms, one of which is faucet pay, for receiving payment when you withdraw money in cryptocurrency, such as Saldito, which is also a useless website platform.
copper member
Activity: 60
Merit: 10
Block 772214 is mined

Our client seed will be: 00000000000000000003c83e80909b2dd4fe795828ad014fb5053b5e598d3812
legendary
Activity: 2520
Merit: 1490
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.

copper member
Activity: 60
Merit: 10
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.
hero member
Activity: 1386
Merit: 504
Leading Crypto Sports Betting & Casino Platform
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.
copper member
Activity: 60
Merit: 10
Provably Fair Seeding Event Cancelled. Please check new Post
copper member
Activity: 60
Merit: 10
Provably Fair Seeding Event Cancelled. Please check new Post

newbie
Activity: 1
Merit: 0
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  .
legendary
Activity: 2366
Merit: 2054
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?
copper member
Activity: 60
Merit: 10
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!
legendary
Activity: 2366
Merit: 2054
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.
legendary
Activity: 3066
Merit: 1101
Leading Crypto Sports Betting & Casino Platform
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...
legendary
Activity: 2604
Merit: 2353
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?
hero member
Activity: 2268
Merit: 669
Bitcoin Casino Est. 2013
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.
copper member
Activity: 60
Merit: 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 ??

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
legendary
Activity: 3626
Merit: 2209
💲🏎️💨🚓
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 ??
copper member
Activity: 60
Merit: 10
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.


legendary
Activity: 2842
Merit: 1152
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!
Pages:
Jump to: