2024-05-09 08:56:59 -07:00
|
|
|
<html>
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<title>Neptune Block Explorer: Utxo {{self.index}}</title>
|
2024-05-15 13:13:44 -07:00
|
|
|
{{html_escaper::Trusted(include_str!( concat!(env!("CARGO_MANIFEST_DIR"), "/templates/web/html/components/head.html")))}}
|
2024-05-09 08:56:59 -07:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
{{Trusted(self.header.to_string())}}
|
|
|
|
|
|
2024-05-10 14:20:43 -07:00
|
|
|
<main class="container">
|
|
|
|
|
|
|
|
|
|
<article>
|
2024-05-14 11:54:42 -07:00
|
|
|
<summary>
|
|
|
|
|
<span class="tooltip">🛈
|
|
|
|
|
<span class="tooltiptext">
|
|
|
|
|
UTXO = Unspent Transaction Output. It represents an output of transaction A which can also be an input to transaction B.
|
|
|
|
|
</span>
|
|
|
|
|
</span>
|
|
|
|
|
UTXO Information
|
|
|
|
|
</summary>
|
2024-05-10 14:20:43 -07:00
|
|
|
<table class="striped">
|
2024-05-09 08:56:59 -07:00
|
|
|
<tr>
|
|
|
|
|
<td>Index</td>
|
|
|
|
|
<td>{{self.index}}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>Digest</td>
|
|
|
|
|
<td>{{self.digest.to_hex()}}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
2024-05-10 14:20:43 -07:00
|
|
|
</article>
|
2024-05-09 08:56:59 -07:00
|
|
|
|
2024-05-10 14:20:43 -07:00
|
|
|
<article>
|
2024-05-09 08:56:59 -07:00
|
|
|
<p>
|
|
|
|
|
<a href="/">Home</a>
|
|
|
|
|
| <a href='/block/genesis'>Genesis</a>
|
|
|
|
|
| <a href='/block/tip'>Tip</a>
|
|
|
|
|
</p>
|
2024-05-10 14:20:43 -07:00
|
|
|
</article>
|
2024-05-09 08:56:59 -07:00
|
|
|
|
2024-05-10 14:20:43 -07:00
|
|
|
</main>
|
2024-05-09 08:56:59 -07:00
|
|
|
</body>
|
|
|
|
|
</html>
|