Files
explorer-monorepo/frontend/public/index.html
defiQUG f2ebe824bd
Some checks failed
Deploy Explorer Live / deploy (push) Failing after 14s
Validate Explorer / frontend (push) Successful in 1m27s
Validate Explorer / smoke-e2e (push) Failing after 2m19s
Add WalletConnect stub, track surfaces, legacy SPA retirement, and dual-domain checks.
Publish walletconnect config endpoints, Track 3/4 notes on analytics/operator pages, legacy SPA at /legacy/index.html with root redirect, and a parity verifier for explorer.d-bis.org vs blockscout.defi-oracle.io.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-22 21:55:42 -07:00

44 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="0; url=/">
<link rel="canonical" href="/">
<title>DBIS Explorer</title>
<meta name="description" content="Redirecting to the DBIS Chain 138 explorer.">
<style>
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
font-family: system-ui, -apple-system, Segoe UI, sans-serif;
background: #0f172a;
color: #e2e8f0;
}
main {
max-width: 32rem;
padding: 2rem;
text-align: center;
}
a {
color: #93c5fd;
}
</style>
</head>
<body>
<main>
<h1>DBIS Explorer</h1>
<p>Redirecting to the current Chain 138 explorer…</p>
<p><a href="/">Continue to explorer</a></p>
<p><a href="/legacy/index.html">Open legacy SPA fallback</a></p>
</main>
<script>
if (window.location.pathname === '/index.html') {
window.location.replace('/');
}
</script>
</body>
</html>