-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathconfig.php
53 lines (37 loc) · 1.63 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/*
Faucet by Ratnet - Made in México - 2015
I developed this for free to help spread the word about Bytecoin but if you want to tip me, everything will be appreciated :D
Donations to Ratnet Personal Wallet for Developing:
Bytecoin: 28qwqrRWSF7Ad8GjwUgR142yvhmnsa6GGbvf8KpxzWkqU1FEhK5LBijZhXseeQvDzij7cRETY3DPJ3e7opXQc5AhURdFt9U
Bitcoin: 1MXPDKMSbCr41n2imq2BEMivtu9SJyd4ES
Donations to Ratnet's Bytecoin Faucet:
Bytecoin: 24gKv1yqZ2oZ7Ln4KWcL3q7D7CXibndxhDzLvrJxxw1x7tiaQ5euuduT9EkHzDta144vmwToddz9Khct4pqSVzuBCxgVTYP
*/
$faucetTitle = "Bytecoin Faucet";
$faucetSubtitle = "Earn up to 50 BCN every 12 hours.";
$logo = "images/logo-white.png";
//Faucet address for donations
$faucetAddress = "";
//Reward time in hours
$rewardEvery = "12";
//Max reward and min reward as decimals Ex: Min = 10.0 & Max = 20.0
$minReward = "6.0"; //Remember that the minimum for an eobot deposit is 5 BCN as reward.
$maxReward = "50.0";
//Transaction fee is set to 0.01 BCN for every request.
//Database connection
$userDB = "";
$database = "";
$passwordDB = "";
$hostDB = "";
//Recaptcha Keys. You can get yours here: https://www.google.com/recaptcha/
$keys = array(
'site_key' => '',
'secret_key' => ''
);
//Addresses that can request more than one time but with a different payment ID.
$clearedAddresses = array(
"Eobot" => "22694R3K1JvGf1m98pBsbaXCA3ULQz4xdQiYHgnNAdsVDqZDjiTH9CMj6QHhKD232wPeYtfypNzp5TX5L3NcGGSmJ8pWnPJ",
"Poloniex" => "25cZNQYVAi3issDCoa6fWA2Aogd4FgPhYdpX3p8KLfhKC6sN8s6Q9WpcW4778TPwcUS5jEM25JrQvjD3XjsvXuNHSWhYUsu",
"HitBTC" => "24zavX3Bi2PiKGWLKh4bPGTiMsn4iHf3Y6JnKCF6V1PeBpDpuwiAMZ8di7ok6B5SQT6UXUtQgusruCoXbqUZm8VJAfq2xKK"
);