-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
359 lines (351 loc) · 18.7 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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
<!doctype html>
<html lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TomoBridge 's Token List</title>
<link rel="icon" href="logo192.png">
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="stylesheet" href="main.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div id="app">
<header class="flex justify-center align items-center h-14 gap-2 p-2 bg-gray-800 text-base">
<div>
<a alt="tomo bridge logo" src="#" class="p-2 rounded" href="/">
<img src="assets/img/logo-tomo-bridge.svg" alt="logo">
</a>
</div>
</header>
<main class="h-full">
<div class="container mx-auto px-4 sm:px-8 max-w-screen-lg">
<div class="py-8">
<div>
<h2 class="text-2xl font-semibold leading-tight">Token List</h2>
</div>
<div class="-mx-4 sm:-mx-8 px-4 sm:px-8 py-4 overflow-x-auto">
<div class="inline-block min-w-full shadow-md rounded-lg overflow-hidden">
<table class="min-w-full leading-normal">
<thead>
<tr>
<th
class="px-5 py-3 border-b-2 border-gray-200 bg-gray-100 text-left text-xs font-semibold text-gray-700 uppercase tracking-wider w-72"
>
Token
</th>
<th
class="px-5 py-3 border-b-2 border-gray-200 bg-gray-100 text-left text-xs font-semibold text-gray-700 uppercase tracking-wider"
>
Bridge
</th>
<th
class="px-5 py-3 border-b-2 border-gray-200 bg-gray-100 text-left text-xs font-semibold text-gray-700 uppercase tracking-wider"
>
Networks
</th>
<th
class="px-5 py-3 border-b-2 border-gray-200 bg-gray-100"
></th>
</tr>
</thead>
<tbody>
<!-- LUA TOKEN -->
<tr>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<div class="flex">
<div class="flex-shrink-0 w-10 h-10">
<img
class="w-full h-full rounded-full"
src="assets/img/lua.png"
alt=""
/>
</div>
<div class="ml-3">
<p class="text-gray-900 whitespace-no-wrap">
LuaToken
</p>
<p class="text-gray-600 whitespace-no-wrap">LUA</p>
</div>
</div>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<span
class="relative inline-block px-3 py-1 font-semibold text-green-900 leading-tight"
>
<span
aria-hidden
class="absolute inset-0 multichain-bg rounded-full"
></span>
<span class="relative text-white">Multichain</span>
</span>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
ETH-TOMO
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white ">
<a class="text-blue-600 dark:text-blue-500 hover:underline"
href="https://app.multichain.org/#/router?bridgetoken=0xB1f66997A5760428D3a87D68b90BfE0aE64121cC" target="_blank"
>
SWAP</a>
</td>
</tr>
<!-- TOMOB TOKEN -->
<tr>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<div class="flex">
<div class="flex-shrink-0 w-10 h-10">
<img
class="w-full h-full rounded-full"
src="assets/img/tomoe.png"
alt=""
/>
</div>
<div class="ml-3">
<p class="text-gray-900 whitespace-no-wrap">
TomoChain
</p>
<p class="text-gray-600 whitespace-no-wrap">TOMOB</p>
</div>
</div>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<span
class="relative inline-block px-3 py-1 font-semibold text-green-900 leading-tight"
>
<span
aria-hidden
class="absolute inset-0 tomobridge-bg rounded-full"
></span>
<span class="relative tomobridge-text">Manually</span>
</span>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
TOMOB - BINANCE CHAIN (BEP-2)
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white ">
<a class="text-blue-600 dark:text-blue-500 hover:underline"
href="https://forms.gle/qRVL7bBN5FEXGaW27" target="_blank"
>
GUIDELINE</a>
</td>
</tr>
<!-- TOMOE TOKEN -->
<tr>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<div class="flex">
<div class="flex-shrink-0 w-10 h-10">
<img
class="w-full h-full rounded-full"
src="assets/img/tomoe.png"
alt=""
/>
</div>
<div class="ml-3">
<p class="text-gray-900 whitespace-no-wrap">
TomoChain
</p>
<p class="text-gray-600 whitespace-no-wrap">TOMOE</p>
</div>
</div>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<span
class="relative inline-block px-3 py-1 font-semibold text-green-900 leading-tight"
>
<span
aria-hidden
class="absolute inset-0 multichain-bg rounded-full"
></span>
<span class="relative text-white">Multichain</span>
</span>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
ETH-TOMO
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white ">
<a class="text-blue-600 dark:text-blue-500 hover:underline"
href="https://app.multichain.org/#/router?bridgetoken=0x05D3606d5c81EB9b7B18530995eC9B29da05FaBa" target="_blank"
>
SWAP</a>
</td>
</tr>
<!-- ETH TOKEN -->
<tr>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<div class="flex">
<div class="flex-shrink-0 w-10 h-10">
<img
class="w-full h-full rounded-full"
src="assets/img/tETH.png"
alt=""
/>
</div>
<div class="ml-3">
<p class="text-gray-900 whitespace-no-wrap">
Ethereum
</p>
<p class="text-gray-600 whitespace-no-wrap">ETH</p>
</div>
</div>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<span
class="relative inline-block px-3 py-1 font-semibold text-green-900 leading-tight"
>
<span
aria-hidden
class="absolute inset-0 multichain-bg rounded-full"
></span>
<span class="relative text-white">Multichain</span>
</span>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
TOMO-ETH
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white ">
<a class="text-blue-600 dark:text-blue-500 hover:underline"
href="https://app.multichain.org/#/router?bridgetoken=0xa1ff8559646a79e47ecdfaca60272f3081998569" target="_blank"
>
SWAP</a>
</td>
</tr>
<!-- USDT TOKEN -->
<tr>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<div class="flex">
<div class="flex-shrink-0 w-10 h-10">
<img
class="w-full h-full rounded-full"
src="assets/img/usdt.svg"
alt=""
/>
</div>
<div class="ml-3">
<p class="text-gray-900 whitespace-no-wrap">
TetherUSD
</p>
<p class="text-gray-600 whitespace-no-wrap">USDT</p>
</div>
</div>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<span
class="relative inline-block px-3 py-1 font-semibold text-green-900 leading-tight"
>
<span
aria-hidden
class="absolute inset-0 multichain-bg rounded-full"
></span>
<span class="relative text-white">Multichain</span>
</span>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
TOMO-ETH-BSC...
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white ">
<a class="text-blue-600 dark:text-blue-500 hover:underline"
href="https://app.multichain.org/#/router?bridgetoken=0x381b31409e4d220919b2cff012ed94d70135a59e" target="_blank"
>
SWAP</a>
</td>
</tr>
<!-- SERUM TOKEN -->
<tr>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<div class="flex">
<div class="flex-shrink-0 w-10 h-10">
<img
class="w-full h-full rounded-full"
src="assets/img/srm.png"
alt=""
/>
</div>
<div class="ml-3">
<p class="text-gray-900 whitespace-no-wrap">
SERUM
</p>
<p class="text-gray-600 whitespace-no-wrap">SRM</p>
</div>
</div>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<span
class="relative inline-block px-3 py-1 font-semibold text-green-900 leading-tight"
>
<span
aria-hidden
class="absolute inset-0 multichain-bg rounded-full"
></span>
<span class="relative text-white">Multichain</span>
</span>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
ETH-TOMO
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white ">
<a class="text-blue-600 dark:text-blue-500 hover:underline"
href="https://app.multichain.org/#/router?bridgetoken=0xc01643ac912b6a8ffc50cf8c1390934a6142bc91" target="_blank"
>
SWAP</a>
</td>
</tr>
<!-- FTX TOKEN -->
<tr>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<div class="flex">
<div class="flex-shrink-0 w-10 h-10">
<img
class="w-full h-full rounded-full"
src="assets/img/ftt.png"
alt=""
/>
</div>
<div class="ml-3">
<p class="text-gray-900 whitespace-no-wrap">
FTX Token
</p>
<p class="text-gray-600 whitespace-no-wrap">FTT</p>
</div>
</div>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
<span
class="relative inline-block px-3 py-1 font-semibold text-green-900 leading-tight"
>
<span
aria-hidden
class="absolute inset-0 multichain-bg rounded-full"
></span>
<span class="relative text-white">Multichain</span>
</span>
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
ETH-TOMO
</td>
<td class="px-5 py-5 border-b border-gray-200 bg-white ">
<a class="text-blue-600 dark:text-blue-500 hover:underline"
href="https://app.multichain.org/#/router?bridgetoken=0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9" target="_blank"
>
SWAP</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="text-center">
<p class="text-red-700 text-xs">
<span>Kindly fill out the support request</span>
<span>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfy7r0rOl5a6fcZrwgKikr581de-xc8cxO_43kd_Lyp0REuNQ/viewform"
target="_blank" class="underline">FORM</a>
</span>
<span>for other tokens not in the list</span>
</p>
</div>
</div>
</div></div>
</main>
</div>
</body>
</html>