forked from coinkite/bitcoinbinary.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
354 lines (314 loc) · 42.6 KB
/
index.html
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
<title>BitcoinBinary.org - A repository of Reproducible Build Proofs for Bitcoin Projects</title>
<link rel="icon" href="bitcoinbinary.org.png">
<style>
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1.2;
background-color: #ffffff;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body{margin: 0px;font-family:sans-serif;width:100%;}
.log {border: 1px solid #ddd;display:block;width:100%;list-style: none;margin-bottom:10px;}
.faq {display:block;margin:10px auto;}
.log li, .faq li{display:inline-block;width:99%;padding:2px 6px;}
.faq li b{margin-right:10px;}
.log li:nth-child(even) {background: #eee;}
.log li:hover{background:#ddd;}
hr{margin:40px 0;}
a {text-decoration:none;}
.header{text-align:center;}
pre{font-size: 2em;font-family: monospace;}
b{font-weight:bold;}
p{margin-bottom:10px;}
h1{font-size:2em;font-weight:bold;margin-bottom:20px;display:block;}
h2{font-size:1.2em;font-weight:bold;margin-bottom:16px;display:block;}
.project-name, .cta{font-weight:bold;text-transform: uppercase;}
.menu{display:block;top:0;width:100%;background:#eee;padding:0px 0px;text-align:center;margin-bottom:40px;}
.header{width:100%;max-width:1180px;text-align:center;margin: 0px auto;display:block;}
.content{width:100%;max-width:1180px;text-align:left;margin: 0px auto;display:block;}
i{font-style: italic;}
.menu li{display:inline-block;padding:4px 0px;}
.menu ul > li + li {margin-left: 10px;padding-left: 10px;border-left: 1px solid #ccc;}
/* Dark mode */
.dark-mode {
background-color: #080808;
color: #9c9c9c;
}
.dark-mode a {
color: f7931a;
}
.dark-mode .log li:nth-child(even) {
background: #131313;
}
.dark-mode .log li:hover {
background: #414141;
}
.dark-mode .menu ul {
background-color: #080808;
}
.dark-mode .menu li {
background-color: #080808;
}
/* The dark mode button switch - the box around the slider */
.switch {
position: absolute;
display: inline-block;
margin-left: 10px;
width: 30px;
height: 17px;
}
/* Hide default HTML checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 13px;
width: 13px;
left: 2px;
bottom: 2px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(13px);
-ms-transform: translateX(13px);
transform: translateX(13px);
}
/* Rounded sliders */
.slider.round {
border-radius: 17px;
}
.slider.round:before {
border-radius: 50%;
}
.alert-box{
padding:20px 40px;
border:1px solid #3591ff;
background:#cae2ff;
border-radius:4px;
color:#1800ee;
font-weight:bold;
margin:20px auto;
text-align: center;
}
.bot{
color: #ff8300;
display: inline-block;
padding: 1px 5px 0;
font-size: 0.75em;
background: #fff6ef;
border: 1px solid #ff8300;
border-radius: 5px;
margin-top: -4px;
}
</style>
<section class="menu">
<ul>
<li><a href="https://github.com/coinkite/bitcoinbinary.org">BitcoinBinary.org</a>
<li>Contribute & add more projects <a href="https://github.com/coinkite/bitcoinbinary.org">here</a>
<li>Follow <a href="https://twitter.com/_BitcoinBinary_">@_BitcoinBinary_</a>
<li>Patronage by <a href="https://coinkite.com">Coinkite</a>
<li>Dark Mode
<label class="switch">
<input type="checkbox" onclick="darkMode()">
<span class="slider round"></span>
</label>
</ul>
</section>
<section class="header">
<pre>
██████ ██ ████████ ██████ ██████ ██ ███ ██
██ ██ ██ ██ ██ ██ ██ ██ ████ ██
██████ ██ ██ ██ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██████ ██ ██ ██████ ██████ ██ ██ ████
██████ ██ ███ ██ █████ ██████ ██ ██
██ ██ ██ ████ ██ ██ ██ ██ ██ ██ ██
██████ ██ ██ ██ ██ ███████ ██████ ████
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██████ ██ ██ ████ ██ ██ ██ ██ ██ .ORG
</pre>
<i>Complex problems, simple solutions... <i>less fud</i> - BitcoinBinary.org is a repository of Reproducible Build Proofs for Bitcoin Projects</i>
</section>
<section class="content">
<!---div class="alert-box">[CLAIMED!] $5K Automation Bounty! Help us automate project builds directly from github. <a href="https://bitcoinbounties.org/code/2022/02/18/bitcoin-binary-project-automated-builds.html">Learn more</a></div--->
<!--- Example:
<a href="link to vendor release announcement">YYYY-MM-DD</a> | <a href="wallet site">wallet name</a> | software version #.##.## <a href="src link">[src]</a> | SHA256 | <a href="wallet site">link to video</a> | notes | <a href="link to some public profile">builder name</a>
--->
<hr>
<h2>Binary Log:</h2>
<ul class="log">
<li><a href='https://github.com/lightningnetwork/lnd/releases/tag/v0.15.3-beta'>2022-10-27</a> | <a href='https://lightning.network/' class='project-name'>lnd</a> | <a href='https://github.com/lightningnetwork/lnd/releases/tag/v0.15.3-beta'>v0.15.3-beta</a> | <a href='https://github.com/lightningnetwork/lnd/releases/download/v0.15.3-beta/manifest-v0.15.3-beta.txt'> factory </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/lnd/lnd-v0.15.3-beta-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/lnd/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/cculianu/Fulcrum/releases/tag/v1.8.2'>2022-10-24</a> | <a href='' class='project-name'>Fulcrum</a> | <a href='https://github.com/cculianu/Fulcrum/releases/tag/v1.8.2'>v1.8.2</a> | <a href='https://github.com/cculianu/Fulcrum/releases/tag/v1.8.2'> factory 115460020d74c5a9bea4d2020e881d74367faefea421ff445e24d18f3c1d1998 </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/Fulcrum/Fulcrum-1.8.2-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/Fulcrum/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/nbd-wtf/poncho/releases/tag/v0.3.0'>2022-10-23</a> | <a href='https://github.com/nbd-wtf/poncho' class='project-name'>poncho</a> | <a href='https://github.com/nbd-wtf/poncho/releases/tag/v0.3.0'>v0.3.0</a> | <a href='https://github.com/nbd-wtf/poncho/releases/tag/v0.3.0'> factory 811592a94f2be0f5d8f43ca4efc97f2f7963c945cd037322ad43ede06a52ddc4 </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/poncho/poncho-v0.3.0-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/poncho/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/Coldcard/firmware/releases/tag/2022-07-29T1817-v5.0.7'>2022-10-12</a> | <a href='https://coldcard.com' class='project-name'>coldcard</a> | <a href='https://github.com/Coldcard/firmware/releases/tag/2022-07-29T1817-v5.0.7'>v5.0.7</a> | <a href="https://twitter.com/AVirgovic/status/1580213069393063937">tweet</a> | <a href='https://raw.githubusercontent.com/Coldcard/firmware/master/releases/signatures.txt'> factory 010827a60ebfc25b8a6e2bb94cc69b938419957ac6d4a9b6c0b1357c4c6c8632</a>| <a href='https://www.youtube.com/watch?v=HVraLYxMsA4'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/coldcard/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/Coldcard/firmware/releases/tag/2022-07-29T1817-v5.0.6'>2022-10-12</a> | <a href='https://coldcard.com' class='project-name'>coldcard</a> | <a href='https://github.com/Coldcard/firmware/releases/tag/2022-07-29T1817-v5.0.6'>v5.0.6</a> | <a href="https://twitter.com/AVirgovic/status/1580221810548756481">tweet</a> | <a href='https://raw.githubusercontent.com/Coldcard/firmware/master/releases/signatures.txt'> factory 884f373717c9c605920a1dc29e0f890bf7b3cc6b141666814e396094aeedb3f8</a>| <a href='https://www.youtube.com/watch?v=3yLs71a-vPs'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/coldcard/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/ElementsProject/lightning/releases/tag/v0.12.0'>2022-09-12</a> | <a href='' class='project-name'>cln</a> | <a href='https://github.com/ElementsProject/lightning/releases/tag/v0.12.0'>v0.12.0</a> | <a href='https://github.com/ElementsProject/lightning/releases/download/v0.12.0/SHA256SUMS'> factory e44851d9995e822cf44370bcf99a37cbc152a8fd2c861cad5fc922b3d8379f3f </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/cln/cln-0.12.0-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/cln/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/romanz/electrs/releases/tag/v0.9.9'>2022-09-05</a> | <a href='https://github.com/romanz/electrs' class='project-name'>electrs</a> | <a href='https://github.com/romanz/electrs/releases/tag/v0.9.9'>v0.9.9</a> | <a href='https://github.com/romanz/electrs/releases/tag/v0.9.9'> factory </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/electrs/electrs-0.9.9-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/electrs/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/cculianu/Fulcrum/releases/tag/1.7.0'>2022-09-05</a> | <a href='' class='project-name'>Fulcrum</a> | <a href='https://github.com/cculianu/Fulcrum/releases/tag/1.7.0'>1.7.0</a> | <a href='https://github.com/cculianu/Fulcrum/releases/tag/v1.7.0'> factory </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/Fulcrum/Fulcrum-1.7.0-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/Fulcrum/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/zkSNACKs/WalletWasabi/releases/v2.0.1.4'>2022-08-18</a> | <a href='https://wasabiwallet.io/' class='project-name'>wasabi</a> | <a href='https://github.com/zkSNACKs/WalletWasabi/releases/tag/v2.0.1.4'>v2.0.1.4</a> | <a href='https://github.com/zkSNACKs/WalletWasabi/releases/tag/v2.0.1.4'> factory </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/wasabi/wasabi-v2.0.1.4-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/wasabi/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/Blockstream/green_android/releases/tag/release_3.8.6'>2022-08-17</a> | <a href='https://blockstream.com/' class='project-name'>blockstream-green</a> | <a href='https://github.com/Blockstream/green_android/releases/tag/release_3.8.6'>v3.8.6</a> | <a href='https://github.com/Blockstream/green_android/releases/tag/release_3.8.6'> factory 7214fcd510d319d98d76a92f7b390110e3431157d5a1beccd3fe8feed3f86179 </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/blockstream-green/blockstream-green-3.8.6-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/blockstream-green/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/sparrowwallet/sparrow/releases/tag/1.6.6'>2022-08-04</a> | <a href='https://sparrowwallet.com/' class='project-name'>sparrow</a> | <a href='https://github.com/sparrowwallet/sparrow/releases/tag/1.6.6'>1.6.6</a> | <a href='https://github.com/sparrowwallet/sparrow/releases/download/1.6.6/sparrow-1.6.6-manifest.txt'> factory 6ff78913f2c5cdf2ee4439889b0f350f82a8d2d3dea1c12d3d37e726da2f1d95 </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/sparrow/sparrow-1.6.6-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/sparrow/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/Coldcard/firmware/releases/tag/2022-07-29T1817-v5.0.6'>2022-07-29</a> | <a href='https://coldcard.com' class='project-name'>coldcard</a> | <a href='https://github.com/Coldcard/firmware/releases/tag/2022-07-29T1817-v5.0.6'>v5.0.6</a> | <a href='https://raw.githubusercontent.com/Coldcard/firmware/master/releases/signatures.txt'> factory 54fe530ea7d1cdaf1e3f80676c711e3bb1d8bdda326bb19ea827476e29be45b5 </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/coldcard/coldcard-5.0.6-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/coldcard/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/lightningnetwork/lnd/releases/tag/v0.15.0-beta'>2022-07-25</a> | <a href='https://lightning.network/' class='project-name'>lnd</a> | <a href='https://github.com/lightningnetwork/lnd/releases/tag/v0.15.0-beta'>v0.15.0-beta</a> | <a href='https://github.com/lightningnetwork/lnd/releases/download/v0.15.0-beta/manifest-v0.15.0-beta.txt'> factory </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/lnd/lnd-v0.15.0-beta-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/lnd/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/Coldcard/firmware/releases/tag/2022-07-20T1508-v5.0.5'>2022-07-25</a> | <a href='https://coldcard.com' class='project-name'>coldcard</a> | <a href='https://github.com/Coldcard/firmware/releases/tag/2022-07-20T1508-v5.0.5'>v5.0.5</a> | <a href='https://raw.githubusercontent.com/Coldcard/firmware/master/releases/signatures.txt'> factory d1ef27ee22e0527a19851bbb1fe19f0564fd070d9e01d33c3666ba458529a077 </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/coldcard/coldcard-5.0.5-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/coldcard/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/Blockstream/green_android/releases/tag/release_3.8.5'>2022-07-25</a> | <a href='https://blockstream.com/' class='project-name'>blockstream-green</a> | <a href='https://github.com/Blockstream/green_android/releases/tag/release_3.8.5'>v3.8.5</a> | <a href='https://github.com/Blockstream/green_android/releases/tag/release_3.8.5'> factory 23ce823f1af296ccbc3c457cd742628b7dd1eaed0b538226c497f2cbbab8f481 </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/blockstream-green/blockstream-green-3.8.5-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/blockstream-green/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/sparrowwallet/sparrow/releases/tag/1.6.5'>2022-07-21</a> | <a href='https://sparrowwallet.com/' class='project-name'>sparrow</a> | <a href='https://github.com/sparrowwallet/sparrow/releases/tag/1.6.5'>1.6.5</a> | <a href='https://github.com/sparrowwallet/sparrow/releases/download/1.6.5/sparrow-1.6.5-manifest.txt'> factory </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/sparrow/sparrow-1.6.5-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/sparrow/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/zkSNACKs/WalletWasabi/releases/v2.0.1.2'>2022-07-21</a> | <a href='https://wasabiwallet.io/' class='project-name'>wasabi</a> | <a href='https://github.com/zkSNACKs/WalletWasabi/releases/tag/v2.0.1.2'>v2.0.1.2</a> | <a href='https://github.com/zkSNACKs/WalletWasabi/releases/tag/v2.0.1.2'> factory </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/wasabi/wasabi-v2.0.1.2-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/wasabi/artifacts.sh' class=bot>build bot</a></li>
<li>
<a href="https://github.com/Coldcard/firmware/releases/tag/2022-07-20T1508-v5.0.5">2022-07-21</a> |
<a href="https://coldcard.com/" class="project-name">COLDCARD</a> |
<a href="https://github.com/Coldcard/firmware/releases/tag/2022-07-20T1508-v5.0.5">v5.0.5</a> |
<a href="https://twitter.com/xavierfiechter/status/1549876071914508288">tweet</a> |
<a href="https://www.youtube.com/watch?v=1vYXUN7qCF0">video proof</a> |
<a href="https://gist.github.com/xavierfiechter/0b7323318ada8937f817606dff8fdb57">notes</a>
</li>
<li><a href='https://github.com/Coldcard/firmware/releases/tag/2022-05-04T1258-v4.1.5'>2022-06-02</a> | <a href='https://coldcard.com' class='project-name'>coldcard-mk3</a> | <a href='https://github.com/Coldcard/firmware/releases/tag/2022-05-04T1258-v4.1.5'>v4.1.5</a> | <a href='https://raw.githubusercontent.com/Coldcard/firmware/v4-legacy/releases/signatures.txt'> factory ee2ecb6b66d6cb169d9161ad41f4d9a9b491c9d7373645ff9be6cd5839e2c61e </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/coldcard-mk3/coldcard-mk3-4.1.5-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/coldcard-mk3/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/Coldcard/firmware/releases/tag/2022-05-27T1500-v5.0.4'>2022-05-31</a> | <a href='https://coldcard.com' class='project-name'>coldcard</a> | <a href='https://github.com/Coldcard/firmware/releases/tag/2022-05-27T1500-v5.0.4'>v5.0.4</a> | <a href='https://raw.githubusercontent.com/Coldcard/firmware/master/releases/signatures.txt'> factory 29d3c6bd69e296de546f94faed428a4de9cdf490b737c4461b0b2b6b718bfa9c </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/coldcard/coldcard-5.0.4-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/coldcard/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/LN-Zap/zap-android/releases/tag/v0.5.6-beta'>2022-05-24</a> | <a href='http://zaphq.io/' class='project-name'>zap-android</a> | <a href='https://github.com/LN-Zap/zap-android/releases/tag/v0.5.6-beta'>v0.5.6-beta</a> | <a href='https://github.com/LN-Zap/zap-android/releases/tag/v0.5.6-beta'> factory 66973d9bc13b6e21e583594e07c6ed1efd3825157577fa5251430e51808b93cc </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/zap-android/zap-android-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/zap-android/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/zkSNACKs/WalletWasabi/releases/v1.1.13.1'>2022-05-24</a> | <a href='https://wasabiwallet.io/' class='project-name'>wasabi</a> | <a href='https://github.com/zkSNACKs/WalletWasabi/releases/tag/v1.1.13.1'>v1.1.13.1</a> | <a href='https://github.com/zkSNACKs/WalletWasabi/releases/tag/v1.1.13.1'> factory 85ad5f8438b5e355a08ccc0f766326dc5c31aa9d6e9d4a622932976d364994b2 </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/wasabi/wasabi-video.webm'>video proof</a> | no notes | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/wasabi/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/sparrowwallet/sparrow/releases/tag/1.6.4'>2022-05-24</a> | <a href='https://sparrowwallet.com/' class='project-name'>sparrow</a> | <a href='https://github.com/sparrowwallet/sparrow/releases/tag/1.6.4'>1.6.4</a> | <a href='https://github.com/sparrowwallet/sparrow/releases/download/1.6.4/sparrow-1.6.4-manifest.txt'> factory 33e1f901f7dda2a6f9e23519c81e95a348dfcfa621c7b060d60733c419f4dd29 </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/sparrow/sparrow-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/sparrow/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/btcontract/wallet/releases/tag/2.4.27'>2022-05-24</a> | <a href='https://sbw.app/' class='project-name'>simple-bitcoin-wallet</a> | <a href='https://github.com/btcontract/wallet/releases/tag/2.4.27'>2.4.27</a> | <a href='https://github.com/btcontract/wallet/releases/tag/2.4.27'> factory cb2955f6accfea4510fda6594a45ecc76ff2f45221e8cf71099c96eaaa80b193 </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/simple-bitcoin-wallet/simple-bitcoin-wallet-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/simple-bitcoin-wallet/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/mycelium-com/wallet-android/releases/tag/v3.15.0.0'>2022-05-24</a> | <a href='https://wallet.mycelium.com/' class='project-name'>mycelium-android</a> | <a href='https://github.com/mycelium-com/wallet-android/releases/tag/v3.15.0.0'>v3.15.0.0</a> | <a href='https://github.com/mycelium-com/wallet-android/releases/tag/v3.15.0.0'> factory 58fba3e1c8f622a2814526026773d398b021babb98b3699e84e87f461fa24d41 </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/mycelium-android/mycelium-android-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/mycelium-android/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/lightningnetwork/lnd/releases/tag/v0.14.1-beta'>2022-05-24</a> | <a href='https://lightning.network/' class='project-name'>lnd</a> | <a href='https://github.com/lightningnetwork/lnd/releases/tag/v0.14.1-beta'>v0.14.1-beta</a> | <a href='https://github.com/lightningnetwork/lnd/releases/download/v0.14.1-beta/manifest-v0.14.1-beta.txt'> factory 885498d9b2fece92cbdae83082f38e2dbf74cba479eb8e33eafad548fd640c1e </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/lnd/lnd-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/lnd/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/Coldcard/firmware/releases/tag/2022-05-04T1252-v5.0.3'>2022-05-24</a> | <a href='https://coldcard.com' class='project-name'>coldcard</a> | <a href='https://github.com/Coldcard/firmware/releases/tag/2022-05-04T1252-v5.0.3'>v5.0.3</a> | <a href='https://raw.githubusercontent.com/Coldcard/firmware/master/releases/signatures.txt'> factory 806f1685172262e1f851e5a7b66ca7fb26b2cd76cae2188bc33c739d74f936ec </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/coldcard/coldcard-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/coldcard/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/Blockstream/green_android/releases/tag/release_3.8.2'>2022-05-24</a> | <a href='https://blockstream.com/' class='project-name'>blockstream-green</a> | <a href='https://github.com/Blockstream/green_android/releases/tag/release_3.8.2'>v3.8.2</a> | <a href='https://github.com/Blockstream/green_android/releases/tag/release_3.8.2'> factory e77000645f9416f8c612821122378a1f0d1bd157fc00996f9291cb976c8a6b15 </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/blockstream-green/blockstream-green-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/blockstream-green/artifacts.sh' class=bot>build bot</a></li>
<li><a href='https://github.com/bitcoin/bitcoin/releases/tag/v23.0'>2022-05-24</a> | <a href='https://bitcoin.org/' class='project-name'>bitcoin-core</a> | <a href='https://github.com/bitcoin/bitcoin/releases/tag/v23.0'>v23.0</a> | <a href='https://bitcoincore.org/bin/bitcoin-core-v23.0/SHA256SUMS'> factory 76538b44e22b1171538f833f66635240ba07953a1cd5126127ee232276b55b18 </a>| <a href='https://github.com/coinkite/bitcoinbinary.org/raw/main/bitcoin-core/bitcoin-core-video.webm'>video proof</a> | <a href='https://github.com/coinkite/bitcoinbinary.org/blob/main/bitcoin-core/artifacts.sh' class=bot>build bot</a></li>
<li><a href="https://github.com/Coldcard/firmware/releases/tag/2022-05-04T1254-v5.0.3">2022-05-18</a> | <a href="https://coldcard.com/" class="project-name">COLDCARD</a> | <a href="https://github.com/Coldcard/firmware/releases/tag/2022-05-04T1254-v5.0.3">v5.0.3</a> | <a href="https://youtu.be/Hy_Ni0ZDUYY">video proof</a> | <a href="https://gist.github.com/xavierfiechter/0b7323318ada8937f817606dff8fdb57">notes</a> | <a href="https://github.com/xavierfiechter">xavierfiechter</a>
<li><a href="https://github.com/Coldcard/firmware/releases/tag/2022-05-04T1254-v5.0.3">2022-05-17</a> | <a href="https://coldcardwallet.com/" class="project-name">COLDCARD</a> | <a href="https://github.com/Coldcard/firmware/releases/tag/2022-05-04T1254-v5.0.3">v5.0.3</a> | <a href="https://raw.githubusercontent.com/Coldcard/firmware/master/releases/signatures.txt"> factory 53ad873c20823886b11e4ea8f6482eb8699fccc5de876ea30c63b2235be0c8c1 </a>| <a href="https://youtu.be/BR9nGiooWQ4">video proof</a> | no notes | <a href="https://github.com/kdunn926">kdunn926</a>
<li><a href="https://github.com/lightningnetwork/lnd/releases/tag/v0.14.1-beta">2022-01-21</a> | <a href="https://github.com/lightningnetwork/lnd" class="project-name">LND</a> | <a href="https://lightning.engineering/">v0.14.1-beta</a> | <a href="https://github.com/lightningnetwork/lnd/releases/download/v0.14.1-beta/manifest-v0.14.1-beta.txt"> manifest-v0.14.1-beta.txt </a>| <a href="https://youtu.be/g_0lpic6OsQ">video proof</a> | no notes | <a href="https://github.com/lucasmoten">lucasmoten</a>
<li><a href="https://github.com/sparrowwallet/sparrow/releases/tag/1.5.3">2021-12-09</a> | <a href="https://sparrowwallet.com/" class="project-name">Sparrow Wallet</a> | <a href="https://github.com/sparrowwallet/sparrow/releases/tag/1.5.3">v1.5.3</a> | <a href="https://github.com/sparrowwallet/sparrow/releases/download/1.5.3/sparrow-1.5.3-manifest.txt"> 52c0b83945ea9822d53e4d01ae372327510668d457f03509dee7da690feb340e </a> | <a href="https://youtu.be/8isF_7pJFaU">video proof</a> | <a href="https://github.com/sparrowwallet/sparrow/blob/master/docs/reproducible.md">notes</a> | <a href="https://github.com/RobertMiranda">RobertMiranda</a>
<li><a href="https://github.com/sparrowwallet/sparrow/releases/tag/1.5.2">2021-12-02</a> | <a href="https://sparrowwallet.com/" class="project-name">Sparrow Wallet</a> | <a href="https://github.com/sparrowwallet/sparrow/releases/tag/1.5.2">v1.5.2</a> | <a href="https://github.com/sparrowwallet/sparrow/releases/download/1.5.2/sparrow-1.5.2-manifest.txt"> 2d4341e17cd2bedd46962890361075d7c4e1b004d8e06205b2801347475cd96c </a> | <a href="https://youtu.be/NoV7Bk6ZfHM">video proof</a> | <a href="https://github.com/sparrowwallet/sparrow/blob/master/docs/reproducible.md">notes</a> | <a href="https://github.com/RobertMiranda">RobertMiranda</a>
<li><a href="https://twitter.com/wasabiwallet/status/1455595564242898945">2021-11-02</a> | <a href="https://wasabiwallet.io/" class="project-name">Wasabi Wallet</a> | <a href="https://github.com/zkSNACKs/WalletWasabi/releases/tag/v1.1.13.0">v1.1.13.0</a> | <a href="https://github.com/zkSNACKs/WalletWasabi/releases/download/v1.1.13.0/Wasabi-1.1.13.msi"> 762114c27de5931360c47caa7dbe8a9889b767eca9663e071966dedeb41f108d </a> | <a href="https://youtu.be/KEI5Lbi0Kt4">video proof</a> | <a href="https://github.com/zkSNACKs/WalletWasabi/issues/6315#issuecomment-961437957">notes</a> | <a href="https://github.com/eriknylund">eriknylund</a>
<li><a href="https://twitter.com/SimpleBtcWallet/status/1452661845354065921">2021-10-25</a> | <a href="https://lightning-wallet.com/" class="project-name">Simple Bitcoin Wallet</a> | <a href="https://github.com/btcontract/wallet/releases/tag/2.2.16">2.2.16</a> | <a href="https://github.com/btcontract/wallet/releases/download/2.2.16/SBW-2.2.16.apk"> 5f505c2829cc5fe74cf1d643dcd89b3464ed59f0aa3067becd426f8820464e86 </a> | <a href="https://youtu.be/PSDB9ndJZFI">video proof</a> | <a href="https://gist.github.com/eriknylund/0b5e07a044684b12b555209483007436">notes</a> | <a href="https://github.com/eriknylund">eriknylund</a>
<li><a href="https://github.com/sparrowwallet/sparrow/releases/tag/1.5.1">2021-10-12</a> | <a href="https://sparrowwallet.com/" class="project-name">Sparrow Wallet</a> | <a href="https://github.com/sparrowwallet/sparrow/releases/tag/1.5.1">v1.5.1</a> | <a href="https://github.com/sparrowwallet/sparrow/releases/download/1.5.0/sparrow-1.5.1-manifest.txt"> 0024d176d0e7b75d9f293e485aed42d86852db34e0ce5c5554abcbf9b54a5bd9 </a> | <a href="https://tube.tchncs.de/w/u7KukeF4a2UEVtfvBnwpzL">video proof</a> | <a href="https://github.com/sparrowwallet/sparrow/blob/master/docs/reproducible.md">notes</a> | <a href="https://github.com/RequestPrivacy">RequestPrivacy</a>
<li><a href="https://github.com/sparrowwallet/sparrow/releases/tag/1.5.0">2021-09-26</a> | <a href="https://sparrowwallet.com/" class="project-name">Sparrow Wallet</a> | <a href="https://github.com/sparrowwallet/sparrow/releases/tag/1.5.0">v1.5.0</a> | <a href="https://github.com/sparrowwallet/sparrow/releases/download/1.5.0/sparrow-1.5.0-manifest.txt"> 968045e11d21a42f04a794809f08fad973c68b36998302e44b8778c0c847e05a </a> | <a href="https://tube.tchncs.de/w/x2JQxxKqy15cFqz4G1p49U">video proof</a> | <a href="https://github.com/sparrowwallet/sparrow/blob/master/docs/reproducible.md">notes</a> | <a href="https://github.com/RequestPrivacy">RequestPrivacy</a>
<li><a href="https://github.com/Blockstream/green_android/releases/tag/release_3.7.1">2021-09-16</a> | <a href="https://blockstream.com/green/" class="project-name">Blockstream Green</a> | <a href="https://github.com/Blockstream/green_android/releases/tag/release_3.7.1">v3.7.1</a> | <a href="https://github.com/Blockstream/green_android/releases/download/release_3.7.1/SHA256SUMS.asc"> 61d033cc36075f51fd234bc2cb699e1c73bd5070ddcddba54c0aa5fe2cc4cc14 </a> | <a href="https://youtu.be/Lm346QcHkf4">video proof</a> | <a href="https://gist.github.com/eriknylund/d9cf18391e5f0717e398139b9ad9e7e1">notes</a> | <a href="https://github.com/eriknylund">eriknylund</a>
<li><a href="https://bitcoincore.org/en/2021/09/13/release-22.0/">2021-09-13</a> | <a href="https://bitcoincore.org/" class="project-name">Bitcoin Core</a> | <a href="https://bitcoincore.org/en/download/">v22.0</a> | <a href="https://github.com/bitcoin-core/guix.sigs/commit/d80eb99327666f6a12a3326a33848b532d3ca40f"> v22.0 all.SHA256SUMS </a>| <a href="https://youtu.be/329vghcGP9w">video proof</a> | <a href="https://gist.github.com/eriknylund/a58d7587f785881eee0aea10bba60546">notes</a> | <a href="https://github.com/eriknylund">eriknylund</a>
<li><a href="https://github.com/LN-Zap/zap-android/releases/tag/v0.5.1-beta">2021-09-11</a> | <a href="https://zaphq.io/" class="project-name">Zap</a> | <a href="https://github.com/LN-Zap/zap-android/releases/tag/v0.5.1-beta">v0.5.1-beta</a> | <a href="https://github.com/LN-Zap/zap-android/releases/download/v0.5.1-beta/zap-android-0.5.1-beta.31.-release.apk"> dd39d36db523113f303e7116ca946f58ceef1db578f8f11e81289da318597b22 </a> | <a href="https://youtu.be/1c-SQyefK2Q">video proof</a> | <a href="https://gist.github.com/eriknylund/7535ce60960c71575c8aa22b2ebe4331">notes</a> | <a href="https://github.com/eriknylund">eriknylund</a>
<li><a href="https://github.com/sparrowwallet/sparrow/releases/tag/1.5.0-beta1">2021-09-06</a> | <a href="https://sparrowwallet.com/" class="project-name">Sparrow Wallet</a> | <a href="https://github.com/sparrowwallet/sparrow/releases/tag/1.5.0-beta1">v1.5.0-beta1</a> | <a href="https://github.com/sparrowwallet/sparrow/releases/download/1.5.0-beta1/sparrow-1.5.0-beta1-manifest.txt"> 009ad3370ea6d97217a96fc610868dc4de5faceacf6f1c9886f4d655bad0ec99</a> | <a href="https://youtu.be/quQiDk6iJAU">video proof</a> | <a href="https://gist.github.com/eriknylund/dbfd0750ff30de40bf15bd14d5c5afe5">notes</a> | <a href="https://github.com/eriknylund">eriknylund</a>
<li><a href="https://twitter.com/COLDCARDwallet/status/1433495331438747648?s=20">2021-09-02</a> | <a href="https://coldcardwallet.com/" class="project-name">COLDCARD</a> | <a href="https://github.com/Coldcard/firmware/releases/tag/2021-09-02T1752-v4.1.3">v4.1.3</a> | <a href="https://raw.githubusercontent.com/Coldcard/firmware/master/releases/signatures.txt"> factory dedfcf8385e35dbdbb26b92f8c0667105404062ad83c8830d809cf9193434d9c </a>| <a href="https://www.youtube.com/watch?v=uX_iSYN9RjQ">video proof</a> | <a href="https://gist.github.com/xavierfiechter/0b7323318ada8937f817606dff8fdb57">notes</a> | <a href="https://github.com/xavierfiechter">xavierfiechter</a>
<li><a href="https://twitter.com/COLDCARDwallet/status/1433495331438747648?s=20">2021-09-02</a> | <a href="https://coldcardwallet.com/" class="project-name">COLDCARD</a> | <a href="https://github.com/Coldcard/firmware/releases/tag/2021-09-02T1752-v4.1.3">v4.1.3</a> | <a href="https://raw.githubusercontent.com/Coldcard/firmware/master/releases/signatures.txt"> factory dedfcf8385e35dbdbb26b92f8c0667105404062ad83c8830d809cf9193434d9c </a> | <a href="https://www.twitch.tv/videos/1137191315">video proof</a> | no notes | <a href="https://github.com/achow101">achow101</a>
<li><a href="https://github.com/trezor/trezor-firmware/blob/master/core/CHANGELOG.md#242-16th-september-2021">2021-08-27</a> | <a href="https://trezor.io/" class="project-name">Trezor T</a> | <a href="https://github.com/trezor/trezor-firmware/tree/core/v2.4.2">core/v2.4.2</a> | <a href="https://data.trezor.io/firmware/2/trezor-2.4.2.bin"> factory 67946dee311e4606c468fe2e529530c363ee633c7f2ef965ddaa4688b6c31c4e</a> | <a href="https://youtu.be/eAm3UUSmRTM">video proof</a> | <a href="https://gist.github.com/eriknylund/cfc778c4d0424b13d1dbd2abdd418174">notes</a> | <a href="https://github.com/eriknylund">eriknylund</a>
<li><a href="https://github.com/mycelium-com/wallet-android/releases/tag/v3.11.0.4">2021-08-12</a> | <a href="https://wallet.mycelium.com/" class="project-name">Mycelium</a> | <a href="https://github.com/mycelium-com/wallet-android/releases/tag/v3.11.0.4">v3.11.0.4</a> | <a href="https://play.google.com/store/apps/details?id=com.mycelium.wallet"> 9e460dd03ef9954fed7c8da202ab6a10d9e920b98d7224acb50770a222250e8b</a> | <a href="https://youtu.be/dGhnQ5titxs">video proof</a> | <a href="https://gist.github.com/eriknylund/d4525058d605647fdf3a37fe4f174a40">notes</a> | <a href="https://github.com/eriknylund">eriknylund</a>
<li><a href="https://github.com/lightningnetwork/lnd/releases/tag/v0.13.1-beta">2021-07-20</a> | <a href="https://github.com/lightningnetwork/lnd" class="project-name">LND</a> | <a href="https://lightning.engineering/">v0.13.1-beta</a> | <a href="https://github.com/lightningnetwork/lnd/releases/download/v0.13.1-beta/manifest-v0.13.1-beta.txt"> manifest-v0.13.1-beta.txt </a>| <a href="https://youtu.be/k3Hmy-wpdHE">video proof</a> | no notes | <a href="https://github.com/benthecarman">benthecarman</a>
<li><a href="https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTES">2021-07-19</a> | <a href="https://electrum.org" class="project-name">Electrum</a> | <a href="https://github.com/spesmilo/electrum/releases/tag/4.1.5">4.1.5</a> | <a href="https://download.electrum.org/4.1.5/Electrum-4.1.5.tar.gz.ThomasV.asc"> 91472e281f604a7a687faa4b339bf5e484bd2bec82a495ea45bfa014e52719a1 </a> | <a href="https://youtu.be/LGBYCIJp_T4">video proof</a> | <a href="https://gist.github.com/eriknylund/ad768adf63fe52cd07aa3cb84e195d7f">notes</a> | <a href="https://github.com/eriknylund">eriknylund</a>
<li><a href="https://github.com/trezor/trezor-firmware/blob/master/core/CHANGELOG.md#241-14th-july-2021">2021-07-14</a> | <a href="https://trezor.io/" class="project-name">Trezor T</a> | <a href="https://github.com/trezor/trezor-firmware/tree/core/v2.4.1">core/v2.4.1</a> | <a href="https://data.trezor.io/firmware/2/trezor-2.4.1.bin">factory b8925f4fcfd34f3b8cfdcbcf68183565953f14f00448e437f68b8cd8c6abb6e0</a> | <a href="https://www.twitch.tv/videos/1137461454">video proof</a> | no notes | <a href="https://github.com/achow101">achow101</a>
<li><a href="https://github.com/trezor/trezor-firmware/blob/legacy/v1.10.2/legacy/firmware/CHANGELOG.md#1102-14th-july-2021">2021-07-14</a> | <a href="https://trezor.io/" class="project-name">Trezor 1</a> | <a href="https://github.com/trezor/trezor-firmware/tree/legacy/v1.10.2">legacy/v1.10.2</a> | <a href="https://data.trezor.io/firmware/1/trezor-1.10.2.bin">factory 7ed716b2813f8b81983700e6d286f6ff17a17e830cb85954fe31e9a7ec9388b8</a> | <a href="https://www.twitch.tv/videos/1137495856">video proof</a> | no notes | <a href="https://github.com/achow101">achow101</a>
<li><a href="https://github.com/digitalbitbox/bitbox02-firmware/releases/tag/firmware%2Fv9.6.0">2021-05-20</a> | <a href="https://shiftcrypto.ch/bitbox02/" class="project-name">BitBox02</a> | <a href="https://github.com/digitalbitbox/bitbox02-firmware/tree/firmware/v9.6.0">v9.6.0</a> | <a href="https://github.com/digitalbitbox/bitbox02-firmware/releases/download/firmware-btc-only%2Fv9.6.0/firmware-btc.v9.6.0.signed.bin">factory 13bffb0824ca6be959dd73c9ede6e374f9f4df7b090d521b54758dd971fa6bf1</a> | <a href="https://www.twitch.tv/videos/1138063795">video proof</a> | no notes | <a href="https://github.com/achow101">achow101</a>
<li><a href="https://github.com/zkSNACKs/WalletWasabi/releases/tag/v1.1.12">2020-08-05</a> | <a href="https://wasabiwallet.io/" class="project-name">Wasabi Wallet</a> | <a href="https://github.com/zkSNACKs/WalletWasabi/releases/tag/v1.1.12">v1.1.12</a> | <a href="https://github.com/zkSNACKs/WalletWasabi/releases/download/v1.1.12/Wasabi-1.1.12.msi">factory 9aef2cf3f76a479c3d0425fc4e5a42b2cfb30406b1d62ff8cc60e602c4f97e39</a> | <a href="https://youtu.be/t88xcZw5PX4">video proof</a> | <a href="https://gist.github.com/eriknylund/1cef7d03fe0e659f1849683df520bb73">notes</a> | <a href="https://github.com/eriknylund">eriknylund</a>
</ul>
<p class="cta"> Submit repro build proof<a href="https://github.com/coinkite/bitcoinbinary.org/pulls"> here.</a>
<hr>
<h2>FAQ</h2>
<ul class="faq">
<li><b> But it doesn't match!</b> Yes, you don't have factory keys. All but 64 bytes of the signature itself will be exactly same. Mask out those bytes to do diff.
<li><b>Who can submit?</b> Anyone. Ideally not the project maintainer, but even that might help others see the process on video to repro themselves.
<li><b>Can I submit the same version already proved?</b> Yes. A few proofs of the same are welcomed!
<li><b>What are the specs for the video?</b>No audio, smallets resolution where the text still legible, terminal only.
<li><b>What profile should I link to?</b>Any profile where you have reputation.
<li><b>What's SHASUM?</b> TL;DR a summary digest that you can use to compare the bytes to make sure they match. More info <a href="https://www.commandlinux.com/man-page/man1/shasum.1.html">here</a>.
<li><b>Who maintains this site?</b>At the moment @nvk who hopes to have more maintainers.<i>__looking at you__</i> <a href="https://github.com/coinkite/bitcoinbinary.org"> come help!</a>
<li><b>Why should people care?</b>Most users are not capable of building from source code themselves, but we can at least get them able enough to check signatures and shasums. When reputable people who can tell everyone they were able to reproduce the project's build, others at least have a secondary source of validation.
<li><b>What is the </b><a href='#' class=bot>build bot</a><b>?</b> This is a GitHub automation create to automaticaly try to build a few of the projects. It is not as <i>trustworthy</i> as a reputable community member, but it is at least one more source of evidence. If click on the "Build Bot" tag, it will take you to the build script used.
</ul>
<h2>Other Resources</h2>
<ul class="faq">
<li><a href="https://walletsrecovery.org/">WalletsRecovery</a> - Wallets Derivation Paths and other recovery information.
<li>"Bitcoin Extended Public Key Converter" by Jameson Lopp <a href="https://jlopp.github.io/xpub-converter/" rel="nofollow">↗︎</a></li>
<li>"Mnemonic Code Converter" by Ian Coleman <a href="https://iancoleman.io/bip39/" rel="nofollow">↗︎</a></li>
<li>"HD-Wallet Scanner" by Alex Kaul <a href="https://github.com/alexk111/HD-Wallet-Scanner/">↗︎</a></li>
<li>"PSBT Toolkit" by Ben Carman <a href="https://github.com/benthecarman/PSBT-Toolkit/releases">↗︎</a></li>
<li>[Released] Automated Scanner & BIP39 Recovery Feature for Electrum by Luke Childs <a href="https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTES">↗︎</a></li>
</ul>
<hr>
<h2>Definitions from reproducible-builds.org</h2>
<b>When is a build reproducible?</b>
<p>A build is <b>reproducible</b> if given the same source code, build environment
and build instructions, any party can recreate bit-by-bit identical copies of
all specified artifacts.</p>
<p>The relevant attributes of the build environment, the build instructions and
the source code as well as the expected reproducible artifacts are defined by
the authors or distributors. The artifacts of a build are the parts of the
build results that are the desired primary output.</p>
<b>Explanations</b>
<p><b>Source code</b> is usually a checkout from version control at a specific
revision or a source code archive.</p>
<p><b>Relevant attributes of the build environment</b> would usually include
dependencies and their versions, build configuration flags and environment
variables as far as they are used by the build system (eg. the locale). It is
preferable to reduce this set of attributes.</p>
<p><strong>Artifacts</strong> would include executables, distribution packages or filesystem
images. They would not usually include build logs or similar ancillary outputs.</p>
<p>The reproducibility of artifacts is <strong>verified</strong> by bit-by-bit comparison. This
is usually performed using cryptographically secure hash functions.</p>
<p><b>Authors or distributors</b> means parties that claim reproducibility of a set
of artifacts. These may be upstream authors, distribution maintainers or any
other distributor.</p>
<script type="text/javascript">
function darkMode() {
var element = document.body;
element.classList.toggle("dark-mode");
}
</script>