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
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
|
Delivery-date: Fri, 25 Jul 2025 09:59:50 -0700
Received: from mail-qk1-f188.google.com ([209.85.222.188])
by mail.fairlystable.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
(Exim 4.94.2)
(envelope-from <bitcoindev+bncBC3PT7FYWAMRB6HPR3CAMGQEVBLSHYQ@googlegroups.com>)
id 1ufLlr-0007f4-9F
for bitcoindev@gnusha.org; Fri, 25 Jul 2025 09:59:50 -0700
Received: by mail-qk1-f188.google.com with SMTP id af79cd13be357-7e03ac1bf79sf184823585a.3
for <bitcoindev@gnusha.org>; Fri, 25 Jul 2025 09:59:47 -0700 (PDT)
ARC-Seal: i=2; a=rsa-sha256; t=1753462781; cv=pass;
d=google.com; s=arc-20240605;
b=JH01dHg+7NprB4rtI92VHZYsM3F5917X1Sj5mBZztr8Fu1xzlApP95Bu9Ulf7tfmU2
T21JfMpLUZBVCSgin16HUbni5sRc1NkWFwf0mJ6pN3+A5Si5AAPMh4+bJW9qFrFXzZno
HoBpn7vddVova26OVNLzDalHVa2pJ1NAbkw9ZEg6L2VM/00oQvkTdeoiiobrdrvw57XN
xMNGeUQX4su5I4JIgLI62l1F0kbGDFQ0jHi8D5x50Jm2Bzm0IXgOFjqK7ZNvX7EezJU3
XDnvWGRnKWKyn2EGPTCGWLQd2bSTuJDoB4ffDkbjGOU1ueGXQSDUIfJ+4FjLtQVIMl+F
cWew==
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:cc:to:subject:message-id:date:from
:in-reply-to:references:mime-version:sender:dkim-signature
:dkim-signature;
bh=JG7Hhwkn2/cRclm3TS+0TeE4BUj+2S7t7sS4Mdsx4M0=;
fh=OlLv6RGYoydLq4CD8AvU6bggEsmZkIhyp8hNwuY7wdM=;
b=GRqjtheAQ2ePdiCP1KxjBqukwBtYsoD/+pUw+NRVGzM0Juqp7NXmUc7P7uLSgf/mes
n+3MpBOZL/dqkv7HYAy3CToOjLPpEt7DbF5y9O5U+uXeUEIYI7t3fnfujbu5ZVYOXcWQ
sP6Vp8sRC5KNq7KANzz4MMUlJ352AzLMJrCpn4rimIrYacDJMYXLj6+NbiEJW7xM/iG6
av3teoAhqUJlVf1sRE3DxAG0bDA3ZXPW1uPgglPGVaJ97HJqLQnlkSp5HXrvttjBl9p1
OASG0LFUvHiU9PiWpYh89XS7FwdVAejw5BTtIdzem+iOHl9PcLJfSS/NzGV0WBbMjhAJ
l0yg==;
darn=gnusha.org
ARC-Authentication-Results: i=2; gmr-mx.google.com;
dkim=pass header.i=@gmail.com header.s=20230601 header.b="K/cvdiVW";
spf=pass (google.com: domain of antoine.riard@gmail.com designates 2607:f8b0:4864:20::102f as permitted sender) smtp.mailfrom=antoine.riard@gmail.com;
dmarc=pass (p=NONE sp=QUARANTINE dis=NONE) header.from=gmail.com;
dara=pass header.i=@googlegroups.com
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=googlegroups.com; s=20230601; t=1753462781; x=1754067581; darn=gnusha.org;
h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
:list-id:mailing-list:precedence:x-original-authentication-results
:x-original-sender:cc:to:subject:message-id:date:from:in-reply-to
:references:mime-version:sender:from:to:cc:subject:date:message-id
:reply-to;
bh=JG7Hhwkn2/cRclm3TS+0TeE4BUj+2S7t7sS4Mdsx4M0=;
b=U0NuQGLqazXBqIHunP4RampTHHfv0N2/dFS9vbJcuwJqwFL3dacQYBif9eLJQDaTyG
ghfP6h6Wb4cbuK5LlnuKv0tT/bkileTu7dZCIrPt0HW0QiCwJr1hVj+LYEekQpTTbifw
cUzxxyrLnLCyOcUawFvleaR5bWB1fW66HX/ncCDl0bQa2PNvkySQiZM+Lmlmdm/JcV4Y
8+MG7uA/0OS9UQPvGR3dIS7jmQL2fFGMqVWab1Kfn28EPkSs9nb+Wqk0sT+eL/RJ6o7T
6y1SI+FScobgmAUpgMcnaBk04eZ6HH6nVSjgiYMctRsztMJfUFVQWA1CnNbpzbSxZE3E
pFtA==
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=gmail.com; s=20230601; t=1753462781; x=1754067581; darn=gnusha.org;
h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
:list-id:mailing-list:precedence:x-original-authentication-results
:x-original-sender:cc:to:subject:message-id:date:from:in-reply-to
:references:mime-version:from:to:cc:subject:date:message-id:reply-to;
bh=JG7Hhwkn2/cRclm3TS+0TeE4BUj+2S7t7sS4Mdsx4M0=;
b=TSCYBo74MpZ77W42ugnj/1OTrXRsEmgKNE8pHmw1zXZZ8J1F4z8l8Q0ri/EjnBGLsL
nGwacOfXA7tXfp/njB4lOzcuUNvDi7TvRxc0HsOQeXmgPleLmvpcaZcdutE1rcOIvJ/g
zGWvPsuwA66iAi7ircyrP7edVF3ORQglohCdXgVNkzWz3QqyeIBevEnx9EApFyXh9L81
JOxLdEg7x497LE4+ZhZ5AdrQ+METzcesx6AJiva5Rsi1C8BWXLxjX2xUfCw46y8RTd9A
SIHYxOEbfL+6NuACKsBHogsgGInBMxcQLJoBJg5n8/LtOq6/1lCnqCN+vkxGjNAoElL3
kc/Q==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=1e100.net; s=20230601; t=1753462781; x=1754067581;
h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
:list-id:mailing-list:precedence:x-original-authentication-results
:x-original-sender:cc:to:subject:message-id:date:from:in-reply-to
:references:mime-version:x-beenthere:x-gm-message-state:sender:from
:to:cc:subject:date:message-id:reply-to;
bh=JG7Hhwkn2/cRclm3TS+0TeE4BUj+2S7t7sS4Mdsx4M0=;
b=txW2Mf4oO+Us9ozLbRTTXB5wA66wLSqUAYLN3UmbXPDYS/t5DK8RmHDQVisJWzOtp8
DB+DfTxFs8DUxZ8utAxeCXbahTVORe/QTv7RwXN0ZkEA+ffEpk98dpaQn+wqENzzHlRv
x+03YotsCYgPlFqotxUiO6PtWtn5Np5BmQbFRA4DL9s/Xc+pvUbl1gx6p6oA2F1A+0DH
mbk1II78BdUDimPRsw9R5hsSOyaqyYzgbLxJ0OlIYvUuS2z0WxkWHkwPoGlKY/FL8b5k
R8tiko++wHA7TYvotzws+PWGDiiw23tWPOvoFj5EQ2i+2D0hwwb3fbmDeIzhhXXKOIPS
pm+w==
Sender: bitcoindev@googlegroups.com
X-Forwarded-Encrypted: i=2; AJvYcCUAhS+UgGQCWrUSXbPsMXxfp1Ocvk48v/IUCDeVyHLoFs5Bx5xC68vSFI/hQusBTvC4mer6YODUpH4N@gnusha.org
X-Gm-Message-State: AOJu0YxR1sgBdLzjb5VkAULDYWq4peuXQQIGBwc6TVq37CLUcFbDOlqY
eCVJuGG+TE8t1jCt7Fbo2a7Qf5YhNiftXkFy+Ie16x6XP3frOxPvncvD
X-Google-Smtp-Source: AGHT+IFyKT3bUmPfXlJdNsLjOg3VOIj5L2ZABqN1Geyk5/qInt9vfE8hOByCX+XZsQTu0mBQtCbk1Q==
X-Received: by 2002:a05:620a:370d:b0:7e0:9977:a803 with SMTP id af79cd13be357-7e63c1bafffmr338522085a.54.1753462780069;
Fri, 25 Jul 2025 09:59:40 -0700 (PDT)
X-BeenThere: bitcoindev@googlegroups.com; h=AZMbMZftkRKwQ0quaCURUu7lT4VGdjdjAPtfEz6/4UxODFhAsA==
Received: by 2002:a05:622a:552:b0:4ab:8d30:5860 with SMTP id
d75a77b69052e-4ae7bd33e2bls39016401cf.1.-pod-prod-08-us; Fri, 25 Jul 2025
09:59:36 -0700 (PDT)
X-Received: by 2002:a05:620a:19a7:b0:7e6:301e:d03e with SMTP id af79cd13be357-7e63bf5b49amr273897785a.12.1753462776509;
Fri, 25 Jul 2025 09:59:36 -0700 (PDT)
Received: by 2002:a05:620a:a009:b0:7c5:50d5:7703 with SMTP id af79cd13be357-7e34d62451bms85a;
Fri, 18 Jul 2025 12:13:42 -0700 (PDT)
X-Received: by 2002:a05:620a:4492:b0:7e3:412f:14f5 with SMTP id af79cd13be357-7e3436167fcmr1552149585a.43.1752866020843;
Fri, 18 Jul 2025 12:13:40 -0700 (PDT)
ARC-Seal: i=1; a=rsa-sha256; t=1752866020; cv=none;
d=google.com; s=arc-20240605;
b=YiTeyNj5nT+cOXvCByUIpKTqLKi/dDzEb/CZUboGNddrpuj54rJ+CsXjOVt8U2Oy/v
l71hn8SVkHv3LLq7q4XDCIzfYeyr8//0mWoksnPAm5r1hEtO/i7iJzEagktHt0WXvQJe
4WmaKHE6TkN3+p9Zcmz0D+2KyBwEtU6uaX2BXCgGAlGtrUssGqSzm8aCFOEr6KbGq/Pc
EdlDmHJC326ycbDIcY44FSbsgCPLaC8b5OL1p0e6vsPVPjFGZ2pxo23bjJ5HwN243HX5
s0JXh8EDMbKeo+lEcDKpdhE8eey8VLrMADHmkIE+KwhJBj8XgzLHhiJnfXYimwuO5dYx
kq2Q==
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20240605;
h=cc:to:subject:message-id:date:from:in-reply-to:references
:mime-version:dkim-signature;
bh=5w52R4pq2ECjsn6XVCa3/7kSgWNIFpGjyO7zlUpZhcA=;
fh=dEDbYMbbYyDNRr1LOwMlw2+lJDEDNk0XskwzeS3uI5o=;
b=MlwgDH99iWd8Si8SQd9EbNH+/gj8Ah97wd/ePZivUmMfjunbZCqSXdR2W1nx6Be0mP
uwxrDAyKPqkWN/ObXl8zew0grBRnlVPFg9meNH9xvIKJ99qwTBf6TK2dLE0X5iDdjkIx
Tx1GQggD4q+227fSSf23Bg2fOAupZNnO/LI5n+0jSREo9m/DPcoo/EDNaihWFM+OFFwg
b+Y0Os1TFwwpcTVSZ2uwzCF/fv501ML0ihNVWyauksSrp6A/oTMS9gLNT2wmEKYm9bdM
2vytCRGJivd0ElT6w9iZTqxElal9STJcgxZXMfZQ1zz7MtlH2LyhTOVO2n0SdxJbcpqL
3VzA==;
dara=google.com
ARC-Authentication-Results: i=1; gmr-mx.google.com;
dkim=pass header.i=@gmail.com header.s=20230601 header.b="K/cvdiVW";
spf=pass (google.com: domain of antoine.riard@gmail.com designates 2607:f8b0:4864:20::102f as permitted sender) smtp.mailfrom=antoine.riard@gmail.com;
dmarc=pass (p=NONE sp=QUARANTINE dis=NONE) header.from=gmail.com;
dara=pass header.i=@googlegroups.com
Received: from mail-pj1-x102f.google.com (mail-pj1-x102f.google.com. [2607:f8b0:4864:20::102f])
by gmr-mx.google.com with ESMTPS id af79cd13be357-7e356c1cfa9si11949185a.3.2025.07.18.12.13.40
for <bitcoindev@googlegroups.com>
(version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128);
Fri, 18 Jul 2025 12:13:40 -0700 (PDT)
Received-SPF: pass (google.com: domain of antoine.riard@gmail.com designates 2607:f8b0:4864:20::102f as permitted sender) client-ip=2607:f8b0:4864:20::102f;
Received: by mail-pj1-x102f.google.com with SMTP id 98e67ed59e1d1-315c1b0623cso2384594a91.1
for <bitcoindev@googlegroups.com>; Fri, 18 Jul 2025 12:13:40 -0700 (PDT)
X-Gm-Gg: ASbGncsiLNSdlzT5e23m/3cpNCflMKsRHOjzqwEX4hVJEfc48DTD8/Pz93YRoYYWIEr
Mdj8Q9dLEpvBOfP05G0Bi4jwWLOj+SCsg4XQzZVhO2qlg4uDyNSF7ENpeBnFTCN2dbkWz16OThj
c9XVPdiNLIIISbyVyy6WEH38kGAVsNbFMaU7qNVUP+O3fnRp/g5YXZJEe+fniV76zT6asBMY9oq
9AogrXG
X-Received: by 2002:a17:90b:4985:b0:311:c1ec:7d12 with SMTP id
98e67ed59e1d1-31c9f43718cmr16814274a91.23.1752866019263; Fri, 18 Jul 2025
12:13:39 -0700 (PDT)
MIME-Version: 1.0
References: <CADL_X_fpv-aXBxX+eJ_EVTirkAJGyPRUNqOCYdz5um8zu6ma5Q@mail.gmail.com>
<37ed2e5d-34cd-4391-84b8-5bcc6d42c617n@googlegroups.com> <4d9ce13e-466d-478b-ab4d-00404c80d620n@googlegroups.com>
<CADL_X_f3sDECRUosNaXyez3F_inKjJAWm=ESm3DSLCKD4JV7yA@mail.gmail.com>
In-Reply-To: <CADL_X_f3sDECRUosNaXyez3F_inKjJAWm=ESm3DSLCKD4JV7yA@mail.gmail.com>
From: Antoine Riard <antoine.riard@gmail.com>
Date: Fri, 18 Jul 2025 20:13:26 +0100
X-Gm-Features: Ac12FXy3c5WArHzvL6438O6uDZ9XSXKMHhSDrWeEYsDVm97bNzuVYa7sHJ7yk-Y
Message-ID: <CALZpt+Ei2r_sXP5cw+L2wP9zQ0_8L-JSfG16zRSayuP9cTdt2Q@mail.gmail.com>
Subject: Re: [bitcoindev] Re: A Post Quantum Migration Proposal
To: Jameson Lopp <jameson.lopp@gmail.com>
Cc: Bitcoin Development Mailing List <bitcoindev@googlegroups.com>
Content-Type: multipart/alternative; boundary="0000000000006ac9fe063a38eccf"
X-Original-Sender: antoine.riard@gmail.com
X-Original-Authentication-Results: gmr-mx.google.com; dkim=pass
header.i=@gmail.com header.s=20230601 header.b="K/cvdiVW"; spf=pass
(google.com: domain of antoine.riard@gmail.com designates 2607:f8b0:4864:20::102f
as permitted sender) smtp.mailfrom=antoine.riard@gmail.com; dmarc=pass
(p=NONE sp=QUARANTINE dis=NONE) header.from=gmail.com; dara=pass header.i=@googlegroups.com
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: -0.5 (/)
--0000000000006ac9fe063a38eccf
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
> Beware the blurry line between stoicism and apathy.
>
> How well will it play out if we can say "well, we could have stopped a
massive threat but chose not to, because we were confident the system would
survive."
>
> The alternative path is "we saw a threat coming and the community
collaborated to neutralize it before massive harm occurred."
>
> Both scenarios show resilience. Which evokes greater confidence?
Beware "ce qu'on ne voit pas" and the perverse incentives introduced by a
Q-Day.
Expect massively PQ "claimed-to-be" secure wallet rushed under a false
sense of emergency, very insecure against classic attacks.
If I was running a big custodian, def old schoold insurance on quantum risk
is a thing. They already do for pure custody risks.
Otherwise, it's a typical "trolly problem" applied to bitcoin protocol dev.
Indeed multiple viewpoints can be valid.
> I can't speak for Jameson, but let me put forward my own concern. If
miners can buy much less electricity for 1-BTC this is a major problem for
Bitcoin. If the price of electricity denominated in Bitcoin goes way up,
miners will have to mine at a massive loss. Many will stop mining, then the
block rate will go down and Bitcoin will appear to be less valuable (high
fees, slow confirmation, panic), which makes mining even more of a loss,
and so on. This also invites miners who have nothing left to lose to engage
in mining attacks.
It's a real problem, but not specific to quantum. The same risk could
happen when the inflation schedule is dried up after few halvings, or other
exogeneous reason.
About the price crash and hypothetical impact on miners, a lot of open
dimensions:
- unclear if the quantum adversary is economically rational and HODL its
stack
- unclear if the quantum adversary would be able to liquidate its BTC stack
bc on-ramp flagging them as stolen BTCs
- fragmentation of the on-ramp BTC markets over the world and if price down
would reflect uniformly
- unclear if selling strategy of quantum adversary can be anticipated by
miners
- poor elasticity of demand for miners electricity providers (e.g hydro
or flare)
- unclear if the price crash can be quickly corrected by strong hands
anticipating the "once-in-a-lifetime" cheap sell
- what else ?
I do agree it's a serious concern to have. On the other hand, we don't have
a real quantitative model to reason on miners reaction.
In my view, this conv would be far more constructive, fact-based if someone
can come up with a model on miners impact with what if ~20% of coins are
quantum nuked.
Best,
Antoine
OTS hash: 74b5c0cdee22c391c2c50b052b652368ce1d01edc660077847b8ed662f0d172c
Le lun. 14 juil. 2025 =C3=A0 19:52, Jameson Lopp <jameson.lopp@gmail.com> a
=C3=A9crit :
>
>
> On Mon, Jul 14, 2025 at 10:09=E2=80=AFAM Antoine Riard <antoine.riard@gma=
il.com>
> wrote:
>
>> Hi Jameson,
>>
>> Thanks for your thoughts on this complex subject.
>>
>> First and foremost, I think your following statement: "Never before has
>> Bitcoin faced
>> an existential threat to its cryptographic primitives" is very myopic,
>> given that
>> cryptanalysts and number theorists are making progress every year in
>> their works, and
>> each bitcoin cryptographic primitive has been and is constantly analyzed
>> to uncover
>> potential weaknesses.
>>
>> So in my view the quantum threat is a bit less specific that the image
>> you're painting
>> of it. Even if go all to upgrade to lattices-based schemes, we have no
>> certainty that
>> novels flaws won't be found, one can just go to see the modifications of
>> the NIST-approved
>> schemes in between their rounds of selection that we'll never reach
>> something like
>> "self-sovereign peace of mind"...Unless we start to forbid people of
>> practicing the
>> art of mathematics, practice which has been ongoing since Euclide and
>> Pythagore...
>>
>> I do concede that quantum is a bit different, as after all new physics
>> paradigm
>> do not happen often (Heisenberg published in the 20s iirc), though that'=
s
>> in my
>> view the flaw of your reasoning as you're assuming some "post-quantum"
>> upgraded
>> state where bitcoin, as a community and a network, would be definitely
>> safe from
>> advances in applied science. At minima, in my understanding, you're
>> arguing this
>> time is different to justify extra-ordinary technical measures never see=
n
>> before,
>> namely the freezing of "vulnerable" coins.
>>
>>
> Correct, this time is different in that we're not talking about vague
> unknown weaknesses. Rather, we're talking about a known algorithm that
> makes breaking cryptographic primitives orders of magnitude cheaper.
>
> The unknown becomes the rate at which advancements in quantum computing
> will be achieved, which is concerning given the funding going into pushin=
g
> said advancements forward.
>
>
>> I'm worried this is opening a Pandora box, where we would introduce a
>> precedent
>> that it is legitimate as a community to technicaly confiscate some coins
>> of users,
>> without their _consents_, for extra-ordinary reasons. That's opening a
>> worms of
>> shenanigans in the future...There is no guarantee that this precedent
>> won't
>> be leveraged in the future by any group of entities to justify future
>> upgrades
>> eroding one of the "fundamental property" you're yourself deeming as
>> valuable.
>>
>>
> This is a fair fear, though the counterpoint is that it is legitimate for
> the community to protect itself against security threats. It just so
> happens that both viewpoints can be valid.
>
> This is especially worrying as if I'm understanding you correctly you're
>> justifying
>> this position as that somehow we should protect the price of the currenc=
y
>> as an end
>> in itself (i.e "Beyond its impact on price, ..."). It's unclear the pric=
e
>> of bitcoin
>> versus what fiat or hard asset (e.g oil) you have in mind. And in anyway=
,
>> as far
>> as I know, none of the bitcoin devs is seating on the board of the FED,
>> the ECB
>> or the BoJ...
>>
>> To put it simply, even if a quantum attacker can tomorrow starts to stea=
l
>> vulnerable coins, 1 BTC will be always equal to 1 BTC. Full stop. In my
>> humble
>> opinion, let's not introduce the idea that, we, as a community of
>> stakeholders
>> and developers we have a positive "fiduciary" duty to act to maintain th=
e
>> price
>> of bitcoin in some "monetary snake" with another class of assets...
>>
>>
> Protocol developers have no fiduciary duty to bitcoin holders. I wouldn't
> argue they have any duty whatsoever to users.
>
> Bitcoin is not (yet) a unit of account. The ecosystem does not run on 1
> BTC =3D 1 BTC. The purchasing power of satoshis is very much relevant to =
the
> health and sustainability of the ecosystem at its current level.
>
> I would not claim that "devs must do something" - rather, I believe that
> the incentives of other groups I outlined will roughly align them with my
> thinking.
>
> That's also the problem with game theory, all the matrices of analysis ar=
e
>> based on some scale of utilitarism. See Von Neuman's Theory of Games, th=
e
>> section on "The Notion of Utility". My subjective appreciation of the
>> value
>> of my coins might not be your subjective appreication of the value of yo=
ur
>> coins.
>>
>> Now I do understand the perspective of the institutional holders, the
>> exchanges,
>> the custodians or any other industry providers, who might be in the full
>> uncertainty
>> about their business responsibilities in case of a quantum threat
>> affecting their
>> custodied coins. But, first legally speaking there is something call
>> "force majeure"
>> and in view of the quantum threat, which is a risk discussed far beyond
>> the bitcoin
>> industry, they should be able to shield themselves behind that. Secondly=
,
>> if there
>> is any futute upgrade "opt-in" only path a la BIP360, you can move your
>> funds or
>> the ones under custody under a PQC scheme like Dilthium or Falcon and b=
e
>> good
>> without caring about what the others users are doing. Thirdly, if you're
>> an actor
>> in the industry like Coinbase and you're deeply concerned about how
>> extended maelstrom
>> on the price might affect the viability of your operations, it is unclea=
r
>> to me why
>> you don't call MunichRe or any other company like that tomorrow to craft
>> and be
>> covered by specific insurance on quantum threats...
>>
>> Agreed that companies may be legally protected from lawsuits. Not sure
> about the insurance angle, though I'd see that as a one time payout
> that could very well come at the expense of said business ceasing
> operations. I suspect few businesses would be happy with that.
>
> Unfortunately I don't think opt-in security suffices in this situation.
> Human nature is to procrastinate and if the incentives are insufficient t=
o
> motivate mass migration to quantum secure schemes, Q-Day will be
> quite unpleasant.
>
>
>> To be frank, all those considerations on how "I cannot see how the
>> currency can
>> maintain any value at all in such a setting", is a strong red flag of lo=
w
>> time
>> preferences. It's not like we're used to strong volatility in bitcoin
>> with the
>> almost 2 decades of operations of the network. In my view, it's more a
>> hint of
>> very high-exposition by some to a single class of asset, i.e bitcoin,
>> rather than wise
>> diversification... And a push to sacrify a "fundamental property" i.e
>> "conservatism"
>> in view of short-term concerns (i.e the stability of the currency price
>> along
>> a period of few years).
>>
>>
> Bitcoin has many inviolable properties and some of them are actually in
> conflict with each other. Conservatism and property rights are clearly on
> the table in this matter.
>
> But shouldn't one of Bitcoin's fundamental properties be the fact that it
> can be upgraded? That it can respond to new challenges and threats?
>
> Beyond just the quantum computing issue, I expect the above to create
> continued conflict between ossifiers and developers over the long term.
>
> Do not get me wrong, I'm certainly not of the school "let's reward quantu=
m
>> attackers". Leveraging techical superiority and employing CRQRC to steal
>> vulnerable coins would be clearly a theft. But ethically, the best we ca=
n
>> do is
>> to have an opt-in upgrade path and be pro-active, by education and
>> outreach,
>> to have the maximum of coin owners upgrading to non-vulnerable addresses
>> types.
>> Then show the level of "fortitude" or "endurance" as a community in face
>> of price
>> fluctuations for a while, while seeing regularly old P2PK coins hacked.
>> Marcus
>> Aurelius can be bought for few bucks in most of decent libraries...
>>
>>
> Beware the blurry line between stoicism and apathy.
>
> How well will it play out if we can say "well, we could have stopped a
> massive threat but chose not to, because we were confident the system wou=
ld
> survive."
>
> The alternative path is "we saw a threat coming and the community
> collaborated to neutralize it before massive harm occurred."
>
> Both scenarios show resilience. Which evokes greater confidence?
>
> I'm definitely on the "no old coins confiscation" position you're
>> underlighting:
>>
>> "I don't see why old coins should be confiscated. The better option is t=
o
>> let
>> those with quantum computers free up old coins. While this might have an
>> inflationary impact on bitcoin's price, to use a turn of phrase, the
>> inflation
>> is transitory. Those with low time preference should support returning
>> lost
>> coins to circulation".
>>
>> Notwhitstanding that I disagree with your position, one can only
>> appreciate
>> the breadth and depth with which you're gathering and articulating all t=
he
>> elements on this complex problem.
>>
>> Best,
>> Antoine
>> OTS hash: c064b43047bf3036faf098b5ac8e74930df63d25629f590a41952229794028=
26
>> Le lundi 14 juillet 2025 =C3=A0 00:53:34 UTC+1, Tadge Dryja a =C3=A9crit=
:
>>
>>> Hi
>>>
>>> While I generally agree that "freeze" beats "steal", and that a lot of
>>> lead time is good, I don't think this plan is viable.
>>> To me the biggest problem is that it ties activation of a PQ output typ=
e
>>> to *de*activation of EC output types. That would mean that someone who
>>> wants to keep using all the great stuff in libsecp256k1 should try to
>>> prevent BIP360 from being activated.
>>>
>>> Sure, there can be risks from CRQCs. But this proposal would go the
>>> other direction, disabling important functionality and even destroying
>>> coins preemptively, in anticipation of something that may never happen.
>>>
>>> Also, how do you define "quantum-vulnerable UTXO"? Would any P2PKH, or
>>> P2WPKH output count? Or only P2PKH / P2WPKH outputs where the public k=
ey
>>> is already known? I can understand disabling spends from known-pubkey
>>> outputs, but for addresses where the public key has never been revealed=
,
>>> commit/reveal schemes (like the one I posted about & am working on a
>>> follow-up post for) should safely let people spend from those outputs
>>> indefinitely.
>>>
>>> With no evidence of a QRQC, I can see how there would be people who'd
>>> say "We might never really know if a CRQC exists, so we need to disable=
EC
>>> spends out of caution" and others who'd say "Don't disable EC spends, s=
ince
>>> that's destroying coins", and that could be a persistent disagreement. =
But
>>> I hope if we did in fact have a proof that a CRQC has broken secp256k1,
>>> there would be significant agreement on freezing known-pubkey EC output=
s.
>>>
>>> -Tadge
>>> On Saturday, July 12, 2025 at 8:46:09=E2=80=AFPM UTC-4 Jameson Lopp wro=
te:
>>>
>>>> Building upon my earlier essay against allowing quantum recovery of
>>>> bitcoin
>>>> <https://groups.google.com/g/bitcoindev/c/uUK6py0Yjq0/m/6peEaa90AQAJ>
>>>> I wish to formalize a proposal after several months of discussions.
>>>>
>>>> This proposal does not delve into the multitude of issues regarding
>>>> post quantum cryptography and trade-offs of different schemes, but rat=
her
>>>> 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.
>>>>
>>>> As such, this proposal requires P2QRH as described in BIP-360 or
>>>> potential future proposals.
>>>> Abstract
>>>>
>>>> This proposal follows the implementation of post-quantum (PQ) output
>>>> type (P2QRH) and introduces a pre-announced sunset of legacy ECDSA/Sch=
norr
>>>> signatures. It turns quantum security into a private incentive: fail
>>>> to upgrade and you will certainly lose access to your funds, creating =
a
>>>> certainty where none previously existed.
>>>>
>>>> -
>>>>
>>>> Phase A: Disallows sending of any funds to quantum-vulnerable
>>>> addresses, hastening the adoption of P2QRH address types.
>>>> -
>>>>
>>>> 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.
>>>> -
>>>>
>>>> Phase C (optional): Pending further research and demand, a separate
>>>> BIP proposing a fork to allow recovery of legacy UTXOs through ZK p=
roof of
>>>> possession of BIP-39 seed phrase.
>>>>
>>>> Motivation
>>>>
>>>> We seek to secure the value of the UTXO set and minimize incentives
>>>> for quantum attacks. This proposal is radically different from any in
>>>> Bitcoin=E2=80=99s history just as the threat posed by quantum computin=
g is
>>>> radically different from any other threat in Bitcoin=E2=80=99s history=
. Never
>>>> before has Bitcoin faced an existential threat to its cryptographic
>>>> primitives. A successful quantum attack on Bitcoin would result in
>>>> significant economic disruption and damage across the entire ecosystem=
.
>>>> Beyond its impact on price, the ability of miners to provide network
>>>> security may be significantly impacted.
>>>>
>>>> -
>>>>
>>>> Accelerating quantum progress.
>>>> -
>>>>
>>>> NIST ratified three production-grade PQ signature schemes in
>>>> 2024; academic road-maps now estimate a cryptographically-releva=
nt quantum
>>>> computer as early as 2027-2030. [McKinsey
>>>> <https://www.mckinsey.com/~/media/mckinsey/business%20functions/=
mckinsey%20digital/our%20insights/the%20year%20of%20quantum%20from%20concep=
t%20to%20reality%20in%202025/quantum-monitor-2025.pdf?shouldIndex=3Dfalse>
>>>> ]
>>>> -
>>>>
>>>> Quantum algorithms are rapidly improving
>>>> -
>>>>
>>>> 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
>>>> <https://security.googleblog.com/2025/05/tracking-cost-of-quantu=
m-factori.html>,
>>>> lowering the theoretical hardware requirements for breaking clas=
sical
>>>> encryption.
>>>> -
>>>>
>>>> Bitcoin=E2=80=99s exposed public keys.
>>>> -
>>>>
>>>> Roughly 25% of all bitcoin have revealed a public key on-chain;
>>>> those UTXOs could be stolen with sufficient quantum power.
>>>> -
>>>>
>>>> We may not know the attack is underway.
>>>> -
>>>>
>>>> Quantum attackers could compute the private key for known public
>>>> keys then transfer all funds weeks or months later, in a covert =
bleed to
>>>> not alert chain watchers. Q-Day may be only known much later if =
the attack
>>>> withholds broadcasting transactions in order to postpone reveali=
ng their
>>>> capabilities.
>>>> -
>>>>
>>>> Private keys become public.
>>>> -
>>>>
>>>> Assuming that quantum computers are able to maintain their
>>>> current trajectories and overcome existing engineering obstacles=
, there is
>>>> a near certain chance that all P2PK (and other outputs with expo=
sed
>>>> pubkeys) private keys will be found and used to steal the funds.
>>>> -
>>>>
>>>> Impossible to know motivations.
>>>> -
>>>>
>>>> Prior to a quantum attack, it is impossible to know the
>>>> motivations 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.
>>>> -
>>>>
>>>> Upgrade inertia.
>>>> -
>>>>
>>>> Coordinating wallets, exchanges, miners and custodians
>>>> historically takes years.
>>>> -
>>>>
>>>> The longer we postpone migration, the harder it becomes to
>>>> coordinate wallets, exchanges, miners, and custodians. A clear, =
time-boxed
>>>> pathway is the only credible defense.
>>>> -
>>>>
>>>> Coordinating distributed groups is more prone to delay, even if
>>>> everyone has similar motivations. Historically, Bitcoin has been=
slow to
>>>> adopt code changes, often taking multiple years to be approved.
>>>>
>>>> Benefits at a Glance
>>>>
>>>> -
>>>>
>>>> Resilience: Bitcoin protocol remains secure for the foreseeable
>>>> future without waiting for a last-minute emergency.
>>>> -
>>>>
>>>> Certainty: Bitcoin users and stakeholders gain certainty that a
>>>> plan is both in place and being implemented to effectively deal wit=
h the
>>>> threat of quantum theft of bitcoin.
>>>> -
>>>>
>>>> Clarity: A single, publicized timeline aligns the entire ecosystem
>>>> (wallets, exchanges, hardware vendors).
>>>> -
>>>>
>>>> Supply Discipline: Abandoned keys that never migrate become
>>>> unspendable, reducing supply, as Satoshi described
>>>> <https://bitcointalk.org/index.php?topic=3D198.msg1647#msg1647>.
>>>>
>>>> Specification
>>>>
>>>> Phase
>>>>
>>>> What Happens
>>>>
>>>> Who Must Act
>>>>
>>>> Time Horizon
>>>>
>>>> Phase A - Disallow spends to legacy script types
>>>>
>>>> Permitted sends are from legacy scripts to P2QRH scripts
>>>>
>>>> Everyone holding or accepting BTC.
>>>>
>>>> 3 years after BIP-360 implementation
>>>>
>>>> Phase B =E2=80=93 Disallow spends from quantum vulnerable outputs
>>>>
>>>> At a preset block-height, nodes reject transactions that rely on
>>>> ECDSA/Schnorr keys.
>>>>
>>>> Everyone holding or accepting BTC.
>>>>
>>>> 2 years after Phase A activation.
>>>>
>>>> Phase C =E2=80=93 Re-enable spends from quantum vulnerable outputs via=
ZK Proof
>>>>
>>>> Users with frozen quantum vulnerable funds and a HD wallet seed phrase
>>>> can construct a quantum safe ZK proof to recover funds.
>>>>
>>>> Users who failed to migrate funds before Phase B.
>>>>
>>>> TBD pending research, demand, and consensus.
>>>> Rationale
>>>>
>>>> -
>>>>
>>>> Even if Bitcoin is not a primary initial target of a
>>>> cryptographically relevant quantum computer, widespread knowledge t=
hat such
>>>> a computer exists and is capable of breaking Bitcoin=E2=80=99s cryp=
tography will
>>>> damage faith in the network .
>>>> -
>>>>
>>>> An attack on Bitcoin may not be economically motivated - an
>>>> attacker may be politically or maliciously motivated and may attemp=
t to
>>>> destroy value and trust in Bitcoin rather than extract value. Ther=
e is no
>>>> way to know in advance how, when, or why an attack may occur. A de=
fensive
>>>> position must be taken well in advance of any attack.
>>>> -
>>>>
>>>> Bitcoin=E2=80=99s current signatures (ECDSA/Schnorr) will be a tant=
alizing
>>>> target: any UTXO that has ever exposed its public key on-chain (rou=
ghly 25
>>>> % of all bitcoin) could be stolen by a cryptographically relevant q=
uantum
>>>> computer.
>>>> -
>>>>
>>>> Existing Proposals are Insufficient.
>>>> 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 propo=
sals:
>>>> 1.
>>>>
>>>> Allow anyone to steal vulnerable coins, benefitting those who
>>>> reach quantum capability earliest.
>>>> 2.
>>>>
>>>> Allow throttled theft of coins, which leads to RBF battles
>>>> and ultimately miners subsidizing their revenue from lost coi=
ns.
>>>> 3.
>>>>
>>>> Allow no one to steal vulnerable coins.
>>>> -
>>>>
>>>> Minimizes attack surface
>>>> 1.
>>>>
>>>> By disallowing new spends to quantum vulnerable script types, we
>>>> minimize the attack surface with each new UTXO.
>>>> 2.
>>>>
>>>> Upgrades to Bitcoin have historically taken many years; this
>>>> will hasten and speed up the adoption of new quantum resistant s=
cript
>>>> types.
>>>> 3.
>>>>
>>>> With a clear deadline, industry stakeholders will more readily
>>>> upgrade existing infrastructure to ensure continuity of services=
.
>>>> -
>>>>
>>>> Minimizes loss of access to funds
>>>> 1.
>>>>
>>>> If there is sufficient demand and research proves possible,
>>>> submitting a ZK proof of knowledge of a BIP-39 seed phrase corre=
sponding to
>>>> a public key hash or script hash would provide a trustless means=
for legacy
>>>> outputs to be spent in a quantum resistant manner, even after th=
e sunset.
>>>>
>>>>
>>>> Stakeholder
>>>>
>>>> Incentive to Upgrade
>>>>
>>>> Miners
>>>>
>>>> =E2=80=A2 Larger size PQ signatures along with incentive for users to =
migrate
>>>> will create more demand for block space and thus higher fees collected=
by
>>>> miners.
>>>>
>>>> =E2=80=A2 Post-Phase B, non-upgraded miners produce invalid blocks.
>>>>
>>>> =E2=80=A2 A quantum attack on Bitcoin will significantly devalue both =
their
>>>> hardware and Bitcoin as a whole.
>>>>
>>>> Institutional Holders
>>>>
>>>> =E2=80=A2 Fiduciary duty: failing to act to prevent a quantum attack o=
n Bitcoin
>>>> would violate the fiduciary duty to shareholders.
>>>>
>>>> =E2=80=A2 Demonstrating Bitcoin=E2=80=99s ability to effectively mitig=
ate emerging
>>>> threats will prove Bitcoin to be an investment grade asset.
>>>>
>>>> Exchanges & Custodians
>>>>
>>>> =E2=80=A2 Concentrated risk: a quantum hack could bankrupt them overni=
ght.
>>>>
>>>> =E2=80=A2 Early migration is cheap relative to potential losses, poten=
tial
>>>> lawsuits over improper custody and reputational damage.
>>>>
>>>> Everyday Users
>>>>
>>>> =E2=80=A2 Self-sovereign peace of mind.
>>>>
>>>> =E2=80=A2 Sunset date creates a clear deadline and incentive to improv=
e their
>>>> security rather than an open-ended =E2=80=9Csome day=E2=80=9D that inv=
ites procrastination.
>>>>
>>>> Attackers
>>>>
>>>> =E2=80=A2 Economic incentive diminishes as sunset nears, stolen coins =
cannot be
>>>> spent after Q-day.
>>>>
>>>> Key Insight: As mentioned earlier, the proposal turns quantum security
>>>> into a private incentive to upgrade.
>>>>
>>>> This is not an offensive attack, rather, it is defensive: our thesis i=
s
>>>> that the Bitcoin ecosystem wishes to defend itself and its interests
>>>> against those who would prefer to do nothing and allow a malicious act=
or to
>>>> destroy both value and trust.
>>>>
>>>>
>>>> "Lost coins only make everyone else's coins worth slightly more. Think
>>>>> of it as a donation to everyone." - Satoshi Nakamoto
>>>>
>>>>
>>>> If true, the corollary is:
>>>>
>>>>
>>>> "Quantum recovered coins only make everyone else's coins worth less.
>>>>> Think of it as a theft from everyone."
>>>>
>>>>
>>>> The timelines that we are proposing are meant to find the best balance
>>>> between giving ample ability for account owners to migrate while
>>>> maintaining the integrity of the overall ecosystem to avoid catastroph=
ic
>>>> attacks.
>>>>
>>>> Backward Compatibility
>>>>
>>>> As a series of soft forks, older nodes will continue to operate withou=
t
>>>> modification. Non-upgraded nodes, however, will consider all post-quan=
tum
>>>> witness programs as anyone-can-spend scripts. They are strongly encour=
aged
>>>> to upgrade in order to fully validate the new programs.
>>>>
>>>> Non-upgraded wallets can receive and send bitcoin from non-upgraded an=
d
>>>> upgraded wallets until Phase A. After Phase A, they can no longer rece=
ive
>>>> 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
>>>> vulnerable funds recovery via ZK proofs.
>>>>
>>> --
>> You received this message because you are subscribed to the Google Group=
s
>> "Bitcoin Development Mailing List" group.
>> To unsubscribe from this group and stop receiving emails from it, send a=
n
>> email to bitcoindev+unsubscribe@googlegroups.com.
>> To view this discussion visit
>> https://groups.google.com/d/msgid/bitcoindev/4d9ce13e-466d-478b-ab4d-004=
04c80d620n%40googlegroups.com
>> <https://groups.google.com/d/msgid/bitcoindev/4d9ce13e-466d-478b-ab4d-00=
404c80d620n%40googlegroups.com?utm_medium=3Demail&utm_source=3Dfooter>
>> .
>>
>
--=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/=
CALZpt%2BEi2r_sXP5cw%2BL2wP9zQ0_8L-JSfG16zRSayuP9cTdt2Q%40mail.gmail.com.
--0000000000006ac9fe063a38eccf
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
<div dir=3D"ltr">> Beware the blurry line between stoicism and apathy.<b=
r>> <br>> How well will it play out if we can say "well, we coul=
d have stopped a massive threat but chose not to, because we were confident=
the system would survive."<br>> <br>> The alternative path is &=
quot;we saw a threat coming and the community collaborated to neutralize it=
before massive harm occurred."<br>> <br>> Both scenarios show r=
esilience. Which evokes greater confidence?<br><br>Beware "ce qu'o=
n ne voit pas" and the perverse incentives introduced by a Q-Day.<br><=
br>Expect massively PQ "claimed-to-be" secure wallet rushed under=
a false sense of emergency, very insecure against classic attacks.<br><br>=
If I was running a big custodian, def old schoold insurance on quantum risk=
is a thing. They already do for pure custody risks.<br><br>Otherwise, it&#=
39;s a typical "trolly problem" applied to bitcoin protocol dev. =
Indeed multiple viewpoints can be valid.<br><br>> I can't speak for =
Jameson, but let me put forward my own concern. If miners can buy much less=
electricity for 1-BTC this is a major problem for Bitcoin. If the price of=
electricity denominated in Bitcoin goes way up, miners will have to mine a=
t a massive loss. Many will stop mining, then the block rate will go down a=
nd Bitcoin will appear to be less valuable (high fees, slow confirmation, p=
anic), which makes mining even more of a loss, and so on. This also invites=
miners who have nothing left to lose to engage in mining attacks.<br><br>I=
t's a real problem, but not specific to quantum. The same risk could ha=
ppen when the inflation schedule is dried up after few halvings, or other e=
xogeneous reason.<br><br>About the price crash and hypothetical impact on m=
iners, a lot of open dimensions:<br>- unclear if the quantum adversary is e=
conomically rational and HODL its stack<br>- unclear if the quantum adversa=
ry would be able to liquidate its BTC stack bc on-ramp flagging them as sto=
len BTCs<br>- fragmentation of the on-ramp BTC markets over the world and i=
f price down would reflect uniformly<br>- unclear if selling strategy of qu=
antum adversary can be anticipated by miners<br>- poor elasticity of demand=
for miners electricity providers (e.g hydro or=C2=A0flare)<br>- unclear if=
the price crash can be quickly corrected by strong hands anticipating the =
"once-in-a-lifetime" cheap sell<br>- what else ?<br><br>I do agre=
e it's a serious concern to have. On the other hand, we don't have =
a real quantitative model to reason on miners reaction.<br><br>In my view, =
this conv would be far more constructive, fact-based if someone can come up=
with a model on miners impact with what if ~20% of coins are quantum nuked=
.<br><br>Best,<br>Antoine<br>OTS hash: 74b5c0cdee22c391c2c50b052b652368ce1d=
01edc660077847b8ed662f0d172c</div><br><div class=3D"gmail_quote gmail_quote=
_container"><div dir=3D"ltr" class=3D"gmail_attr">Le=C2=A0lun. 14 juil. 202=
5 =C3=A0=C2=A019:52, Jameson Lopp <<a href=3D"mailto:jameson.lopp@gmail.=
com">jameson.lopp@gmail.com</a>> a =C3=A9crit=C2=A0:<br></div><blockquot=
e class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px s=
olid 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_att=
r">On Mon, Jul 14, 2025 at 10:09=E2=80=AFAM Antoine Riard <<a href=3D"ma=
ilto:antoine.riard@gmail.com" target=3D"_blank">antoine.riard@gmail.com</a>=
> 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 J=
ameson,<br><br>Thanks for your thoughts on this complex subject.<br><br>Fir=
st and foremost, I think your following statement: "Never before has B=
itcoin faced<br>an existential threat to its cryptographic primitives"=
is very myopic, given that<br>cryptanalysts and number theorists are makin=
g progress every year in their works, and<br>each bitcoin cryptographic pri=
mitive has been and is constantly analyzed to uncover<br>potential weakness=
es.<br><br>So in my view the quantum threat is a bit less specific that the=
image you're painting<br>of it. Even if go all to upgrade to lattices-=
based schemes, we have no certainty that<br>novels flaws won't be found=
, one can just go to see the modifications of the NIST-approved<br>schemes =
in between their rounds of selection that we'll never reach something l=
ike<br>"self-sovereign peace of mind"...Unless we start to forbid=
people of practicing the<br>art of mathematics, practice which has been on=
going since Euclide and Pythagore...<br><br>I do concede that quantum is a =
bit different, as after all new physics paradigm<br>do not happen often (He=
isenberg published in the 20s iirc), though that's in my<br>view the fl=
aw of your reasoning as you're assuming some "post-quantum" u=
pgraded<br>state where bitcoin, as a community and a network, would be defi=
nitely safe from<br>advances in applied science. At minima, in my understan=
ding, you're arguing this<br>time is different to justify extra-ordinar=
y technical measures never seen before,<br>namely the freezing of "vul=
nerable" coins.<br><br></blockquote><div><br></div><div>Correct, this =
time is different in that we're not talking about vague unknown weaknes=
ses. Rather, we're talking about a known algorithm that makes breaking =
cryptographic primitives orders of magnitude cheaper.</div><div><br></div><=
div>The unknown becomes the rate at which advancements in quantum computing=
will be achieved, which is concerning given the funding going into pushing=
said advancements forward.</div><div>=C2=A0</div><blockquote class=3D"gmai=
l_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,20=
4,204);padding-left:1ex">I'm worried this is opening a Pandora box, whe=
re we would introduce a precedent<br>that it is legitimate as a community t=
o technicaly confiscate some coins of users, <br>without their _consents_, =
for extra-ordinary reasons. That's opening a worms of<br>shenanigans in=
the future...There is no guarantee that this precedent won't<br>be lev=
eraged in the future by any group of entities to justify future upgrades<br=
>eroding one of the "fundamental property" you're yourself de=
eming as valuable.<br><br></blockquote><div><br></div><div>This is a fair f=
ear, though the counterpoint is that it is legitimate for the community to =
protect itself against security threats. It just so happens that both viewp=
oints can be valid.</div><div><br></div><blockquote class=3D"gmail_quote" s=
tyle=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);pad=
ding-left:1ex">This is especially worrying as if I'm understanding you =
correctly you're justifying<br>this position as that somehow we should =
protect the price of the currency as an end<br>in itself (i.e "Beyond =
its impact on price, ..."). It's unclear the price of bitcoin<br>v=
ersus what fiat or hard asset (e.g oil) you have in mind. And in anyway, as=
far<br>as I know, none of the bitcoin devs is seating on the board of the =
FED, the ECB<br>or the BoJ...<br><br>To put it simply, even if a quantum at=
tacker can tomorrow starts to steal<br>vulnerable coins, 1 BTC will be alwa=
ys equal to 1 BTC. Full stop. In my humble<br>opinion, let's not introd=
uce the idea that, we, as a community of stakeholders<br>and developers we =
have a positive "fiduciary" duty to act to maintain the price<br>=
of bitcoin in some "monetary snake" with another class of assets.=
..<br><br></blockquote><div><br></div><div>Protocol developers have no fidu=
ciary duty to bitcoin holders. I wouldn't argue they have any duty what=
soever=C2=A0to users.</div><div><br></div><div>Bitcoin is not (yet) a unit =
of account. The ecosystem does not run on 1 BTC =3D 1 BTC. The purchasing p=
ower of satoshis is very much relevant to the health and sustainability of =
the ecosystem at its current level.</div><div><br></div><div>I would not cl=
aim that "devs must do something" - rather, I believe that the in=
centives of other groups I outlined will roughly align them with my thinkin=
g.</div><div><br></div><blockquote class=3D"gmail_quote" style=3D"margin:0p=
x 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Th=
at's also the problem with game theory, all the matrices of analysis ar=
e<br>based on some scale of utilitarism. See Von Neuman's Theory of Gam=
es, the<br>section on "The Notion of Utility". My subjective appr=
eciation of the value<br>of my coins might not be your subjective appreicat=
ion of the value of your<br>coins.<br><br>Now I do understand the perspecti=
ve of the institutional holders, the exchanges,<br>the custodians or any ot=
her industry providers, who might be in the full uncertainty<br>about their=
business responsibilities in case of a quantum threat affecting their<br>c=
ustodied coins. But, first legally speaking there is something call "f=
orce majeure"<br>and in view of the quantum threat, which is a risk di=
scussed far beyond the bitcoin<br>industry, they should be able to shield t=
hemselves behind that. Secondly, if there<br>is any futute upgrade "op=
t-in" only path a la BIP360, you can move your funds or<br>the ones un=
der custody =C2=A0under a PQC scheme like Dilthium or Falcon and be good<br=
>without caring about what the others users are doing. Thirdly, if you'=
re an actor<br>in the industry like Coinbase and you're deeply concerne=
d about how extended maelstrom<br>on the price might affect the viability o=
f your operations, it is unclear to me why<br>you don't call MunichRe o=
r any other company like that tomorrow to craft and be<br>covered by specif=
ic insurance on quantum threats...<br><br></blockquote><div>Agreed that com=
panies may be legally protected from lawsuits. Not sure about the insurance=
angle, though I'd see that as a one time payout that=C2=A0could very=
=C2=A0well come at the expense of said business ceasing operations. I suspe=
ct few businesses would be happy with that.</div><div><br></div><div>Unfort=
unately I don't think opt-in security suffices in this situation. Human=
nature is to procrastinate and if the incentives are insufficient to motiv=
ate mass migration to quantum secure schemes, Q-Day will be quite=C2=A0unpl=
easant.</div><div>=C2=A0</div><blockquote class=3D"gmail_quote" style=3D"ma=
rgin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:=
1ex">To be frank, all those considerations on how "I cannot see how th=
e currency can<br>maintain any value at all in such a setting", is a s=
trong red flag of low time<br>preferences. It's not like we're used=
to strong volatility in bitcoin with the<br>almost 2 decades of operations=
of the network. In my view, it's more a hint of<br>very high-expositio=
n by some to a single class of asset, i.e bitcoin, rather than wise<br>dive=
rsification... And a push to sacrify a "fundamental property" i.e=
"conservatism"<br>in view of short-term concerns (i.e the stabil=
ity of the currency price along<br>a period of few years).<br><br></blockqu=
ote><div><br></div><div>Bitcoin has many inviolable properties and some of =
them are actually in conflict with each other. Conservatism and property ri=
ghts are clearly on the table in this matter.</div><div><br></div><div>But =
shouldn't one of Bitcoin's fundamental properties be the fact that =
it can be upgraded? That it can respond to new challenges and threats?</div=
><div><br></div><div>Beyond just the quantum computing issue, I expect the =
above to create continued conflict between ossifiers and developers over th=
e long term.</div><div><br></div><blockquote class=3D"gmail_quote" style=3D=
"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-le=
ft:1ex">Do not get me wrong, I'm certainly not of the school "let&=
#39;s reward quantum<br>attackers". Leveraging techical superiority an=
d employing CRQRC to steal<br>vulnerable coins would be clearly a theft. Bu=
t ethically, the best we can do is<br>to have an opt-in upgrade path and be=
pro-active, by education and outreach,<br>to have the maximum of coin owne=
rs upgrading to non-vulnerable addresses types.<br>Then show the level of &=
quot;fortitude" or "endurance" as a community in face of pri=
ce<br>fluctuations for a while, while seeing regularly old P2PK coins hacke=
d. Marcus<br>Aurelius can be bought for few bucks in most of decent librari=
es...<br><br></blockquote><div><br></div><div>Beware the blurry line betwee=
n stoicism and apathy.</div><div><br></div><div>How well will it play out i=
f we can say "well, we could have stopped a massive threat but chose n=
ot to, because we were confident the system would survive."</div><div>=
<br></div><div>The alternative path is "we saw a threat coming and the=
community collaborated to neutralize it before massive harm occurred."=
;</div><div><br></div><div>Both scenarios show resilience. Which evokes gre=
ater confidence?</div><div><br></div><blockquote class=3D"gmail_quote" styl=
e=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);paddin=
g-left:1ex">I'm definitely on the "no old coins confiscation"=
position you're underlighting:<br><br>"I don't see why old co=
ins should be confiscated. The better option is to let<br>those with quantu=
m computers free up old coins. While this might have an<br>inflationary imp=
act on bitcoin's price, to use a turn of phrase, the inflation<br>is tr=
ansitory. Those with low time preference should support returning lost<br>c=
oins to circulation".<br><br>Notwhitstanding that I disagree with your=
position, one can only appreciate<br>the breadth and depth with which you&=
#39;re gathering and articulating all the<br>elements on this complex probl=
em.<br><br>Best,<br>Antoine<br>OTS hash: c064b43047bf3036faf098b5ac8e74930d=
f63d25629f590a4195222979402826<br><div class=3D"gmail_quote"><div dir=3D"au=
to" class=3D"gmail_attr">Le lundi 14 juillet 2025 =C3=A0 00:53:34 UTC+1, Ta=
dge Dryja a =C3=A9crit=C2=A0:<br></div><blockquote class=3D"gmail_quote" st=
yle=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padd=
ing-left:1ex">Hi =C2=A0 <br><br>While I generally agree that "freeze&q=
uot; beats "steal", and that a lot of lead time is good, I don=
9;t think this plan is viable.<br>To me the biggest problem is that it ties=
activation of a PQ output type to *de*activation of EC output types.=C2=A0=
That would mean that someone who wants to keep using all the great stuff i=
n libsecp256k1 should try to prevent BIP360 from being activated.<br><br>Su=
re, there can be risks from CRQCs.=C2=A0 But this proposal would go the oth=
er direction, disabling important functionality and even destroying coins p=
reemptively, in anticipation of something that may never happen.<br><br>Als=
o, how do you define "quantum-vulnerable UTXO"?=C2=A0 Would any P=
2PKH, or P2WPKH output count?=C2=A0 Or only P2PKH / P2WPKH outputs where th=
e public key is already known?=C2=A0 I can understand disabling spends from=
known-pubkey outputs, but for addresses where the public key has never bee=
n revealed, commit/reveal schemes (like the one I posted about & am wor=
king on a follow-up post for) should safely let people spend from those out=
puts indefinitely.<br><br>With no evidence of a QRQC, I can see how there w=
ould be people who'd say "We might never really know if a CRQC exi=
sts, so we need to disable EC spends out of caution" and others who=
9;d say "Don't disable EC spends, since that's destroying coin=
s", and that could be a persistent disagreement.=C2=A0 But I hope if w=
e did in fact have a proof that a CRQC has broken secp256k1, there would be=
significant agreement on freezing known-pubkey EC outputs.<br><div><br></d=
iv><div>-Tadge</div><div class=3D"gmail_quote"><div dir=3D"auto" class=3D"g=
mail_attr">On Saturday, July 12, 2025 at 8:46:09=E2=80=AFPM UTC-4 Jameson L=
opp wrote:<br></div><blockquote class=3D"gmail_quote" style=3D"margin:0px 0=
px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div =
dir=3D"ltr"><span><p dir=3D"ltr" style=3D"line-height:1.44;background-color=
:rgb(255,255,255);margin-top:12pt;margin-bottom:0pt;padding:0pt 0pt 12pt"><=
span style=3D"font-size:11pt;font-family:"Courier 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;wh=
ite-space:pre-wrap">Building upon my earlier essay </span><a href=3D"https:=
//groups.google.com/g/bitcoindev/c/uUK6py0Yjq0/m/6peEaa90AQAJ" style=3D"tex=
t-decoration:none" rel=3D"nofollow" target=3D"_blank"><span style=3D"font-s=
ize:11pt;font-family:"Courier New",monospace;color:rgb(17,85,204)=
;background-color:transparent;font-weight:400;font-style:normal;font-varian=
t:normal;text-decoration:underline;vertical-align:baseline;white-space:pre-=
wrap">against allowing quantum recovery of bitcoin</span></a><span style=3D=
"font-size:11pt;font-family:"Courier 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"> I wish to formalize a proposal after several months of discussions.=
</span></p><p dir=3D"ltr" style=3D"line-height:1.44;background-color:rgb(25=
5,255,255);margin-top:0pt;margin-bottom:0pt;padding:0pt 0pt 12pt"><span sty=
le=3D"font-size:11pt;font-family:"Courier New",monospace;color:rg=
b(34,34,34);background-color:transparent;font-weight:400;font-style:normal;=
font-variant:normal;text-decoration:none;vertical-align:baseline;white-spac=
e:pre-wrap">This proposal does not delve into the multitude of issues regar=
ding post quantum cryptography and trade-offs of different schemes, but rat=
her is meant to specifically address the issues of incentivizing adoption a=
nd migration of funds </span><span style=3D"font-size:11pt;font-family:&quo=
t;Courier New",monospace;color:rgb(34,34,34);background-color:transpar=
ent;font-weight:400;font-variant:normal;text-decoration:none;vertical-align=
:baseline;white-space:pre-wrap"><i>after</i></span><span style=3D"font-size=
:11pt;font-family:"Courier New",monospace;color:rgb(34,34,34);bac=
kground-color:transparent;font-weight:400;font-style:normal;font-variant:no=
rmal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap"> co=
nsensus is established that it is prudent to do so.</span></p><p dir=3D"ltr=
" style=3D"line-height:1.44;background-color:rgb(255,255,255);margin-top:0p=
t;margin-bottom:12pt"><span style=3D"font-size:11pt;font-family:"Couri=
er New",monospace;color:rgb(0,0,0);background-color:transparent;font-w=
eight:400;font-style:normal;font-variant:normal;text-decoration:none;vertic=
al-align:baseline;white-space:pre-wrap">As such, this proposal requires P2Q=
RH as described in BIP-360 or potential future proposals.</span></p><h2 dir=
=3D"ltr" style=3D"line-height:1.38;margin-top:18pt;margin-bottom:4pt"><span=
style=3D"font-size:17pt;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">Abstract</span></h2><p dir=3D"ltr" style=3D"line-height:1.38;margin-=
top:12pt;margin-bottom:12pt"><span style=3D"font-size:11pt;font-family:&quo=
t;Courier New",monospace;color:rgb(0,0,0);background-color:transparent=
;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-al=
ternates:normal;vertical-align:baseline">This proposal follows the implemen=
tation of post-quantum (PQ) output type (P2QRH) and introduces a pre-announ=
ced sunset of legacy ECDSA/Schnorr signatures. It turns quantum security in=
to a </span><span style=3D"font-size:11pt;font-family:"Courier New&quo=
t;,monospace;color:rgb(0,0,0);background-color:transparent;font-style:itali=
c;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-a=
lternates:normal;vertical-align:baseline">private incentive</span><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">: fail to upgrade and you will certainly lose access to your funds, crea=
ting a certainty where none previously existed.=C2=A0</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:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-size:1=
1pt;background-color:transparent;font-weight:700;font-variant-numeric:norma=
l;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-al=
ign:baseline">Phase A:</span><span style=3D"font-size:11pt;background-color=
:transparent;font-variant-numeric:normal;font-variant-east-asian:normal;fon=
t-variant-alternates:normal;vertical-align:baseline"> Disallows sending of =
any funds to quantum-vulnerable 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:"Courier New",monospace;color:rgb(0,0=
,0);background-color:transparent;font-variant-numeric:normal;font-variant-e=
ast-asian:normal;font-variant-alternates:normal;vertical-align:baseline;whi=
te-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;back=
ground-color:transparent;font-weight:700;font-variant-numeric:normal;font-v=
ariant-east-asian:normal;font-variant-alternates:normal;vertical-align:base=
line">Phase B:</span><span style=3D"font-size:11pt;background-color:transpa=
rent;font-variant-numeric:normal;font-variant-east-asian:normal;font-varian=
t-alternates:normal;vertical-align:baseline"> 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 activa=
tion.</span></p></li><li dir=3D"ltr" style=3D"list-style-type:disc;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;white-space:=
pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bo=
ttom:6pt" role=3D"presentation"><span style=3D"font-size:11pt;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 (optional):</span><span style=3D"font-size:11pt;background-color:trans=
parent;font-variant-numeric:normal;font-variant-east-asian:normal;font-vari=
ant-alternates:normal;vertical-align:baseline"> Pending further research an=
d demand, a separate BIP proposing a fork to allow recovery of legacy UTXOs=
through ZK proof of possession of BIP-39 seed phrase.=C2=A0=C2=A0</span></=
p></li></ul><h2 dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;ma=
rgin-top:14pt;margin-bottom:6pt"><span style=3D"font-size:16pt;font-family:=
"Courier New",monospace;color:rgb(0,0,0);background-color:transpa=
rent;font-variant-numeric:normal;font-variant-east-asian:normal;font-varian=
t-alternates:normal;vertical-align:baseline">Motivation</span></h2><p dir=
=3D"ltr" style=3D"line-height:1.38;text-align:justify;margin-top:12pt;margi=
n-bottom:12pt"><span style=3D"font-size:11pt;font-family:"Courier New&=
quot;,monospace;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">We seek to secure the value of the UTXO set</spa=
n><span style=3D"font-size:11pt;font-family:"Courier New",monospa=
ce;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-varia=
nt-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:no=
rmal;vertical-align:baseline"> </span><span style=3D"font-size:11pt;font-fa=
mily:"Courier New",monospace;color:rgb(0,0,0);background-color:tr=
ansparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-v=
ariant-alternates:normal;vertical-align:baseline">and minimize incentives f=
or quantum attacks. This proposal is radically different from any in Bitcoi=
n=E2=80=99s history just as the threat posed by quantum computing is radica=
lly different from any other threat in Bitcoin=E2=80=99s history.=C2=A0 Nev=
er before has Bitcoin faced an existential threat to its cryptographic prim=
itives. A successful quantum attack on Bitcoin would result in significant =
economic disruption and damage across the entire ecosystem. Beyond its impa=
ct on price, the ability of miners to provide network security may be signi=
ficantly impacted.=C2=A0=C2=A0</span></p><ul style=3D"margin-top:0px;margin=
-bottom:0px"><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-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:12pt;margin-bottom:0p=
t" role=3D"presentation"><span style=3D"font-size:11pt;background-color:tra=
nsparent;font-weight:700;font-variant-numeric:normal;font-variant-east-asia=
n:normal;font-variant-alternates:normal;vertical-align:baseline">Accelerati=
ng quantum progress.</span><span style=3D"font-size:11pt;background-color:t=
ransparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-=
variant-alternates:normal;vertical-align:baseline">=C2=A0</span></p></li><u=
l 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",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;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.3=
8;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"fo=
nt-size:11pt;background-color:transparent;font-variant-numeric:normal;font-=
variant-east-asian:normal;font-variant-alternates:normal;vertical-align:bas=
eline">NIST ratified three production-grade PQ signature schemes in 2024; a=
cademic road-maps now estimate a cryptographically-relevant quantum compute=
r as early as 2027-2030. [</span><a href=3D"https://www.mckinsey.com/~/medi=
a/mckinsey/business%20functions/mckinsey%20digital/our%20insights/the%20yea=
r%20of%20quantum%20from%20concept%20to%20reality%20in%202025/quantum-monito=
r-2025.pdf?shouldIndex=3Dfalse" style=3D"text-decoration-line:none" rel=3D"=
nofollow" 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-decoration-line:underline;vertical-align:ba=
seline">McKinsey</span></a><span style=3D"font-size:11pt;background-color:t=
ransparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-=
variant-alternates:normal;vertical-align:baseline">]</span></p></li></ul><l=
i dir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:&quo=
t;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-wra=
p"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;margin-top:0=
pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-size:11pt;b=
ackground-color:transparent;font-variant-numeric:normal;font-variant-east-a=
sian:normal;font-variant-alternates:normal;vertical-align:baseline">Quantum=
algorithms are rapidly improving</span></p></li><ul style=3D"margin-top:0p=
x;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-type:circle;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;white-spac=
e:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;mar=
gin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-si=
ze:11pt;background-color:transparent;font-variant-numeric:normal;font-varia=
nt-east-asian:normal;font-variant-alternates: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/05/tracking-cost-of-quantum-factori.ht=
ml" rel=3D"nofollow" target=3D"_blank">improving up to 20X</a>, lowering th=
e theoretical hardware requirements for breaking classical encryption.</spa=
n></p></li></ul><li dir=3D"ltr" style=3D"list-style-type:disc;font-size:11p=
t;font-family:"Courier New",monospace;color:rgb(0,0,0);background=
-color:transparent;font-variant-numeric:normal;font-variant-east-asian:norm=
al;font-variant-alternates:normal;vertical-align:baseline;white-space:pre-w=
rap"><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:t=
ransparent;font-weight:700;font-variant-numeric:normal;font-variant-east-as=
ian:normal;font-variant-alternates:normal;vertical-align:baseline">Bitcoin=
=E2=80=99s exposed public keys.</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">=C2=A0</span>=
</p></li><ul style=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr" sty=
le=3D"list-style-type:circle;font-size:11pt;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;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-variant-numeric:n=
ormal;font-variant-east-asian:normal;font-variant-alternates:normal;vertica=
l-align:baseline">Roughly 25% of all bitcoin have revealed a public key on-=
chain; those UTXOs could be stolen with sufficient quantum power.=C2=A0=C2=
=A0</span></p></li></ul><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-variant-numeric:normal;font-variant-east-as=
ian:normal;font-variant-alternates:normal;vertical-align:baseline;white-spa=
ce:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-align:justify;ma=
rgin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-s=
ize:11pt;background-color:transparent;font-weight:700;font-variant-numeric:=
normal;font-variant-east-asian:normal;font-variant-alternates:normal;vertic=
al-align:baseline">We may not know the attack is underway.=C2=A0</span></p>=
</li><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&quo=
t;,monospace;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: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 attackers could compute the priv=
ate key for known public keys then transfer all funds weeks or months later=
, in a covert bleed to not alert chain watchers. Q-Day may be only known mu=
ch later if the attack withholds broadcasting transactions in order to post=
pone revealing their capabilities.</span></p></li></ul><li dir=3D"ltr" styl=
e=3D"list-style-type:disc;font-size:11pt;font-family:"Courier New"=
;,monospace;color:rgb(0,0,0);background-color:transparent;font-weight:700;f=
ont-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alte=
rnates: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"present=
ation"><span style=3D"font-size:11pt;background-color:transparent;font-vari=
ant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:n=
ormal;vertical-align:baseline">Private keys become public.=C2=A0</span></p>=
</li><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&quo=
t;,monospace;color:rgb(0,0,0);background-color:transparent;font-weight:700;=
font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alt=
ernates: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"presen=
tation"><span style=3D"font-size:11pt;background-color:transparent;font-wei=
ght:400;font-variant-numeric:normal;font-variant-east-asian:normal;font-var=
iant-alternates:normal;vertical-align:baseline">Assuming that quantum compu=
ters are able to maintain their current trajectories and overcome existing =
engineering obstacles, there is a near certain chance that all P2PK (and ot=
her outputs with exposed pubkeys) private keys will be found and used to st=
eal the funds.</span></p></li></ul><li dir=3D"ltr" style=3D"list-style-type=
:disc;font-size:11pt;font-family:"Courier New",monospace;color:rg=
b(0,0,0);background-color:transparent;font-weight:700;font-variant-numeric:=
normal;font-variant-east-asian:normal;font-variant-alternates:normal;vertic=
al-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:transparent;font-variant-numeric:normal=
;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-ali=
gn:baseline">Impossible to know motivations.=C2=A0</span></p></li><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-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;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span st=
yle=3D"font-size:11pt;background-color:transparent;font-weight:400;font-var=
iant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:=
normal;vertical-align:baseline">Prior to a quantum attack, it is impossible=
to know the motivations of the attacker.=C2=A0 An economically motivated a=
ttacker will try to remain undetected for as long as possible, while a mali=
cious attacker will attempt to destroy as much value as possible.=C2=A0=C2=
=A0</span></p></li></ul><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-variant-numeric:normal;font-variant-east-as=
ian:normal;font-variant-alternates:normal;vertical-align:baseline;white-spa=
ce: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:normal;font-variant=
-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline">=
Upgrade inertia.</span><span style=3D"font-size:11pt;background-color:trans=
parent;font-variant-numeric:normal;font-variant-east-asian:normal;font-vari=
ant-alternates:normal;vertical-align:baseline">=C2=A0</span></p></li><ul st=
yle=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-styl=
e-type:circle;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;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;ma=
rgin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span style=3D"font-s=
ize:11pt;background-color:transparent;font-variant-numeric:normal;font-vari=
ant-east-asian:normal;font-variant-alternates:normal;vertical-align:baselin=
e">Coordinating wallets, exchanges, miners and custodians historically take=
s years.</span></p></li><li dir=3D"ltr" style=3D"list-style-type:circle;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;white-s=
pace: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:transparent;font-variant-numeric:normal;font-va=
riant-east-asian:normal;font-variant-alternates:normal;vertical-align:basel=
ine">The longer we postpone migration, the harder it becomes to coordinate =
wallets, exchanges, miners, and custodians. A clear, time-boxed pathway is =
the only credible defense.</span></p></li><li dir=3D"ltr" style=3D"list-sty=
le-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: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:12pt" role=3D"presentation">=
<span style=3D"font-size:11pt;background-color:transparent;font-variant-num=
eric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;v=
ertical-align:baseline">Coordinating distributed groups is more prone to de=
lay, even if everyone has similar motivations. Historically, Bitcoin has be=
en slow to adopt code changes, often taking multiple years to be approved.<=
/span></p></li></ul></ul><h2 dir=3D"ltr" style=3D"line-height:1.38;text-ali=
gn:justify;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-variant-numeric:normal;font-variant-east-asian:norma=
l;font-variant-alternates:normal;vertical-align:baseline">Benefits at a Gla=
nce</span></h2><ul style=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"lt=
r" style=3D"list-style-type:disc;font-size:11pt;font-family:Arial,sans-seri=
f;color:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal=
;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-ali=
gn:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-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",monospac=
e;background-color:transparent;font-weight:700;font-variant-numeric:normal;=
font-variant-east-asian:normal;font-variant-alternates:normal;vertical-alig=
n:baseline">Resilience:</span><span style=3D"font-size:11pt;font-family:&qu=
ot;Courier New",monospace;background-color:transparent;font-variant-nu=
meric:normal;font-variant-east-asian:normal;font-variant-alternates:normal;=
vertical-align:baseline"> Bitcoin protocol remains secure for the foreseeab=
le future without waiting for a last-minute emergency.</span></p></li><li d=
ir=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:Arial,s=
ans-serif;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;font-family:"Courier New",m=
onospace;background-color:transparent;font-weight:700;font-variant-numeric:=
normal;font-variant-east-asian:normal;font-variant-alternates:normal;vertic=
al-align:baseline">Certainty</span><span style=3D"font-size:11pt;font-famil=
y:"Courier New",monospace;background-color:transparent;font-varia=
nt-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:no=
rmal;vertical-align:baseline">: Bitcoin users and stakeholders gain certain=
ty that a plan is both in place and being implemented to effectively deal w=
ith the threat of quantum theft of bitcoin.=C2=A0=C2=A0</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-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;font-family:"Courier New",=
monospace;background-color:transparent;font-weight:700;font-variant-numeric=
:normal;font-variant-east-asian:normal;font-variant-alternates:normal;verti=
cal-align:baseline">Clarity:</span><span style=3D"font-size:11pt;font-famil=
y:"Courier New",monospace;background-color:transparent;font-varia=
nt-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:no=
rmal;vertical-align:baseline"> A single, publicized timeline aligns the ent=
ire ecosystem (wallets, exchanges, hardware vendors).</span></p></li><li di=
r=3D"ltr" style=3D"list-style-type:disc;font-size:11pt;font-family:Arial,sa=
ns-serif;color:rgb(0,0,0);background-color:transparent;font-variant-numeric=
:normal;font-variant-east-asian:normal;font-variant-alternates:normal;verti=
cal-align:baseline;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-heigh=
t:1.38;text-align:justify;margin-top:0pt;margin-bottom:12pt" role=3D"presen=
tation"><span style=3D"font-size:11pt;font-family:"Courier New",m=
onospace;background-color:transparent;font-weight:700;font-variant-numeric:=
normal;font-variant-east-asian:normal;font-variant-alternates:normal;vertic=
al-align:baseline">Supply Discipline:</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"> Abandoned keys that never migrate b=
ecome unspendable, reducing supply, <a href=3D"https://bitcointalk.org/inde=
x.php?topic=3D198.msg1647#msg1647" rel=3D"nofollow" target=3D"_blank">as Sa=
toshi described</a></span><span style=3D"font-size:11pt;font-family:"C=
ourier New",monospace;background-color:transparent;font-variant-numeri=
c:normal;font-variant-east-asian:normal;font-variant-alternates:normal;vert=
ical-align:baseline">.=C2=A0=C2=A0</span></p></li></ul><h2 dir=3D"ltr" styl=
e=3D"line-height:1.38;text-align:justify;margin-top:12pt;margin-bottom:12pt=
"><span style=3D"font-size:16pt;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">Specification</span></h2><h2 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-left:0pt" align=3D"le=
ft"><table style=3D"border:none;border-collapse:collapse"><colgroup><col wi=
dth=3D"181"><col width=3D"224"><col width=3D"137"><col width=3D"130"></colg=
roup><tbody><tr style=3D"height:0pt"><td style=3D"border-width:1pt;border-s=
tyle: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-t=
op:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:"C=
ourier New",monospace;color:rgb(0,0,0);background-color:transparent;fo=
nt-weight:700;font-variant-numeric:normal;font-variant-east-asian:normal;fo=
nt-variant-alternates:normal;vertical-align:baseline">Phase</span></p></td>=
<td style=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);ve=
rtical-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-weight:700;font-variant-numeric:no=
rmal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical=
-align:baseline">What Happens</span></p></td><td style=3D"border-width:1pt;=
border-style:solid;border-color:rgb(0,0,0);vertical-align:top;padding:5pt;o=
verflow: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:transp=
arent;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:n=
ormal;font-variant-alternates:normal;vertical-align:baseline">Who Must Act<=
/span></p></td><td 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;text-align:center;margin-top:0pt;margin-bottom:0=
pt"><span style=3D"font-size:11pt;font-family:"Courier New",monos=
pace;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-var=
iant-numeric:normal;font-variant-east-asian:normal;font-variant-alternates:=
normal;vertical-align:baseline">Time Horizon</span></p></td></tr><tr style=
=3D"height:0pt"><td 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></td><td style=3D"border-width:1pt;border-style:solid;b=
order-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);background-color:transparent;font-variant-numeric:normal;f=
ont-variant-east-asian:normal;font-variant-alternates:normal;vertical-align=
:baseline">Permitted sends are from legacy scripts to P2QRH scripts</span><=
/p></td><td 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" sty=
le=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style=3D"fon=
t-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;vertical-alig=
n:baseline">Everyone</span><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"> holding or accepting BTC.</span></p=
></td><td 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);ba=
ckground-color:transparent;font-variant-numeric:normal;font-variant-east-as=
ian:normal;font-variant-alternates:normal;vertical-align:baseline">3 years =
after BIP-360 implementation</span></p></td></tr><tr style=3D"height:0pt"><=
td style=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);ver=
tical-align:top;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: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">Ph=
ase B =E2=80=93 </span><span style=3D"font-size:11pt;font-family:"Cour=
ier New",monospace;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">Disallow spends from quantum vulnerable =
outputs</span></p></td><td 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:10pt;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">At a preset block-height, nodes reject transactions that rely on E=
CDSA/Schnorr keys.=C2=A0</span></p></td><td 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-style:ita=
lic;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant=
-alternates:normal;vertical-align:baseline">Everyone</span><span style=3D"f=
ont-size:10pt;font-family:"Courier New",monospace;color:rgb(0,0,0=
);background-color:transparent;font-variant-numeric:normal;font-variant-eas=
t-asian:normal;font-variant-alternates:normal;vertical-align:baseline"> hol=
ding or accepting BTC.</span></p></td><td style=3D"border-width:1pt;border-=
style:solid;border-color:rgb(0,0,0);vertical-align:middle;padding:5pt;overf=
low: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&quo=
t;,monospace;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">2 years after Phase A activation.</span></p></td></=
tr><tr style=3D"height:0pt"><td style=3D"border-width:1pt;border-style:soli=
d;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-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:norma=
l;vertical-align:baseline">Phase C =E2=80=93 </span><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">Re-enable s=
pends from quantum vulnerable outputs via ZK Proof</span></p></td><td 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:10pt;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">Users with frozen quant=
um vulnerable funds and a HD wallet seed phrase can construct a quantum saf=
e ZK proof to recover funds.</span></p></td><td style=3D"border-width:1pt;b=
order-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;m=
argin-bottom:0pt"><span style=3D"font-size:10pt;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">Users who failed to migrate funds before Phas=
e B.</span></p></td><td 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);background-color:transparent;font-variant-numeric:normal;font-v=
ariant-east-asian:normal;font-variant-alternates:normal;vertical-align:base=
line">TBD pending research, demand, and consensus.</span></p></td></tr></tb=
ody></table></div></span></h2><h2 dir=3D"ltr" style=3D"line-height:1.38;mar=
gin-top:14pt;margin-bottom:6pt"><span style=3D"font-size:16pt;font-family:&=
quot;Courier New",monospace;color:rgb(0,0,0);background-color:transpar=
ent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:n=
one;vertical-align:baseline;white-space:pre-wrap">Rationale</span></h2><ul =
style=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-st=
yle-type:disc;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;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;te=
xt-align:justify;margin-top:12pt;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">Even if Bitcoin is not a primary initial target of a=
cryptographically relevant quantum computer, widespread knowledge that suc=
h a computer exists and is capable of breaking Bitcoin=E2=80=99s cryptograp=
hy will damage faith in the network .=C2=A0</span></p></li><li dir=3D"ltr" =
style=3D"list-style-type:disc;font-size:11pt;font-family:"Courier New&=
quot;,monospace;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:0pt;margin-bottom:0pt" role=3D"=
presentation"><span style=3D"font-size:11pt;background-color:transparent;fo=
nt-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alter=
nates:normal;vertical-align:baseline">An attack on Bitcoin may not be econo=
mically motivated - an attacker may be politically or maliciously motivated=
and may attempt to destroy value and trust in Bitcoin rather than extract =
value.=C2=A0 There is no way to know in advance how, when, or why an attack=
may occur.=C2=A0 A defensive position must be taken well in advance of any=
attack.=C2=A0=C2=A0</span></p></li><li dir=3D"ltr" style=3D"list-style-typ=
e:disc;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;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-alig=
n:justify;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><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">Bitcoin=E2=80=99s current signatures (ECDSA/Schnorr) will be=
a tantalizing target: any UTXO that has ever exposed its public key on-cha=
in (roughly 25 % of all bitcoin) could be stolen by a cryptographically rel=
evant quantum computer.</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);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;font-family:"Courier New",monospace;background-color:trans=
parent;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:=
normal;font-variant-alternates:normal;vertical-align:baseline">Existing Pro=
posals are Insufficient.</span><span style=3D"font-size:11pt;font-family:&q=
uot;Courier New",monospace;background-color:transparent;font-variant-n=
umeric:normal;font-variant-east-asian:normal;font-variant-alternates:normal=
;vertical-align:baseline">=C2=A0=C2=A0</span></p></li><ol style=3D"margin-t=
op:0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"list-style-type:lower-al=
pha;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: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">Any proposal that allows for the quantum theft of =E2=80=9Clos=
t=E2=80=9D bitcoin is creating a redistribution dilemma. There are 3 types =
of proposals:</span></p></li><ol style=3D"margin-top:0px;margin-bottom:0px"=
><li dir=3D"ltr" style=3D"list-style-type:lower-roman;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;text-align:justify;margin-top:0pt;mar=
gin-bottom:0pt" role=3D"presentation"><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">Allow anyone =
to steal vulnerable coins, benefitting those who reach quantum capability e=
arliest.</span></p></li><li dir=3D"ltr" style=3D"list-style-type:lower-roma=
n;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">Allow throttled theft of coins, which leads to RBF battles and ul=
timately miners subsidizing their revenue from lost coins.</span></p></li><=
li dir=3D"ltr" style=3D"list-style-type:lower-roman;font-size:11pt;font-fam=
ily:"Courier New",monospace;color:rgb(0,0,0);background-color:tra=
nsparent;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;text-align:justify;margin-top:0pt;margi=
n-bottom:0pt" role=3D"presentation"><span style=3D"font-size:11pt;backgroun=
d-color:transparent;font-variant-numeric:normal;font-variant-east-asian:nor=
mal;font-variant-alternates:normal;vertical-align:baseline">Allow no one to=
steal vulnerable coins.</span></p></li></ol></ol><li dir=3D"ltr" style=3D"=
list-style-type:disc;font-size:11pt;font-family:"Courier New",mon=
ospace;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-v=
ariant-numeric:normal;font-variant-east-asian:normal;font-variant-alternate=
s: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" r=
ole=3D"presentation"><span style=3D"font-size:11pt;background-color:transpa=
rent;font-variant-numeric:normal;font-variant-east-asian:normal;font-varian=
t-alternates:normal;vertical-align:baseline">Minimizes attack surface</span=
></p></li><ol style=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr" st=
yle=3D"list-style-type:lower-alpha;font-size:11pt;font-family:"Courier=
New",monospace;color:rgb(0,0,0);background-color:transparent;font-var=
iant-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-bottom:0pt" r=
ole=3D"presentation"><span style=3D"font-size:11pt;background-color:transpa=
rent;font-variant-numeric:normal;font-variant-east-asian:normal;font-varian=
t-alternates:normal;vertical-align:baseline">By disallowing new spends to q=
uantum vulnerable script types, we minimize the attack surface with each ne=
w UTXO.=C2=A0=C2=A0</span></p></li><li dir=3D"ltr" style=3D"list-style-type=
:lower-alpha;font-size:11pt;font-family:"Courier New",monospace;c=
olor:rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;fo=
nt-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;tex=
t-align:justify;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><sp=
an style=3D"font-size:11pt;background-color:transparent;font-variant-numeri=
c:normal;font-variant-east-asian:normal;font-variant-alternates:normal;vert=
ical-align:baseline">Upgrades to Bitcoin have historically taken many years=
; this will hasten and speed up the adoption of new quantum resistant scrip=
t types.=C2=A0</span></p></li><li dir=3D"ltr" style=3D"list-style-type:lowe=
r-alpha;font-size:11pt;font-family:"Courier New",monospace;color:=
rgb(0,0,0);background-color:transparent;font-variant-numeric:normal;font-va=
riant-east-asian:normal;font-variant-alternates:normal;vertical-align:basel=
ine;white-space:pre-wrap"><p dir=3D"ltr" style=3D"line-height:1.38;text-ali=
gn:justify;margin-top:0pt;margin-bottom:0pt" role=3D"presentation"><span st=
yle=3D"font-size:11pt;background-color:transparent;font-variant-numeric:nor=
mal;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-=
align:baseline">With a clear deadline, industry stakeholders will more read=
ily upgrade existing infrastructure to ensure continuity of services.=C2=A0=
=C2=A0</span></p></li></ol><li dir=3D"ltr" style=3D"list-style-type:disc;fo=
nt-size:11pt;font-family:"Courier New",monospace;color:rgb(0,0,0)=
;background-color:transparent;font-weight:700;font-variant-numeric:normal;f=
ont-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;te=
xt-align:justify;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">Minimizes loss of access to funds=C2=A0</span></p></l=
i><ol style=3D"margin-top:0px;margin-bottom:0px"><li dir=3D"ltr" style=3D"l=
ist-style-type:lower-alpha;font-size:11pt;font-family:"Courier New&quo=
t;,monospace;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;background-color:transparent;font=
-variant-numeric:normal;font-variant-east-asian:normal;font-variant-alterna=
tes:normal;vertical-align:baseline">If there is sufficient demand and resea=
rch proves possible, submitting a ZK proof of knowledge of a BIP-39 seed ph=
rase corresponding to a public key hash or script hash would provide a tru=
stless means for legacy outputs to be spent in a quantum resistant manner, =
even after the sunset.=C2=A0=C2=A0</span></p></li></ol></ul><br><div dir=3D=
"ltr" style=3D"margin-left:0pt" align=3D"left"><table style=3D"border:none;=
border-collapse:collapse"><colgroup><col width=3D"143"><col width=3D"539"><=
/colgroup><tbody><tr style=3D"height:27.4463pt"><td style=3D"border-width:1=
pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:top;padding:5p=
t;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-weig=
ht:700;font-variant-numeric:normal;font-variant-east-asian:normal;font-vari=
ant-alternates:normal;vertical-align:baseline">Stakeholder</span></p></td><=
td style=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);ver=
tical-align:top;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: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">In=
centive to Upgrade</span></p></td></tr><tr style=3D"height:53.5388pt"><td s=
tyle=3D"border-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertica=
l-align:middle;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">Min=
ers</span></p></td><td 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 styl=
e=3D"font-size:11pt;font-family:"Courier New",monospace;color:rgb=
(0,0,0);background-color:transparent;font-variant-numeric:normal;font-varia=
nt-east-asian:normal;font-variant-alternates:normal;vertical-align:baseline=
">=E2=80=A2 Larger size PQ signatures along with incentive for users to mig=
rate will create more demand for block space and thus higher fees collected=
by miners.</span></p><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 Post-Phase B, non-upgraded mine=
rs produce invalid blocks.</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-fam=
ily:"Courier New",monospace;color:rgb(0,0,0);background-color:tra=
nsparent;font-variant-numeric:normal;font-variant-east-asian:normal;font-va=
riant-alternates:normal;vertical-align:baseline">=E2=80=A2 A quantum attack=
on Bitcoin will significantly devalue both their hardware and Bitcoin as a=
whole.=C2=A0</span></p></td></tr><tr style=3D"height:52pt"><td style=3D"bo=
rder-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:mi=
ddle;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:transp=
arent;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:n=
ormal;font-variant-alternates:normal;vertical-align:baseline">Institutional=
Holders</span></p></td><td style=3D"border-width:1pt;border-style:solid;bo=
rder-color:rgb(0,0,0);vertical-align:top;padding:5pt;overflow:hidden"><p di=
r=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;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">=E2=80=A2 Fiduciary duty: failing to act to prevent a quantum attack=
on Bitcoin would violate the fiduciary duty to shareholders.=C2=A0=C2=A0</=
span></p><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bot=
tom:0pt"><span style=3D"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">=E2=80=A2 Demonstrating Bitcoin=E2=80=99s ability to e=
ffectively mitigate emerging threats will prove Bitcoin to be an investment=
grade asset.</span></p></td></tr><tr style=3D"height:52pt"><td style=3D"bo=
rder-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:mi=
ddle;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:transp=
arent;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:n=
ormal;font-variant-alternates:normal;vertical-align:baseline">Exchanges &am=
p; Custodians</span></p></td><td style=3D"border-width:1pt;border-style:sol=
id;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-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">=E2=80=A2 Concentrated risk: a quantum hack could bankrupt them=
overnight.</span></p><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 Early migration is cheap relati=
ve to potential losses, potential lawsuits over improper custody and reputa=
tional damage.</span></p></td></tr><tr style=3D"height:52pt"><td style=3D"b=
order-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:m=
iddle;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-famil=
y:"Courier New",monospace;color:rgb(0,0,0);background-color:trans=
parent;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:=
normal;font-variant-alternates:normal;vertical-align:baseline">Everyday Use=
rs</span></p></td><td style=3D"border-width:1pt;border-style:solid;border-c=
olor:rgb(0,0,0);vertical-align:top;padding:5pt;overflow:hidden"><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"=
>=E2=80=A2 Self-sovereign peace of mind.</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);backgr=
ound-color:transparent;font-variant-numeric:normal;font-variant-east-asian:=
normal;font-variant-alternates:normal;vertical-align:baseline">=E2=80=A2 Su=
nset date creates a clear deadline and incentive to improve their security =
rather than an open-ended =E2=80=9Csome day=E2=80=9D that invites procrasti=
nation.</span></p></td></tr><tr style=3D"height:43.7925pt"><td style=3D"bor=
der-width:1pt;border-style:solid;border-color:rgb(0,0,0);vertical-align:mid=
dle;padding:5pt;overflow:hidden"><p dir=3D"ltr" style=3D"line-height:1.38;m=
argin-top:0pt;margin-bottom:0pt"><span style=3D"font-size:11pt;font-family:=
"Courier New",monospace;color:rgb(0,0,0);background-color:transpa=
rent;font-weight:700;font-variant-numeric:normal;font-variant-east-asian:no=
rmal;font-variant-alternates:normal;vertical-align:baseline">Attackers</spa=
n></p></td><td 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 Economic incentive diminishes as sunset nears, stolen coins cannot be s=
pent after Q-day.</span></p></td></tr></tbody></table></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",mon=
ospace;color:rgb(0,0,0);background-color:transparent;font-weight:700;font-v=
ariant-numeric:normal;font-variant-east-asian:normal;font-variant-alternate=
s:normal;vertical-align:baseline">Key Insight:</span><span style=3D"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"> As mentio=
ned earlier, the proposal 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 to upgrade</span><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">.=C2=A0=
=C2=A0</span></p><p dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;ma=
rgin-bottom:0pt"><span style=3D"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">This is not an offensive attack, rather, it is=
defensive: our thesis is that the Bitcoin ecosystem wishes to defend itsel=
f and its interests against those who would prefer to do nothing and allow =
a malicious actor to destroy both value and trust.=C2=A0=C2=A0</span></p><p=
dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><s=
pan style=3D"background-color:transparent;color:rgb(0,0,0);font-family:&quo=
t;Courier New",monospace;font-size:11pt;text-align:center"><br></span>=
</p><blockquote style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb=
(204,204,204);padding-left:1ex" class=3D"gmail_quote"><span style=3D"backgr=
ound-color:transparent;color:rgb(0,0,0);font-family:"Courier New"=
,monospace;font-size:11pt;text-align:center">"Lost coins only make eve=
ryone else's coins worth slightly more. Think of it as a donation to ev=
eryone." - Satoshi Nakamoto</span></blockquote><br><p dir=3D"ltr" styl=
e=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);b=
ackground-color:transparent;font-variant-numeric:normal;font-variant-east-a=
sian:normal;font-variant-alternates:normal;vertical-align:baseline">If true=
, the corollary is:</span></p><p dir=3D"ltr" style=3D"line-height:1.38;marg=
in-top:0pt;margin-bottom:0pt"><span style=3D"background-color:transparent;c=
olor:rgb(0,0,0);font-family:"Courier New",monospace;font-size:11p=
t;text-align:center"><br></span></p><blockquote style=3D"margin:0px 0px 0px=
0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex" class=3D"gm=
ail_quote"><span style=3D"background-color:transparent;color:rgb(0,0,0);fon=
t-family:"Courier New",monospace;font-size:11pt;text-align:center=
">"Quantum recovered coins only make everyone else's coins worth l=
ess. 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"><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">The timelines that we are proposing are meant to find the best bal=
ance between giving ample ability for account owners to migrate while maint=
aining the integrity of the overall ecosystem to avoid catastrophic attacks=
.=C2=A0=C2=A0</span></p><br><h2 dir=3D"ltr" style=3D"line-height:1.38;margi=
n-top:18pt;margin-bottom:4pt"><span style=3D"font-size:17pt;font-family:&qu=
ot;Courier New",monospace;color:rgb(0,0,0);background-color:transparen=
t;font-variant-numeric:normal;font-variant-east-asian:normal;font-variant-a=
lternates:normal;vertical-align:baseline">Backward Compatibility</span></h2=
><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-variant-numeric:normal=
;font-variant-east-asian:normal;font-variant-alternates:normal;vertical-ali=
gn:baseline">As a series of soft forks, older nodes will continue to operat=
e without modification. Non-upgraded nodes, however, will consider all post=
-quantum witness programs as anyone-can-spend scripts. They are strongly en=
couraged 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:0=
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">Non-upgraded wallets can receive and send bitcoin from non-=
upgraded and upgraded wallets until Phase A. After Phase A, they can no lon=
ger receive from any other wallets and can only send to upgraded wallets.=
=C2=A0 After Phase B, both senders and receivers will require upgraded wall=
ets.=C2=A0Phase C would likely require a loosening of consensus rules (a ha=
rd fork) to allow vulnerable 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 &=
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" target=
=3D"_blank">bitcoindev+unsubscribe@googlegroups.com</a>.<br>
To view this discussion visit <a href=3D"https://groups.google.com/d/msgid/=
bitcoindev/4d9ce13e-466d-478b-ab4d-00404c80d620n%40googlegroups.com?utm_med=
ium=3Demail&utm_source=3Dfooter" target=3D"_blank">https://groups.googl=
e.com/d/msgid/bitcoindev/4d9ce13e-466d-478b-ab4d-00404c80d620n%40googlegrou=
ps.com</a>.<br>
</blockquote></div></div>
</blockquote></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/CALZpt%2BEi2r_sXP5cw%2BL2wP9zQ0_8L-JSfG16zRSayuP9cTdt2Q%40mail.g=
mail.com?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.com/=
d/msgid/bitcoindev/CALZpt%2BEi2r_sXP5cw%2BL2wP9zQ0_8L-JSfG16zRSayuP9cTdt2Q%=
40mail.gmail.com</a>.<br />
--0000000000006ac9fe063a38eccf--
|