-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (88 loc) · 3.71 KB
/
index.html
File metadata and controls
96 lines (88 loc) · 3.71 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OPENBURN STATS</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Real-time burn statistics for Solana tokens. Track total value burned, recent transactions, and fees." />
<meta name="keywords" content="solana, burn, token, crypto, stats, dashboard, openburn" />
<meta name="author" content="Openburn" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://openburn.com/" />
<meta property="og:title" content="OPENBURN STATS" />
<meta property="og:description" content="Real-time burn statistics for Solana tokens. Track total value burned, recent transactions, and fees." />
<meta property="og:image" content="https://openburn.com/og-image.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://openburn.com/" />
<meta property="twitter:title" content="OPENBURN STATS" />
<meta property="twitter:description" content="Real-time burn statistics for Solana tokens. Track total value burned, recent transactions, and fees." />
<meta property="twitter:image" content="https://openburn.com/og-image.png" />
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="terminal-wrap">
<div class="noise"></div>
<header class="terminal-header">
<div class="dot-group">
<span class="dot red"></span>
<span class="dot amber"></span>
<span class="dot green"></span>
</div>
<div class="title">OPENBURN STATS DASHBOARD</div>
<div id="apiStatus" class="status down">DISCONNECTED</div>
</header>
<section class="brand-strip">
<div id="brandMatrix" class="brand-matrix" aria-label="openburn logo"></div>
</section>
<main class="terminal-body">
<!-- Hero Section: Total Value Burned -->
<section class="pane pane-hero">
<h2>Total Pump.fun Value Burned</h2>
<div class="hero-value" id="totalValueBurned">Loading...</div>
<div class="hero-sub" id="totalTransactions">0 Burns</div>
</section>
<!-- Token Details Section (Hidden by default) -->
<section id="tokenDetails" class="pane hidden">
<h2>Token Details</h2>
<div class="details-grid" id="detailsGrid">
<!-- Populated by JS -->
</div>
</section>
<!-- Data Table: Recent Burns -->
<section class="pane pane-history">
<div class="pane-header">
<div class="header-title-group">
<h2>Recent Transactions</h2>
<button id="btnRefresh" class="btn-text">⟳ REFRESH</button>
</div>
<div id="navControls" class="nav-controls hidden">
<button id="btnBack" class="btn-text">< BACK TO ALL</button>
</div>
</div>
<div class="table-container">
<table class="terminal-table">
<thead>
<tr>
<th>Time</th>
<th>Type</th>
<th>Token</th>
<th>Tx</th>
<th class="right">Amount</th>
</tr>
</thead>
<tbody id="burnHistoryBody">
<tr>
<td colspan="4" class="center">Waiting for data...</td>
</tr>
</tbody>
</table>
</div>
</section>
</main>
</div>
<script type="module" src="./app.js"></script>
</body>
</html>