-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·151 lines (145 loc) · 6.11 KB
/
index.html
File metadata and controls
executable file
·151 lines (145 loc) · 6.11 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Surmount Systems - Bitcoin Initiative for Quantum Security</title>
<link rel="icon" type="image/png" href="favicon.ico" />
<link rel="stylesheet" href="styles.css" />
<!-- Open Graph Tags -->
<meta
property="og:title"
content="Surmount Systems - Bitcoin Initiative for Quantum Security"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://surmount.systems/" />
<meta property="og:image" content="https://surmount.systems/logo.png" />
<meta
property="og:description"
content="At Surmount Systems, we are dedicated to pioneering advancements in quantum security for Bitcoin. Our initiative focuses on ensuring the integrity and security of the timechain in the quantum age."
/>
<meta property="og:site_name" content="Surmount Systems" />
<!-- Twitter Card Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Surmount Systems - Bitcoin Initiative for Quantum Security"
/>
<meta
name="twitter:description"
content="At Surmount Systems, we are dedicated to pioneering advancements in quantum security for Bitcoin. Our initiative focuses on ensuring the integrity and security of the timechain in the quantum age."
/>
<meta name="twitter:image" content="https://surmount.systems/logo.png" />
<meta name="twitter:site" content="@SurmountSystems" />
<meta name="twitter:creator" content="@SurmountSystems" />
</head>
<body>
<header>
<img src="logo.png" alt="Surmount Systems Logo" />
<h1>Surmount Systems</h1>
<h2>Bitcoin Initiative for Quantum Security</h2>
</header>
<main>
<section id="home" class="section">
<p>
At Surmount Systems, we are dedicated to pioneering advancements in
quantum security for Bitcoin. Our initiative focuses on ensuring the
integrity and security of the timechain in the quantum age.
</p>
</section>
<section id="projects" class="section">
<h3>Projects</h3>
<p>
Currently we're working on a BIP for a new quantum-resistant address
type called P2QRH (Pay to Quantum Resistant Hash), for use in a future
soft fork called QuBit.
</p>
<p class="center">
<a
href="https://github.com/cryptoquick/bips/blob/p2qrh/bip-0360.mediawiki"
>BIP 360 - QuBit - Pay to Quantum Resistant Hash</a
>
</p>
<p class="center">
<a href="https://github.com/SurmountSystems"
>Surmount Systems GitHub</a
>
</p>
</section>
<section id="social" class="section">
<h3>Contact Us</h3>
<p class="center">
<a href="https://x.com/SurmountSystems">@SurmountSystems on X</a>
</p>
<p class="center">
<a href="https://t.me/+bqrj37t3xXg5ZTg5">Telegram Group</a>
</p>
</section>
<section id="support" class="section">
<h3>Support Our Work</h3>
<p class="center">
The Surmount Systems Foundation is a 501(c)(3) non-profit
organization.
</p>
<p class="center">
We accept <a href="https://silentpayments.xyz">Silent Payments</a>:
</p>
<p id="silent-payment" class="code">
sp1qqveek65zqcz9xl44pjr65tzexlja7zn05kpe8rxxupr43lgtt6czgq6mm3vlgpwzap4f05854qkmqc2kaefl3e8dwcn24ykrrrck2vcspcfkk4kh
</p>
<p class="center">
We also accept <a href="https://bolt12.org/">BOLT-12</a> Lightning
payments:
</p>
<p id="bolt-12" class="code">
lno1zrxq8pjw7qjlm68mtp7e3yvxee4y5xrgjhhyf2fxhlphpckrvevh50u0q2pmrtnrsk8qdhsad5fpxeqaa7zyea93kvuas6ycchu54mwpy0ux5qszx7e4hmyzv9cu8wp8rsuqgg860hnjyty84qp9eyyvq8pcr77nxjcqqveun7k49f74qm54fxxkln6s7tq970hhzpljsr7dvqjpdajc4f572qsk8xglxkg9jau9mys7xjyet536kcc7qvjmf0l4uver2a3trehyn58mz7d2rj0tjkvrg6k68cqxwcfd80crzqqsn54x9hkydqd9z2pu5a8u7zan4u
</p>
<p class="center">
Inquiries regarding donations, such as to request a receipt, should be
sent via direct message to
<a href="https://x.com/SurmountSystems">@SurmountsSystems on X.</a>
</p>
</section>
</main>
<script>
document.addEventListener("DOMContentLoaded", function () {
var elementIds = ["silent-payment", "bolt-12"];
elementIds.forEach(function (id) {
var element = document.getElementById(id);
if (element) {
element.addEventListener("click", function () {
// Copy the content to the clipboard
var textToCopy = element.textContent || element.innerText;
navigator.clipboard.writeText(textToCopy).then(
function () {
// Flash bright blue 2 times in 1 second, starting immediately
var originalBackground = element.style.backgroundColor || "";
var flashCount = 0;
var isBlue = true;
// Set background to blue immediately
element.style.backgroundColor = "blue";
var flashInterval = setInterval(function () {
// Toggle background color between blue and original
element.style.backgroundColor = isBlue
? originalBackground
: "blue";
isBlue = !isBlue;
flashCount++;
// Stop flashing after 4 toggles (2 flashes)
if (flashCount === 4) {
clearInterval(flashInterval);
element.style.backgroundColor = originalBackground;
}
}, 250); // Change color every 250ms
},
function (err) {
console.error("Could not copy text: ", err);
}
);
});
}
});
});
</script>
</body>
</html>