· 9 years ago · Aug 17, 2017, 06:28 PM
1joincoin.conf
2
3rpcuser=joincoinrpc
4rpcpassword=Test1234
5rpcallowip=127.0.0.1
6rpcport=1234
7listen=1
8daemon=1
9server=1
10gen=0
11
12rpcthreads=8
13maxconnections=12
14
15addnode=2nkgkyugbp5gitkk.onion
16addnode=44lua5q55rqndwf4.onion
17addnode=arqrt6flqsd2i4ql.onion
18addnode=jz7bcjcpi5cy7b2n.onion
19addnode=l276teraogm4zlht.onion
20
21addnode=drtevq326tweby2k.onion:17941
22addnode=bbyswf2wu5ofqxyb.onion:17941
23
24addnode=194.135.90.171
25addnode=194.135.92.4
26addnode=194.135.94.113
27
28algo=whirlpool
29
30alertnotify=echo %s | mail -s "Joincoin alert!" p****************u@gmail.com
31blocknotify=/home/joincoin/blocknotify 192.168.3.120:4133 1818 %s
32
33
34
35
36whirlpool.conf
37
38[TCP]
39server = localhost
40port = 4133
41password = tu8tu5
42
43[SQL]
44host = localhost
45database = pooltest
46username = poolteststratum
47password = p*****.
48
49[STRATUM]
50algo = whirlpool
51difficulty = 0.02
52max_ttf = 20000000
53
54
55
56
57serverconfig.php
58
59<?php
60
61ini_set('date.timezone', 'UTC');
62
63define('YAAMP_LOGS', '/var/log');
64define('YAAMP_HTDOCS', '/var/www/html');
65define('YAAMP_BIN', '/var/stratum/bin');
66
67define('YAAMP_DBHOST', 'localhost');
68define('YAAMP_DBNAME', 'pooltest');
69define('YAAMP_DBUSER', 'pooltestwebsite');
70define('YAAMP_DBPASSWORD', 'p*****.');
71
72define('YAAMP_PRODUCTION', true);
73define('YAAMP_RENTAL', false);
74define('YAAMP_LIMIT_ESTIMATE', false);
75
76define('YAAMP_FEES_MINING', 0.5);
77define('YAAMP_FEES_EXCHANGE', 2);
78define('YAAMP_FEES_RENTING', 2);
79define('YAAMP_TXFEE_RENTING_WD', 0.002);
80define('YAAMP_PAYMENTS_FREQ', 3*60*60);
81define('YAAMP_PAYMENTS_MINI', 0.001);
82
83define('YAAMP_ALLOW_EXCHANGE', false);
84define('YIIMP_PUBLIC_EXPLORER', true);
85define('YIIMP_PUBLIC_BENCHMARK', false);
86define('YIIMP_FIAT_ALTERNATIVE', 'EUR'); // USD is main
87
88define('YAAMP_USE_NICEHASH_API', false);
89
90define('YAAMP_BTCADDRESS', '**********************');
91define('YAAMP_SITE_URL', 'pooltest.****.eu');
92define('YAAMP_STRATUM_URL', YAAMP_SITE_URL); // change if your stratum server is on a different host
93define('YAAMP_SITE_NAME', 'pooltest');
94define('YAAMP_ADMIN_EMAIL', '**************************@gmail.com');
95define('YAAMP_ADMIN_IP', '192.168.3.116'); // samples: "80.236.118.26,90.234.221.11" or "10.0.0.1/8"
96define('YAAMP_ADMIN_WEBCONSOLE', true);
97define('YAAMP_NOTIFY_NEW_COINS', true);
98define('YAAMP_DEFAULT_ALGO', 'scrypt');
99
100define('YAAMP_USE_NGINX', false);
101
102// Exchange public keys (private keys are in a separate config file)
103define('EXCH_CRYPTOPIA_KEY', '');
104define('EXCH_POLONIEX_KEY', '');
105define('EXCH_BITTREX_KEY', '');
106define('EXCH_BLEUTRADE_KEY', '');
107define('EXCH_BTER_KEY', '');
108define('EXCH_YOBIT_KEY', '');
109define('EXCH_CCEX_KEY', '');
110define('EXCH_COINMARKETS_USER', '');
111define('EXCH_COINMARKETS_PIN', '');
112define('EXCH_BITSTAMP_ID','');
113define('EXCH_BITSTAMP_KEY','');
114define('EXCH_HITBTC_KEY','');
115define('EXCH_KRAKEN_KEY', '');
116define('EXCH_LIVECOIN_KEY', '');
117define('EXCH_NOVA_KEY', '');
118
119// Automatic withdraw to Yaamp btc wallet if btc balance > 0.3
120define('EXCH_AUTO_WITHDRAW', 0.3);
121
122// nicehash keys deposit account & amount to deposit at a time
123define('NICEHASH_API_KEY','**********not*filled*with*my*key***********************************');
124define('NICEHASH_API_ID','9205');
125define('NICEHASH_DEPOSIT','**********not*filled*with*my*key***********************************');
126define('NICEHASH_DEPOSIT_AMOUNT','0.01');
127
128
129$cold_wallet_table = array(
130 '**********not*filled*with*my*key***********************************' => 0.10,
131);
132
133// Sample fixed pool fees
134$configFixedPoolFees = array(
135 'zr5' => 2.0,
136 'scrypt' => 20.0,
137 'sha256' => 5.0,
138);
139
140// Sample custom stratum ports
141$configCustomPorts = array(
142// 'x11' => 7000,
143);
144
145// mBTC Coefs per algo (default is 1.0)
146$configAlgoNormCoef = array(
147// 'x11' => 5.0,
148);