-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.51 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Omen Liquidity Pool</title>
<meta name="description" content="Omen Liquidity Pool">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container text-center" id="theme-bg">
<button id="theme" onclick="changeTheme()">☾</button>
<div class="header-image">
<img src="img/OmenHeader.png" alt="Omen Prediction Market" class="rounded img-fluid" width="500" height="500">
</div>
<div class="market-details">
<h1>Omen Pool Liquidity</h1>
<small class="form-text">The below represents an estimate of the entire Omen Pool Token Liquidity in equivalent USD</small>
<div id="omen-market-details">
<h1>$</h1>
<h1 id="omen-market-usd">0</h1>
</div>
</div>
<div id="status">
Finding all the Fixed Product Market Makers...
</div>
<div>
<div id="market-list"></div>
</div>
<hr>
</div>
<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script>
<script src="js/check.js"></script>
<script src="js/theme.js"></script>
</body>
</html>