UNPKG

unified-node-open-mining-portal

Version:

An extremely efficient, highly scalable, all-in-one, easy to setup cryptocurrency mining pool

46 lines (45 loc) 1.31 kB
<div class="row"> <article class="col-xs-12 col-sm-12 col-md-12 col-lg-12"> <div class="jarviswidget jarviswidget-color-blueDark" id="wid-id-0" data-widget-editbutton="false"> <header> <span class="widget-icon"> <i class="fa fa-table"></i> </span> <h2>Getting Started</h2> </header> <div> <div class="jarviswidget-editbox"> </div> <div class="widget-body"> <div class="table-responsive"> <table class="table table-bordered"> <thead> <tr> <th>Coin Name</th> <th>Coin Symbol</th> <th>Coin Algorithm</th> <th>Stratum Host</th> <th>Stratum Ports & Diff</th> </tr> </thead> <tbody> {{ for(var pool in it.poolsConfigs) { }} <tr> <td>{{=it.poolsConfigs[pool].coin.name}}</td> <td>{{=it.poolsConfigs[pool].coin.symbol}}</td> <td>{{=it.poolsConfigs[pool].coin.algorithm}}</td> <td>{{=it.portalConfig.website.stratumHost}}</td> <td> {{ for (var port in it.poolsConfigs[pool].ports) { }} Port: {{=port}}, Diff: {{=it.poolsConfigs[pool].ports[port].diff}} {{ } }} </td> </tr> {{ } }} </tbody> </table> </div> </div> </div> </div> </article> </div>