-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (65 loc) · 2.63 KB
/
Copy pathindex.html
File metadata and controls
67 lines (65 loc) · 2.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; connect-src 'self' https://*.supabase.co https://supabase.local; img-src 'self' data: blob:; media-src 'self' blob:; object-src 'none'; base-uri 'self'; form-action 'self'; frame-ancestors 'none'"
/>
<meta
name="description"
content="PSBTHub is an end-to-end encrypted PSBT relay for Bitcoin multisig signers. Share PSBT handoffs without accounts, custody, or private keys."
/>
<meta
name="keywords"
content="PSBT relay, Bitcoin multisig, encrypted PSBT sharing, PSBT handoff, client-side encryption, AES-GCM"
/>
<meta
name="robots"
content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1"
/>
<meta name="author" content="PSBTHub" />
<meta name="application-name" content="PSBTHub" />
<meta name="theme-color" content="#0f172a" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
<link rel="canonical" href="https://psbthub.io/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="PSBTHub" />
<meta
property="og:title"
content="PSBTHub - Encrypted PSBT Relay for Bitcoin Multisig"
/>
<meta
property="og:description"
content="End-to-end encrypted PSBT handoff for multisig signers. No accounts, no custody, no private keys."
/>
<meta property="og:url" content="https://psbthub.io/" />
<meta property="og:image" content="https://psbthub.io/og-image.svg" />
<meta
property="og:image:alt"
content="PSBTHub encrypted PSBT relay preview card"
/>
<meta property="og:locale" content="en_US" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="PSBTHub - Encrypted PSBT Relay for Bitcoin Multisig"
/>
<meta
name="twitter:description"
content="End-to-end encrypted PSBT handoff for multisig signers. No accounts, no custody, no private keys."
/>
<meta name="twitter:image" content="https://psbthub.io/og-image.svg" />
<meta
name="twitter:image:alt"
content="PSBTHub encrypted PSBT relay preview card"
/>
<title>PSBTHub | Encrypted PSBT Relay for Bitcoin Multisig</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>