-
Notifications
You must be signed in to change notification settings - Fork 5
/
graph.html
143 lines (140 loc) · 4.74 KB
/
graph.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>OCEAN DAO ANALYTICS</title>
<meta
name="description"
content="Discover, Access, Interact with the Awesomeness of DAO With The Covalent API"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="images/OceanDAO.png"
/>
<link rel="stylesheet" href="css/style.css" />
</head>
<body class="@@dashboard">
<div id="preloader"><i>.</i><i>.</i><i>.</i></div>
<div id="main-wrapper">
<div class="header">
<div class="container">
<div class="row">
<div class="col-xxl-12">
<div class="header-content">
<div class="header-left">
<div class="brand-logo">
<a class="mini-logo" href="index.html">
<img
src="images/OceanDAO.png"
alt="Ocean Dao logo"
width="40"
/></a>
</div>
<div class="search">
<form action="#">
<span><i class="ri-search-line"></i></span
><input type="text" placeholder="Search Here" />
</form>
</div>
</div>
<div class="header-right">
<a
class="btn btn-secondary me-3"
id="userAddress"
onclick="connect();"
>
Connect Wallet
</a>
<div
class="dark-light-toggle theme-switch"
onclick="themeToggle()"
>
<span class="dark"><i class="ri-moon-line"></i></span>
<span class="light"><i class="ri-sun-line"></i></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sidebar">
<div class="brand-logo">
<a class="full-logo" href="index.html"
><img src="images/OceanDAO.png" alt="" width="30"
/></a>
</div>
<div class="menu">
<ul>
<li>
<a href="index.html">
<span><i class="ri-layout-grid-fill"></i></span>
<span class="nav-text">Home</span>
</a>
</li>
<li>
<a href="pool.html">
<span><i class="ri-wallet-line"></i></span>
<span class="nav-text">DAO Pool Information</span>
</a>
</li>
<li>
<a href="token_price.html">
<span>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-trending-up"
>
<polyline points="23 6 13.5 15.5 8.5 10.5 1 18"></polyline>
<polyline points="17 6 23 6 23 12"></polyline>
</svg>
</span>
<span class="nav-text">TOKEN PRICE</span>
</a>
</li>
<li>
<a href="graph.html">
<span><i class="ri-star-line"></i></span>
<span class="nav-text">DAO Pool Information</span>
</a>
</li>
</ul>
</div>
</div>
<div class="content-body">
<div class="container">
<div class="page-title">
<div class="col-xxl-6">
<div
class="promotion d-flex justify-content-between align-items-center"
style="background: url(images/bg/promo2.png)"
>
<div class="promotion-detail">
<h1 class="text-white mb-3">GRAPH FOR TOKENS</h1>
<h3>Graph for tokens</h3>
<p><strong>using the Covalent API</strong></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>