Bitcoin Forum

Economy => Gambling => Topic started by: MrBit112 on June 15, 2020, 10:43:37 AM



Title: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: MrBit112 on June 15, 2020, 10:43:37 AM
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.


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: xxjumperxx on June 15, 2020, 10:49:31 AM
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


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: MrBit112 on June 15, 2020, 11:05:39 AM
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.  :)


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: MrBit112 on June 16, 2020, 05:33:09 PM
Block 635017 is mined

Our client seed will be: 0000000000000000001221b64a1e49b293a743ff06f662ea713ca564d5e20b1e


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: beerlover on June 17, 2020, 06:21:17 AM
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 :D. 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!


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: MrBit112 on June 17, 2020, 07:18:15 PM
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 :D. 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  :)

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.




Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: Timelord2067 on June 18, 2020, 01:40:03 AM
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 ??


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: MrBit112 on June 18, 2020, 10:11:08 PM
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
 (https://faucetpay.io/crashes)


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: nakamura12 on June 18, 2020, 10:21:20 PM
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.


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: Saint-loup on June 21, 2020, 03:36:20 PM
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?


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: AmoreJaz on June 23, 2020, 07:12:19 AM
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...


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: Chikito on June 23, 2020, 08:56:00 AM
I tried Paid to click (https://faucetpay.io/ptc) ? 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.

https://i.postimg.cc/CLpPHtVm/wagere.png

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


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: MrBit112 on June 26, 2020, 12:31:02 PM
I tried Paid to click (https://faucetpay.io/ptc) ? 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.

https://i.postimg.cc/CLpPHtVm/wagere.png

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!


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: Chikito on June 27, 2020, 01:42:28 AM
I tried Paid to click (https://faucetpay.io/ptc) ? 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?


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: aria66 on February 02, 2022, 03:08:21 PM
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  .


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: MrBit112 on January 04, 2023, 02:44:11 PM
Provably Fair Seeding Event Cancelled. Please check new Post



Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: MrBit112 on January 05, 2023, 01:50:22 PM
Provably Fair Seeding Event Cancelled. Please check new Post


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: klidex on January 05, 2023, 02:57:42 PM
I tried Paid to click (https://faucetpay.io/ptc) ? 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.

https://i.postimg.cc/CLpPHtVm/wagere.png

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.


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: MrBit112 on January 16, 2023, 07:15:45 AM
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.


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: Daltonik on January 16, 2023, 09:33:58 AM
I tried Paid to click (https://faucetpay.io/ptc) ? 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.

https://i.imgur.com/IydIDMZ.png


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: MrBit112 on January 16, 2023, 11:26:17 AM
Block 772214 is mined

Our client seed will be: 00000000000000000003c83e80909b2dd4fe795828ad014fb5053b5e598d3812


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: Mr. Magkaisa on January 16, 2023, 01:20:07 PM
     -  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.


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: Ryker1 on January 16, 2023, 01:56:23 PM
     -  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.


Title: Re: FaucetPay.io Provably Fair Seeding Event for Crash!
Post by: Daltonik on January 17, 2023, 04:45:20 PM
     -  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.