+ transaction details with explorer redirection
+ sorting and floating header for wallets and address book + detect geth crash and notify the user
This commit is contained in:
@@ -1,38 +1,77 @@
|
||||
<div id="transactionsWrapper">
|
||||
<!----<button type="button" class="btn btn-etho" id="btnRefreshTransactions">Refresh</button>-->
|
||||
<table id="tableTransactionsForAll" class="display tableTransactions" style="width:100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Block</th>
|
||||
<th>Timestamp</th>
|
||||
<th>From</th>
|
||||
<th>To</th>
|
||||
<th>Value</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Block</th>
|
||||
<th>Timestamp</th>
|
||||
<th>From</th>
|
||||
<th>To</th>
|
||||
<th>Value</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
<!----<button type="button" class="btn btn-etho" id="btnRefreshTransactions">Refresh</button>-->
|
||||
<table id="tableTransactionsForAll" class="display tableTransactions" style="width:100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Block</th>
|
||||
<th>Timestamp</th>
|
||||
<th>TxHash</th>
|
||||
<th>From</th>
|
||||
<th>To</th>
|
||||
<th>Value</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Block</th>
|
||||
<th>Timestamp</th>
|
||||
<th>From</th>
|
||||
<th>TxHash</th>
|
||||
<th>To</th>
|
||||
<th>Value</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- transaction details dialog -->
|
||||
<div id="dlgTransactionInfo" class="modalDialog" data-izimodal-title="Transaction Info" data-izimodal-subtitle="Detailed info about the selected transaction" data-izimodal-icon="icon-home">
|
||||
<div class="modalBody">
|
||||
<div class="form-group txInfo">
|
||||
<i class="fas fa-wallet"></i>
|
||||
<label>Block height:</label>
|
||||
<label id="txBlockHeight"></label>
|
||||
</div>
|
||||
<div class="form-group txInfo">
|
||||
<i class="fas fa-wallet"></i>
|
||||
<label>TX Timestamp:</label>
|
||||
<label id="txTimestamp"></label>
|
||||
</div>
|
||||
<div class="form-group txInfo">
|
||||
<i class="fas fa-wallet"></i>
|
||||
<label>TX hash:</label>
|
||||
<a id="txHash"></a>
|
||||
</div>
|
||||
<div class="form-group txInfo">
|
||||
<i class="fas fa-wallet"></i>
|
||||
<label>From address:</label>
|
||||
<a id="txFromAddress"></a>
|
||||
</div>
|
||||
<div class="form-group txInfo">
|
||||
<i class="fas fa-wallet"></i>
|
||||
<label>To address:</label>
|
||||
<a id="txToAddress"></a>
|
||||
</div>
|
||||
<div class="form-group txInfo">
|
||||
<i class="fas fa-dollar-sign"></i>
|
||||
<label>Value:</label>
|
||||
<label id="txValue"></label>
|
||||
<label class="currencyTicker">ETHO</label>
|
||||
</div>
|
||||
<button type="button" class="btn btn-etho btn-dialog-confirm" id="btnTxInfoClose">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="loadingOverlay" id="loadingTransactionsOverlay">
|
||||
<div class="loadingWrapper">
|
||||
<div class="loadingTextTransactions">Transaction are loading, please wait...</div>
|
||||
<div class='spinner'>
|
||||
<div class='bounce bounce1'></div>
|
||||
<div class='bounce bounce2'></div>
|
||||
<div class='bounce bounce3'></div>
|
||||
</div>
|
||||
<div>
|
||||
</div>
|
||||
<div class="loadingWrapper">
|
||||
<div class="loadingTextTransactions">Transaction are loading, please wait...</div>
|
||||
<div class='spinner'>
|
||||
<div class='bounce bounce1'></div>
|
||||
<div class='bounce bounce2'></div>
|
||||
<div class='bounce bounce3'></div>
|
||||
</div>
|
||||
<div></div>
|
||||
|
||||
Reference in New Issue
Block a user