Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
1,621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. joincoin.conf
  2.  
  3. rpcuser=joincoinrpc
  4. rpcpassword=Test1234
  5. rpcallowip=127.0.0.1
  6. rpcport=1234
  7. listen=1
  8. daemon=1
  9. server=1
  10. gen=0
  11.  
  12. rpcthreads=8
  13. maxconnections=12
  14.  
  15. addnode=2nkgkyugbp5gitkk.onion
  16. addnode=44lua5q55rqndwf4.onion
  17. addnode=arqrt6flqsd2i4ql.onion
  18. addnode=jz7bcjcpi5cy7b2n.onion
  19. addnode=l276teraogm4zlht.onion
  20.  
  21. addnode=drtevq326tweby2k.onion:17941
  22. addnode=bbyswf2wu5ofqxyb.onion:17941
  23.  
  24. addnode=194.135.90.171
  25. addnode=194.135.92.4
  26. addnode=194.135.94.113
  27.  
  28. algo=whirlpool
  29.  
  30. alertnotify=echo %s | mail -s "Joincoin alert!" p****************u@gmail.com
  31. blocknotify=/home/joincoin/blocknotify 192.168.3.120:4133 1818 %s
  32.  
  33.  
  34.  
  35.  
  36. whirlpool.conf
  37.  
  38. [TCP]
  39. server = localhost
  40. port = 4133
  41. password = tu8tu5
  42.  
  43. [SQL]
  44. host = localhost
  45. database = pooltest
  46. username = poolteststratum
  47. password = p*****.
  48.  
  49. [STRATUM]
  50. algo = whirlpool
  51. difficulty = 0.02
  52. max_ttf = 20000000
  53.  
  54.  
  55.  
  56.  
  57. serverconfig.php
  58.  
  59. <?php
  60.  
  61. ini_set('date.timezone', 'UTC');
  62.  
  63. define('YAAMP_LOGS', '/var/log');
  64. define('YAAMP_HTDOCS', '/var/www/html');
  65. define('YAAMP_BIN', '/var/stratum/bin');
  66.  
  67. define('YAAMP_DBHOST', 'localhost');
  68. define('YAAMP_DBNAME', 'pooltest');
  69. define('YAAMP_DBUSER', 'pooltestwebsite');
  70. define('YAAMP_DBPASSWORD', 'p*****.');
  71.  
  72. define('YAAMP_PRODUCTION', true);
  73. define('YAAMP_RENTAL', false);
  74. define('YAAMP_LIMIT_ESTIMATE', false);
  75.  
  76. define('YAAMP_FEES_MINING', 0.5);
  77. define('YAAMP_FEES_EXCHANGE', 2);
  78. define('YAAMP_FEES_RENTING', 2);
  79. define('YAAMP_TXFEE_RENTING_WD', 0.002);
  80. define('YAAMP_PAYMENTS_FREQ', 3*60*60);
  81. define('YAAMP_PAYMENTS_MINI', 0.001);
  82.  
  83. define('YAAMP_ALLOW_EXCHANGE', false);
  84. define('YIIMP_PUBLIC_EXPLORER', true);
  85. define('YIIMP_PUBLIC_BENCHMARK', false);
  86. define('YIIMP_FIAT_ALTERNATIVE', 'EUR'); // USD is main
  87.  
  88. define('YAAMP_USE_NICEHASH_API', false);
  89.  
  90. define('YAAMP_BTCADDRESS', '**********************');
  91. define('YAAMP_SITE_URL', 'pooltest.****.eu');
  92. define('YAAMP_STRATUM_URL', YAAMP_SITE_URL); // change if your stratum server is on a different host
  93. define('YAAMP_SITE_NAME', 'pooltest');
  94. define('YAAMP_ADMIN_EMAIL', '**************************@gmail.com');
  95. define('YAAMP_ADMIN_IP', '192.168.3.116'); // samples: "80.236.118.26,90.234.221.11" or "10.0.0.1/8"
  96. define('YAAMP_ADMIN_WEBCONSOLE', true);
  97. define('YAAMP_NOTIFY_NEW_COINS', true);
  98. define('YAAMP_DEFAULT_ALGO', 'scrypt');
  99.  
  100. define('YAAMP_USE_NGINX', false);
  101.  
  102. // Exchange public keys (private keys are in a separate config file)
  103. define('EXCH_CRYPTOPIA_KEY', '');
  104. define('EXCH_POLONIEX_KEY', '');
  105. define('EXCH_BITTREX_KEY', '');
  106. define('EXCH_BLEUTRADE_KEY', '');
  107. define('EXCH_BTER_KEY', '');
  108. define('EXCH_YOBIT_KEY', '');
  109. define('EXCH_CCEX_KEY', '');
  110. define('EXCH_COINMARKETS_USER', '');
  111. define('EXCH_COINMARKETS_PIN', '');
  112. define('EXCH_BITSTAMP_ID','');
  113. define('EXCH_BITSTAMP_KEY','');
  114. define('EXCH_HITBTC_KEY','');
  115. define('EXCH_KRAKEN_KEY', '');
  116. define('EXCH_LIVECOIN_KEY', '');
  117. define('EXCH_NOVA_KEY', '');
  118.  
  119. // Automatic withdraw to Yaamp btc wallet if btc balance > 0.3
  120. define('EXCH_AUTO_WITHDRAW', 0.3);
  121.  
  122. // nicehash keys deposit account & amount to deposit at a time
  123. define('NICEHASH_API_KEY','**********not*filled*with*my*key***********************************');
  124. define('NICEHASH_API_ID','9205');
  125. define('NICEHASH_DEPOSIT','**********not*filled*with*my*key***********************************');
  126. define('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. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement