-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (94 loc) · 4.44 KB
/
Copy pathindex.html
File metadata and controls
100 lines (94 loc) · 4.44 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vanity ETH GPU | Vanity Wallet & First Contract Address Generator</title>
<meta
name="description"
content="Generate Ethereum vanity wallet addresses and first contract deploy addresses (CREATE nonce 0) directly in your browser with WebGPU, WASM, and CPU fallback."
/>
<meta
name="keywords"
content="ethereum vanity address, ethereum address generator, vanity wallet, first contract address, webgpu ethereum, create nonce 0"
/>
<meta name="author" content="HODL Community" />
<meta name="application-name" content="Vanity ETH GPU" />
<meta name="apple-mobile-web-app-title" content="Vanity ETH GPU" />
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
<meta name="theme-color" content="#0b0c12" />
<link rel="canonical" href="https://vanity-eth-gpu.xyz/" />
<link rel="alternate" href="https://vanity-eth-gpu.xyz/" hreflang="en" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Vanity ETH GPU" />
<meta property="og:url" content="https://vanity-eth-gpu.xyz/" />
<meta property="og:title" content="Vanity ETH GPU | Vanity Wallet & First Contract Address Generator" />
<meta
property="og:description"
content="Generate Ethereum vanity wallet addresses and first contract deploy addresses in-browser with GPU acceleration."
/>
<meta property="og:image" content="https://vanity-eth-gpu.xyz/og-image.png" />
<meta property="og:image:secure_url" content="https://vanity-eth-gpu.xyz/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="Vanity ETH GPU: Ethereum vanity wallet and first-contract address generator."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Vanity ETH GPU | Vanity Wallet & First Contract Address Generator" />
<meta
name="twitter:description"
content="GPU-accelerated in-browser Ethereum vanity scanner for wallets and first contract deploy addresses."
/>
<meta name="twitter:image" content="https://vanity-eth-gpu.xyz/twitter-card.png" />
<meta name="twitter:image:alt" content="Vanity ETH GPU social card showing wallet and first-contract matching." />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"name": "Vanity ETH GPU",
"url": "https://vanity-eth-gpu.xyz/",
"inLanguage": "en-US",
"description": "A privacy-first in-browser Ethereum vanity address generator with GPU acceleration."
},
{
"@type": "SoftwareApplication",
"name": "Vanity ETH GPU",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Web",
"url": "https://vanity-eth-gpu.xyz/",
"image": "https://vanity-eth-gpu.xyz/og-image.png",
"inLanguage": "en-US",
"description": "Generate vanity Ethereum wallet and first-contract addresses with local-only key generation and WebGPU acceleration.",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Wallet vanity address scanning",
"First contract deploy address scanning (CREATE nonce 0)",
"Local-only private key generation",
"Encrypted keystore export"
]
}
]
}
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>