2026-02-17 15:03:34 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
|
|
|
|
|
<title>Electrs - Archipelago</title>
|
|
|
|
|
<style>
|
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
|
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; min-height: 100vh; color: white; overflow-x: hidden; }
|
2026-03-08 02:16:02 +00:00
|
|
|
.bg-layer { position: fixed; inset: 0; z-index: -10; background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(30,30,50,0.95) 100%); }
|
2026-02-17 15:03:34 +00:00
|
|
|
.overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); z-index: -5; }
|
|
|
|
|
.glass-card { background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-radius: 1rem; border: 1px solid rgba(255, 255, 255, 0.18); }
|
|
|
|
|
.info-card { background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(24px); border-radius: 16px; padding: 12px; border: 1px solid rgba(255, 255, 255, 0.1); }
|
|
|
|
|
@keyframes progressGlow { 0%, 100% { box-shadow: 0 0 10px rgba(251, 146, 60, 0.5); } 50% { box-shadow: 0 0 20px rgba(251, 146, 60, 0.8); } }
|
|
|
|
|
.progress-glow { animation: progressGlow 2s ease-in-out infinite; }
|
|
|
|
|
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
|
|
|
|
|
.animate-spin-slow { animation: spin 3s linear infinite; }
|
2026-03-08 02:16:02 +00:00
|
|
|
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
|
|
|
|
|
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
|
|
|
|
|
.container { max-width: 56rem; margin: 0 auto; padding: 2rem; }
|
|
|
|
|
.flex { display: flex; }
|
|
|
|
|
.flex-col { flex-direction: column; }
|
|
|
|
|
.items-center { align-items: center; }
|
|
|
|
|
.items-start { align-items: start; }
|
|
|
|
|
.gap-3 { gap: 0.75rem; }
|
|
|
|
|
.gap-4 { gap: 1rem; }
|
|
|
|
|
.flex-1 { flex: 1; }
|
|
|
|
|
.flex-shrink-0 { flex-shrink: 0; }
|
|
|
|
|
.mb-1 { margin-bottom: 0.25rem; }
|
|
|
|
|
.mb-2 { margin-bottom: 0.5rem; }
|
|
|
|
|
.mb-4 { margin-bottom: 1rem; }
|
|
|
|
|
.mb-6 { margin-bottom: 1.5rem; }
|
|
|
|
|
.p-6 { padding: 1.5rem; }
|
|
|
|
|
.grid { display: grid; }
|
|
|
|
|
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
|
|
|
|
|
.rounded-lg { border-radius: 0.5rem; }
|
|
|
|
|
.rounded-full { border-radius: 9999px; }
|
|
|
|
|
.overflow-hidden { overflow: hidden; }
|
|
|
|
|
.transition-all { transition: all 0.5s ease; }
|
|
|
|
|
.text-xs { font-size: 0.75rem; }
|
|
|
|
|
.text-sm { font-size: 0.875rem; }
|
|
|
|
|
.text-lg { font-size: 1.125rem; }
|
|
|
|
|
.text-xl { font-size: 1.25rem; }
|
|
|
|
|
.text-2xl { font-size: 1.5rem; }
|
|
|
|
|
.font-bold { font-weight: 700; }
|
|
|
|
|
.font-semibold { font-weight: 600; }
|
|
|
|
|
.font-medium { font-weight: 500; }
|
|
|
|
|
.font-mono { font-family: monospace; }
|
|
|
|
|
.icon-box { width: 4rem; height: 4rem; border-radius: 0.5rem; background: rgba(249, 115, 22, 0.2); display: flex; align-items: center; justify-content: center; }
|
|
|
|
|
.icon-box-sm { width: 3rem; height: 3rem; border-radius: 0.5rem; background: rgba(249, 115, 22, 0.2); display: flex; align-items: center; justify-content: center; }
|
|
|
|
|
.status-dot { width: 0.75rem; height: 0.75rem; border-radius: 9999px; }
|
|
|
|
|
.progress-bar-bg { width: 100%; background: rgba(255,255,255,0.1); border-radius: 9999px; height: 0.75rem; overflow: hidden; }
|
|
|
|
|
.progress-bar { height: 100%; background: linear-gradient(to right, #f97316, #facc15); border-radius: 9999px; transition: width 0.5s ease; }
|
|
|
|
|
.text-white { color: white; }
|
|
|
|
|
.text-white-70 { color: rgba(255,255,255,0.7); }
|
|
|
|
|
.text-white-60 { color: rgba(255,255,255,0.6); }
|
|
|
|
|
.text-white-90 { color: rgba(255,255,255,0.9); }
|
|
|
|
|
.text-amber { color: #fbbf24; }
|
|
|
|
|
.text-green { color: #4ade80; }
|
|
|
|
|
.text-red { color: #f87171; }
|
|
|
|
|
.text-orange { color: #fb923c; }
|
|
|
|
|
.bg-amber { background: #fbbf24; }
|
|
|
|
|
.bg-green { background: #4ade80; }
|
|
|
|
|
.bg-red { background: #f87171; }
|
|
|
|
|
.bg-yellow { background: #facc15; }
|
|
|
|
|
.justify-between { justify-content: space-between; }
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
|
.md-flex-row { flex-direction: row; }
|
|
|
|
|
.md-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
|
|
|
|
|
}
|
2026-02-17 15:03:34 +00:00
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="bg-layer"></div>
|
|
|
|
|
<div class="overlay"></div>
|
|
|
|
|
|
2026-03-08 02:16:02 +00:00
|
|
|
<div class="container">
|
2026-02-17 15:03:34 +00:00
|
|
|
<div class="glass-card p-6 mb-6">
|
2026-03-08 02:16:02 +00:00
|
|
|
<div class="flex flex-col md-flex-row items-center gap-4">
|
|
|
|
|
<div class="icon-box flex-shrink-0">
|
|
|
|
|
<svg style="width:2rem;height:2rem;color:#f97316" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
2026-02-17 15:03:34 +00:00
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 7v10c0 2.21 3.582 4 8 4s8-1.79 8-4V7M4 7c0 2.21 3.582 4 8 4s8-1.79 8-4M4 7c0-2.21 3.582-4 8-4s8 1.79 8 4" />
|
|
|
|
|
</svg>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex-1">
|
|
|
|
|
<h1 class="text-2xl font-bold text-white">Electrs</h1>
|
2026-03-08 02:16:02 +00:00
|
|
|
<p class="text-white-70">Bitcoin Electrum indexer for Mempool & Electrum clients</p>
|
2026-02-17 15:03:34 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="info-card flex items-center gap-3">
|
2026-03-08 02:16:02 +00:00
|
|
|
<div id="statusDot" class="status-dot bg-yellow"></div>
|
2026-02-17 15:03:34 +00:00
|
|
|
<div>
|
2026-03-08 02:16:02 +00:00
|
|
|
<p class="text-xs text-white-60">Status</p>
|
2026-02-17 15:03:34 +00:00
|
|
|
<p class="text-sm font-medium text-white" id="statusText">Checking...</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="glass-card p-6">
|
|
|
|
|
<div class="flex items-start gap-4 mb-4">
|
2026-03-08 02:16:02 +00:00
|
|
|
<div class="icon-box-sm flex-shrink-0">
|
|
|
|
|
<svg id="syncIcon" style="width:1.5rem;height:1.5rem;color:#f97316" class="animate-spin-slow" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
2026-02-17 15:03:34 +00:00
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15" />
|
|
|
|
|
</svg>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex-1">
|
|
|
|
|
<h2 class="text-xl font-semibold text-white mb-1">Index Sync</h2>
|
2026-03-08 02:16:02 +00:00
|
|
|
<p class="text-white-70 text-sm" id="syncStatusText">Checking sync status...</p>
|
2026-02-17 15:03:34 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="mb-4">
|
2026-03-08 02:16:02 +00:00
|
|
|
<div class="flex justify-between text-sm text-white-60 mb-2">
|
2026-02-17 15:03:34 +00:00
|
|
|
<span id="currentBlock">Block 0</span>
|
|
|
|
|
<span id="syncPercentage">0%</span>
|
|
|
|
|
</div>
|
2026-03-08 02:16:02 +00:00
|
|
|
<div class="progress-bar-bg">
|
|
|
|
|
<div class="progress-bar progress-glow" id="syncProgressBar" style="width: 0%"></div>
|
2026-02-17 15:03:34 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-03-08 02:16:02 +00:00
|
|
|
<div class="grid grid-cols-2 md-grid-cols-4 gap-3">
|
2026-02-17 15:03:34 +00:00
|
|
|
<div class="info-card">
|
2026-03-08 02:16:02 +00:00
|
|
|
<p class="text-xs text-white-60 mb-1">Indexed Height</p>
|
2026-02-17 15:03:34 +00:00
|
|
|
<p class="text-lg font-semibold text-white" id="indexedHeight">-</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info-card">
|
2026-03-08 02:16:02 +00:00
|
|
|
<p class="text-xs text-white-60 mb-1">Network Height</p>
|
2026-02-17 15:03:34 +00:00
|
|
|
<p class="text-lg font-semibold text-white" id="networkHeight">-</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info-card">
|
2026-03-08 02:16:02 +00:00
|
|
|
<p class="text-xs text-white-60 mb-1">Index Size</p>
|
|
|
|
|
<p class="text-lg font-semibold text-white" id="indexSize">-</p>
|
2026-02-17 15:03:34 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="info-card">
|
2026-03-08 02:16:02 +00:00
|
|
|
<p class="text-xs text-white-60 mb-1">Progress</p>
|
2026-02-17 15:03:34 +00:00
|
|
|
<p class="text-lg font-semibold text-white" id="progressPct">-</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
async function updateStatus() {
|
|
|
|
|
try {
|
2026-03-08 02:16:02 +00:00
|
|
|
const resp = await fetch('electrs-status');
|
2026-02-17 15:03:34 +00:00
|
|
|
const data = await resp.json();
|
|
|
|
|
|
2026-03-08 02:16:02 +00:00
|
|
|
const indexedH = data.indexed_height ?? 0;
|
|
|
|
|
const networkH = data.network_height ?? 0;
|
|
|
|
|
const pct = data.progress_pct ?? 0;
|
|
|
|
|
|
|
|
|
|
document.getElementById('indexedHeight').textContent = indexedH > 0 ? indexedH.toLocaleString() : (data.status === 'indexing' ? 'Building...' : '-');
|
|
|
|
|
document.getElementById('networkHeight').textContent = networkH > 0 ? networkH.toLocaleString() : '-';
|
|
|
|
|
document.getElementById('indexSize').textContent = data.index_size || '-';
|
|
|
|
|
document.getElementById('progressPct').textContent = pct > 0 ? pct.toFixed(1) + '%' : '-';
|
|
|
|
|
document.getElementById('currentBlock').textContent = indexedH > 0 ? 'Block ' + indexedH.toLocaleString() : (data.index_size ? 'Index: ' + data.index_size : 'Block 0');
|
|
|
|
|
document.getElementById('syncPercentage').textContent = pct > 0 ? pct.toFixed(1) + '%' : '0%';
|
|
|
|
|
document.getElementById('syncProgressBar').style.width = Math.max(pct, 0.5) + '%';
|
2026-02-17 15:03:34 +00:00
|
|
|
|
|
|
|
|
const statusText = document.getElementById('syncStatusText');
|
|
|
|
|
const statusDot = document.getElementById('statusDot');
|
|
|
|
|
const syncIcon = document.getElementById('syncIcon');
|
|
|
|
|
|
|
|
|
|
if (data.status === 'indexing') {
|
2026-03-08 02:16:02 +00:00
|
|
|
statusText.textContent = data.error || 'Building index...';
|
|
|
|
|
statusText.style.color = '#fbbf24';
|
|
|
|
|
statusDot.className = 'status-dot bg-amber animate-pulse';
|
2026-02-17 15:03:34 +00:00
|
|
|
document.getElementById('statusText').textContent = 'Indexing';
|
|
|
|
|
syncIcon.classList.add('animate-spin-slow');
|
2026-03-08 02:16:02 +00:00
|
|
|
} else if (data.status === 'error') {
|
|
|
|
|
statusText.textContent = data.error || 'Unknown error';
|
|
|
|
|
statusText.style.color = '#f87171';
|
|
|
|
|
statusDot.className = 'status-dot bg-red';
|
2026-02-17 15:03:34 +00:00
|
|
|
document.getElementById('statusText').textContent = 'Error';
|
|
|
|
|
} else if (data.status === 'synced') {
|
2026-03-08 02:16:02 +00:00
|
|
|
statusText.textContent = 'Fully synchronized with the network';
|
|
|
|
|
statusText.style.color = '#4ade80';
|
|
|
|
|
statusDot.className = 'status-dot bg-green';
|
2026-02-17 15:03:34 +00:00
|
|
|
document.getElementById('statusText').textContent = 'Synced';
|
|
|
|
|
syncIcon.classList.remove('animate-spin-slow');
|
2026-03-08 02:16:02 +00:00
|
|
|
syncIcon.style.color = '#4ade80';
|
2026-02-17 15:03:34 +00:00
|
|
|
} else {
|
2026-03-08 02:16:02 +00:00
|
|
|
const remaining = networkH - indexedH;
|
2026-02-17 15:03:34 +00:00
|
|
|
statusText.textContent = 'Syncing... ' + remaining.toLocaleString() + ' blocks remaining';
|
2026-03-08 02:16:02 +00:00
|
|
|
statusText.style.color = '#fb923c';
|
|
|
|
|
statusDot.className = 'status-dot bg-yellow';
|
2026-02-17 15:03:34 +00:00
|
|
|
document.getElementById('statusText').textContent = 'Syncing';
|
|
|
|
|
syncIcon.classList.add('animate-spin-slow');
|
|
|
|
|
}
|
|
|
|
|
} catch (e) {
|
|
|
|
|
document.getElementById('syncStatusText').textContent = 'Unable to fetch status: ' + e.message;
|
2026-03-08 02:16:02 +00:00
|
|
|
document.getElementById('syncStatusText').style.color = '#f87171';
|
2026-02-17 15:03:34 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
updateStatus();
|
|
|
|
|
setInterval(updateStatus, 5000);
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|