-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (138 loc) · 5.36 KB
/
index.html
File metadata and controls
150 lines (138 loc) · 5.36 KB
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
144
145
146
147
148
149
150
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Sekura</title>
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self' 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com; style-src 'self' https://fonts.googleapis.com"
/>
<meta
http-equiv="X-Content-Security-Policy"
content="default-src 'self'; script-src 'self' 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com; style-src 'self' https://fonts.googleapis.com"
/>
<link rel="stylesheet" href="index.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="loading">
<h1>Sekura</h1>
<div class="loading-text">Loading...</div>
<div class="loading-desc">The first time you open the app might take a bit longer for the initial setup</div>
</div>
<div id="main" hidden>
<div class="search-container">
<h1>Sekura</h1>
<div class="search-form">
<label for="ens-domain" class="label">ENS DOMAIN (must end with .eth)</label>
<input id="ens-domain" class="ens-domain" />
<button id="search-ipfs">Search</button>
</div>
</div>
<div class="lds-ring"><div></div><div></div><div></div><div></div></div>
<div class="popular-apps">
<!-- <h3>Popular Dapps</h3> -->
<ul class="popular-apps-list">
<li data-ens-domain="curve.eth">
<!--<img src="" alt="">-->
<h3>Curve</h3>
<p class="description">
Curve is an exchange liquidity protocol on Ethereum designed for extremely efficient stablecoin trading, low risk and supplemental fee income for liquidity providers.
</p>
<p class="ens-name">curve.eth</p>
</li>
<li data-ens-domain="lusd.eth">
<!--<img src="" alt="">-->
<h3>Liquity</h3>
<p class="description">
Interest-free liquity at your fingertips.
</p>
<p class="ens-name">lusd.eth</p>
</li>
<li data-ens-domain="uniswap-uncensored.eth">
<!--<img src="" alt="">-->
<h3>Uniswap</h3>
<p class="description">
Swap or provide liquidity on the Uniswap Protocol
</p>
<p class="ens-name">uniswap-uncensored.eth</p>
</li>
<li data-ens-domain="convex.eth">
<!--<img src="" alt="">-->
<h3>Convex</h3>
<p class="description">
Convex is a platform that boosts rewards for CRV stakers and liquidity providers alike.
</p>
<p class="ens-name">convex.eth</p>
</li>
<li data-ens-domain="compoundprotocol.eth">
<!--<img src="" alt="">-->
<h3>Compound Protocol</h3>
<p class="description">
Supply or borrow assets from the protocol, and participate in community governance.
</p>
<p class="ens-name">compoundprotocol.eth</p>
</li>
<li data-ens-domain="synthetixexchange.eth">
<!--<img src="" alt="">-->
<h3>Synthetix exchange</h3>
<p class="description">
Synthetix is a derivatives liquidity protocol providing the backbone for derivatives trading in DeFi.
</p>
<p class="ens-name">synthetixexchange.eth</p>
</li>
<li data-ens-domain="esteroids.eth">
<!--<img src="" alt="">-->
<h3>Esteroids</h3>
<p class="description">
A search engine for the decentralized web.
</p>
<p class="ens-name">esteroids.eth</p>
</li>
<li data-ens-domain="tornadocash.eth">
<!--<img src="" alt="">-->
<h3>Tornado Cash</h3>
<p class="description">
Non-custodial Ethereum Privacy solution.
</p>
<p class="ens-name">tornadocash.eth</p>
</li>
<li data-ens-domain="1inch.eth">
<!--<img src="" alt="">-->
<h3>1inch</h3>
<p class="description">
DeFi / DEX aggregator with the most liquidity and the best rates on Ethereum, Binance Smart Chain, Optimism, Polygon.
</p>
<p class="ens-name">1inch.eth</p>
</li>
<li data-ens-domain="hermesprotocol.eth">
<!--<img src="" alt="">-->
<h3>Hermes Protocol</h3>
<p class="description">
Decentralized exchange running on Metis
</p>
<p class="ens-name">hermesprotocol.eth</p>
</li>
<li data-ens-domain="spookyfi.eth">
<!--<img src="" alt="">-->
<h3>Spooky</h3>
<p class="description">
Decentralized exchange running on Fantom
</p>
<p class="ens-name">spookyfi.eth</p>
</li>
</ul>
</div>
</div>
<script>
var exports = { __esModule: true };
</script>
<script src="./dist/renderer.js"></script>
</body>
</html>