-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
69 lines (65 loc) · 2.92 KB
/
index2.html
File metadata and controls
69 lines (65 loc) · 2.92 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Sonic Warp - Transaction Visualizer</title>
<meta name="description" content="A transaction starfield visualizer for the Sonic blockchain"/>
<meta name="keywords" content="sonic, blockchain, transaction, visualizer, network, tps, volume, tx, crypto, simulation"/>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Sonic Warp" />
<link rel="manifest" href="/site.webmanifest" />
<meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="expires" content="0">
<meta http-equiv="pragma" content="no-cache">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Sonic Warp" />
<meta name="twitter:image" content="https://warp.paintoshi.dev/og.png" />
<meta name="twitter:domain" content="paintoshi.dev" />
<meta name="twitter:site" content="@paintoshi" />
<meta name="twitter:creator" content="@paintoshi" />
<meta name="twitter:description" content="A 2D starfield visualizer for the Sonic blockchain" />
<meta property="og:title" content="Sonic Warp" />
<meta property="og:description" content="A 2D starfield visualizer for the Sonic blockchain" />
<meta property="og:image" content="https://warp.paintoshi.dev/og.png" />
<meta property="og:url" content="https://warp.paintoshi.dev" />
</head>
<body>
<canvas id="space"></canvas>
<a id="about" href="#" title="About">?</a>
<a id="pause" href="#" title="Pause">
<svg class="pause-icon" viewBox="0 0 24 24">
<rect x="6" y="4" width="4" height="16" rx="1"/>
<rect x="14" y="4" width="4" height="16" rx="1"/>
</svg>
<svg class="play-icon" viewBox="0 0 24 24" style="display: none;">
<path d="M8 5v14l11-7z"/>
</svg>
</a>
<div id="tooltip"></div>
<div id="panel">
<div>
<h1>Sonic Warp</h1><br>
<p>Transactions stream live from the Sonic network via RPC and rendered as stars.<br>
Star color based on amounts:<br><br>
White: 0 S<br/>
Red: 0 - 1 S<br/>
Purple: 1 - 1,000 S<br/>
Blue: 1,000 - 100,000 S<br/>
Green: > 100,000 S<br/><br/>
</p>
<p><a href="https://github.com/paintoshi/sonic-warp" target="_blank">Github Source</a></p><br/>
<a id="close-button">Close</a>
</div>
</div>
<div id="stats">
<div id="tps" data-value="0"></div>
<div id="volume" data-value="0 S"></div>
</div>
<script src="script.js"></script>
</body>
</html>