f15259de3f
* chore(explorer): add urls for mainnet explorer api
27 lines
716 B
HTML
27 lines
716 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Explorer</title>
|
|
<base href="/" />
|
|
<link
|
|
rel="preload"
|
|
href="https://static.vega.xyz/AlphaLyrae-Medium.woff2"
|
|
as="font"
|
|
type="font/woff2"
|
|
crossorigin="anonymous"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link
|
|
rel="icon"
|
|
type="image/x-icon"
|
|
href="https://static.vega.xyz/favicon.ico"
|
|
/>
|
|
<link rel="stylesheet" href="https://static.vega.xyz/fonts.css" />
|
|
<script src="./assets/env-config.js"></script>
|
|
</head>
|
|
<body class="dark:bg-black h-full w-full">
|
|
<div id="root" class="h-full w-full"></div>
|
|
</body>
|
|
</html>
|