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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
|
Delivery-date: Fri, 22 Aug 2025 15:05:57 -0700
Received: from mail-qt1-f184.google.com ([209.85.160.184])
by mail.fairlystable.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
(Exim 4.94.2)
(envelope-from <bitcoindev+bncBCL7RHHJZYJBBN6TUPCQMGQEN2ZMRYQ@googlegroups.com>)
id 1upZtS-0006qV-MT
for bitcoindev@gnusha.org; Fri, 22 Aug 2025 15:05:57 -0700
Received: by mail-qt1-f184.google.com with SMTP id d75a77b69052e-4b10946ab41sf61291561cf.0
for <bitcoindev@gnusha.org>; Fri, 22 Aug 2025 15:05:54 -0700 (PDT)
ARC-Seal: i=2; a=rsa-sha256; t=1755900348; cv=pass;
d=google.com; s=arc-20240605;
b=PWUj9XD6voAgsAFO6bKOjkXIlfCsON/ZOT7li1kVhCcA0whgcMp51zHUoGgijGGFjH
kOshzSDoA127+kr2JTgphOFzY+tqgnhb3MWDem5UorBoGvJsoG5k3yNlAnaO49OhyZJV
ONQTTmp1CkQLvpV4mvuicx7dRE/E6y6GdWlj4+Twa/ggwwrFfEvCK81qfVdA2gTvHrfN
eG17tZbpkJPQjLyIDX/LSEqC4mVE0hiT/YVyqJvLIQhVU4bBe/r5WmPKDc86ex2CI+GI
tsB0tSeWpcPG5EamGisXkk4SMtSkcxXTQgXcbBuNrpXN/7XjWUBuocQnp2GfuJ3wsT7b
Ww3A==
ARC-Message-Signature: i=2; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20240605;
h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
:list-id:mailing-list:precedence:reply-to:mime-version:feedback-id
:references:in-reply-to:message-id:subject:cc:from:to:date
:dkim-signature;
bh=ZYliD66L+2M2m3AodydHjxAyFCJZV6RrfyDLDp7pIWk=;
fh=0Ds/5+QsMA9arv62If/zmPOmyQOqxONYq8XimHanGa0=;
b=OCijgv17FKZ8GtlxtUwJA3S+v8+pzLKGhESWc978Ej8Sl7dFsW7MdEJueiFa9t/p6e
N9ZlphNWaa4xkQYdi/83neYMHlJAMw0VMdJmzJnk1M23vTIq4TD9NcvcoG3xFgvyXwCa
sgzK3YN69y7uoyKOSMcSTQFE8yH/r+30gIEjd0CUBwUwlde3TnIftXdek2ovfjaM1t4/
vbfSjHflQZdbnbIVyZQRIU7rwQEnZ+vuylPfAk74FUsE2az+lhucGcmVWiP+Vylit6vR
90s9v6ml1ZHaRzO2E2rTim7YHzH3vTAcOcufcnA60ip1GauQroini1eLdixiiHIF8tg6
QRNA==;
darn=gnusha.org
ARC-Authentication-Results: i=2; gmr-mx.google.com;
dkim=pass header.i=@proton.me header.s=protonmail header.b=ZW9mcYmn;
spf=pass (google.com: domain of conduition@proton.me designates 79.135.106.29 as permitted sender) smtp.mailfrom=conduition@proton.me;
dmarc=pass (p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=proton.me
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=googlegroups.com; s=20230601; t=1755900348; x=1756505148; darn=gnusha.org;
h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
:list-id:mailing-list:precedence:reply-to
:x-original-authentication-results:x-original-sender:mime-version
:feedback-id:references:in-reply-to:message-id:subject:cc:from:to
:date:from:to:cc:subject:date:message-id:reply-to;
bh=ZYliD66L+2M2m3AodydHjxAyFCJZV6RrfyDLDp7pIWk=;
b=gMDaaL0fNiU1vQuX4nUSNG9gK+527BK+Ew5pyGVFiZf3CuPHL9NEjE9cQv4r399LNz
D3yh1bnoJbrN5ijA7DbZ688KnL1DQxDp3O55Xo9fXMVX38O7ukcIbEuA+vobZEovvll0
QkL372BHPa5vBRztJ2GZ5QbbCECXV3DdZCbPGf4PWN+vcFxiw8ryKez9flQc8/Qo5j06
8isXZlZ1UnqopJap1R6mm2gDq94SOWKQ3RjOxMLLKWpjtEtPerIPLceHddmILjyrxp0S
um0xW7hom+jVGUZ52nceblcJJiRevNcUQssOrtykugcTV6+CzwTm3Go2zFfU8FVfqcTf
gerg==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=1e100.net; s=20230601; t=1755900348; x=1756505148;
h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
:list-id:mailing-list:precedence:reply-to
:x-original-authentication-results:x-original-sender:mime-version
:feedback-id:references:in-reply-to:message-id:subject:cc:from:to
:date:x-beenthere:x-gm-message-state:from:to:cc:subject:date
:message-id:reply-to;
bh=ZYliD66L+2M2m3AodydHjxAyFCJZV6RrfyDLDp7pIWk=;
b=croQaOM30k3xRop0utXnFHGLewrU2lZ0VCKaMO04Xp3MnyP5rLSorZCZ7NO2wKVgH4
CMiOgzYIJy+zRQjDNZuiD2oCglNhfNz7SyEN6/gI96hkyA92+1MBV/zgusz/0h5tdDSj
+GW7+PjrGgx6WJz80qP/9yaZJFKkeCWrxUWH5rmE7oRaHKHwxjvKmWT9PWxAgVI2ZSvy
HcBtG3bHB6XJQTL4NXp8laN6BgosdVTI5dxeSuIM2g4EC4id5e+MMFj/CEC64s5sVhcq
c2c9HEd+HqTYimhFu0aHlF7f6VdY78dmUci31EvOSH2bqBq7vrz911qrtgJvyCeV3Mk7
860Q==
X-Forwarded-Encrypted: i=2; AJvYcCXM8S7ybCM4aTd9sIFRLJuvNkbR0oTm1ptmQNqSnCjaOOcTUNIqEf7QAXUAUjiW/PXi2DNy64nxo2DB@gnusha.org
X-Gm-Message-State: AOJu0YyhuujSvon7CtpoZEZ2aPR4qYx2sSerouF4wysEWiP++5Wi9zC8
nPymjlxdhJa6xjOTHyLIuO9o64lndgBWB3ZrRiWg4R95cY3xBTDWObEZ
X-Google-Smtp-Source: AGHT+IGn8SQUuS1qtT6yl6lwFVHu3sNH7+hpQMOG7UrXdF1RUkFO2CCBzDU7IZscgcL/DUedT9NVEQ==
X-Received: by 2002:a05:622a:8c4:b0:4b0:6a89:7485 with SMTP id d75a77b69052e-4b2aaf14987mr63909251cf.19.1755900348052;
Fri, 22 Aug 2025 15:05:48 -0700 (PDT)
X-BeenThere: bitcoindev@googlegroups.com; h=AZMbMZeEPjO40+wpfbudg7DwqE+SHy4Wkv3YGcIl7JGOFqRRMw==
Received: by 2002:a05:622a:1355:b0:4b0:63a8:673 with SMTP id
d75a77b69052e-4b29d8df5d0ls25455201cf.1.-pod-prod-00-us; Fri, 22 Aug 2025
15:05:42 -0700 (PDT)
X-Forwarded-Encrypted: i=2; AJvYcCW9U/28hvIQfbEqdvfXDD+HXCJyVzXbTph086QgaxyG0v3slRnjeZPJA2t1WLppYqsf39iHIVt2xeQn@googlegroups.com
X-Received: by 2002:ac8:57d3:0:b0:4b2:8ac4:f09c with SMTP id d75a77b69052e-4b2a01314a2mr89164341cf.38.1755900342822;
Fri, 22 Aug 2025 15:05:42 -0700 (PDT)
Received: by 2002:a05:6504:f04:b0:2c0:aeab:e1f7 with SMTP id a1c4a302cd1d6-2c0d47cdc1dmsc7a;
Fri, 22 Aug 2025 13:00:01 -0700 (PDT)
X-Forwarded-Encrypted: i=2; AJvYcCW0rhCrPuYNnrpwAMQulpzWmi6bdMUxQSpe+TXgucYLthlaxe8Lk9VCjd/DptmVHqES+OViK/Zs356P@googlegroups.com
X-Received: by 2002:a05:6512:4617:b0:55e:64f:c0f8 with SMTP id 2adb3069b0e04-55f0ccd3821mr1194826e87.34.1755892799329;
Fri, 22 Aug 2025 12:59:59 -0700 (PDT)
ARC-Seal: i=1; a=rsa-sha256; t=1755892799; cv=none;
d=google.com; s=arc-20240605;
b=OpzOnUZATxHI37XfYygvXvKoU999kxpHsdwiEg9PKo9RjRuGZoS1e/0cHa3wmq70Tx
kykBRc+Nl98W2hwkQzdqDTqkQ1YAenRbnotHz/lipaTLZNdYe/q4+K/BIOVsDbwxbD+C
CzTvRUUC3UxaCUUDdhymydgl4InzOk5Vfrg6A10gzTL6jaHXcYWl7RNpepammq0frGde
jq4pj2n1Tqgn1TErq3oVQgeQK7y8mtLZPxv7dPNb+YpWRjBT+q22HJSkvQZ50dT1z+Ty
oNEf97HI4c35GdwX3AYn72f9Ck0Net2ehI6ceqmDHy1QesvT0QWBFenDGja9eAqCFEx6
UxaA==
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20240605;
h=mime-version:feedback-id:references:in-reply-to:message-id:subject
:cc:from:to:date:dkim-signature;
bh=x1K+TP155hDCImF4fplLg4UoPxu7w+5TaW5fICuQrG8=;
fh=I4bnjYRpGdVsfDIeD/w7kPqXuiSHPf5UhzWGw0Jx6U0=;
b=COKbJ8WJ1HumX0unFzHe5CU4LcMmPRSHBnU3vxmgL14Cv9Fd2HxHGd7IbD57yKydJl
WQ9QsDHUwNtFyMn4dxfuKSadCIkx761btcyPPdCXHwpL5dZNzEtFJMczIH5nqHQLfumc
bCcrdOz+dwaKUYVVXj6lH4c3/69CxTjyprI4LC657KC7GbWAb+W+xNB9+afZTHx5fZM4
aA/ycmbSrbiEhnUmjD/wsCvcmt8BKyvSBxB3g5Lick/5i/oVj28qNFlDeatjXWqcpXGs
kY4GPwRZW/HzBOBjEzIcy1Zxsa5IlCgG5MXoLbIwHBRMQpHsn/lOYKZgKJwURItAPbG3
wBiw==;
dara=google.com
ARC-Authentication-Results: i=1; gmr-mx.google.com;
dkim=pass header.i=@proton.me header.s=protonmail header.b=ZW9mcYmn;
spf=pass (google.com: domain of conduition@proton.me designates 79.135.106.29 as permitted sender) smtp.mailfrom=conduition@proton.me;
dmarc=pass (p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=proton.me
Received: from mail-10629.protonmail.ch (mail-10629.protonmail.ch. [79.135.106.29])
by gmr-mx.google.com with ESMTPS id 2adb3069b0e04-55f35c7a390si10210e87.5.2025.08.22.12.59.59
for <bitcoindev@googlegroups.com>
(version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);
Fri, 22 Aug 2025 12:59:59 -0700 (PDT)
Received-SPF: pass (google.com: domain of conduition@proton.me designates 79.135.106.29 as permitted sender) client-ip=79.135.106.29;
Date: Fri, 22 Aug 2025 19:59:53 +0000
To: Saint Wenhao <saintwenhao@gmail.com>
From: "'conduition' via Bitcoin Development Mailing List" <bitcoindev@googlegroups.com>
Cc: Jameson Lopp <jameson.lopp@gmail.com>, Marc Johnson <marcjohnson518@gmail.com>, Bitcoin Development Mailing List <bitcoindev@googlegroups.com>
Subject: Re: [bitcoindev] Re: A Post Quantum Migration Proposal
Message-ID: <rCO-ee8FiX-prHxWh07O38oxSkVxhkV7vBbk7I0IS7RxqkJydKN9b_ubg_BWwdCzw0lkskcD0zdyoJx6cr67cc-BQWS64snWYhex_2W7g6o=@proton.me>
In-Reply-To: <CACgYNO+1tFwsd-V67fyCWv=WtAXp4V6RQhsTw8XpzYULF7u_UA@mail.gmail.com>
References: <CADL_X_fpv-aXBxX+eJ_EVTirkAJGyPRUNqOCYdz5um8zu6ma5Q@mail.gmail.com> <cfb00fb3-1eeb-40c5-acc3-50d1919d7dben@googlegroups.com> <173b3bc4-7052-4e0e-9042-ca15cd5b0587n@googlegroups.com> <CADL_X_cgqHUOU6V9+GsEKz--ekxmgyYJwOg4BeLajAr_cTVN_g@mail.gmail.com> <CACgYNO+1tFwsd-V67fyCWv=WtAXp4V6RQhsTw8XpzYULF7u_UA@mail.gmail.com>
Feedback-ID: 72003692:user:proton
X-Pm-Message-ID: 944d72229a2c75c1b324d97fcc6967b042066c15
MIME-Version: 1.0
Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha512; boundary="------bbf34a47ca36a48e22d99a124f6dc54c13b02b90dd376818b6ef8182e3bffa3e"; charset=utf-8
X-Original-Sender: conduition@proton.me
X-Original-Authentication-Results: gmr-mx.google.com; dkim=pass
header.i=@proton.me header.s=protonmail header.b=ZW9mcYmn; spf=pass
(google.com: domain of conduition@proton.me designates 79.135.106.29 as
permitted sender) smtp.mailfrom=conduition@proton.me; dmarc=pass
(p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=proton.me
X-Original-From: conduition <conduition@proton.me>
Reply-To: conduition <conduition@proton.me>
Precedence: list
Mailing-list: list bitcoindev@googlegroups.com; contact bitcoindev+owners@googlegroups.com
List-ID: <bitcoindev.googlegroups.com>
X-Google-Group-Id: 786775582512
List-Post: <https://groups.google.com/group/bitcoindev/post>, <mailto:bitcoindev@googlegroups.com>
List-Help: <https://groups.google.com/support/>, <mailto:bitcoindev+help@googlegroups.com>
List-Archive: <https://groups.google.com/group/bitcoindev
List-Subscribe: <https://groups.google.com/group/bitcoindev/subscribe>, <mailto:bitcoindev+subscribe@googlegroups.com>
List-Unsubscribe: <mailto:googlegroups-manage+786775582512+unsubscribe@googlegroups.com>,
<https://groups.google.com/group/bitcoindev/subscribe>
X-Spam-Score: -1.0 (-)
This is an OpenPGP/MIME signed message (RFC 4880 and 3156)
--------bbf34a47ca36a48e22d99a124f6dc54c13b02b90dd376818b6ef8182e3bffa3e
Content-Type: multipart/mixed;boundary=---------------------ffc922152e5c3708e39dabd95adc92d1
-----------------------ffc922152e5c3708e39dabd95adc92d1
Content-Type: multipart/alternative;boundary=---------------------ad79ea749c561b1378cf57e1b8289bff
-----------------------ad79ea749c561b1378cf57e1b8289bff
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; charset="UTF-8"
> If someone has some coins, then the public key cannot be changed, if it i=
s present in the output Script. However, R-value can be freely picked by th=
e signer, and can be set to anything.
> ...
> And later, when quantum signatures will be obligatory, then for each and =
every OP_CHECKSIG call, R-value of the old ECDSA signature will be forced t=
o commit to a valid quantum signature.
The ECDSA R value is chosen by the signer, so the quantum attacker could pi=
ck any arbitrary PQ signature data and commit it at spending time too.
Lopp's point is that unless the output script has committed to a PQ public =
key in some way prior=C2=A0to a CRQC arriving, then 3rd party nodes can't k=
now whether a spend that occurs after=C2=A0a CRQC has appeared is genuine. =
Any such commitments require positive action by UTXO holders, i.e. a migrat=
ion.
regards,
conduition
On Tuesday, August 19th, 2025 at 3:11 PM, Saint Wenhao <saintwenhao@gmail.c=
om> wrote:
> > how would currently locked funds be able to spend via a quantum safe si=
gnature scheme if they have not committed to a dual signature scheme?
>=20
> In ECDSA, we have two secp256k1 points in use: one is public key, another=
is R-value in the signature. If someone has some coins, then the public ke=
y cannot be changed, if it is present in the output Script. However, R-valu=
e can be freely picked by the signer, and can be set to anything. Which mea=
ns, that users can commit to any quantum data, by hashing it, and forming a=
valid commitment in R-value.
>=20
> Which also means, that old nodes can see only ECDSA signatures, and publi=
c keys, while new, quantum-resistant nodes, can require R-value to commit t=
o something. Then, in the first phase, when quantum commitments will be opt=
ional, users will use only ECDSA on-chain, but new, quantum nodes, will be =
able to see, what is committed to R-values behind signatures, and can store=
and process it.
>=20
> And later, when quantum signatures will be obligatory, then for each and =
every OP_CHECKSIG call, R-value of the old ECDSA signature will be forced t=
o commit to a valid quantum signature. Which also means, that the new quant=
um data won't be restricted by the current block size limit, but rather by =
a combination of sigops limit, and a quantum commitment size limit (which c=
an be set to different values, for different quantum proposals, depending o=
n a particular signature scheme).
>=20
> pon., 18 sie 2025 o 19:12 Jameson Lopp <jameson.lopp@gmail.com> napisa=C5=
=82(a):
>=20
> >=20
> >=20
> > On Thu, Aug 7, 2025 at 7:26=E2=80=AFPM Marc Johnson <marcjohnson518@gma=
il.com> wrote:
> >=20
> > > Hi All!
> > >=20
> > > I'd first like to say thank you to James for the comprehensive propos=
al. The quantum threat is indeed existential, and I appreciate the detailed=
thinking that went into this migration plan. However, I=E2=80=99d like to =
respectfully raise some concerns about the approach and share an alternativ=
e perspective from work we=E2=80=99ve been doing in this space.
> > >=20
> > > ## Concerns with the Forced Sunset Approach
> > >=20
> > > The proposal=E2=80=99s Phase B - rendering ECDSA/Schnorr spends inval=
id - essentially threatens users with permanent fund loss. This creates sev=
eral issues:
> > >=20
> > > 1. **Violation of Bitcoin=E2=80=99s Social Contract**: Satoshi=E2=80=
=99s principle that =E2=80=9Clost coins only make everyone else=E2=80=99s c=
oins worth slightly more=E2=80=9D becomes =E2=80=9Ccoins you don=E2=80=99t =
migrate in time are forcibly lost.=E2=80=9D This fundamentally changes Bitc=
oin=E2=80=99s value proposition.
> > >=20
> > > 2. **The 25% Problem**: With ~5.25 million BTC having exposed public =
keys, forcing these to become unspendable could create massive economic dis=
ruption. Many of these may be genuinely lost coins, but some could be long-=
term cold storage, inheritance situations, or users who simply miss the mig=
ration window.
> > >=20
> > > 3. **Timeline Risk**: The 5+ year timeline (3 years post-BIP-360 + 2 =
years) assumes smooth consensus and implementation. Given Bitcoin=E2=80=99s=
history, this could easily stretch to 7-10 years, most likely pushing impl=
ementation past the 2027-2030 quantum timeline mentioned.
> > >=20
> > > ## An Alternative Approach: Learning from Supernova
> > >=20
> > > Our team has been working on these exact problems and recently reache=
d production readiness with Supernova - a Bitcoin-inspired blockchain that =
implements quantum resistance from genesis. Rather than forced migration, w=
e use a dual-signature scheme that might be instructive for Bitcoin:
> >=20
> >=20
> > I don't see how this solves Bitcoin's migration problem; how would curr=
ently locked funds be able to spend via a quantum safe signature scheme if =
they have not committed to a dual signature scheme? In order to take advant=
age of this setup on Bitcoin, you just end up recreating the migration prob=
lem.
> >=20
> >=20
> > >=20
> > > **Three Modes of Operation:**
> > > - **Legacy Mode**: ECDSA signatures only (Bitcoin-compatible)
> > > - **Transition Mode**: Both ECDSA and quantum signatures required
> > > - **Quantum Mode**: Quantum signatures only
> > >=20
> > > This approach:
> > > - Never locks users out of their funds
> > > - Allows gradual, voluntary migration
> > > - Maintains backwards compatibility indefinitely
> > > - Provides immediate protection for those who want it
> > >=20
> > > ## Key Innovations Worth Considering
> > >=20
> > > 1. **Hybrid Signatures**: Instead of a hard cutoff, transactions can =
require both classical and quantum signatures during transition. This provi=
des quantum security while maintaining compatibility.
> > >=20
> > > 2. **Address Format Compatibility**: Our quantum addresses (snq1...) =
coexist with standard addresses (sn1...), allowing users to choose their se=
curity level per transaction rather than per wallet.
> > >=20
> > > 3. **No Coordination Required**: Users can independently decide when =
to migrate without waiting for ecosystem-wide coordination.
> > >=20
> > > 4. **Proven Implementation**: We=E2=80=99ve demonstrated this works i=
n production, including the world=E2=80=99s first quantum-resistant Lightni=
ng Network.
> > >=20
> > > ## A Cooperative Path Forward
> > >=20
> > > Rather than viewing this as competition, I see opportunity for collab=
oration. Supernova could serve as a real-world testbed for quantum migratio=
n strategies. We=E2=80=99ve already implemented:
> > >=20
> > > - NIST-standardized algorithms (Dilithium, SPHINCS+, Falcon)
> > > - Quantum-resistant atomic swaps with Bitcoin
> > > - Full Lightning Network with quantum HTLCs
> > > - Zero-knowledge proofs for enhanced privacy
> > >=20
> > > Bitcoin could learn from our implementation experience, while we cont=
inue to honor Bitcoin=E2=80=99s principles of decentralization and sound mo=
ney.
> > >=20
> > > ## Invitation to Explore
> > >=20
> > > For those interested in seeing quantum resistance in action today rat=
her than waiting years, I invite you to explore Supernova. We=E2=80=99re la=
unching our public testnet soon and would value feedback from the Bitcoin c=
ommunity.
> > >=20
> > > The quantum threat is real, and we need multiple approaches to ensure=
the future of decentralized money. Whether through Bitcoin=E2=80=99s event=
ual upgrade or alternatives like Supernova, the important thing is that we =
act before it=E2=80=99s too late.
> > >=20
> > > The code is open source, and we welcome technical review: [github.com=
/Carbon-Twelve-C12/supernova](https://github.com/Carbon-Twelve-C12/supernov=
a)
> > >=20
> > > Would love to hear thoughts on the dual-signature approach and whethe=
r something similar could work for Bitcoin without the harsh sunset provisi=
ons.
> > >=20
> > > ---
> > >=20
> > > *Note: While I represent the Supernova project, I=E2=80=99m also a lo=
ng-time Bitcoin supporter who wants to see the entire ecosystem survive the=
quantum transition. These challenges affect us all.*
> > >=20
> > > On Sunday, July 20, 2025 at 11:56:48=E2=80=AFPM UTC+1 Boris Nagaev wr=
ote:
> > >=20
> > > > Hi Jameson, hi all!
> > > >=20
> > > > I have a couple of ideas on how to preserve more funds during any k=
ind of fork that constrains or blocks currently used spending scenarios. Th=
is applies to both freezing and commit/reveal schemes; the latter may resul=
t in lost funds if the public key is leaked. I realized that this also appl=
ies to the commit/reveal scheme I proposed in another thread [1].
> > > >=20
> > > > The idea is to roll out such forks incrementally across the UTXO se=
t. Instead of freezing or constraining all UTXOs at once, we split the UTXO=
set into 256 groups deterministically (for example, by looking at the firs=
t byte of the TXID) and apply the constraints over 256 days, processing one=
group per day. Procrastinators will learn what is happening through word o=
f mouth, act to save their funds, and only a small percentage of coin owner=
s will be harmed.
> > > >=20
> > > > Another approach is to provide a temporary opt-out option. If someo=
ne finds themselves blocked, they would still have a limited time to take a=
n action, without requiring any extra knowledge, to get unblocked. This wou=
ld help raise awareness. After being temporarily blocked and recovering the=
ir funds through the opt-out mechanism, the person would understand that th=
ey need to take further steps with their remaining coins to avoid being per=
manently blocked once the opt-out period ends. The action to unblock the fu=
nds could be as simple as sending a transaction with OP_RETURN "opt-out <tx=
id>", which would enable the old acceptance rules for the transaction with =
that txid for a period of 2016 blocks.
> > > >=20
> > > >=20
> > > > [1] https://groups.google.com/g/bitcoindev/c/uUK6py0Yjq0/m/57bQJ3VS=
CQAJ
> > > > In that scheme if the pubkey is leaked, anyone can post a valid com=
mitment with a random TXID blocking the coin forever.
> > > >=20
> > > > Best,
> > > > Boris
> > > >=20
> > > > On Saturday, July 12, 2025 at 9:46:09=E2=80=AFPM UTC-3 Jameson Lopp=
wrote:
> > > >=20
> > > > > Building upon my earlier essay against allowing quantum recovery =
of bitcoin I wish to formalize a proposal after several months of discussio=
ns.
> > > > >=20
> > > > > This proposal does not delve into the multitude of issues regardi=
ng post quantum cryptography and trade-offs of different schemes, but rathe=
r is meant to specifically address the issues of incentivizing adoption and=
migration of funds after consensus is established that it is prudent to do=
so.
> > > > >=20
> > > > > As such, this proposal requires P2QRH as described in BIP-360 or =
potential future proposals.
> > > > >=20
> > > > > Abstract
> > > > >=20
> > > > > This proposal follows the implementation of post-quantum (PQ) out=
put type (P2QRH) and introduces a pre-announced sunset of legacy ECDSA/Schn=
orr signatures. It turns quantum security into a private incentive: fail to=
upgrade and you will certainly lose access to your funds, creating a certa=
inty where none previously existed.
> > > > >=20
> > > > > - Phase A: Disallows sending of any funds to quantum-vulnerable=
addresses, hastening the adoption of P2QRH address types.
> > > > > =20
> > > > > - Phase B: Renders ECDSA/Schnorr spends invalid, preventing all=
spending of funds in quantum-vulnerable UTXOs. This is triggered by a well=
-publicized flag-day roughly five years after activation.
> > > > > =20
> > > > > - Phase C (optional): Pending further research and demand, a se=
parate BIP proposing a fork to allow recovery of legacy UTXOs through ZK pr=
oof of possession of BIP-39 seed phrase.
> > > > > =20
> > > > >=20
> > > > > Motivation
> > > > >=20
> > > > > We seek to secure the value of the UTXO set and minimize incentiv=
es for quantum attacks. This proposal is radically different from any in Bi=
tcoin=E2=80=99s history just as the threat posed by quantum computing is ra=
dically different from any other threat in Bitcoin=E2=80=99s history. Never=
before has Bitcoin faced an existential threat to its cryptographic primit=
ives. A successful quantum attack on Bitcoin would result in significant ec=
onomic disruption and damage across the entire ecosystem. Beyond its impact=
on price, the ability of miners to provide network security may be signifi=
cantly impacted.
> > > > >=20
> > > > > - Accelerating quantum progress.
> > > > > =20
> > > > > - NIST ratified three production-grade PQ signature schemes=
in 2024; academic road-maps now estimate a cryptographically-relevant quan=
tum computer as early as 2027-2030. [McKinsey]
> > > > > =20
> > > > > - Quantum algorithms are rapidly improving
> > > > > =20
> > > > > - The safety envelope is shrinking by dramatic increases in=
algorithms even if the pace of hardware improvements is slower. Algorithms=
are improving up to 20X, lowering the theoretical hardware requirements fo=
r breaking classical encryption.
> > > > > =20
> > > > > - Bitcoin=E2=80=99s exposed public keys.
> > > > > =20
> > > > > - Roughly 25% of all bitcoin have revealed a public key on-=
chain; those UTXOs could be stolen with sufficient quantum power.
> > > > > =20
> > > > > - We may not know the attack is underway.
> > > > > =20
> > > > > - Quantum attackers could compute the private key for known=
public keys then transfer all funds weeks or months later, in a covert ble=
ed to not alert chain watchers. Q-Day may be only known much later if the a=
ttack withholds broadcasting transactions in order to postpone revealing th=
eir capabilities.
> > > > > =20
> > > > > - Private keys become public.
> > > > > =20
> > > > > - Assuming that quantum computers are able to maintain thei=
r current trajectories and overcome existing engineering obstacles, there i=
s a near certain chance that all P2PK (and other outputs with exposed pubke=
ys) private keys will be found and used to steal the funds.
> > > > > =20
> > > > > - Impossible to know motivations.
> > > > > =20
> > > > > - Prior to a quantum attack, it is impossible to know the m=
otivations of the attacker. An economically motivated attacker will try to =
remain undetected for as long as possible, while a malicious attacker will =
attempt to destroy as much value as possible.
> > > > > =20
> > > > > - Upgrade inertia.
> > > > > =20
> > > > > - Coordinating wallets, exchanges, miners and custodians hi=
storically takes years.
> > > > > =20
> > > > > - The longer we postpone migration, the harder it becomes t=
o coordinate wallets, exchanges, miners, and custodians. A clear, time-boxe=
d pathway is the only credible defense.
> > > > > =20
> > > > > - Coordinating distributed groups is more prone to delay, e=
ven if everyone has similar motivations. Historically, Bitcoin has been slo=
w to adopt code changes, often taking multiple years to be approved.
> > > > > =20
> > > > >=20
> > > > > Benefits at a Glance
> > > > >=20
> > > > > - Resilience: Bitcoin protocol remains secure for the foreseeab=
le future without waiting for a last-minute emergency.
> > > > > =20
> > > > > - Certainty: Bitcoin users and stakeholders gain certainty that=
a plan is both in place and being implemented to effectively deal with the=
threat of quantum theft of bitcoin.
> > > > > =20
> > > > > - Clarity: A single, publicized timeline aligns the entire ecos=
ystem (wallets, exchanges, hardware vendors).
> > > > > =20
> > > > > - Supply Discipline: Abandoned keys that never migrate become u=
nspendable, reducing supply, as Satoshi described.
> > > > > =20
> > > > >=20
> > > > > Specification
> > > > >=20
> > > > > Phase
> > > > >=20
> > > > > What Happens
> > > > >=20
> > > > > Who Must Act
> > > > >=20
> > > > > Time Horizon
> > > > >=20
> > > > > Phase A - Disallow spends to legacy script types
> > > > >=20
> > > > > Permitted sends are from legacy scripts to P2QRH scripts
> > > > >=20
> > > > > Everyone holding or accepting BTC.
> > > > >=20
> > > > > 3 years after BIP-360 implementation
> > > > >=20
> > > > > Phase B =E2=80=93 Disallow spends from quantum vulnerable outputs
> > > > >=20
> > > > > At a preset block-height, nodes reject transactions that rely on =
ECDSA/Schnorr keys.
> > > > >=20
> > > > > Everyone holding or accepting BTC.
> > > > >=20
> > > > > 2 years after Phase A activation.
> > > > >=20
> > > > > Phase C =E2=80=93 Re-enable spends from quantum vulnerable output=
s via ZK Proof
> > > > >=20
> > > > > Users with frozen quantum vulnerable funds and a HD wallet seed p=
hrase can construct a quantum safe ZK proof to recover funds.
> > > > >=20
> > > > > Users who failed to migrate funds before Phase B.
> > > > >=20
> > > > > TBD pending research, demand, and consensus.
> > > > >=20
> > > > > Rationale
> > > > >=20
> > > > > - Even if Bitcoin is not a primary initial target of a cryptogr=
aphically relevant quantum computer, widespread knowledge that such a compu=
ter exists and is capable of breaking Bitcoin=E2=80=99s cryptography will d=
amage faith in the network .
> > > > > =20
> > > > > - An attack on Bitcoin may not be economically motivated - an a=
ttacker may be politically or maliciously motivated and may attempt to dest=
roy value and trust in Bitcoin rather than extract value. There is no way t=
o know in advance how, when, or why an attack may occur. A defensive positi=
on must be taken well in advance of any attack.
> > > > > =20
> > > > > - Bitcoin=E2=80=99s current signatures (ECDSA/Schnorr) will be =
a tantalizing target: any UTXO that has ever exposed its public key on-chai=
n (roughly 25 % of all bitcoin) could be stolen by a cryptographically rele=
vant quantum computer.
> > > > > =20
> > > > > - Existing Proposals are Insufficient.
> > > > > =20
> > > > > 1. Any proposal that allows for the quantum theft of =E2=80=
=9Clost=E2=80=9D bitcoin is creating a redistribution dilemma. There are 3 =
types of proposals:
> > > > > =20
> > > > > 1. Allow anyone to steal vulnerable coins, benefitting t=
hose who reach quantum capability earliest.
> > > > > =20
> > > > > 2. Allow throttled theft of coins, which leads to RBF ba=
ttles and ultimately miners subsidizing their revenue from lost coins.
> > > > > =20
> > > > > 3. Allow no one to steal vulnerable coins.
> > > > > =20
> > > > > - Minimizes attack surface
> > > > > =20
> > > > > 1. By disallowing new spends to quantum vulnerable script ty=
pes, we minimize the attack surface with each new UTXO.
> > > > > =20
> > > > > 2. Upgrades to Bitcoin have historically taken many years; t=
his will hasten and speed up the adoption of new quantum resistant script t=
ypes.
> > > > > =20
> > > > > 3. With a clear deadline, industry stakeholders will more re=
adily upgrade existing infrastructure to ensure continuity of services.
> > > > > =20
> > > > > - Minimizes loss of access to funds
> > > > > =20
> > > > > 1. If there is sufficient demand and research proves possibl=
e, submitting a ZK proof of knowledge of a BIP-39 seed phrase corresponding=
to a public key hash or script hash would provide a trustless means for le=
gacy outputs to be spent in a quantum resistant manner, even after the suns=
et.
> > > > > =20
> > > > >=20
> > > > >=20
> > > > >=20
> > > > > Stakeholder
> > > > >=20
> > > > > Incentive to Upgrade
> > > > >=20
> > > > > Miners
> > > > >=20
> > > > > =E2=80=A2 Larger size PQ signatures along with incentive for user=
s to migrate will create more demand for block space and thus higher fees c=
ollected by miners.
> > > > >=20
> > > > > =E2=80=A2 Post-Phase B, non-upgraded miners produce invalid block=
s.
> > > > >=20
> > > > > =E2=80=A2 A quantum attack on Bitcoin will significantly devalue =
both their hardware and Bitcoin as a whole.
> > > > >=20
> > > > > Institutional Holders
> > > > >=20
> > > > > =E2=80=A2 Fiduciary duty: failing to act to prevent a quantum att=
ack on Bitcoin would violate the fiduciary duty to shareholders.
> > > > >=20
> > > > > =E2=80=A2 Demonstrating Bitcoin=E2=80=99s ability to effectively =
mitigate emerging threats will prove Bitcoin to be an investment grade asse=
t.
> > > > >=20
> > > > > Exchanges & Custodians
> > > > >=20
> > > > > =E2=80=A2 Concentrated risk: a quantum hack could bankrupt them o=
vernight.
> > > > >=20
> > > > > =E2=80=A2 Early migration is cheap relative to potential losses, =
potential lawsuits over improper custody and reputational damage.
> > > > >=20
> > > > > Everyday Users
> > > > >=20
> > > > > =E2=80=A2 Self-sovereign peace of mind.
> > > > >=20
> > > > > =E2=80=A2 Sunset date creates a clear deadline and incentive to i=
mprove their security rather than an open-ended =E2=80=9Csome day=E2=80=9D =
that invites procrastination.
> > > > >=20
> > > > > Attackers
> > > > >=20
> > > > > =E2=80=A2 Economic incentive diminishes as sunset nears, stolen c=
oins cannot be spent after Q-day.
> > > > >=20
> > > > > Key Insight: As mentioned earlier, the proposal turns quantum sec=
urity into a private incentive to upgrade.
> > > > >=20
> > > > > This is not an offensive attack, rather, it is defensive: our the=
sis is that the Bitcoin ecosystem wishes to defend itself and its interests=
against those who would prefer to do nothing and allow a malicious actor t=
o destroy both value and trust.
> > > > >=20
> > > > >=20
> > > > >=20
> > > > > > "Lost coins only make everyone else's coins worth slightly more=
. Think of it as a donation to everyone." - Satoshi Nakamoto
> > > > >=20
> > > > >=20
> > > > >=20
> > > > > If true, the corollary is:
> > > > >=20
> > > > >=20
> > > > >=20
> > > > > > "Quantum recovered coins only make everyone else's coins worth =
less. Think of it as a theft from everyone."
> > > > >=20
> > > > >=20
> > > > >=20
> > > > > The timelines that we are proposing are meant to find the best ba=
lance between giving ample ability for account owners to migrate while main=
taining the integrity of the overall ecosystem to avoid catastrophic attack=
s.
> > > > >=20
> > > > >=20
> > > > > Backward Compatibility
> > > > >=20
> > > > > As a series of soft forks, older nodes will continue to operate w=
ithout modification. Non-upgraded nodes, however, will consider all post-qu=
antum witness programs as anyone-can-spend scripts. They are strongly encou=
raged to upgrade in order to fully validate the new programs.
> > > > >=20
> > > > >=20
> > > > >=20
> > > > > Non-upgraded wallets can receive and send bitcoin from non-upgrad=
ed and upgraded wallets until Phase A. After Phase A, they can no longer re=
ceive from any other wallets and can only send to upgraded wallets. After P=
hase B, both senders and receivers will require upgraded wallets. Phase C w=
ould likely require a loosening of consensus rules (a hard fork) to allow v=
ulnerable funds recovery via ZK proofs.
> > >=20
> > > --
> > > You received this message because you are subscribed to the Google Gr=
oups "Bitcoin Development Mailing List" group.
> > > To unsubscribe from this group and stop receiving emails from it, sen=
d an email to bitcoindev+unsubscribe@googlegroups.com.
> > > To view this discussion visit https://groups.google.com/d/msgid/bitco=
indev/173b3bc4-7052-4e0e-9042-ca15cd5b0587n%40googlegroups.com.
> >=20
> > --
> > You received this message because you are subscribed to the Google Grou=
ps "Bitcoin Development Mailing List" group.
> > To unsubscribe from this group and stop receiving emails from it, send =
an email to bitcoindev+unsubscribe@googlegroups.com.
> > To view this discussion visit https://groups.google.com/d/msgid/bitcoin=
dev/CADL_X_cgqHUOU6V9%2BGsEKz--ekxmgyYJwOg4BeLajAr_cTVN_g%40mail.gmail.com.
>=20
> --
> You received this message because you are subscribed to the Google Groups=
"Bitcoin Development Mailing List" group.
> To unsubscribe from this group and stop receiving emails from it, send an=
email to bitcoindev+unsubscribe@googlegroups.com.
> To view this discussion visit https://groups.google.com/d/msgid/bitcoinde=
v/CACgYNO%2B1tFwsd-V67fyCWv%3DWtAXp4V6RQhsTw8XpzYULF7u_UA%40mail.gmail.com.
--=20
You received this message because you are subscribed to the Google Groups "=
Bitcoin Development Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to bitcoindev+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/bitcoindev/=
rCO-ee8FiX-prHxWh07O38oxSkVxhkV7vBbk7I0IS7RxqkJydKN9b_ubg_BWwdCzw0lkskcD0zd=
yoJx6cr67cc-BQWS64snWYhex_2W7g6o%3D%40proton.me.
-----------------------ad79ea749c561b1378cf57e1b8289bff
Content-Type: multipart/related;boundary=---------------------660520a628ec0bec7cc89c747077393b
-----------------------660520a628ec0bec7cc89c747077393b
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
<blockquote style=3D"border-left: 3px solid rgb(200, 200, 200); border-top-=
color: rgb(200, 200, 200); border-right-color: rgb(200, 200, 200); border-b=
ottom-color: rgb(200, 200, 200); padding-left: 10px; color: rgb(102, 102, 1=
02);"><span>If someone has some coins, then the public key cannot be change=
d, if it is present in the output Script. However, R-value can be freely pi=
cked by the signer, and can be set to anything.</span></blockquote><blockqu=
ote style=3D"border-left: 3px solid rgb(200, 200, 200); border-top-color: r=
gb(200, 200, 200); border-right-color: rgb(200, 200, 200); border-bottom-co=
lor: rgb(200, 200, 200); padding-left: 10px; color: rgb(102, 102, 102);"><s=
pan>...</span></blockquote><blockquote style=3D"border-left: 3px solid rgb(=
200, 200, 200); border-top-color: rgb(200, 200, 200); border-right-color: r=
gb(200, 200, 200); border-bottom-color: rgb(200, 200, 200); padding-left: 1=
0px; color: rgb(102, 102, 102);"><span>And later, when quantum signatures w=
ill be obligatory, then for each and every OP_CHECKSIG call, R-value of the=
old ECDSA signature will be forced to commit to a valid quantum signature.=
</span></blockquote><div style=3D"font-family: Arial, sans-serif; font-size=
: 14px;" class=3D"protonmail_signature_block"><div class=3D"protonmail_sign=
ature_block-proton">
</div>
</div>
<div style=3D"font-family: Arial, sans-serif; font-size: 14px;"><br></div><=
div style=3D"font-family: Arial, sans-serif; font-size: 14px;">The ECDSA R =
value is chosen by the signer, so the quantum attacker could pick any arbit=
rary PQ signature data and commit it at spending time too.</div><div style=
=3D"font-family: Arial, sans-serif; font-size: 14px;"><br></div><div style=
=3D"font-family: Arial, sans-serif; font-size: 14px;">Lopp's point is that =
unless the output script has committed to a PQ public key in some way <i>pr=
ior</i> to a CRQC arriving, then 3rd party nodes can't know whether a =
spend that occurs <i>after</i> a CRQC has appeared is genuine. Any suc=
h commitments require positive action by UTXO holders, i.e. a migration.</d=
iv><div style=3D"font-family: Arial, sans-serif; font-size: 14px;"><br></di=
v><div style=3D"font-family: Arial, sans-serif; font-size: 14px;">regards,<=
/div><div style=3D"font-family: Arial, sans-serif; font-size: 14px;">condui=
tion</div><div class=3D"protonmail_quote">
On Tuesday, August 19th, 2025 at 3:11 PM, Saint Wenhao <saintwen=
hao@gmail.com> wrote:<br>
<blockquote class=3D"protonmail_quote" type=3D"cite">
<div dir=3D"ltr">> how would currently locked funds be able =
to spend via a quantum safe signature scheme if they have not committed to =
a dual signature scheme?<br><br>In ECDSA, we have two secp256k1 points in u=
se: one is public key, another is R-value in the signature. If someone has =
some coins, then the public key cannot be changed, if it is present in the =
output Script. However, R-value can be freely picked by the signer, and can=
be set to anything. Which means, that users can commit to any quantum data=
, by hashing it, and forming a valid commitment in R-value.<br><br>Which al=
so means, that old nodes can see only ECDSA signatures, and public keys, wh=
ile new, quantum-resistant nodes, can require R-value to commit to somethin=
g. Then, in the first phase, when quantum commitments will be optional, use=
rs will use only ECDSA on-chain, but new, quantum nodes, will be able to se=
e, what is committed to R-values behind signatures, and can store and proce=
ss it.<br><br>And later, when quantum signatures will be obligatory, then f=
or each and every OP_CHECKSIG call, R-value of the old ECDSA signature will=
be forced to commit to a valid quantum signature. Which also means, that t=
he new quantum data won't be restricted by the current block size limit, bu=
t rather by a combination of sigops limit, and a quantum commitment size li=
mit (which can be set to different values, for different quantum proposals,=
depending on a particular signature scheme).</div><br><div class=3D"gmail_=
quote gmail_quote_container"><div dir=3D"ltr" class=3D"gmail_attr">pon., 18=
sie 2025 o 19:12 Jameson Lopp <<a href=3D"mailto:jameson.lopp@gmail.com=
" rel=3D"noreferrer nofollow noopener">jameson.lopp@gmail.com</a>> napis=
a=C5=82(a):<br></div><blockquote class=3D"gmail_quote" style=3D"margin:0px =
0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div=
dir=3D"ltr"><div dir=3D"ltr"><br></div><br><div class=3D"gmail_quote"><div=
dir=3D"ltr" class=3D"gmail_attr">On Thu, Aug 7, 2025 at 7:26=E2=80=AFPM Ma=
rc Johnson <<a href=3D"mailto:marcjohnson518@gmail.com" target=3D"_blank=
" rel=3D"noreferrer nofollow noopener">marcjohnson518@gmail.com</a>> wro=
te:<br></div><blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px =
0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi All!<br><=
br>I'd first like to say thank you to James for the comprehensive proposal.=
The quantum threat is indeed existential, and I appreciate the detailed th=
inking that went into this migration plan. However, I=E2=80=99d like to res=
pectfully raise some concerns about the approach and share an alternative p=
erspective from work we=E2=80=99ve been doing in this space.<br><br>## Conc=
erns with the Forced Sunset Approach<br><br>The proposal=E2=80=99s Phase B =
- rendering ECDSA/Schnorr spends invalid - essentially threatens users with=
permanent fund loss. This creates several issues:<br><br>1. **Violation of=
Bitcoin=E2=80=99s Social Contract**: Satoshi=E2=80=99s principle that =E2=
=80=9Clost coins only make everyone else=E2=80=99s coins worth slightly mor=
e=E2=80=9D becomes =E2=80=9Ccoins you don=E2=80=99t migrate in time are for=
cibly lost.=E2=80=9D This fundamentally changes Bitcoin=E2=80=99s value pro=
position.<br><br>2. **The 25% Problem**: With ~5.25 million BTC having expo=
sed public keys, forcing these to become unspendable could create massive e=
conomic disruption. Many of these may be genuinely lost coins, but some cou=
ld be long-term cold storage, inheritance situations, or users who simply m=
iss the migration window.<br><br>3. **Timeline Risk**: The 5+ year timeline=
(3 years post-BIP-360 + 2 years) assumes smooth consensus and implementati=
on. Given Bitcoin=E2=80=99s history, this could easily stretch to 7-10 year=
s, most likely pushing implementation past the 2027-2030 quantum timeline m=
entioned.<br><br>## An Alternative Approach: Learning from Supernova<br><br=
>Our team has been working on these exact problems and recently reached pro=
duction readiness with Supernova - a Bitcoin-inspired blockchain that imple=
ments quantum resistance from genesis. Rather than forced migration, we use=
a dual-signature scheme that might be instructive for Bitcoin:<br></blockq=
uote><div><br></div><div>I don't see how this solves Bitcoin's migration pr=
oblem; how would currently locked funds be able to spend via a quantum safe=
signature scheme if they have not committed to a dual signature scheme? In=
order to take advantage of this setup on Bitcoin, you just end up recreati=
ng the migration problem.</div><div><br></div><blockquote class=3D"gmail_qu=
ote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,20=
4);padding-left:1ex"><br>**Three Modes of Operation:**<br>- **Legacy Mode**=
: ECDSA signatures only (Bitcoin-compatible)<br>- **Transition Mode**: Both=
ECDSA and quantum signatures required<br>- **Quantum Mode**: Quantum signa=
tures only<br><br>This approach:<br>- Never locks users out of their funds<=
br>- Allows gradual, voluntary migration<br>- Maintains backwards compatibi=
lity indefinitely<br>- Provides immediate protection for those who want it<=
br><br>## Key Innovations Worth Considering<br><br>1. **Hybrid Signatures**=
: Instead of a hard cutoff, transactions can require both classical and qua=
ntum signatures during transition. This provides quantum security while mai=
ntaining compatibility.<br><br>2. **Address Format Compatibility**: Our qua=
ntum addresses (snq1...) coexist with standard addresses (sn1...), allowing=
users to choose their security level per transaction rather than per walle=
t.<br><br>3. **No Coordination Required**: Users can independently decide w=
hen to migrate without waiting for ecosystem-wide coordination.<br><br>4. *=
*Proven Implementation**: We=E2=80=99ve demonstrated this works in producti=
on, including the world=E2=80=99s first quantum-resistant Lightning Network=
.<br><br>## A Cooperative Path Forward<br><br>Rather than viewing this as c=
ompetition, I see opportunity for collaboration. Supernova could serve as a=
real-world testbed for quantum migration strategies. We=E2=80=99ve already=
implemented:<br><br>- NIST-standardized algorithms (Dilithium, SPHINCS+, F=
alcon)<br>- Quantum-resistant atomic swaps with Bitcoin<br>- Full Lightning=
Network with quantum HTLCs<br>- Zero-knowledge proofs for enhanced privacy=
<br><br>Bitcoin could learn from our implementation experience, while we co=
ntinue to honor Bitcoin=E2=80=99s principles of decentralization and sound =
money.<br><br>## Invitation to Explore<br><br>For those interested in seein=
g quantum resistance in action today rather than waiting years, I invite yo=
u to explore Supernova. We=E2=80=99re launching our public testnet soon and=
would value feedback from the Bitcoin community. <br><br>The quantum threa=
t is real, and we need multiple approaches to ensure the future of decentra=
lized money. Whether through Bitcoin=E2=80=99s eventual upgrade or alternat=
ives like Supernova, the important thing is that we act before it=E2=80=99s=
too late.<br><br>The code is open source, and we welcome technical review:=
[<a href=3D"http://github.com/Carbon-Twelve-C12/supernova%5D(https://githu=
b.com/Carbon-Twelve-C12/supernova)" target=3D"_blank" rel=3D"noreferrer nof=
ollow noopener">github.com/Carbon-Twelve-C12/supernova](https://github.com/=
Carbon-Twelve-C12/supernova)</a><br><br>Would love to hear thoughts on the =
dual-signature approach and whether something similar could work for Bitcoi=
n without the harsh sunset provisions.<br><br>---<br><br>*Note: While I rep=
resent the Supernova project, I=E2=80=99m also a long-time Bitcoin supporte=
r who wants to see the entire ecosystem survive the quantum transition. The=
se challenges affect us all.*<br><br><div class=3D"gmail_quote"><div dir=3D=
"auto" class=3D"gmail_attr">On Sunday, July 20, 2025 at 11:56:48=E2=80=AFPM=
UTC+1 Boris Nagaev wrote:<br></div><blockquote class=3D"gmail_quote" style=
=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding=
-left:1ex">Hi Jameson, hi all!<br><br>I have a couple of ideas on how to pr=
eserve more funds during any kind of fork that constrains or blocks current=
ly used spending scenarios. This applies to both freezing and commit/reveal=
schemes; the latter may result in lost funds if the public key is leaked. =
I realized that this also applies to the commit/reveal scheme I proposed in=
another thread [1].<br><br><div>The idea is to <b>roll out such forks incr=
ementally across the UTXO set</b>. Instead of freezing or constraining all =
UTXOs at once, we split the UTXO set into 256 groups deterministically (for=
example, by looking at the first byte of the TXID) and apply the constrain=
ts over 256 days, processing one group per day. Procrastinators will learn =
what is happening through word of mouth, act to save their funds, and only =
a small percentage of coin owners will be harmed.</div><div><br></div><div>=
Another approach is to <b>provide a temporary opt-out option</b>. If someon=
e finds themselves blocked, they would still have a limited time to take an=
action, without requiring any extra knowledge, to get unblocked. This woul=
d help raise awareness. After being temporarily blocked and recovering thei=
r funds through the opt-out mechanism, the person would understand that the=
y need to take further steps with their remaining coins to avoid being perm=
anently blocked once the opt-out period ends. The action to unblock the fun=
ds could be as simple as sending a transaction with OP_RETURN "opt-out <=
txid>", which would enable the old acceptance rules for the transaction =
with that txid for a period of 2016 blocks.</div><div><br></div><div><br></=
div><div>[1] <a href=3D"https://groups.google.com/g/bitcoindev/c/uUK6py0Yjq=
0/m/57bQJ3VSCQAJ" rel=3D"noreferrer nofollow noopener" target=3D"_blank">ht=
tps://groups.google.com/g/bitcoindev/c/uUK6py0Yjq0/m/57bQJ3VSCQAJ</a></div>=
<div>In that scheme if the pubkey is leaked, anyone can post a valid commit=
ment with a random TXID blocking the coin forever.</div><div><br></div>Best=
,<br><div>Boris</div><div><br></div><div><div dir=3D"auto">On Saturday, Jul=
y 12, 2025 at 9:46:09=E2=80=AFPM UTC-3 Jameson Lopp wrote:<br></div><blockq=
uote style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,20=
4);padding-left:1ex"><div dir=3D"ltr"><span><p dir=3D"ltr" style=3D"line-he=
ight:1.44;background-color:rgb(255,255,255);margin-top:12pt;margin-bottom:0=
pt;padding:0pt 0pt 12pt"><span style=3D"font-size:11pt;font-family:"Co=
urier New",monospace;color:rgb(34,34,34);background-color:transparent;=
font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;=
vertical-align:baseline;white-space:pre-wrap">Building upon my earlier essa=
y </span><a href=3D"https://groups.google.com/g/bitcoindev/c/uUK6py0Yjq0/m/=
6peEaa90AQAJ" style=3D"text-decoration:none" rel=3D"noreferrer nofollow noo=
pener" target=3D"_blank"><span style=3D"font-size:11pt;font-family:"Co=
urier New",monospace;color:rgb(17,85,204);background-color:transparent=
;font-weight:400;font-style:normal;font-variant:normal;text-decoration:unde=
rline;vertical-align:baseline;white-space:pre-wrap">against allowing quantu=
m recovery of bitcoin</span></a><span style=3D"font-size:11pt;font-family:&=
quot;Courier New",monospace;color:rgb(34,34,34);background-color:trans=
parent;font-weight:400;font-style:normal;font-variant:normal;text-decoratio=
n:none;vertical-align:baseline;white-space:pre-wrap"> I wish to formalize a=
proposal after several months of discussions.</span></p><p dir=3D"ltr" sty=
le=3D"line-height:1.44;background-color:rgb(255,255,255);margin-top:0pt;mar=
gin-bottom:0pt;padding:0pt 0pt 12pt"><span style=3D"font-size:11pt;font-fam=
ily:"Courier New",monospace;color:rgb(34,34,34);background-color:=
transparent;font-weight:400;font-style:normal;font-variant:normal;text-deco=
ration:none;vertical-align:baseline;white-space:pre-wrap">This proposal doe=
s not delve into the multitude of issues regarding post quantum cryptograph=
y and trade-offs of different schemes, but rather is meant to specifically =
address the issues of incentivizing adoption and migration of funds </span>=
<span style=3D"font-size:11pt;font-family:"Courier New",monospace=
;color:rgb(34,34,34);background-color:transparent;font-weight:400;font-vari=
ant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wra=
p"><i>after</i></span><span style=3D"font-size:11pt;font-family:"Couri=
er New",monospace;color:rgb(34,34,34);background-color:transparent;fon=
t-weight:400;font-style:normal;font-variant:normal;text-decoration:none;ver=
tical-align:baseline;white-space:pre-wrap"> consensus is established that i=
t is prudent to do so.</span></p><p dir=3D"ltr" style=3D"line-height:1.44;b=
ackground-color:rgb(255,255,255);margin-top:0pt;margin-bottom:12pt"><span s=
tyle=3D"font-size:11pt;font-family:"Courier New",monospace;color:=
rgb(0,0,0);background-color:transparent;font-weight:400;font-style:normal;f=
ont-variant:normal;text-decoration:none;vertical-align:baseline;white-space=
:pre-wrap">As such, this proposal requires P2QRH as described in BIP-360 or=
potential future proposals.</span></p><span dir=3D"ltr" style=3D"line-heig=
ht:1.38;margin-top:18pt;margin-bottom:4pt"><span style=3D"font-size:17pt;fo=
nt-family:"Courier New",monospace;color:rgb(0,0,0);background-col=
or:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;f=
ont-variant-alternates:normal;vertical-align:baseline">Abstract</span></spa=
n><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:12pt;margin-bottom:12=
pt"><span style=3D"font-size:11pt;font-family:"Courier New",monos=
pace;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:nor=
mal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-=
align:baseline">This proposal follows the implementation of post-quantum (P=
Q) output type (P2QRH) and introduces a pre-announced sunset of legacy ECDS=
A/Schnorr signatures. It turns quantum security into a </span><span style=
=3D"font-size:11pt;font-family:"Courier New",monospace;color:rgb(=
0,0,0);background-color:transparent;font-style:italic;font-variant-numeric:=
normal;font-variant-east-asian:normal;font-variant-alternates:normal;vertic=
al-align:baseline">private incentive</span><span style=3D"font-size:11pt;fo=
nt-family:"Courier New",monospace;color:rgb(0,0,0);background-col=
or:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;f=
ont-variant-alternates:normal;vertical-align:baseline">: fail to upgrade an=
d you will certainly lose access to your funds, creating a certainty where =
none previously existed. </span></p><ul style=3D"margin-top:0px;margin-bott=
om:0px"><li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-f=
amily:"Courier New",monospace;color:rgb(0,0,0);background-color:t=
ransparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-=
variant-alternates:normal;vertical-align:baseline;white-space:pre-wrap"><p =
dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt" rol=
e=3D"presentation"><span style=3D"font-size:11pt;background-color:transpare=
nt;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:norm=
al;font-variant-alternates:normal;vertical-align:baseline">Phase A:</span><=
span style=3D"font-size:11pt;background-color:transparent;font-variant-nume=
ric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;ve=
rtical-align:baseline"> Disallows sending of any funds to quantum-vulnerabl=
e addresses, hastening the adoption of P2QRH address types.</span></p></li>=
<li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:&q=
uot;Courier New",monospace;color:rgb(0,0,0);background-color:transpare=
nt;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-=
alternates:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"l=
tr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt" role=3D"pre=
sentation"><span style=3D"font-size:11pt;background-color:transparent;font-=
weight:700;font-variant-numeric:normal;font-variant-east-asian:normal;font-=
variant-alternates:normal;vertical-align:baseline">Phase B:</span><span sty=
le=3D"font-size:11pt;background-color:transparent;font-variant-numeric:norm=
al;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-a=
lign:baseline"> Renders ECDSA/Schnorr spends invalid, preventing all spendi=
ng of funds in quantum-vulnerable UTXOs. This is triggered by a well-public=
ized flag-day roughly five years after activation.</span></p></li><li dir=
=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:"Cou=
rier New",monospace;color:rgb(0,0,0);background-color:transparent;font=
-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alterna=
tes:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" sty=
le=3D"line-height:1.38;margin-top:0pt;margin-bottom:6pt" role=3D"presentati=
on"><span style=3D"font-size:11pt;background-color:transparent;font-weight:=
700;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant=
-alternates:normal;vertical-align:baseline">Phase C (optional):</span><span=
style=3D"font-size:11pt;background-color:transparent;font-variant-numeric:=
normal;font-variant-east-asian:normal;font-variant-alternates:normal;vertic=
al-align:baseline"> Pending further research and demand, a separate BIP pro=
posing a fork to allow recovery of legacy UTXOs through ZK proof of possess=
ion of BIP-39 seed phrase. </span></p></li></ul><span dir=3D"ltr" style=3D=
"line-height:1.38;text-align:justify;margin-top:14pt;margin-bottom:6pt"><sp=
an style=3D"font-size:16pt;font-family:"Courier New",monospace;co=
lor:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;fon=
t-variant-east-asian:normal;font-variant-alternates:normal;vertical-align:b=
aseline">Motivation</span></span><p dir=3D"ltr" style=3D"line-height:1.38;t=
ext-align:justify;margin-top:12pt;margin-bottom:12pt"><span style=3D"font-s=
ize:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);bac=
kground-color:transparent;font-variant-numeric:normal;font-variant-east-asi=
an:normal;font-variant-alternates:normal;vertical-align:baseline">We seek t=
o secure the value of the UTXO set</span><span style=3D"font-size:11pt;font=
-family:"Courier New",monospace;color:rgb(0,0,0);background-color=
:transparent;font-weight:700;font-variant-numeric:normal;font-variant-east-=
asian:normal;font-variant-alternates:normal;vertical-align:baseline"> </spa=
n><span style=3D"font-size:11pt;font-family:"Courier New",monospa=
ce;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:norma=
l;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-al=
ign:baseline">and minimize incentives for quantum attacks. This proposal is=
radically different from any in Bitcoin=E2=80=99s history just as the thre=
at posed by quantum computing is radically different from any other threat =
in Bitcoin=E2=80=99s history. Never before has Bitcoin faced an existentia=
l threat to its cryptographic primitives. A successful quantum attack on Bi=
tcoin would result in significant economic disruption and damage across the=
entire ecosystem. Beyond its impact on price, the ability of miners to pro=
vide network security may be significantly impacted. </span></p><ul style=
=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-t=
ype:disc;font-size:11pt;font-family:"Courier New",monospace;color=
:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-v=
ariant-east-asian:normal;font-variant-alternates:normal;vertical-align:base=
line;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;margin-=
top:12pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-size:=
11pt;background-color:transparent;font-weight:700;font-variant-numeric:norm=
al;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-a=
lign:baseline">Accelerating quantum progress.</span><span style=3D"font-siz=
e:11pt;background-color:transparent;font-variant-numeric:normal;font-varian=
t-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline"=
> </span></p><ul style=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr"=
style=3D"list-style-type:circle;font-size:11pt;font-family:"Courier N=
ew",monospace;color:rgb(0,0,0);background-color:transparent;font-varia=
nt-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:no=
rmal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"=
line-height:1.38;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><s=
pan style=3D"font-size:11pt;background-color:transparent;font-variant-numer=
ic:normal;font-variant-east-asian:normal;font-variant-alternates:normal;ver=
tical-align:baseline">NIST ratified three production-grade PQ signature sch=
emes in 2024; academic road-maps now estimate a cryptographically-relevant =
quantum computer as early as 2027-2030. [</span><a href=3D"https://www.mcki=
nsey.com/~/media/mckinsey/business%20functions/mckinsey%20digital/our%20ins=
ights/the%20year%20of%20quantum%20from%20concept%20to%20reality%20in%202025=
/quantum-monitor-2025.pdf?shouldIndex=3Dfalse" style=3D"text-decoration-lin=
e:none" rel=3D"noreferrer nofollow noopener" target=3D"_blank"><span style=
=3D"font-size:11pt;background-color:transparent;font-variant-numeric:normal=
;font-variant-east-asian:normal;font-variant-alternates:normal;text-decorat=
ion-line:underline;vertical-align:baseline">McKinsey</span></a><span style=
=3D"font-size:11pt;background-color:transparent;font-variant-numeric:normal=
;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-ali=
gn:baseline">]</span></p></li></ul></li><li dir=3D"ltr" style=3D"list-style=
-type:disc;font-size:11pt;font-family:"Courier New",monospace;col=
or:rgb(0,0,0);background-color:transparent;font-weight:700;font-variant-num=
eric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;v=
ertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-h=
eight:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" role=3D"pre=
sentation"><span style=3D"font-size:11pt;background-color:transparent;font-=
variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternat=
es:normal;vertical-align:baseline">Quantum algorithms are rapidly improving=
</span></p><ul style=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr" s=
tyle=3D"list-style-type:circle;font-size:11pt;font-family:"Courier New=
",monospace;color:rgb(0,0,0);background-color:transparent;font-variant=
-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:norm=
al;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"li=
ne-height:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" role=3D=
"presentation"><span style=3D"font-size:11pt;background-color:transparent;f=
ont-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alte=
rnates:normal;vertical-align:baseline">The safety envelope is shrinking by =
dramatic increases in algorithms even if the pace of hardware improvements =
is slower. Algorithms are <a href=3D"https://security.googleblog.com/2025/0=
5/tracking-cost-of-quantum-factori.html" rel=3D"noreferrer nofollow noopene=
r" target=3D"_blank">improving up to 20X</a>, lowering the theoretical hard=
ware requirements for breaking classical encryption.</span></p></li></ul></=
li><li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family=
:"Courier New",monospace;color:rgb(0,0,0);background-color:transp=
arent;font-variant-numeric:normal;font-variant-east-asian:normal;font-varia=
nt-alternates:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=
=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt" role=
=3D"presentation"><span style=3D"font-size:11pt;background-color:transparen=
t;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:norma=
l;font-variant-alternates:normal;vertical-align:baseline">Bitcoin=E2=80=99s=
exposed public keys.</span><span style=3D"font-size:11pt;background-color:=
transparent;font-variant-numeric:normal;font-variant-east-asian:normal;font=
-variant-alternates:normal;vertical-align:baseline"> </span></p><ul style=
=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-t=
ype:circle;font-size:11pt;font-family:"Courier New",monospace;col=
or:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font=
-variant-east-asian:normal;font-variant-alternates:normal;vertical-align:ba=
seline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;margi=
n-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-size=
:11pt;background-color:transparent;font-variant-numeric:normal;font-variant=
-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline">=
Roughly 25% of all bitcoin have revealed a public key on-chain; those UTXOs=
could be stolen with sufficient quantum power. </span></p></li></ul></li>=
<li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:&q=
uot;Courier New",monospace;color:rgb(0,0,0);background-color:transpare=
nt;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-=
alternates:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"l=
tr" style=3D"line-height:1.38;text-align:justify;margin-top:0pt;margin-bott=
om:0pt" role=3D"presentation"><span style=3D"font-size:11pt;background-colo=
r:transparent;font-weight:700;font-variant-numeric:normal;font-variant-east=
-asian:normal;font-variant-alternates:normal;vertical-align:baseline">We ma=
y not know the attack is underway. </span></p><ul style=3D"margin-top:0px;m=
argin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-type:circle;font-size=
:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);backgr=
ound-color:transparent;font-variant-numeric:normal;font-variant-east-asian:=
normal;font-variant-alternates:normal;vertical-align:baseline;white-space:p=
re-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;margin=
-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-size:=
11pt;background-color:transparent;font-variant-numeric:normal;font-variant-=
east-asian:normal;font-variant-alternates:normal;vertical-align:baseline">Q=
uantum attackers could compute the private key for known public keys then t=
ransfer all funds weeks or months later, in a covert bleed to not alert cha=
in watchers. Q-Day may be only known much later if the attack withholds bro=
adcasting transactions in order to postpone revealing their capabilities.</=
span></p></li></ul></li><li dir=3D"ltr" style=3D"list-style-type:disc;font-=
size:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);ba=
ckground-color:transparent;font-weight:700;font-variant-numeric:normal;font=
-variant-east-asian:normal;font-variant-alternates:normal;vertical-align:ba=
seline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;margi=
n-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-size=
:11pt;background-color:transparent;font-variant-numeric:normal;font-variant=
-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline">=
Private keys become public. </span></p><ul style=3D"margin-top:0px;margin-b=
ottom:0px"><li dir=3D"ltr" style=3D"list-style-type:circle;font-size:11pt;f=
ont-family:"Courier New",monospace;color:rgb(0,0,0);background-co=
lor:transparent;font-weight:700;font-variant-numeric:normal;font-variant-ea=
st-asian:normal;font-variant-alternates:normal;vertical-align:baseline;whit=
e-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;m=
argin-bottom:0pt" role=3D"presentation"><span style=3D"font-size:11pt;backg=
round-color:transparent;font-weight:400;font-variant-numeric:normal;font-va=
riant-east-asian:normal;font-variant-alternates:normal;vertical-align:basel=
ine">Assuming that quantum computers are able to maintain their current tra=
jectories and overcome existing engineering obstacles, there is a near cert=
ain chance that all P2PK (and other outputs with exposed pubkeys) private k=
eys will be found and used to steal the funds.</span></p></li></ul></li><li=
dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:"=
;Courier New",monospace;color:rgb(0,0,0);background-color:transparent;=
font-weight:700;font-variant-numeric:normal;font-variant-east-asian:normal;=
font-variant-alternates:normal;vertical-align:baseline;white-space:pre-wrap=
"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt=
" role=3D"presentation"><span style=3D"font-size:11pt;background-color:tran=
sparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-var=
iant-alternates:normal;vertical-align:baseline">Impossible to know motivati=
ons. </span></p><ul style=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"l=
tr" style=3D"list-style-type:circle;font-size:11pt;font-family:"Courie=
r New",monospace;color:rgb(0,0,0);background-color:transparent;font-we=
ight:700;font-variant-numeric:normal;font-variant-east-asian:normal;font-va=
riant-alternates:normal;vertical-align:baseline;white-space:pre-wrap"><p di=
r=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt" role=
=3D"presentation"><span style=3D"font-size:11pt;background-color:transparen=
t;font-weight:400;font-variant-numeric:normal;font-variant-east-asian:norma=
l;font-variant-alternates:normal;vertical-align:baseline">Prior to a quantu=
m attack, it is impossible to know the motivations of the attacker. An eco=
nomically motivated attacker will try to remain undetected for as long as p=
ossible, while a malicious attacker will attempt to destroy as much value a=
s possible. </span></p></li></ul></li><li dir=3D"ltr" style=3D"list-style-=
type:disc;font-size:11pt;font-family:"Courier New",monospace;colo=
r:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-=
variant-east-asian:normal;font-variant-alternates:normal;vertical-align:bas=
eline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;margin=
-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-size:=
11pt;background-color:transparent;font-weight:700;font-variant-numeric:norm=
al;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-a=
lign:baseline">Upgrade inertia.</span><span style=3D"font-size:11pt;backgro=
und-color:transparent;font-variant-numeric:normal;font-variant-east-asian:n=
ormal;font-variant-alternates:normal;vertical-align:baseline"> </span></p><=
ul style=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"list=
-style-type:circle;font-size:11pt;font-family:"Courier New",monos=
pace;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:nor=
mal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-=
align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.=
38;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"f=
ont-size:11pt;background-color:transparent;font-variant-numeric:normal;font=
-variant-east-asian:normal;font-variant-alternates:normal;vertical-align:ba=
seline">Coordinating wallets, exchanges, miners and custodians historically=
takes years.</span></p></li><li dir=3D"ltr" style=3D"list-style-type:circl=
e;font-size:11pt;font-family:"Courier New",monospace;color:rgb(0,=
0,0);background-color:transparent;font-variant-numeric:normal;font-variant-=
east-asian:normal;font-variant-alternates:normal;vertical-align:baseline;wh=
ite-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:jus=
tify;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D=
"font-size:11pt;background-color:transparent;font-variant-numeric:normal;fo=
nt-variant-east-asian:normal;font-variant-alternates:normal;vertical-align:=
baseline">The longer we postpone migration, the harder it becomes to coordi=
nate wallets, exchanges, miners, and custodians. A clear, time-boxed pathwa=
y is the only credible defense.</span></p></li><li dir=3D"ltr" style=3D"lis=
t-style-type:circle;font-size:11pt;font-family:"Courier New",mono=
space;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:no=
rmal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical=
-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1=
.38;text-align:justify;margin-top:0pt;margin-bottom:12pt" role=3D"presentat=
ion"><span style=3D"font-size:11pt;background-color:transparent;font-varian=
t-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:nor=
mal;vertical-align:baseline">Coordinating distributed groups is more prone =
to delay, even if everyone has similar motivations. Historically, Bitcoin h=
as been slow to adopt code changes, often taking multiple years to be appro=
ved.</span></p></li></ul></li></ul><span dir=3D"ltr" style=3D"line-height:1=
.38;text-align:justify;margin-top:14pt;margin-bottom:6pt"><span style=3D"fo=
nt-size:16pt;font-family:"Courier New",monospace;color:rgb(0,0,0)=
;background-color:transparent;font-variant-numeric:normal;font-variant-east=
-asian:normal;font-variant-alternates:normal;vertical-align:baseline">Benef=
its at a Glance</span></span><ul style=3D"margin-top:0px;margin-bottom:0px"=
><li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:A=
rial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-variant-=
numeric:normal;font-variant-east-asian:normal;font-variant-alternates:norma=
l;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"lin=
e-height:1.38;text-align:justify;margin-top:12pt;margin-bottom:0pt" role=3D=
"presentation"><span style=3D"font-size:11pt;font-family:"Courier New&=
quot;,monospace;background-color:transparent;font-weight:700;font-variant-n=
umeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal=
;vertical-align:baseline">Resilience:</span><span style=3D"font-size:11pt;f=
ont-family:"Courier New",monospace;background-color:transparent;f=
ont-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alte=
rnates:normal;vertical-align:baseline"> Bitcoin protocol remains secure for=
the foreseeable future without waiting for a last-minute emergency.</span>=
</p></li><li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-=
family:Arial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-=
variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternat=
es:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" styl=
e=3D"line-height:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" =
role=3D"presentation"><span style=3D"font-size:11pt;font-family:"Couri=
er New",monospace;background-color:transparent;font-weight:700;font-va=
riant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates=
:normal;vertical-align:baseline">Certainty</span><span style=3D"font-size:1=
1pt;font-family:"Courier New",monospace;background-color:transpar=
ent;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant=
-alternates:normal;vertical-align:baseline">: Bitcoin users and stakeholder=
s gain certainty that a plan is both in place and being implemented to effe=
ctively deal with the threat of quantum theft of bitcoin. </span></p></li>=
<li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:Ar=
ial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-variant-n=
umeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal=
;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line=
-height:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" role=3D"p=
resentation"><span style=3D"font-size:11pt;font-family:"Courier New&qu=
ot;,monospace;background-color:transparent;font-weight:700;font-variant-num=
eric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;v=
ertical-align:baseline">Clarity:</span><span style=3D"font-size:11pt;font-f=
amily:"Courier New",monospace;background-color:transparent;font-v=
ariant-numeric:normal;font-variant-east-asian:normal;font-variant-alternate=
s:normal;vertical-align:baseline"> A single, publicized timeline aligns the=
entire ecosystem (wallets, exchanges, hardware vendors).</span></p></li><l=
i dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:Aria=
l,sans-serif;color:rgb(0,0,0);background-color:transparent;font-variant-num=
eric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;v=
ertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-h=
eight:1.38;text-align:justify;margin-top:0pt;margin-bottom:12pt" role=3D"pr=
esentation"><span style=3D"font-size:11pt;font-family:"Courier New&quo=
t;,monospace;background-color:transparent;font-weight:700;font-variant-nume=
ric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;ve=
rtical-align:baseline">Supply Discipline:</span><span style=3D"font-size:11=
pt;font-family:"Courier New",monospace;background-color:transpare=
nt;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-=
alternates:normal;vertical-align:baseline"> Abandoned keys that never migra=
te become unspendable, reducing supply, <a href=3D"https://bitcointalk.org/=
index.php?topic=3D198.msg1647#msg1647" rel=3D"noreferrer nofollow noopener"=
target=3D"_blank">as Satoshi described</a></span><span style=3D"font-size:=
11pt;font-family:"Courier New",monospace;background-color:transpa=
rent;font-variant-numeric:normal;font-variant-east-asian:normal;font-varian=
t-alternates:normal;vertical-align:baseline">. </span></p></li></ul><span =
dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;margin-top:12pt;ma=
rgin-bottom:12pt"><span style=3D"font-size:16pt;font-family:"Courier N=
ew",monospace;color:rgb(0,0,0);background-color:transparent;font-varia=
nt-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:no=
rmal;vertical-align:baseline">Specification</span></span><span dir=3D"ltr" =
style=3D"line-height:1.38;text-align:justify;margin-top:12pt;margin-bottom:=
12pt"><span style=3D"font-weight:normal"><div dir=3D"ltr" style=3D"margin-l=
eft:0pt" align=3D"left"><span style=3D"border:medium;border-collapse:collap=
se"><span><span width=3D"181"></span><span width=3D"224"></span><span width=
=3D"137"></span><span width=3D"130"></span></span><span><span style=3D"min-=
height:0pt"><span style=3D"border-width:1pt;border-style:solid;border-color=
:rgb(0,0,0);vertical-align:top;padding:5pt;overflow:hidden"><p dir=3D"ltr" =
style=3D"line-height:1.38;text-align:center;margin-top:0pt;margin-bottom:0p=
t"><span style=3D"font-size:11pt;font-family:"Courier New",monosp=
ace;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-vari=
ant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:n=
ormal;vertical-align:baseline">Phase</span></p></span><span style=3D"border=
-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:top;pa=
dding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;text-al=
ign:center;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;=
font-family:"Courier New",monospace;color:rgb(0,0,0);background-c=
olor:transparent;font-weight:700;font-variant-numeric:normal;font-variant-e=
ast-asian:normal;font-variant-alternates:normal;vertical-align:baseline">Wh=
at Happens</span></p></span><span style=3D"border-width:1pt;border-style:so=
lid;border-color:rgb(0,0,0);vertical-align:top;padding:5pt;overflow:hidden"=
><p dir=3D"ltr" style=3D"line-height:1.38;text-align:center;margin-top:0pt;=
margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:"Courier =
New",monospace;color:rgb(0,0,0);background-color:transparent;font-weig=
ht:700;font-variant-numeric:normal;font-variant-east-asian:normal;font-vari=
ant-alternates:normal;vertical-align:baseline">Who Must Act</span></p></spa=
n><span style=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0=
);vertical-align:top;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"l=
ine-height:1.38;text-align:center;margin-top:0pt;margin-bottom:0pt"><span s=
tyle=3D"font-size:11pt;font-family:"Courier New",monospace;color:=
rgb(0,0,0);background-color:transparent;font-weight:700;font-variant-numeri=
c:normal;font-variant-east-asian:normal;font-variant-alternates:normal;vert=
ical-align:baseline">Time Horizon</span></p></span></span><span style=3D"mi=
n-height:0pt"><span style=3D"border-width:1pt;border-style:solid;border-col=
or:rgb(0,0,0);vertical-align:top;padding:5pt;overflow:hidden"><p dir=3D"ltr=
" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=
=3D"font-size:11pt;font-family:"Courier New",monospace;color:rgb(=
0,0,0);background-color:transparent;font-weight:700;font-variant-numeric:no=
rmal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical=
-align:baseline">Phase A - </span><span style=3D"font-size:11pt;font-family=
:"Courier New",monospace;color:rgb(0,0,0);background-color:transp=
arent;font-variant-numeric:normal;font-variant-east-asian:normal;font-varia=
nt-alternates:normal;vertical-align:baseline">Disallow spends to legacy scr=
ipt types</span></p></span><span style=3D"border-width:1pt;border-style:sol=
id;border-color:rgb(0,0,0);vertical-align:middle;padding:5pt;overflow:hidde=
n"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0p=
t"><span style=3D"font-size:10pt;font-family:"Courier New",monosp=
ace;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:norm=
al;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-a=
lign:baseline">Permitted sends are from legacy scripts to P2QRH scripts</sp=
an></p></span><span style=3D"border-width:1pt;border-style:solid;border-col=
or:rgb(0,0,0);vertical-align:middle;padding:5pt;overflow:hidden"><p dir=3D"=
ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span styl=
e=3D"font-size:10pt;font-family:"Courier New",monospace;color:rgb=
(0,0,0);background-color:transparent;font-style:italic;font-variant-numeric=
:normal;font-variant-east-asian:normal;font-variant-alternates:normal;verti=
cal-align:baseline">Everyone</span><span style=3D"font-size:10pt;font-famil=
y:"Courier New",monospace;color:rgb(0,0,0);background-color:trans=
parent;font-variant-numeric:normal;font-variant-east-asian:normal;font-vari=
ant-alternates:normal;vertical-align:baseline"> holding or accepting BTC.</=
span></p></span><span style=3D"border-width:1pt;border-style:solid;border-c=
olor:rgb(0,0,0);vertical-align:middle;padding:5pt;overflow:hidden"><p dir=
=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span =
style=3D"font-size:10pt;font-family:"Courier New",monospace;color=
:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-v=
ariant-east-asian:normal;font-variant-alternates:normal;vertical-align:base=
line">3 years after BIP-360 implementation</span></p></span></span><span st=
yle=3D"min-height:0pt"><span style=3D"border-width:1pt;border-style:solid;b=
order-color:rgb(0,0,0);vertical-align:top;padding:5pt;overflow:hidden"><p d=
ir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><spa=
n style=3D"font-size:11pt;font-family:"Courier New",monospace;col=
or:rgb(0,0,0);background-color:transparent;font-weight:700;font-variant-num=
eric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;v=
ertical-align:baseline">Phase B =E2=80=93 </span><span style=3D"font-size:1=
1pt;font-family:"Courier New",monospace;color:rgb(0,0,0);backgrou=
nd-color:transparent;font-variant-numeric:normal;font-variant-east-asian:no=
rmal;font-variant-alternates:normal;vertical-align:baseline">Disallow spend=
s from quantum vulnerable outputs</span></p></span><span style=3D"border-wi=
dth:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:middle;pa=
dding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;margin-=
top:0pt;margin-bottom:0pt"><span style=3D"font-size:10pt;font-family:"=
Courier New",monospace;color:rgb(0,0,0);background-color:transparent;f=
ont-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alte=
rnates:normal;vertical-align:baseline">At a preset block-height, nodes reje=
ct transactions that rely on ECDSA/Schnorr keys. </span></p></span><span st=
yle=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical=
-align:middle;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-hei=
ght:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:10pt;fo=
nt-family:"Courier New",monospace;color:rgb(0,0,0);background-col=
or:transparent;font-style:italic;font-variant-numeric:normal;font-variant-e=
ast-asian:normal;font-variant-alternates:normal;vertical-align:baseline">Ev=
eryone</span><span style=3D"font-size:10pt;font-family:"Courier New&qu=
ot;,monospace;color:rgb(0,0,0);background-color:transparent;font-variant-nu=
meric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;=
vertical-align:baseline"> holding or accepting BTC.</span></p></span><span =
style=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertic=
al-align:middle;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-h=
eight:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:10pt;=
font-family:"Courier New",monospace;color:rgb(0,0,0);background-c=
olor:transparent;font-variant-numeric:normal;font-variant-east-asian:normal=
;font-variant-alternates:normal;vertical-align:baseline">2 years after Phas=
e A activation.</span></p></span></span><span style=3D"min-height:0pt"><spa=
n style=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);vert=
ical-align:top;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-he=
ight:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;f=
ont-family:"Courier New",monospace;color:rgb(0,0,0);background-co=
lor:transparent;font-weight:700;font-variant-numeric:normal;font-variant-ea=
st-asian:normal;font-variant-alternates:normal;vertical-align:baseline">Pha=
se C =E2=80=93 </span><span style=3D"font-size:11pt;font-family:"Couri=
er New",monospace;color:rgb(0,0,0);background-color:transparent;font-v=
ariant-numeric:normal;font-variant-east-asian:normal;font-variant-alternate=
s:normal;vertical-align:baseline">Re-enable spends from quantum vulnerable =
outputs via ZK Proof</span></p></span><span style=3D"border-width:1pt;borde=
r-style:solid;border-color:rgb(0,0,0);vertical-align:middle;padding:5pt;ove=
rflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margi=
n-bottom:0pt"><span style=3D"font-size:10pt;font-family:"Courier New&q=
uot;,monospace;color:rgb(0,0,0);background-color:transparent;font-variant-n=
umeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal=
;vertical-align:baseline">Users with frozen quantum vulnerable funds and a =
HD wallet seed phrase can construct a quantum safe ZK proof to recover fund=
s.</span></p></span><span style=3D"border-width:1pt;border-style:solid;bord=
er-color:rgb(0,0,0);vertical-align:middle;padding:5pt;overflow:hidden"><p d=
ir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><spa=
n style=3D"font-size:10pt;font-family:"Courier New",monospace;col=
or:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font=
-variant-east-asian:normal;font-variant-alternates:normal;vertical-align:ba=
seline">Users who failed to migrate funds before Phase B.</span></p></span>=
<span style=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);=
vertical-align:middle;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"=
line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size=
:10pt;font-family:"Courier New",monospace;color:rgb(0,0,0);backgr=
ound-color:transparent;font-variant-numeric:normal;font-variant-east-asian:=
normal;font-variant-alternates:normal;vertical-align:baseline">TBD pending =
research, demand, and consensus.</span></p></span></span></span></span></di=
v></span></span><span dir=3D"ltr" style=3D"line-height:1.38;margin-top:14pt=
;margin-bottom:6pt"><span style=3D"font-size:16pt;font-family:"Courier=
New",monospace;color:rgb(0,0,0);background-color:transparent;font-wei=
ght:700;font-style:normal;font-variant:normal;text-decoration:none;vertical=
-align:baseline;white-space:pre-wrap">Rationale</span></span><ul style=3D"m=
argin-top:0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-type:d=
isc;font-size:11pt;font-family:"Courier New",monospace;color:rgb(=
0,0,0);background-color:transparent;font-variant-numeric:normal;font-varian=
t-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline;=
white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:j=
ustify;margin-top:12pt;margin-bottom:0pt" role=3D"presentation"><span style=
=3D"font-size:11pt;background-color:transparent;font-variant-numeric:normal=
;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-ali=
gn:baseline">Even if Bitcoin is not a primary initial target of a cryptogra=
phically relevant quantum computer, widespread knowledge that such a comput=
er exists and is capable of breaking Bitcoin=E2=80=99s cryptography will da=
mage faith in the network . </span></p></li><li dir=3D"ltr" style=3D"list-s=
tyle-type:disc;font-size:11pt;font-family:"Courier New",monospace=
;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;=
font-variant-east-asian:normal;font-variant-alternates:normal;vertical-alig=
n:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;t=
ext-align:justify;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><=
span style=3D"font-size:11pt;background-color:transparent;font-variant-nume=
ric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;ve=
rtical-align:baseline">An attack on Bitcoin may not be economically motivat=
ed - an attacker may be politically or maliciously motivated and may attemp=
t to destroy value and trust in Bitcoin rather than extract value. There i=
s no way to know in advance how, when, or why an attack may occur. A defen=
sive position must be taken well in advance of any attack. </span></p></li=
><li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:&=
quot;Courier New",monospace;color:rgb(0,0,0);background-color:transpar=
ent;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant=
-alternates:normal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"=
ltr" style=3D"line-height:1.38;text-align:justify;margin-top:0pt;margin-bot=
tom:0pt" role=3D"presentation"><span style=3D"font-size:11pt;background-col=
or:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;f=
ont-variant-alternates:normal;vertical-align:baseline">Bitcoin=E2=80=99s cu=
rrent signatures (ECDSA/Schnorr) will be a tantalizing target: any UTXO tha=
t has ever exposed its public key on-chain (roughly 25 % of all bitcoin) co=
uld be stolen by a cryptographically relevant quantum computer.</span></p><=
/li><li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-famil=
y:Arial,sans-serif;color:rgb(0,0,0);background-color:transparent;font-varia=
nt-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:no=
rmal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"=
line-height:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" role=
=3D"presentation"><span style=3D"font-size:11pt;font-family:"Courier N=
ew",monospace;background-color:transparent;font-weight:700;font-varian=
t-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:nor=
mal;vertical-align:baseline">Existing Proposals are Insufficient.</span><sp=
an style=3D"font-size:11pt;font-family:"Courier New",monospace;ba=
ckground-color:transparent;font-variant-numeric:normal;font-variant-east-as=
ian:normal;font-variant-alternates:normal;vertical-align:baseline"> </span=
></p><ol style=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr" style=
=3D"list-style-type:lower-alpha;font-size:11pt;font-family:"Courier Ne=
w",monospace;color:rgb(0,0,0);background-color:transparent;font-varian=
t-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:nor=
mal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"l=
ine-height:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" role=
=3D"presentation"><span style=3D"font-size:11pt;background-color:transparen=
t;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-a=
lternates:normal;vertical-align:baseline">Any proposal that allows for the =
quantum theft of =E2=80=9Clost=E2=80=9D bitcoin is creating a redistributio=
n dilemma. There are 3 types of proposals:</span></p><ol style=3D"margin-to=
p:0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-type:lower-rom=
an;font-size:11pt;font-family:"Courier New",monospace;color:rgb(0=
,0,0);background-color:transparent;font-variant-numeric:normal;font-variant=
-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline;w=
hite-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:ju=
stify;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=
=3D"font-size:11pt;background-color:transparent;font-variant-numeric:normal=
;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-ali=
gn:baseline">Allow anyone to steal vulnerable coins, benefitting those who =
reach quantum capability earliest.</span></p></li><li dir=3D"ltr" style=3D"=
list-style-type:lower-roman;font-size:11pt;font-family:"Courier New&qu=
ot;,monospace;color:rgb(0,0,0);background-color:transparent;font-variant-nu=
meric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;=
vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-=
height:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" role=3D"pr=
esentation"><span style=3D"font-size:11pt;background-color:transparent;font=
-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alterna=
tes:normal;vertical-align:baseline">Allow throttled theft of coins, which l=
eads to RBF battles and ultimately miners subsidizing their revenue from lo=
st coins.</span></p></li><li dir=3D"ltr" style=3D"list-style-type:lower-rom=
an;font-size:11pt;font-family:"Courier New",monospace;color:rgb(0=
,0,0);background-color:transparent;font-variant-numeric:normal;font-variant=
-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline;w=
hite-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:ju=
stify;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=
=3D"font-size:11pt;background-color:transparent;font-variant-numeric:normal=
;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-ali=
gn:baseline">Allow no one to steal vulnerable coins.</span></p></li></ol></=
li></ol></li><li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;f=
ont-family:"Courier New",monospace;color:rgb(0,0,0);background-co=
lor:transparent;font-weight:700;font-variant-numeric:normal;font-variant-ea=
st-asian:normal;font-variant-alternates:normal;vertical-align:baseline;whit=
e-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:justi=
fy;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"f=
ont-size:11pt;background-color:transparent;font-variant-numeric:normal;font=
-variant-east-asian:normal;font-variant-alternates:normal;vertical-align:ba=
seline">Minimizes attack surface</span></p><ol style=3D"margin-top:0px;marg=
in-bottom:0px"><li dir=3D"ltr" style=3D"list-style-type:lower-alpha;font-si=
ze:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);back=
ground-color:transparent;font-variant-numeric:normal;font-variant-east-asia=
n:normal;font-variant-alternates:normal;vertical-align:baseline;white-space=
:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;marg=
in-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-siz=
e:11pt;background-color:transparent;font-variant-numeric:normal;font-varian=
t-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline"=
>By disallowing new spends to quantum vulnerable script types, we minimize =
the attack surface with each new UTXO. </span></p></li><li dir=3D"ltr" sty=
le=3D"list-style-type:lower-alpha;font-size:11pt;font-family:"Courier =
New",monospace;color:rgb(0,0,0);background-color:transparent;font-vari=
ant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:n=
ormal;vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D=
"line-height:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" role=
=3D"presentation"><span style=3D"font-size:11pt;background-color:transparen=
t;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-a=
lternates:normal;vertical-align:baseline">Upgrades to Bitcoin have historic=
ally taken many years; this will hasten and speed up the adoption of new qu=
antum resistant script types. </span></p></li><li dir=3D"ltr" style=3D"list=
-style-type:lower-alpha;font-size:11pt;font-family:"Courier New",=
monospace;color:rgb(0,0,0);background-color:transparent;font-variant-numeri=
c:normal;font-variant-east-asian:normal;font-variant-alternates:normal;vert=
ical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-heig=
ht:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" role=3D"presen=
tation"><span style=3D"font-size:11pt;background-color:transparent;font-var=
iant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:=
normal;vertical-align:baseline">With a clear deadline, industry stakeholder=
s will more readily upgrade existing infrastructure to ensure continuity of=
services. </span></p></li></ol></li><li dir=3D"ltr" style=3D"list-style-t=
ype:disc;font-size:11pt;font-family:"Courier New",monospace;color=
:rgb(0,0,0);background-color:transparent;font-weight:700;font-variant-numer=
ic:normal;font-variant-east-asian:normal;font-variant-alternates:normal;ver=
tical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-hei=
ght:1.38;text-align:justify;margin-top:0pt;margin-bottom:0pt" role=3D"prese=
ntation"><span style=3D"font-size:11pt;background-color:transparent;font-va=
riant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates=
:normal;vertical-align:baseline">Minimizes loss of access to funds </span><=
/p><ol style=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"=
list-style-type:lower-alpha;font-size:11pt;font-family:"Courier New&qu=
ot;,monospace;color:rgb(0,0,0);background-color:transparent;font-variant-nu=
meric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;=
vertical-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-=
height:1.38;text-align:justify;margin-top:0pt;margin-bottom:12pt" role=3D"p=
resentation"><span style=3D"font-size:11pt;background-color:transparent;fon=
t-variant-numeric:normal;font-variant-east-asian:normal;font-variant-altern=
ates:normal;vertical-align:baseline">If there is sufficient demand and rese=
arch proves possible, submitting a ZK proof of knowledge of a BIP-39 seed p=
hrase corresponding to a public key hash or script hash would provide a tr=
ustless means for legacy outputs to be spent in a quantum resistant manner,=
even after the sunset. </span></p></li></ol></li></ul><br><div dir=3D"ltr=
" style=3D"margin-left:0pt" align=3D"left"><span style=3D"border:medium;bor=
der-collapse:collapse"><span><span width=3D"143"></span><span width=3D"539"=
></span></span><span><span style=3D"min-height:27.4463pt"><span style=3D"bo=
rder-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:to=
p;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;mar=
gin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:&q=
uot;Courier New",monospace;color:rgb(0,0,0);background-color:transpare=
nt;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:norm=
al;font-variant-alternates:normal;vertical-align:baseline">Stakeholder</spa=
n></p></span><span style=3D"border-width:1pt;border-style:solid;border-colo=
r:rgb(0,0,0);vertical-align:top;padding:5pt;overflow:hidden"><p dir=3D"ltr"=
style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D=
"font-size:11pt;font-family:"Courier New",monospace;color:rgb(0,0=
,0);background-color:transparent;font-weight:700;font-variant-numeric:norma=
l;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-al=
ign:baseline">Incentive to Upgrade</span></p></span></span><span style=3D"m=
in-height:53.5388pt"><span style=3D"border-width:1pt;border-style:solid;bor=
der-color:rgb(0,0,0);vertical-align:middle;padding:5pt;overflow:hidden"><p =
dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><sp=
an style=3D"font-size:11pt;font-family:"Courier New",monospace;co=
lor:rgb(0,0,0);background-color:transparent;font-weight:700;font-variant-nu=
meric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;=
vertical-align:baseline">Miners</span></p></span><span style=3D"border-widt=
h:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:top;padding=
:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0=
pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:"Couri=
er New",monospace;color:rgb(0,0,0);background-color:transparent;font-v=
ariant-numeric:normal;font-variant-east-asian:normal;font-variant-alternate=
s:normal;vertical-align:baseline">=E2=80=A2 Larger size PQ signatures along=
with incentive for users to migrate will create more demand for block spac=
e and thus higher fees collected by miners.</span></p><p dir=3D"ltr" style=
=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-=
size:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);ba=
ckground-color:transparent;font-variant-numeric:normal;font-variant-east-as=
ian:normal;font-variant-alternates:normal;vertical-align:baseline">=E2=80=
=A2 Post-Phase B, non-upgraded miners produce invalid blocks.</span></p><p =
dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><sp=
an style=3D"font-size:11pt;font-family:"Courier New",monospace;co=
lor:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;fon=
t-variant-east-asian:normal;font-variant-alternates:normal;vertical-align:b=
aseline">=E2=80=A2 A quantum attack on Bitcoin will significantly devalue b=
oth their hardware and Bitcoin as a whole. </span></p></span></span><span s=
tyle=3D"min-height:52pt"><span style=3D"border-width:1pt;border-style:solid=
;border-color:rgb(0,0,0);vertical-align:middle;padding:5pt;overflow:hidden"=
><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"=
><span style=3D"font-size:11pt;font-family:"Courier New",monospac=
e;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-varian=
t-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:nor=
mal;vertical-align:baseline">Institutional Holders</span></p></span><span s=
tyle=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertica=
l-align:top;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-heigh=
t:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font=
-family:"Courier New",monospace;color:rgb(0,0,0);background-color=
:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;fon=
t-variant-alternates:normal;vertical-align:baseline">=E2=80=A2 Fiduciary du=
ty: failing to act to prevent a quantum attack on Bitcoin would violate the=
fiduciary duty to shareholders. </span></p><p dir=3D"ltr" style=3D"line-h=
eight:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;=
font-family:"Courier New",monospace;color:rgb(0,0,0);background-c=
olor:transparent;font-variant-numeric:normal;font-variant-east-asian:normal=
;font-variant-alternates:normal;vertical-align:baseline">=E2=80=A2 Demonstr=
ating Bitcoin=E2=80=99s ability to effectively mitigate emerging threats wi=
ll prove Bitcoin to be an investment grade asset.</span></p></span></span><=
span style=3D"min-height:52pt"><span style=3D"border-width:1pt;border-style=
:solid;border-color:rgb(0,0,0);vertical-align:middle;padding:5pt;overflow:h=
idden"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-botto=
m:0pt"><span style=3D"font-size:11pt;font-family:"Courier New",mo=
nospace;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-=
variant-numeric:normal;font-variant-east-asian:normal;font-variant-alternat=
es:normal;vertical-align:baseline">Exchanges & Custodians</span></p></s=
pan><span style=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0=
,0);vertical-align:top;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D=
"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-siz=
e:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);backg=
round-color:transparent;font-variant-numeric:normal;font-variant-east-asian=
:normal;font-variant-alternates:normal;vertical-align:baseline">=E2=80=A2 C=
oncentrated risk: a quantum hack could bankrupt them overnight.</span></p><=
p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><=
span style=3D"font-size:11pt;font-family:"Courier New",monospace;=
color:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;f=
ont-variant-east-asian:normal;font-variant-alternates:normal;vertical-align=
:baseline">=E2=80=A2 Early migration is cheap relative to potential losses,=
potential lawsuits over improper custody and reputational damage.</span></=
p></span></span><span style=3D"min-height:52pt"><span style=3D"border-width=
:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:middle;paddi=
ng:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top=
:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:"Cou=
rier New",monospace;color:rgb(0,0,0);background-color:transparent;font=
-weight:700;font-variant-numeric:normal;font-variant-east-asian:normal;font=
-variant-alternates:normal;vertical-align:baseline">Everyday Users</span></=
p></span><span style=3D"border-width:1pt;border-style:solid;border-color:rg=
b(0,0,0);vertical-align:top;padding:5pt;overflow:hidden"><p dir=3D"ltr" sty=
le=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"fon=
t-size:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0);=
background-color:transparent;font-variant-numeric:normal;font-variant-east-=
asian:normal;font-variant-alternates:normal;vertical-align:baseline">=E2=80=
=A2 Self-sovereign peace of mind.</span></p><p dir=3D"ltr" style=3D"line-he=
ight:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;f=
ont-family:"Courier New",monospace;color:rgb(0,0,0);background-co=
lor:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;=
font-variant-alternates:normal;vertical-align:baseline">=E2=80=A2 Sunset da=
te creates a clear deadline and incentive to improve their security rather =
than an open-ended =E2=80=9Csome day=E2=80=9D that invites procrastination.=
</span></p></span></span><span style=3D"min-height:43.7925pt"><span style=
=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-al=
ign:middle;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height=
:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-=
family:"Courier New",monospace;color:rgb(0,0,0);background-color:=
transparent;font-weight:700;font-variant-numeric:normal;font-variant-east-a=
sian:normal;font-variant-alternates:normal;vertical-align:baseline">Attacke=
rs</span></p></span><span style=3D"border-width:1pt;border-style:solid;bord=
er-color:rgb(0,0,0);vertical-align:top;padding:5pt;overflow:hidden"><p dir=
=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span =
style=3D"font-size:11pt;font-family:"Courier New",monospace;color=
:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-v=
ariant-east-asian:normal;font-variant-alternates:normal;vertical-align:base=
line">=E2=80=A2 Economic incentive diminishes as sunset nears, stolen coins=
cannot be spent after Q-day.</span></p></span></span></span></span></div><=
p dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;margin-top:12pt;=
margin-bottom:12pt"><span style=3D"font-size:11pt;font-family:"Courier=
New",monospace;color:rgb(0,0,0);background-color:transparent;font-wei=
ght:700;font-variant-numeric:normal;font-variant-east-asian:normal;font-var=
iant-alternates:normal;vertical-align:baseline">Key Insight:</span><span st=
yle=3D"font-size:11pt;font-family:"Courier New",monospace;color:r=
gb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-var=
iant-east-asian:normal;font-variant-alternates:normal;vertical-align:baseli=
ne"> As mentioned earlier, the proposal turns quantum security into a </spa=
n><span style=3D"font-size:11pt;font-family:"Courier New",monospa=
ce;color:rgb(0,0,0);background-color:transparent;font-style:italic;font-var=
iant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:=
normal;vertical-align:baseline">private incentive to upgrade</span><span st=
yle=3D"font-size:11pt;font-family:"Courier New",monospace;color:r=
gb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-var=
iant-east-asian:normal;font-variant-alternates:normal;vertical-align:baseli=
ne">. </span></p><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;m=
argin-bottom:0pt"><span style=3D"font-size:11pt;font-family:"Courier N=
ew",monospace;color:rgb(0,0,0);background-color:transparent;font-varia=
nt-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:no=
rmal;vertical-align:baseline">This is not an offensive attack, rather, it i=
s defensive: our thesis is that the Bitcoin ecosystem wishes to defend itse=
lf and its interests against those who would prefer to do nothing and allow=
a malicious actor to destroy both value and trust. </span></p><p dir=3D"l=
tr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=
=3D"background-color:transparent;color:rgb(0,0,0);font-family:"Courier=
New",monospace;font-size:11pt;text-align:center"><br></span></p><bloc=
kquote style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,=
204);padding-left:1ex"><span style=3D"background-color:transparent;color:rg=
b(0,0,0);font-family:"Courier New",monospace;font-size:11pt;text-=
align:center">"Lost coins only make everyone else's coins worth slightly mo=
re. Think of it as a donation to everyone." - Satoshi Nakamoto</span></bloc=
kquote><br><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-b=
ottom:0pt"><span style=3D"font-size:11pt;font-family:"Courier New"=
;,monospace;color:rgb(0,0,0);background-color:transparent;font-variant-nume=
ric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;ve=
rtical-align:baseline">If true, the corollary is:</span></p><p dir=3D"ltr" =
style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"=
background-color:transparent;color:rgb(0,0,0);font-family:"Courier New=
",monospace;font-size:11pt;text-align:center"><br></span></p><blockquo=
te style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204)=
;padding-left:1ex"><span style=3D"background-color:transparent;color:rgb(0,=
0,0);font-family:"Courier New",monospace;font-size:11pt;text-alig=
n:center">"Quantum recovered coins only make everyone else's coins worth le=
ss. Think of it as a theft from everyone."</span></blockquote><br><p dir=3D=
"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span sty=
le=3D"font-size:11pt;font-family:"Courier New",monospace;color:rg=
b(0,0,0);background-color:transparent;font-variant-numeric:normal;font-vari=
ant-east-asian:normal;font-variant-alternates:normal;vertical-align:baselin=
e">The timelines that we are proposing are meant to find the best balance b=
etween giving ample ability for account owners to migrate while maintaining=
the integrity of the overall ecosystem to avoid catastrophic attacks. </s=
pan></p><br><span dir=3D"ltr" style=3D"line-height:1.38;margin-top:18pt;mar=
gin-bottom:4pt"><span style=3D"font-size:17pt;font-family:"Courier New=
",monospace;color:rgb(0,0,0);background-color:transparent;font-variant=
-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:norm=
al;vertical-align:baseline">Backward Compatibility</span></span><p dir=3D"l=
tr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=
=3D"font-size:11pt;font-family:"Courier New",monospace;color:rgb(=
0,0,0);background-color:transparent;font-variant-numeric:normal;font-varian=
t-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline"=
>As a series of soft forks, older nodes will continue to operate without mo=
dification. Non-upgraded nodes, however, will consider all post-quantum wit=
ness programs as anyone-can-spend scripts. They are strongly encouraged to =
upgrade in order to fully validate the new programs.</span></p><br><p dir=
=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span =
style=3D"font-size:11pt;font-family:"Courier New",monospace;color=
:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-v=
ariant-east-asian:normal;font-variant-alternates:normal;vertical-align:base=
line">Non-upgraded wallets can receive and send bitcoin from non-upgraded a=
nd upgraded wallets until Phase A. After Phase A, they can no longer receiv=
e from any other wallets and can only send to upgraded wallets. After Phas=
e B, both senders and receivers will require upgraded wallets. Phase C woul=
d likely require a loosening of consensus rules (a hard fork) to allow vuln=
erable funds recovery via ZK proofs.</span></p></span></div>
</blockquote></div></blockquote></div>
<p></p>
-- <br>
You received this message because you are subscribed to the Google Groups "=
Bitcoin Development Mailing List" group.<br>
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:bitcoindev+unsubscribe@googlegroups.com" target=
=3D"_blank" rel=3D"noreferrer nofollow noopener">bitcoindev+unsubscribe@goo=
glegroups.com</a>.<br>
To view this discussion visit <a href=3D"https://groups.google.com/d/msgid/=
bitcoindev/173b3bc4-7052-4e0e-9042-ca15cd5b0587n%40googlegroups.com" target=
=3D"_blank" rel=3D"noreferrer nofollow noopener">https://groups.google.com/=
d/msgid/bitcoindev/173b3bc4-7052-4e0e-9042-ca15cd5b0587n%40googlegroups.com=
</a>.<br>
</blockquote></div></div>
<p></p>
-- <br>
You received this message because you are subscribed to the Google Groups "=
Bitcoin Development Mailing List" group.<br>
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:bitcoindev+unsubscribe@googlegroups.com" target=
=3D"_blank" rel=3D"noreferrer nofollow noopener">bitcoindev+unsubscribe@goo=
glegroups.com</a>.<br>
To view this discussion visit <a href=3D"https://groups.google.com/d/msgid/=
bitcoindev/CADL_X_cgqHUOU6V9%2BGsEKz--ekxmgyYJwOg4BeLajAr_cTVN_g%40mail.gma=
il.com" target=3D"_blank" rel=3D"noreferrer nofollow noopener">https://grou=
ps.google.com/d/msgid/bitcoindev/CADL_X_cgqHUOU6V9%2BGsEKz--ekxmgyYJwOg4BeL=
ajAr_cTVN_g%40mail.gmail.com</a>.<br>
</blockquote></div>
<p></p>
-- <br>
You received this message because you are subscribed to the Google Groups "=
Bitcoin Development Mailing List" group.<br>
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:bitcoindev+unsubscribe@googlegroups.com" rel=3D"n=
oreferrer nofollow noopener">bitcoindev+unsubscribe@googlegroups.com</a>.<b=
r>
To view this discussion visit <a href=3D"https://groups.google.com/d/msgid/=
bitcoindev/CACgYNO%2B1tFwsd-V67fyCWv%3DWtAXp4V6RQhsTw8XpzYULF7u_UA%40mail.g=
mail.com" target=3D"_blank" rel=3D"noreferrer nofollow noopener">https://gr=
oups.google.com/d/msgid/bitcoindev/CACgYNO%2B1tFwsd-V67fyCWv%3DWtAXp4V6RQhs=
Tw8XpzYULF7u_UA%40mail.gmail.com</a>.<br>
</blockquote><br>
</div>
<p></p>
-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;Bitcoin Development Mailing List" group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:bitcoindev+unsubscribe@googlegroups.com">bitcoind=
ev+unsubscribe@googlegroups.com</a>.<br />
To view this discussion visit <a href=3D"https://groups.google.com/d/msgid/=
bitcoindev/rCO-ee8FiX-prHxWh07O38oxSkVxhkV7vBbk7I0IS7RxqkJydKN9b_ubg_BWwdCz=
w0lkskcD0zdyoJx6cr67cc-BQWS64snWYhex_2W7g6o%3D%40proton.me?utm_medium=3Dema=
il&utm_source=3Dfooter">https://groups.google.com/d/msgid/bitcoindev/rCO-ee=
8FiX-prHxWh07O38oxSkVxhkV7vBbk7I0IS7RxqkJydKN9b_ubg_BWwdCzw0lkskcD0zdyoJx6c=
r67cc-BQWS64snWYhex_2W7g6o%3D%40proton.me</a>.<br />
-----------------------660520a628ec0bec7cc89c747077393b--
-----------------------ad79ea749c561b1378cf57e1b8289bff--
-----------------------ffc922152e5c3708e39dabd95adc92d1
Content-Type: application/pgp-keys; filename="publickey - conduition@proton.me - 0x474891AD.asc"; name="publickey - conduition@proton.me - 0x474891AD.asc"
Content-Transfer-Encoding: base64
Content-Disposition: attachment; filename="publickey - conduition@proton.me - 0x474891AD.asc"; name="publickey - conduition@proton.me - 0x474891AD.asc"
LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tCgp4ak1FWkRub0tSWUpLd1lCQkFI
YVJ3OEJBUWRBcnBZYWFjZDgwcXdocmNaQW9VbW9NSHNWS21iZWlPZUEKcFhXbk1ybFdPZkxOSzJO
dmJtUjFhWFJwYjI1QWNISnZkRzl1TG0xbElEeGpiMjVrZFdsMGFXOXVRSEJ5CmIzUnZiaTV0WlQ3
Q2pBUVFGZ29BUGdXQ1pEbm9LUVFMQ1FjSUNaQjRLV3p0aFBhenhRTVZDQW9FRmdBQwpBUUlaQVFL
YkF3SWVBUlloQkVkSWthMENNdHJMZGcxM2EzZ3BiTzJFOXJQRkFBQTZhQUVBM1RmNHdqSVoKYnox
K0diS0h4K09WQytNUXlVdi84RStoWUpjTE5QZnA0NEFBLzNiak5OTXN4WHdJTGZEM0xManNVVWFo
CitBV2JyblVjVUFqQ2R1d3hUT01LempnRVpEbm9LUklLS3dZQkJBR1hWUUVGQVFFSFFDSXYxZW5J
MU5MbAo3Zm55RzlVWk1wQ3ZsdG5vc0JrTmhQUVZxT3BXL3RKSkF3RUlCOEo0QkJnV0NBQXFCWUpr
T2VncENaQjQKS1d6dGhQYXp4UUtiREJZaEJFZElrYTBDTXRyTGRnMTNhM2dwYk8yRTlyUEZBQUFR
TFFEL2NCR2kwUDdwCkZTTkl2N1B6OVpkeUNVQjhzTy90dWZkV3NjQkNZK2ZMYTV3QkFNK0hTL3Jp
S014RGt0TkhLakRGc2EvUgpEVDFxUGNBYXZCaXc2dDZ4Ti9jRgo9Y3d5eAotLS0tLUVORCBQR1Ag
UFVCTElDIEtFWSBCTE9DSy0tLS0tCg==
-----------------------ffc922152e5c3708e39dabd95adc92d1--
--------bbf34a47ca36a48e22d99a124f6dc54c13b02b90dd376818b6ef8182e3bffa3e
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: OpenPGP digital signature
Content-Disposition: attachment; filename="signature.asc"
-----BEGIN PGP SIGNATURE-----
Version: ProtonMail
wrsEARYKAG0FgmiozCYJkHgpbO2E9rPFRRQAAAAAABwAIHNhbHRAbm90YXRp
b25zLm9wZW5wZ3Bqcy5vcmd4S0z6EsYeDwJt3bWiFUDAYlJmgHpSjbAYTv9F
h+jv0BYhBEdIka0CMtrLdg13a3gpbO2E9rPFAAA6bQD/W87px5+TyCd9X4m1
DG2NQUKqZ9ca7BaACE+8Fr/SThEA/15UjtkenHaRgqzJHPeTM451VAlxvf4d
naj0FoOE4QcP
=Jxqx
-----END PGP SIGNATURE-----
--------bbf34a47ca36a48e22d99a124f6dc54c13b02b90dd376818b6ef8182e3bffa3e--
|