forked from fexra/blockchain-explorer-node
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmixable.html
104 lines (102 loc) · 5.33 KB
/
mixable.html
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="apple-touch-icon" sizes="120x120" href="./ico/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./ico/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./ico/favicon-16x16.png">
<link rel="manifest" href="./ico/site.webmanifest">
<link rel="mask-icon" href="./ico/safari-pinned-tab.svg" color="#00853d">
<link rel="shortcut icon" href="./ico/favicon.ico">
<meta name="msapplication-TileColor" content="#00853d">
<meta name="msapplication-config" content="/ico/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<meta property="og:title" content="TurtleCoin Block Explorer">
<meta name="Description" content="Block Explorer for the TurtleCoin network that is a fun, fast, and easy way to send money to friends and businesses.">
<meta property="og:description" content="Block Explorer for the TurtleCoin network that is a fun, fast, and easy way to send money to friends and businesses.">
<meta property="og:image" content="https://turtlecoin.github.io/blockchain-explorer/img/turtlecoin_shield.png">
<meta name="Keywords" content="TurtleCoin,TurtlePay,blockchain,explorer,pools,hashrate,hash rate,mining,block explorer">
<title>[TRTL] TurtleCoin Block Explorer</title>
<link rel="stylesheet" href="./css/third-party.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<link rel="stylesheet" href="./css/app.css">
<script src="./js/third-party.js"></script>
<script src="./js/config.js"></script>
<script src="./js/common.js"></script>
<script src="./js/mixable.js"></script>
</head>
<body class="has-navbar-fixed-top">
<nav class="navbar is-fixed-top" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="./index.html">
<img src="./img/turtlecoin_logo.png" height="100">
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="siteNavBar">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="siteNavBar" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" href="./"><i class="fas fa-dice-d6"></i> Block Explorer</a>
<a class="navbar-item" href="./nodes.html"><i class="fas fa-server"></i> Nodes</a>
<a class="navbar-item" href="./pools.html"><i class="fas fa-users"></i> Pools</a>
<a class="navbar-item" href="./tools.html"><i class="fas fa-toolbox"></i> Tools</a>
<a class="navbar-item is-active" href="./mixable.html"><i class="fas fa-mortar-pestle"></i> Mixable Amounts</a>
<a class="navbar-item" href="./charts.html"><i class="fas fa-chart-bar"></i> Network Charts</a>
<a class="navbar-item" href="./supply.html"><i class="fas fa-money-bill-wave-alt"></i> Currency Supply</a>
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="field has-addons">
<div class="control has-icons-left">
<input id="searchValue" type="text" class="input" placeholder="Search by Block Height / Hash, Transaction Hash, or Payment Id" size="70" maxlength="64">
<span class="icon is-small is-left">
<i class="fas fa-search "></i>
</span>
</div>
<div class="control">
<a class="button is-info is-trtl-green" id="searchButton">
Search
</a>
</div>
</div>
</div>
</div>
</div>
</nav>
<main>
<section class="section">
<div class="container">
<div class="panel">
<p class="panel-heading is-trtl-green"><i class="fas fa-mortar-pestle"></i> Mixable Amounts</p>
<div class="panel-block">
<table id="mixableAmounts" class="table table-striped table-bordered is-fullwidth">
<thead>
<tr>
<th class="trtl-amount"><i class="fas fa-money-bill-wave-alt"></i> Amount</th>
<th class="trtl-height"><i class="fas fa-mortar-pestle"></i> Outputs</th>
<th class="trtl-datetime"><i class="fas fa-clock"></i> Date & Time</th>
<th class="trtl-height"><i class="fas fa-bars"></i> Height</th>
<th><i class="fas fa-hashtag"></i> Transaction Hash</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="content has-text-centered">
<p>
Copyright © 2018-2019 TurtlePay® Development Team. The source code is licensed under <a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL-3.0</a>.
</p>
<p>
<a href="https://turtlepay.io"><img src="https://badge.turtlepay.io/" alt="Powered by TurtlePay" /></a>
</p>
</div>
</footer>
</body>
</html>