forked from niobio-cash-classic/Niobio-Faucet
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.php.sample
37 lines (30 loc) · 1.38 KB
/
config.php.sample
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
<?php
$faucetTitle = 'Nióbio Cash Faucet';
$faucetSubtitle = 'A cada 12 horas você pode obter Nióbio Cash grátis';
$logo = 'images/nbrcoin.png';
// Faucet address for donations
// Replace by your wallet address
$faucetAddress = 'NAHwNpB9ETS1YHapFu4qDEbVTCuV2ztbzX8oZe5bB7ZTL6BYTvugV8WD2rC1pykcosE2vuwxpgfG51AUoWmS22qTFPMc71a';
// Reward time in hours
$rewardEvery = '6';
// Max reward and min reward as decimals Ex: Min = 10.0 & Max = 20.0
$minReward = '0.001'; //Remember that the minimum for an eobot deposit is 5 BCN as reward.
$maxReward = '0.3';
// Transaction fee is set to 0.01 BCN for every request.
// Database connection
// Replace by your database credentials
$userDB = 'root';
$database = 'payouts';
$passwordDB = '0';
$hostDB = '127.0.0.1';
// Recaptcha Keys. You can get yours here: https://www.google.com/recaptcha/
// Replace by your keys
$keys = array(
'site_key' => 'captcha_site_key',
'secret_key' => 'captcha_secret_key'
);
// Addresses that can request more than one time but with a different payment ID.
$clearedAddresses = array(/*'Eobot' => '22694R3K1JvGf1m98pBsbaXCA3ULQz4xdQiYHgnNAdsVDqZDjiTH9CMj6QHhKD232wPeYtfypNzp5TX5L3NcGGSmJ8pWnPJ',
'Poloniex' => '25cZNQYVAi3issDCoa6fWA2Aogd4FgPhYdpX3p8KLfhKC6sN8s6Q9WpcW4778TPwcUS5jEM25JrQvjD3XjsvXuNHSWhYUsu',
'HitBTC' => '24zavX3Bi2PiKGWLKh4bPGTiMsn4iHf3Y6JnKCF6V1PeBpDpuwiAMZ8di7ok6B5SQT6UXUtQgusruCoXbqUZm8VJAfq2xKK'*/
);