-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (71 loc) · 1.63 KB
/
index.html
File metadata and controls
76 lines (71 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>rug.fun – Solana Rug Detector</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js@2"></script>
<script src="https://cdn.jsdelivr.net/npm/@solana/web3.js@1.81.0/lib/index.iife.min.js"></script>
<style>
body{
background:#0b0c1b;
color:white;
font-family:Orbitron,sans-serif;
text-align:center;
}
h1{font-size:3em;text-shadow:0 0 15px #ff0080;}
input,button{
padding:12px;
border-radius:12px;
border:none;
margin:6px;
font-size:16px;
}
input{
width:360px;
background:#1c1e2a;
color:white;
}
button{
background:linear-gradient(45deg,#ff0080,#7928ca);
color:white;
cursor:pointer;
box-shadow:0 0 10px #ff0080;
}
#score{
margin-top:20px;
white-space:pre-line;
}
canvas{
margin-top:15px;
border-radius:16px;
box-shadow:0 0 20px #ff0080;
}
#recent{
max-width:600px;
margin:30px auto;
}
.card{
background:#1c1e2a;
margin:8px;
padding:10px;
border-radius:12px;
box-shadow:0 0 10px #7928ca;
text-align:left;
}
</style>
</head>
<body>
<h1>rug.fun</h1>
<p>Solana Rug Detector powered by Global Fees Paid</p>
<input id="tokenInput" placeholder="Token Mint Address">
<br>
<button id="checkBtn">Analyze</button>
<button id="refreshBtn">🔄 Refresh</button>
<div id="score"></div>
<canvas id="badge" width="450" height="180"></canvas>
<h2>🔥 Latest Scans</h2>
<div id="recent"></div>
<script type="module" src="script.js"></script>
</body>
</html>