mirror of
https://github.com/seigler/dash-visualizer
synced 2025-07-27 01:36:10 +00:00
17 lines
412 B
HTML
17 lines
412 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Dash transaction visualizer</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="connectionStatus" class="is-connecting"></div>
|
|
|
|
<div id="transactionList">
|
|
</div>
|
|
|
|
<script src="http://insight.masternode.io:3000/socket.io/socket.io.js"></script>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|