-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (52 loc) · 2.46 KB
/
Copy pathindex.html
File metadata and controls
56 lines (52 loc) · 2.46 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pump.fun creator fees</title>
<meta name="description" content="Look up how much a Pump.fun creator has earned in creator-reward fees." />
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='.9em' font-size='90'%3E%F0%9F%92%B0%3C/text%3E%3C/svg%3E" />
<link rel="stylesheet" href="/src/style.css" />
</head>
<body>
<main>
<header>
<h1>pump.fun creator fees</h1>
<p class="sub">Lifetime creator-reward earnings for any coin, wallet, or username.</p>
</header>
<div class="type-tabs">
<button class="tab active" data-prefix="" data-placeholder="GitHub username, wallet, mint, or pump username">auto-detect</button>
<button class="tab" data-prefix="github:" data-placeholder="GitHub username">GitHub</button>
<button class="tab" data-prefix="x:" data-placeholder="numeric X/Twitter user ID">X</button>
<button class="tab" data-prefix="tiktok:" data-placeholder="numeric TikTok user ID">TikTok</button>
<button class="tab" data-prefix="discord:" data-placeholder="numeric Discord user ID">Discord</button>
<button class="tab" data-prefix="pump:" data-placeholder="pump.fun username">Pump</button>
<button class="tab" data-prefix="wallet" data-placeholder="Solana wallet or vault address">Wallet</button>
<button class="tab" data-prefix="mint" data-placeholder="coin mint address">Coin mint</button>
</div>
<form id="search">
<input
id="q"
name="q"
type="text"
placeholder="GitHub username, wallet, mint, or pump username"
autocomplete="off"
autocapitalize="off"
spellcheck="false"
required
/>
<button type="submit">look up</button>
</form>
<section id="result" hidden></section>
<footer>
<p>
Data: <a href="https://swap-api.pump.fun" target="_blank" rel="noopener">swap-api.pump.fun</a> +
<a href="https://frontend-api-v3.pump.fun" target="_blank" rel="noopener">frontend-api-v3.pump.fun</a>.
Not affiliated with Pump.fun.
<a href="/api/fees?q=github:nirholas">JSON API</a>.
</p>
</footer>
</main>
<script type="module" src="/src/main.js"></script>
</body>
</html>