-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings.php
54 lines (42 loc) · 1.04 KB
/
settings.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
54
<?php
// Settings file
$pool_name="Coinhive pool";
$pool_domain="";
// DB variables
$db_host="";
$db_login="";
$db_password="";
$db_base="";
// Salt for password
$salt="";
// Cooldown limit
$cooldown_limit=900;
// Coinhive keys
$coinhive_private_key="";
$coinhive_public_key="";
// Coinimp keys
$coinimp_public_key="";
$coinimp_private_key="";
$coinimp_xmr_site_key="";
$coinimp_web_site_key="";
// Email service
$email_api_url="https://api.smtp2go.com/v3/email/send";
$email_api_key="";
$email_sender="";
$email_reply_to="";
$email_notify="";
// Referral rate
$hashes_ref_rate=0.01;
$hashes_ref_rate_level_2=0.01;
// Deposit options
$deposit_currencies=array("BTC"=>"Bitcoin","LTC"=>"Litecoin","GRC"=>"Gridcoin","SHND"=>"StrongHands");
// Api keys and links
$btc_api_url="https://wallet.arikado.ru/btc/api.php";
$btc_api_key="";
$ltc_api_url="https://wallet.arikado.ru/ltc/api.php";
$ltc_api_key="";
$grc_api_url="https://wallet.arikado.ru/grc/api.php";
$grc_api_key="";
$shnd_api_url="https://wallet.arikado.ru/shnd/api.php";
$shnd_api_key="";
?>