-
Notifications
You must be signed in to change notification settings - Fork 30
/
stats.html
43 lines (42 loc) · 1.37 KB
/
stats.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>🌀 Curve.fi :: Compounded</title>
<link rel="stylesheet" href="tvision.css?v19012020" />
<script src="/jquery.min.js"></script>
<script src="/apexcharts.min.js"></script>
<script src="/common.js?v05012020"></script>
<script src="/chart.js?v20012020"></script>
<script>
window.addEventListener('load', async () => {
init_menu();
init_chart();
});
</script>
</head>
<body>
<div class="top-menu-bar">
<a href="/">Buy and sell</a>
<a href="/deposit.html">Deposit</a>
<a href="/withdraw.html">Withdraw</a>
<a href="/stats.html">Stats</a>
<a href="/faq.html">FAQ</a>
<a href="https://github.com/curvefi/curve-contract/tree/compounded">git@</a>
</div>
<div id="screen">
<div class="blue window">
<h1>🌀 Curve</h1>
</div>
<div class="window white">
<fieldset>
<legend>Average liquidity provider profit [<span id="apr-profit"></span>% APR]</legend>
<p id="chart"></p>
</fieldset>
<p>Recent daily APR: <span id="daily-apr"></span>%</p>
<p>Recent weekly APR: <span id="weekly-apr"></span>%</p>
</div>
</div>
</body>
</html>