forked from super3/peercoin.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmining-guide.php
64 lines (62 loc) · 2.21 KB
/
mining-guide.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
55
56
57
58
59
60
61
62
63
64
<?php $page_title = "Mining Guide"; include ('header.php'); ?>
<div class="row text-center">
<img class="svg-quickstart" src="assets/img/misc/mining-guide.png" />
</div>
<div class="row row-nomargin">
<div class="col-md-12 text-center">
<h2><?php echo $Locale->getText("mineguide.title"); ?></h2>
</div>
</div>
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<ol>
<li>
<b><?php echo $Locale->getText("mineguide.step1"); ?></b>
<br>
<?php echo $Locale->getText("mineguide.step1_desc"); ?>
</li>
<li>
<b><?php echo $Locale->getText("mineguide.step2"); ?></b>
<div class="row">
<div class="col-md-6">
<h4 class="nomargin"><?php echo $Locale->getText("mineguide.step2_poollist"); ?></h4>
<ul>
<li>
<a href="https://peercoin.ecoining.com/">Ecoining</a> - 1% fee, dynamic PPLNS payment system
</li>
<li>
<a href="https://ppcoin.d7.lt/">D7</a> - 1.5% fee, PPLNS: payout per share of the last N rounds
</li>
<li>
<a href="http://ppc.fixx.ru/">Fixx</a> - Donation only, PPLNS: payout per share of the last N rounds
</li>
</ul>
</div>
<div class="col-md-6">
<h4 class="nomargin"><?php echo $Locale->getText("mineguide.step2_multipoollist"); ?></h4>
<ul>
<li>
<a href="https://www.coinotron.com/coinotron/">Coinotron</a> - Pay Per Share: 12% fee, round-based Pay Per Share: 2%
</li>
<li>
<a href="http://give-me-coins.com/peercoin-pool">Give Me COINS</a> - 1% fee, PPLNS: 30 confirmations payment system
</li>
<li>
<a href="http://www.multipool.us/">Multipool.us</a> - 1.5% fee, Pay Per Share
</li>
<li>
<a href="http://mining.securepayment.cc/pools/ppcoin/">SecurePayment CC</a> - Get 96% of the block reward
</li>
</ul>
</div>
</div>
</li>
<li>
<b><?php echo $Locale->getText("mineguide.step3"); ?></b><br>
<?php echo $Locale->getText("mineguide.step3_desc"); ?>
</li>
</ol>
</div>
</div>
</div>
<?php include ('footer.php'); ?>