-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsettings.php
More file actions
44 lines (33 loc) · 777 Bytes
/
Copy pathsettings.php
File metadata and controls
44 lines (33 loc) · 777 Bytes
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
<?php
// Settings file
// DB variables
$db_host="";
$db_login="";
$db_password="";
$db_base="";
// Resource variables
$currency_name="Banano";
$currency_symbol="BAN";
$site_name="$currency_name miner";
$site_url="https://bananominer.arikado.ru/";
// Payout options
$min_payout=0.01;
$coin_per_mhash=5.83; // actual rate for 4th of March 2019
$boost_mult=2;
$boost_balance_max=20;
$ref_level_1=0.1;
$ref_level_2=0.05;
// Coinimp keys
$coinimp_public_key="";
$coinimp_private_key="";
$coinimp_web_site_key="";
// Reddit keys
// HTTP auth
$reddit_http_login="";
$reddit_http_password="";
// Reddit login and password
$reddit_username="";
$reddit_password="=fMe5";
$reddit_secret="";
$reddit_useragent="Linux:banano_sender_bot:v_0 (by /u/YOUR_REDDIT_USERNAME_HERE)";
?>