UNPKG

insight-ui-resistance

Version:

An open-source frontend for the Insight API. The Insight API provides you with a convenient, powerful and simple way to query and broadcast data on the resistance network and build your own services with it.

79 lines (72 loc) 3.79 kB
<div class="alert alert-danger" data-ng-show="flashMessage"> {{$root.flashMessage}} </div> <div data-ng-include src="'views/includes/connection.html'"></div> <section data-ng-controller="IndexController" data-ng-init="index()"> <div class="container"> <div id="home" class="row"> <div class="col-xs-12 col-md-8"> <div id="search-form-mobile" class="visible-xs" data-ng-include src="'views/includes/search.html'"></div> <h1 translate>Latest Blocks</h1> <table class="table table-hover table-striped" style="table-layout: fixed"> <thead> <tr> <th translate>Height</th> <th translate>Age</th> <th class="text-right"><span class="ellipsis" translate>Transactions</span></th> <th class="text-right hidden-xs"><span class="ellipsis" translate>Mined by</span></th> <th class="text-right" translate>Size</th> </tr> </thead> <tbody> <tr data-ng-show="!blocks.length"><td colspan="4" translate>Waiting for blocks...</td></tr> <tr class="fader" data-ng-repeat='b in blocks'> <td> <a href="block/{{b.hash}}">{{b.height}}</a> </td> <td><span class="ellipsis">{{humanSince(b.time)}}</span></td> <td class="text-right">{{b.txlength}}</td> <td class="text-right hidden-xs"><a href="{{b.poolInfo.url}}" title="{{b.poolInfo.poolName}}" target="_blank" data-ng-show="b.poolInfo">{{b.poolInfo.poolName}}</a></td> <td class="text-right">{{b.size}}</td> </tr> </tbody> </table> <div class="btn-more"> <a href="blocks" class="btn btn-default" translate>See all blocks</a> </div> <h2 translate>Latest Transactions</h2> <table class="table table-hover table-striped" style="table-layout: fixed;"> <thead> <tr> <th>Hash</th> <th class="text-right" translate>Value Out</th> </tr> </thead> <tbody> <tr data-ng-show="!txs.length"><td colspan="3" translate>Waiting for transactions...</td></tr> <tr class="fader" data-ng-repeat='tx in txs'> <td> <a class="ellipsis" href="tx/{{tx.txid}}">{{tx.txid}}</a> </td> <td class="text-right"><span class="ellipsis">{{$root.currency.getConvertion(tx.valueOut)}}</span></td> </tr> </tbody> </table> </div> <div class="col-xs-12 col-md-4 col-gray"> <h2 translate>What is Resistance?</h2> <p id="intro" translate><strong>Resistance</strong> aims at being the new standard for cryptocurrency security and anonymity.</p> <p class="subIntro" translate>Protected by ZCASH zero-knowledge proofs, users can make 100% untraceable transactions - secured by Bitcoin‘s petahash Proof of Work - due to Resistance’s new delayed Proof of Work (dPoW) consensus mechanism.</p> <p class="subIntro">Learn more on <a href="https://ResistancePlatform.com" target="_blank" title="Resistance Platform">ResistancePlatform.com</a></p> <p data-ng-if='currency.testnet'><strong>This explorer is currently showing the live Resistance network!</strong></p> <a class="twitter-timeline" href="https://twitter.com/ResistancePlatform">Tweets by ResistancePlatform</a></p> <div id="powered" class="row"> <div class="powered-text"> <small class="text-muted" translate>Powered by</small> </div> <a href="https://ResistancePlatform.com/" target="_blank" class="supernet" title="Resistance"></a> </div> </div> <!-- END OF COL-3 --> </div> </div> </section>