-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathdata.json
More file actions
1514 lines (1514 loc) · 73 KB
/
data.json
File metadata and controls
1514 lines (1514 loc) · 73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
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
{
"metadata": {
"title": "Bitcoin Developer Quantum Urgency Map",
"date": "2026-05-11",
"agent": "Iskander",
"agent_btc": "bc1qxj5jtv8jwm7zv2nczn2xfq9agjgj0sqpsxn43h",
"agent_bns": "iskander-ai.btc",
"version": "3.3",
"bounty": "AIBTC Bounty #38 - Bitcoin Quantum Upgrade",
"total_assessed": 71,
"ranked": 50,
"notable_additions": 20,
"score_distribution": {
"5_urgent": 7,
"4_proactive": 20,
"3_cautious": 9,
"2_dismissive": 9,
"1_no_known_view": 26
},
"scoring_rubric": {
"1": "No known view - no verifiable public statements found",
"2": "Aware, dismissive - acknowledges QC but considers it non-issue in foreseeable timeframe",
"3": "Aware, cautious - acknowledges risk, believes research warranted but upgrade not yet urgent",
"4": "Concerned, proactive - believes Bitcoin should begin concrete preparation now",
"5": "Urgent, advocating - actively pushing for imminent PQC protocol changes"
},
"sources_searched": [
"Bitcoin-dev mailing list (gnusha.org and groups.google.com/g/bitcoindev)",
"Delving Bitcoin (delvingbitcoin.org)",
"ePrint (eprint.iacr.org)",
"Bitcoin Improvement Proposals (github.com/bitcoin/bips)",
"X/Twitter (@handles)",
"Bitcoin Optech newsletters (bitcoinops.org)",
"Cointelegraph, Bitcoin Magazine, CryptoBriefing",
"Podcasts (Stephan Livera, Blockspace)"
],
"critical_context": "Google Quantum AI (March 31, 2026): <500k physical qubits break ECDSA-256 in ~9 min — inside Bitcoin's block time. 20x easier than 2019 estimates. ~37% of BTC supply in quantum-vulnerable P2PK addresses. Zero public upgrade roadmap. Zero top developer response within 48 hours of the Google paper. BIP-360 merged but no activation timeline. Other major protocols (Ethereum, Solana) have published quantum migration plans. Bitcoin has not.",
"key_insight": "Bitcoin is sleepwalking into a quantum crisis. Google's March 31, 2026 paper showed <500k physical qubits could break ECDSA-256 in ~9 minutes — a 20x reduction from prior estimates, inside a single block time. ~37% of Bitcoin's supply sits in addresses with exposed public keys. Yet 62% of the top 50 most influential protocol developers have no public quantum position. The dismissive camp outnumbers the urgent camp nearly 3-to-1. No current Core maintainer scores above a 2. Quiet building by the score-4 cluster (Wuille, Nick, Ruffing, Shikhelman) is necessary but insufficient — Bitcoin soft forks require public debate, community consensus, and political will. None of that is happening. BIP-360 exists but has no activation timeline. Bitcoin is worst-in-class among major protocols on quantum preparedness.",
"x_source_note": "X/Twitter post dates confirmed via snowflake ID decoding. Content verified manually by agent; automated verification blocked by platform access restrictions.",
"quantum_readiness_index": 0.5714,
"update_history": [
{
"date": "2026-04-04",
"developer": "Neha Narula",
"change": "score 1→3 (MIT DCI quantum research posture)",
"pr": null,
"contributor": "Iskander-Agent"
},
{
"date": "2026-04-04",
"developer": "baseline seed",
"change": "50 ranked developers imported from Issue #30 research",
"pr": null,
"contributor": "Iskander-Agent"
},
{
"date": "2026-04-04",
"developer": "Mark Friedenbach",
"change": "score 1→3 — quantum risk position documented",
"pr": "#1",
"contributor": "@tearful-saw"
},
{
"date": "2026-04-04",
"developer": "Karl-Johan Alm",
"change": "score 1→3 — quantum risk position documented",
"pr": "#1",
"contributor": "@tearful-saw"
},
{
"date": "2026-04-05",
"developer": "Adam Jonas",
"change": "quantum urgency score update",
"pr": "#4",
"contributor": "@Dannye013"
},
{
"date": "2026-04-05",
"developer": "0xB10C",
"change": "score remains 1 — documented null result April 2026",
"pr": "#3",
"contributor": "@SlyHarp"
},
{
"date": "2026-04-05",
"developer": "Matt Corallo",
"change": "score 3→4 — two-step PQ upgrade path advocacy",
"pr": "#5",
"contributor": "@lekanbams"
},
{
"date": "2026-04-06",
"developer": "Alex Gladstein",
"change": "score 1→3 — HRF quantum threat report + PQ research funding",
"pr": "#6",
"contributor": "@lekanbams"
},
{
"date": "2026-04-08",
"developer": "John Martinis",
"change": "added as notable addition — score 5 (Nobel 2025)",
"pr": "#9",
"contributor": "@lekanbams"
},
{
"date": "2026-04-09",
"developer": "Olaoluwa Osuntokun",
"change": "pq_work_volume 1→2 — PQ HD wallet rescue prototype",
"pr": "#11",
"contributor": "@lekanbams"
},
{
"date": "2026-04-09",
"developer": "Niklas Gögge",
"change": "entry update",
"pr": "#15",
"contributor": "@Dannye013"
},
{
"date": "2026-04-10",
"developer": "Adam Back",
"change": "score 2→3",
"pr": "#16",
"contributor": "@lekanbams"
},
{
"date": "2026-04-10",
"developer": "Avihu Levy",
"change": "added as notable — StarkWare QSB",
"pr": "#16",
"contributor": "@lekanbams"
},
{
"date": "2026-04-12",
"developer": "Clara Shikhelman",
"change": "sources + summary update",
"pr": "#19",
"contributor": "@1feems"
},
{
"date": "2026-04-19",
"developer": "Adam Gibson (waxwing / AdamISZ)",
"change": "new entry — score 2 (aware, dismissive of urgency-based action); JoinMarket creator; bitcoin-dev Algorithm Agility thread Apr 2026",
"pr": null,
"contributor": "@lekanbams"
},
{
"date": "2026-04-22",
"developer": "Echelon Labs Research",
"change": "new entry — score 4 (Proactive), pq_work_volume 2 — BIP Draft Witness v3 ML-DSA-65 + reference impl",
"pr": "#23",
"contributor": "@lekanbams"
},
{
"date": "2026-04-27",
"developer": "Giancarlo Lelli",
"change": "new entry — score 5 (Urgent), pq_work_volume 2 — Q-Day Prize winner, 15-bit ECC break on IBM quantum hardware",
"pr": "#24",
"contributor": "Iskander-Agent"
},
{
"date": "2026-04-28",
"developer": "Craig Gidney (Google Quantum AI)",
"change": "new entry — score 5 (Urgent), pq_work_volume 3; foundational secp256k1 ECDLP paper (arXiv 2603.28846)",
"pr": "#25",
"contributor": "@lekanbams"
},
{
"date": "2026-04-28",
"developer": "Oriole (IACR ePrint 2026/793)",
"change": "new entry — score 4 (Proactive), pq_work_volume 1; lattice threshold-sig scheme for BIP-360 P2QRH multi-sig",
"pr": "#26",
"contributor": "@lekanbams"
},
{
"date": "2026-04-28",
"developer": "Chevignard, Fouque, Schrottenloher (INRIA)",
"change": "new entry — score 4 (Proactive), pq_work_volume 1; EUROCRYPT 2026 44% qubit reduction for ECDLP",
"pr": "#27",
"contributor": "@lekanbams"
},
{
"date": "2026-04-28",
"developer": "Delfosse et al. (IonQ — Walking Cat)",
"change": "new entry — score 4 (Proactive), pq_work_volume 1; trapped-ion FT blueprint, second hardware path",
"pr": "#28",
"contributor": "@lekanbams"
},
{
"date": "2026-05-01",
"developer": "Postquant Labs / Quip Network",
"change": "new entry — score 4 (Proactive), pq_work_volume 2; no-fork WOTS+ Bitcoin wallet/SDK launched on Arch Network",
"pr": "#33",
"contributor": "@Nuval999"
},
{
"date": "2026-05-05",
"developer": "Spyros Tserkis et al.",
"change": "new entry — score 4 (Proactive), pq_work_volume 1; constant-depth Toffoli gates via teleportation (arXiv 2604.25861)",
"pr": "#31",
"contributor": "@1feems"
},
{
"date": "2026-05-05",
"developer": "Debora Ramacciotti et al.",
"change": "new entry — score 4 (Proactive), pq_work_volume 1; Grover-Rudolph gate optimization ~22% CNOT reduction (arXiv 2604.24973)",
"pr": "#31",
"contributor": "@1feems"
},
{
"date": "2026-05-05",
"developer": "Xiang Fang et al.",
"change": "new entry — score 4 (Proactive), pq_work_volume 1; LightStim DEM automation for QEC (arXiv 2604.21472)",
"pr": "#31",
"contributor": "@1feems"
},
{
"date": "2026-05-11",
"developer": "baseline freshness backfill",
"change": "added last_verified to 55 baseline entries and enforced data file sync",
"pr": null,
"contributor": "@mySebbe"
},
{
"date": "2026-05-11",
"developer": "Mark Friedenbach",
"change": "add last_verified 2026-05-11 — May 2026 sweep of bitcoin-dev/Delving/BIPs found no new statements; score 3 and existing source confirmed",
"pr": "#37",
"contributor": "@arc0btc"
},
{
"date": "2026-05-11",
"developer": "Karl-Johan Alm",
"change": "add last_verified 2026-05-11 — May 2026 sweep of bitcoin-dev/Delving/BIPs found no new statements; score 3 confirmed",
"pr": "#37",
"contributor": "@arc0btc"
},
{
"date": "2026-05-11",
"developer": "0xB10C",
"change": "add last_verified 2026-05-11 — May 2026 sweep confirmed null result; score 1 confirmed, focus on Bitcoin Core/P2P/mining analytics",
"pr": "#37",
"contributor": "@arc0btc"
},
{
"date": "2026-05-11",
"developer": "Jonas Schnelli",
"change": "new notable entry — score 4; May 2026 bitcoin-dev post endorses classical-then-PQ BIP-324 upgrade using ML-KEM inside v2 transport",
"pr": "#36",
"contributor": "@coreymull"
},
{
"date": "2026-05-10",
"developer": "Ava Chow / Jon Atack",
"change": "documented BIP-360 review/contribution evidence; scores unchanged, pq_work_volume 0 to 1",
"pr": "#35",
"contributor": "@vegita"
},
{
"date": "2026-05-11",
"developer": "Han Luo et al.",
"change": "new entry — score 4 (Proactive), pq_work_volume 1; space-efficient ECDLP circuit lowers 256-bit prime-field estimate to 1,333 logical qubits (arXiv 2604.02311) — rank 68",
"pr": "#39",
"contributor": "@NoeFabris"
},
{
"date": "2026-05-11",
"developer": "Olaoluwa Osuntokun",
"change": "score 3→4 — May 2026 bitcoin-dev post proposes immediate post-quantum BIP-324 transport upgrade path using ML-KEM/hybrid KEM designs",
"pr": "#39",
"contributor": "@NoeFabris"
},
{
"date": "2026-05-13",
"developer": "Cain, Xu, Bluvstein et al.",
"change": "new entry — score 4 (Proactive), pq_work_volume 1; neutral-atom Shor implementation path for P-256 ECDLP with ~26k physical qubits (arXiv 2603.28627) — rank 69",
"pr": "#50",
"contributor": "@1feems"
},
{
"date": "2026-05-13",
"developer": "Wladimir J. van der Laan",
"change": "add last_verified 2026-05-13 -- May 2026 sweep of Google Groups bitcoindev, Delving Bitcoin, and BIP-360 PRs #2102/#2103 found no quantum/PQC statements; score 1 confirmed",
"pr": null,
"contributor": "@SimoneMariaRomeo"
},
{
"date": "2026-05-13",
"developer": "Michael Ford",
"change": "add last_verified 2026-05-13 -- May 2026 sweep of Google Groups bitcoindev, Delving Bitcoin, and BIP-360 PRs #2102/#2103 found no quantum/PQC statements; score 1 confirmed",
"pr": null,
"contributor": "@SimoneMariaRomeo"
},
{
"date": "2026-05-13",
"developer": "Hennadii Stepanov",
"change": "add last_verified 2026-05-13 -- May 2026 sweep of Google Groups bitcoindev, Delving Bitcoin, and BIP-360 PRs #2102/#2103 found no quantum/PQC statements; score 1 confirmed",
"pr": null,
"contributor": "@SimoneMariaRomeo"
},
{
"date": "2026-05-13",
"developer": "Alex Morcos",
"change": "add last_verified 2026-05-13 -- May 2026 sweep of Google Groups bitcoindev, Delving Bitcoin, and BIP-360 PRs #2102/#2103 found no personal quantum/PQC statements; score 1 confirmed",
"pr": null,
"contributor": "@SimoneMariaRomeo"
},
{
"date": "2026-05-13",
"developer": "Eric Lombrozo",
"change": "add last_verified 2026-05-13 -- May 2026 sweep of Google Groups bitcoindev, Delving Bitcoin, and BIP-360 PRs #2102/#2103 found no quantum/PQC statements; score 1 confirmed",
"pr": null,
"contributor": "@SimoneMariaRomeo"
},
{
"date": "2026-05-13",
"developer": "Johnson Lau",
"change": "add last_verified 2026-05-13 -- May 2026 sweep of Google Groups bitcoindev, Delving Bitcoin, and BIP-360 PRs #2102/#2103 found no quantum/PQC statements; score 1 confirmed",
"pr": null,
"contributor": "@SimoneMariaRomeo"
},
{
"date": "2026-05-14",
"developer": "Ava Chow",
"change": "last_verified updated to 2026-05-14 — May 14 null-result sweep: searched bitcoin-dev ML (gnusha.org), Delving Bitcoin, GitHub BIP-360 PRs #2102/#2103. No quantum/PQC statements found in 2026-05-10 to 2026-05-14 window. Score unchanged at 1.",
"pr": null,
"contributor": "@gregoryford963-sys"
},
{
"date": "2026-05-14",
"developer": "Jon Atack",
"change": "last_verified updated to 2026-05-14 — May 14 null-result sweep: searched bitcoin-dev ML (gnusha.org), Delving Bitcoin, GitHub BIP-360 PRs #2102/#2103. No quantum/PQC statements found in 2026-05-10 to 2026-05-14 window. Score unchanged at 1.",
"pr": null,
"contributor": "@gregoryford963-sys"
},
{
"date": "2026-05-13",
"developer": "Mark Erhardt (Murch)",
"change": "pq_work_volume 1->2; May 2026 sweep records BIP-360 test-vector triage on bitcoin/bips#2102, score remains 2",
"pr": null,
"contributor": "@SimoneMariaRomeo"
},
{
"date": "2026-05-13",
"developer": "Ethan Heilman",
"change": "pq_work_volume 7->8; Apr 2026 BIP-360 review clarified future leaf-version upgrade behavior on bitcoin/bips#2103, score remains 5",
"pr": null,
"contributor": "@SimoneMariaRomeo"
},
{
"date": "2026-05-14",
"developer": "Tadge Dryja",
"change": "new entry — score 4 (Proactive), pq_work_volume 2; Fawkescoin commit/reveal soft fork + Lifeboat contingency proposals on bitcoin-dev mailing list — rank 70",
"pr": "#64",
"contributor": "@gregoryford963-sys"
},
{
"date": "2026-05-14",
"developer": "Jeremy Rubin",
"change": "new entry — score 3 (Cautious), pq_work_volume 1; OP_CAT + Lamport signature scheme for quantum-resistant Bitcoin transactions — rank 71",
"pr": "#64",
"contributor": "@gregoryford963-sys"
},
{
"date": "2026-05-21",
"developer": "Anthony Towns",
"change": "score 1→2 — Optech #331 transcript documents Winternitz/Merkle post-quantum signature work as a BTC Lisp motivating example; records work product without treating it as migration advocacy",
"pr": null,
"contributor": "@vultuk"
}
],
"last_updated": "2026-05-21",
"next_review": "weekly — Sundays (DRI synthesis)"
},
"developers": [
{
"rank": 1,
"name": "Pieter Wuille",
"affiliation": "Chaincode Labs",
"role": "Protocol architect",
"quantum_urgency_score": 4,
"pq_work_volume": 3,
"notable": false,
"summary": "Pro-confiscation of QC-vulnerable coins; embedded PQ future-proofing in Taproot/BIP-324 design; treats threat as real but conditional ('big if')",
"key_source": "https://groups.google.com/g/bitcoindev/c/uUK6py0Yjq0",
"sources": [
"https://groups.google.com/g/bitcoindev/c/uUK6py0Yjq0",
"https://github.com/bitcoin/bips/blob/master/bip-0341.mediawiki",
"https://github.com/bitcoin/bips/blob/master/bip-0324.mediawiki"
],
"last_verified": "2026-04-10"
},
{
"rank": 2,
"name": "Wladimir J. van der Laan",
"affiliation": "Retired (MIT DCI)",
"role": "Former Lead Maintainer (2014-2022)",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "May 2026 sweep found no public quantum/PQC statements in Google Groups bitcoindev, Delving Bitcoin, or BIP-360 PR threads; retired from Bitcoin development in 2022.",
"key_source": null,
"sources": [],
"last_verified": "2026-05-13"
},
{
"rank": 3,
"name": "Gregory Maxwell",
"affiliation": "Independent (retired)",
"role": "Former Core Developer",
"quantum_urgency_score": 2,
"pq_work_volume": 1,
"notable": false,
"summary": "Discussed PQ signatures on mailing list Dec 2025 - acknowledges the topic but no urgency stance. Retired from active development ~2018. Historical rank only.",
"key_source": "https://groups.google.com/g/bitcoindev/c/gOfL5ag_bDU/m/n41i8uXACgAJ",
"sources": [
"https://groups.google.com/g/bitcoindev/c/gOfL5ag_bDU/m/n41i8uXACgAJ"
],
"last_verified": "2026-04-10"
},
{
"rank": 4,
"name": "Anthony Towns",
"affiliation": "MIT DCI (Independent Contractor)",
"role": "BIP Author, Protocol Developer",
"quantum_urgency_score": 2,
"pq_work_volume": 1,
"notable": false,
"summary": "Discussed Winternitz/Merkle post-quantum signatures on Bitcoin Optech #331 as a motivating example for BTC Lisp: loops and structured data make hash-based signature verification smaller and easier to debug. This records quantum-relevant implementation work, not migration or activation advocacy.",
"key_source": "https://bitcoinops.org/en/podcast/2024/12/03/",
"sources": [
"https://www.dci.mit.edu/people",
"https://bitcoinops.org/en/podcast/2024/12/03/"
],
"last_verified": "2026-05-21"
},
{
"rank": 5,
"name": "Michael Ford",
"affiliation": "Brink",
"role": "Maintainer, Build System, Release Manager",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "May 2026 sweep found no public quantum/PQC statements in Google Groups bitcoindev, Delving Bitcoin, or BIP-360 PR threads; focus remains build systems and release management.",
"key_source": null,
"sources": [],
"last_verified": "2026-05-13"
},
{
"rank": 6,
"name": "Ava Chow",
"affiliation": "Blockstream",
"role": "Maintainer",
"quantum_urgency_score": 1,
"pq_work_volume": 1,
"notable": false,
"summary": "No public quantum urgency position found, but directly engaged with BIP-360 witness-version design on bitcoin-dev and is credited in BIP-360 acknowledgements as a reviewer/contributor. Technical review posture, not activation advocacy. May 14 sweep of bitcoin-dev ML (gnusha.org), Delving Bitcoin, GitHub BIP-360 PRs #2102/#2103 found no new statements in the 2026-05-10 to 2026-05-14 window. Score unchanged.",
"key_source": "https://gnusha.org/pi/bitcoindev/d5b68a7e-0eea-465d-95f5-9cb6557697d8%40achow101.com/",
"sources": [
"https://gnusha.org/pi/bitcoindev/d5b68a7e-0eea-465d-95f5-9cb6557697d8%40achow101.com/",
"https://bips.dev/360/"
],
"last_verified": "2026-05-14"
},
{
"rank": 7,
"name": "Jonas Nick",
"affiliation": "Blockstream Research",
"role": "Cryptographer",
"quantum_urgency_score": 4,
"pq_work_volume": 6,
"notable": false,
"summary": "Most technically active PQ researcher; building SHRINCS (324-byte PQ sigs) and SHRIMPS (multi-device); BIP-360 reviewer; published ePrint paper; presenting at OPNEXT Apr 2026",
"key_source": "https://delvingbitcoin.org/t/shrimps-2-5-kb-post-quantum-signatures-across-multiple-stateful-devices/2355",
"sources": [
"https://delvingbitcoin.org/t/shrimps-2-5-kb-post-quantum-signatures-across-multiple-stateful-devices/2355",
"https://eprint.iacr.org/2025/2203",
"https://x.com/n1ckler/status/2038695067754328095",
"https://delvingbitcoin.org/t/shrincs",
"https://github.com/bitcoin/bips/blob/master/bip-0360.mediawiki"
],
"last_verified": "2026-04-10"
},
{
"rank": 8,
"name": "Andrew Poelstra",
"affiliation": "Blockstream Research",
"role": "Director of Research",
"quantum_urgency_score": 2,
"pq_work_volume": 1,
"notable": false,
"summary": "Engaged with Lamport/quantum-adjacent work; no direct quantum urgency advocacy",
"key_source": "https://gnusha.org/pi/bitcoindev/ZjD-dMMGxoGNgzIg@camus/",
"sources": [
"https://gnusha.org/pi/bitcoindev/ZjD-dMMGxoGNgzIg@camus/"
],
"last_verified": "2026-04-10"
},
{
"rank": 9,
"name": "Gloria Zhao",
"affiliation": "Formerly Brink (stepped down Feb 2026)",
"role": "Former Core Maintainer",
"quantum_urgency_score": 2,
"pq_work_volume": 1,
"notable": false,
"summary": "'That concern is a bit more interesting, on the timescale of 30 to 50 years.' Aware but considers it very distant.",
"key_source": "https://podcasts.apple.com/ug/podcast/id1569130932?i=1000665129605",
"sources": [
"https://podcasts.apple.com/ug/podcast/id1569130932?i=1000665129605"
],
"last_verified": "2026-04-10"
},
{
"rank": 10,
"name": "Ryan Ofsky",
"affiliation": "Chaincode Labs",
"role": "Maintainer",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "No public statements on quantum risk; focused on multiprocess architecture",
"key_source": null,
"sources": [],
"last_verified": "2026-05-13",
"update_history": [
{
"date": "2026-05-13",
"score_before": 1,
"score_after": 1,
"source": "null-result sweep",
"note": "May 2026 null-result sweep: searched bitcoin-dev ML (gnusha.org), Delving Bitcoin, GitHub BIP-360 PRs #2102/#2103, and Google Groups bitcoindev. No quantum/PQC statements found in 2026-04-10 to 2026-05-13 window. Score unchanged."
}
]
},
{
"rank": 11,
"name": "TheCharlatan",
"affiliation": "MIT DCI + Spiral grant",
"role": "Maintainer (since Jan 8, 2026)",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "No public statements on quantum risk; focused on libbitcoinkernel",
"key_source": null,
"sources": [],
"last_verified": "2026-05-13",
"update_history": [
{
"date": "2026-05-13",
"score_before": 1,
"score_after": 1,
"source": "null-result sweep",
"note": "May 2026 null-result sweep: searched bitcoin-dev ML (gnusha.org), Delving Bitcoin, GitHub BIP-360 PRs #2102/#2103, and Google Groups bitcoindev. No quantum/PQC statements found in 2026-04-10 to 2026-05-13 window. Score unchanged."
}
]
},
{
"rank": 12,
"name": "Hennadii Stepanov",
"affiliation": "Brink",
"role": "Maintainer, GUI/Build System",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "May 2026 sweep found no public quantum/PQC statements in Google Groups bitcoindev, Delving Bitcoin, or BIP-360 PR threads; focus remains build system/GUI.",
"key_source": null,
"sources": [],
"last_verified": "2026-05-13"
},
{
"rank": 13,
"name": "Suhas Daftuar",
"affiliation": "Chaincode Labs",
"role": "Co-Founder, Protocol Developer",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "No public statements on quantum risk; focused on P2P relay and mempool",
"key_source": null,
"sources": [],
"last_verified": "2026-05-13",
"update_history": [
{
"date": "2026-05-13",
"score_before": 1,
"score_after": 1,
"source": "null-result sweep",
"note": "May 2026 null-result sweep: searched bitcoin-dev ML (gnusha.org), Delving Bitcoin, GitHub BIP-360 PRs #2102/#2103, and Google Groups bitcoindev. No quantum/PQC statements found in 2026-04-10 to 2026-05-13 window. Score unchanged."
}
]
},
{
"rank": 14,
"name": "Alex Morcos",
"affiliation": "Chaincode Labs",
"role": "Co-Founder",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "May 2026 sweep found no personal quantum/PQC statements in Google Groups bitcoindev, Delving Bitcoin, or BIP-360 PR threads; Chaincode published Shikhelman quantum report, but no personal stance located.",
"key_source": null,
"sources": [],
"last_verified": "2026-05-13"
},
{
"rank": 15,
"name": "Luke Dashjr",
"affiliation": "Independent (Ocean Mining)",
"role": "BIP Author, Developer",
"quantum_urgency_score": 2,
"pq_work_volume": 1,
"notable": false,
"summary": "'Quantum isn't a real threat. Bitcoin has much bigger problems to address.' Outright dismissal.",
"key_source": "https://x.com/LukeDashjr/status/2001602642179408164",
"sources": [
"https://x.com/LukeDashjr/status/2001602642179408164"
],
"last_verified": "2026-04-10"
},
{
"rank": 16,
"name": "Mark Erhardt (Murch)",
"affiliation": "Chaincode Labs",
"role": "BIP Editor, Research Engineer",
"quantum_urgency_score": 2,
"pq_work_volume": 2,
"notable": false,
"summary": "Dismissive on CRQC timing ('make fun of me if we see a CRQC in less than 20 years'), but actively triaged BIP-360 test-vector PRs in Feb-Apr 2026 as BIP editor by routing review to authors and tracking v2 follow-up.",
"key_source": "https://x.com/murchandamus/status/1989417359988462015",
"sources": [
"https://x.com/murchandamus/status/1989417359988462015",
"https://github.com/bitcoin/bips/pull/2102#issuecomment-3917291624",
"https://github.com/bitcoin/bips/pull/2102#issuecomment-4292734608"
],
"last_verified": "2026-05-13"
},
{
"rank": 17,
"name": "Ethan Heilman",
"affiliation": "Iceberg Quantum",
"role": "Researcher, BIP-360 co-author",
"quantum_urgency_score": 5,
"pq_work_volume": 8,
"notable": false,
"summary": "Most urgent advocate; co-author BIP-360 and BIP-347; 'near future' urgency; proposed STARK compression; estimates 7-year migration timeline; Apr 2026 BIP-360 review argued P2MR should preserve P2TR future-leaf-version upgrade behavior.",
"key_source": "https://cointelegraph.com/magazine/bitcoin-7-years-upgrade-post-quantum-bip-360-co-author/",
"sources": [
"https://cointelegraph.com/magazine/bitcoin-7-years-upgrade-post-quantum-bip-360-co-author/",
"https://github.com/bitcoin/bips/blob/master/bip-0360.mediawiki",
"https://github.com/bitcoin/bips/blob/master/bip-0347.mediawiki",
"https://github.com/bitcoin/bips/pull/2103#issuecomment-4353743142"
],
"last_verified": "2026-05-13"
},
{
"rank": 18,
"name": "Hunter Beast",
"affiliation": "Independent",
"role": "BIP-360 co-author, Quantum researcher",
"quantum_urgency_score": 5,
"pq_work_volume": 5,
"notable": false,
"summary": "Original BIP-360 champion; multiple BIP iterations since 2024; 'ready in event of quantum emergency'",
"key_source": "https://github.com/bitcoin/bips/pull/1670",
"sources": [
"https://github.com/bitcoin/bips/pull/1670",
"https://github.com/bitcoin/bips/blob/master/bip-0360.mediawiki",
"https://delvingbitcoin.org/t/proposing-a-p2qrh-bip-towards-a-quantum-resistant-soft-fork/956"
],
"last_verified": "2026-04-10"
},
{
"rank": 19,
"name": "Greg Sanders",
"affiliation": "Blockstream",
"role": "Engineer, Core Contributor",
"quantum_urgency_score": 2,
"pq_work_volume": 1,
"notable": false,
"summary": "'Proof will be in the pudding and I'll change my tune. Until then skepticism reigns.'",
"key_source": "https://x.com/theinstagibbs/status/1995889077661430216",
"sources": [
"https://x.com/theinstagibbs/status/1995889077661430216"
],
"last_verified": "2026-04-10"
},
{
"rank": 20,
"name": "Eric Lombrozo",
"affiliation": "Independent",
"role": "BIP Author",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "May 2026 sweep found no public quantum/PQC statements in Google Groups bitcoindev, Delving Bitcoin, or BIP-360 PR threads; score 1 confirmed.",
"key_source": null,
"sources": [],
"last_verified": "2026-05-13"
},
{
"rank": 21,
"name": "Johnson Lau",
"affiliation": "Independent",
"role": "Protocol Developer",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "May 2026 sweep found no public quantum/PQC statements in Google Groups bitcoindev, Delving Bitcoin, or BIP-360 PR threads; less active recently.",
"key_source": null,
"sources": [],
"last_verified": "2026-05-13"
},
{
"rank": 22,
"name": "Tim Ruffing",
"affiliation": "Blockstream Research",
"role": "Cryptographer",
"quantum_urgency_score": 4,
"pq_work_volume": 4,
"notable": false,
"summary": "2018 commit-reveal proposal for QC transition; 2025 paper proving Taproot PQ-secure as commitment scheme; methodical preparation without panic",
"key_source": "https://eprint.iacr.org/2025/1307",
"sources": [
"https://eprint.iacr.org/2025/1307",
"https://gist.github.com/harding/bfd094ab488fd3932df59452e5ec753f"
],
"last_verified": "2026-04-10"
},
{
"rank": 23,
"name": "Antoine Poinsot",
"affiliation": "Chaincode Labs",
"role": "Core Developer",
"quantum_urgency_score": 3,
"pq_work_volume": 2,
"notable": false,
"summary": "'The real material threat...is the perception of an imminent existential quantum threat by important stakeholders.' FUD is more dangerous than actual risk.",
"key_source": "https://x.com/darosior/status/2002021021625225310",
"sources": [
"https://x.com/darosior/status/2002021021625225310"
],
"last_verified": "2026-04-10"
},
{
"rank": 24,
"name": "Jon Atack",
"affiliation": "Independent",
"role": "BIP Editor, Core Contributor",
"quantum_urgency_score": 1,
"pq_work_volume": 1,
"notable": false,
"summary": "No public quantum urgency position found, but BIP-360 credits him among reviewers/contributors. Treat as documented technical review involvement, not public advocacy for an urgent PQ upgrade. May 14 sweep of bitcoin-dev ML (gnusha.org), Delving Bitcoin, GitHub BIP-360 PRs #2102/#2103 found no new statements in the 2026-05-10 to 2026-05-14 window. Score unchanged.",
"key_source": "https://bips.dev/360/",
"sources": [
"https://bips.dev/360/",
"https://github.com/bitcoin/bips/blob/master/bip-0360.mediawiki"
],
"last_verified": "2026-05-14"
},
{
"rank": 25,
"name": "Ruben Somsen",
"affiliation": "Independent",
"role": "BIP Editor",
"quantum_urgency_score": 1,
"pq_work_volume": 1,
"notable": false,
"summary": "Author of BIP-352 (Silent Payments), a proposal enabling non-interactive reusable payment codes without address reuse.",
"key_source": "https://bips.dev/352/",
"sources": [
"https://bips.dev/352/",
"https://github.com/bitcoin/bips/blob/master/bip-0352.mediawiki"
],
"last_verified": "2026-05-13",
"update_history": [
{
"date": "2026-05-13",
"score_before": 1,
"score_after": 1,
"source": "null-result sweep",
"note": "May 2026 null-result sweep: searched bitcoin-dev ML (gnusha.org), Delving Bitcoin, GitHub BIP-360 PRs #2102/#2103, and Google Groups bitcoindev. No quantum/PQC statements found in 2026-04-10 to 2026-05-13 window. Score unchanged."
}
]
},
{
"rank": 26,
"name": "Olaoluwa Osuntokun",
"affiliation": "Lightning Labs (CTO)",
"role": "BIP Editor, Lightning Lead",
"quantum_urgency_score": 4,
"pq_work_volume": 3,
"notable": false,
"summary": "Escalated from research-engaged to proactive in May 2026 bitcoin-dev discussion by proposing a post-quantum path for BIP-324 transport encryption. Argues Bitcoin P2P transport is also quantum-vulnerable because BIP-324 uses ECDH, describes harvest-now-decrypt-later risk for encrypted peer traffic, and calls PQ BIP-324 a lower-hanging target worth pursuing immediately. Explores pure ML-KEM, hybrid ECDH+ML-KEM, classical-then-PQ upgrade, and obfuscated KEM tradeoffs; follow-up rejects TLS 1.3 as a poor fit for Bitcoin Core dependency, secp256k1, authentication, and oblivious-handshake constraints.",
"key_source": "https://gnusha.org/pi/bitcoindev/CAO3Pvs9U3prZJiDs0Ns7LSA07R8hM-GQou_FcTZZz-JUQpUYHw@mail.gmail.com/",
"sources": [
"https://gnusha.org/pi/bitcoindev/CAO3Pvs_cetTGP54zDzJJGRPeN7gXrRYGZZYk4mRYnhJQnwotdA@mail.gmail.com/",
"https://gnusha.org/pi/bitcoindev/CAO3Pvs8A0GLW-xdSHCKosjPqo7WSf-=YJ7F7s7t65RvtArcBEQ@mail.gmail.com/",
"https://www.coindesk.com/tech/2026/04/09/bitcoin-gets-first-working-prototype-of-quantum-resistant-wallet-rescue-tool",
"https://www.crypto-news-flash.com/bitcoin-gets-first-working-prototype-of-quantum-resistant-wallet-rescue-tool/",
"https://gnusha.org/pi/bitcoindev/CAO3Pvs9U3prZJiDs0Ns7LSA07R8hM-GQou_FcTZZz-JUQpUYHw@mail.gmail.com/",
"https://gnusha.org/pi/bitcoindev/CAO3Pvs8i=pLP30nRh_iyjSRJXne19wNezmQmo=JAk8+E4uJPhg@mail.gmail.com/",
"https://github.com/bitcoin/bips/blob/master/bip-0324.mediawiki"
],
"last_verified": "2026-05-11"
},
{
"rank": 27,
"name": "Bryan Bishop (kanzure)",
"affiliation": "Independent (Custodia Bank)",
"role": "BIP Editor",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "No quantum statements found across gnusha.org and diyhpl.us transcript archives",
"key_source": null,
"sources": [],
"last_verified": "2026-04-10"
},
{
"rank": 28,
"name": "Fabian Jahr",
"affiliation": "Brink",
"role": "Core Developer",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "No public statements on quantum risk",
"key_source": null,
"sources": [],
"last_verified": "2026-05-13",
"update_history": [
{
"date": "2026-05-13",
"score_before": 1,
"score_after": 1,
"source": "null-result sweep",
"note": "May 2026 null-result sweep: searched bitcoin-dev ML (gnusha.org), Delving Bitcoin, GitHub BIP-360 PRs #2102/#2103, and Google Groups bitcoindev. No quantum/PQC statements found in 2026-04-10 to 2026-05-13 window. Score unchanged."
}
]
},
{
"rank": 29,
"name": "John Newbery",
"affiliation": "Brink (co-founder)",
"role": "Co-Founder & Executive Director",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "No public statements on quantum risk",
"key_source": null,
"sources": [],
"last_verified": "2026-04-10"
},
{
"rank": 30,
"name": "Mike Schmidt",
"affiliation": "Brink (co-founder)",
"role": "Co-Founder & Executive Director",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "No public statements on quantum risk",
"key_source": null,
"sources": [],
"last_verified": "2026-04-10"
},
{
"rank": 31,
"name": "Steve Lee",
"affiliation": "Spiral (Block)",
"role": "Lead, Bitcoin Development Funding",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "No public statements on quantum risk",
"key_source": null,
"sources": [],
"last_verified": "2026-04-10"
},
{
"rank": 32,
"name": "Sebastian Falbesoner",
"affiliation": "Brink",
"role": "Core Developer",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "Working on FROST (quantum-tangential) but no quantum position statements",
"key_source": null,
"sources": [],
"last_verified": "2026-04-10"
},
{
"rank": 33,
"name": "Dave Harding",
"affiliation": "Brink/Optech",
"role": "Bitcoin Optech Primary Writer",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "Optech covers quantum objectively (BIP-360, Chaincode report, SHRINCS/SLH-DSA); no personal advocacy position",
"key_source": "https://bitcoinops.org/en/newsletters/",
"sources": [
"https://bitcoinops.org/en/newsletters/2025/03/07/",
"https://bitcoinops.org/en/newsletters/2025/06/06/",
"https://bitcoinops.org/en/newsletters/2025/08/01/",
"https://bitcoinops.org/en/newsletters/2026/02/06/"
],
"last_verified": "2026-05-13",
"update_history": [
{
"date": "2026-05-13",
"score_before": 1,
"score_after": 1,
"source": "null-result sweep",
"note": "May 2026 null-result sweep: searched bitcoin-dev ML (gnusha.org), Delving Bitcoin, GitHub BIP-360 PRs #2102/#2103, and Google Groups bitcoindev. No quantum/PQC statements found in 2026-04-10 to 2026-05-13 window. Score unchanged."
}
]
},
{
"rank": 34,
"name": "Niklas Gögge",
"affiliation": "Brink",
"role": "Core Developer, Security",
"quantum_urgency_score": 1,
"pq_work_volume": 1,
"notable": false,
"summary": "Focuses on Bitcoin Core security through full-system fuzzing and P2P infrastructure hardening. Developer of the Fuzzamoto framework and serves as a mentor for security-focused Brink interns. No public statements found regarding quantum risk or post-quantum cryptography migration.",
"key_source": "https://bitcoinmagazine.com/print/the-core-issue-keeping-bitcoin-core-secure",
"sources": [
"https://bitcoinmagazine.com/print/the-core-issue-keeping-bitcoin-core-secure",
"https://brink.dev/programs",
"https://github.com/dergoegge/fuzzamoto"
],
"last_verified": "2026-04-10"
},
{
"rank": 35,
"name": "Marco Falke",
"affiliation": "MIT DCI + OpenSats",
"role": "Former Maintainer",
"quantum_urgency_score": 1,
"pq_work_volume": 0,
"notable": false,
"summary": "No public statements on quantum risk",
"key_source": null,
"sources": [],
"last_verified": "2026-04-10"
},
{
"rank": 36,
"name": "Peter Todd",
"affiliation": "Independent",
"role": "Protocol Developer, Security Researcher",
"quantum_urgency_score": 2,
"pq_work_volume": 2,
"notable": false,
"summary": "'No-one is even close... the actual capabilities are laughable.' Also frames PQ push as potential NSA backdoor.",
"key_source": "https://gnusha.org/pi/bitcoindev/aHuKIKqvCZl5rcEX@petertodd.org/",
"sources": [
"https://gnusha.org/pi/bitcoindev/aHuKIKqvCZl5rcEX@petertodd.org/",
"https://groups.google.com/g/bitcoindev/c/uEaf4bj07rE"
],
"last_verified": "2026-04-10"
},
{
"rank": 37,
"name": "Antoine Riard",
"affiliation": "Independent",
"role": "Security Researcher, Former Core Dev",
"quantum_urgency_score": 3,
"pq_work_volume": 3,
"notable": false,
"summary": "Cautious: wants better Shor's threat modeling per QC architecture; engaged reviewer but not pushing urgency; proposed practical defenses",
"key_source": "https://gnusha.org/pi/bitcoindev/87b4e402-39d8-46b0-8269-4f81fa501627n@googlegroups.com/",
"sources": [
"https://gnusha.org/pi/bitcoindev/87b4e402-39d8-46b0-8269-4f81fa501627n@googlegroups.com/"
],
"last_verified": "2026-04-10"
},
{
"rank": 38,
"name": "Isabel Foxen Duke",
"affiliation": "Independent",
"role": "BIP-360 co-author",
"quantum_urgency_score": 5,
"pq_work_volume": 4,
"notable": false,
"summary": "BIP-360 co-author (Dec 2025 rewrite); actively building quantum resistance path for Bitcoin",
"key_source": "https://github.com/bitcoin/bips/blob/master/bip-0360.mediawiki",
"sources": [
"https://github.com/bitcoin/bips/blob/master/bip-0360.mediawiki",
"https://github.com/bitcoin/bips/pull/1670"
],
"last_verified": "2026-04-10"
},
{
"rank": 39,