summaryrefslogtreecommitdiff
path: root/32/20801db217c5f8daa5646d6ac07809d0eaa2cc
blob: bcfb4b8bc0a4933bada873b5499ee0affa4b271e (plain)
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
Return-Path: <fresheneesz@gmail.com>
Received: from smtp1.osuosl.org (smtp1.osuosl.org [140.211.166.138])
 by lists.linuxfoundation.org (Postfix) with ESMTP id 516BFC0001
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue, 25 May 2021 20:02:16 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
 by smtp1.osuosl.org (Postfix) with ESMTP id 2215783403
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue, 25 May 2021 20:02:16 +0000 (UTC)
X-Virus-Scanned: amavisd-new at osuosl.org
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 tagged_above=-999 required=5
 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
 DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001,
 HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001,
 SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: smtp1.osuosl.org (amavisd-new);
 dkim=pass (2048-bit key) header.d=gmail.com
Received: from smtp1.osuosl.org ([127.0.0.1])
 by localhost (smtp1.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id YBWpzee19ANr
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue, 25 May 2021 20:02:12 +0000 (UTC)
X-Greylist: whitelisted by SQLgrey-1.8.0
Received: from mail-ed1-x52e.google.com (mail-ed1-x52e.google.com
 [IPv6:2a00:1450:4864:20::52e])
 by smtp1.osuosl.org (Postfix) with ESMTPS id 1FCA583133
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue, 25 May 2021 20:02:11 +0000 (UTC)
Received: by mail-ed1-x52e.google.com with SMTP id t15so37730296edr.11
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue, 25 May 2021 13:02:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;
 h=mime-version:references:in-reply-to:from:date:message-id:subject:to
 :cc; bh=GC22tCK7i91/H/+rGPG4uIU7qCQXXE61iXpNhHaJyVo=;
 b=R0R0OoJDuUS9AQN51y2OGMaL8lwKlEQG5AWV10uKDWr/ONVu9YwSTjbywWbGIZ6sCw
 O07U+ydv1VMD7bVhTepD8QGcl0RvpEQ55Mfyi2eSZWJgXL45qfnZY0CKEFB3j1Ub8pM/
 U7tDBcgAJYPdhyjrFTbQdWYa1KjRVdg727c2lAerrSZK/GOgr0e6BA8L6oYPxp2x4lhV
 93+5rY9J/XasSeXL7Nn7LGuuQ1ZGcEaRHs1KucXgV4KKBLUfF6OlnWoZPbQ7nsYb6Kx7
 BLt7xqh2Yc9vSZzXS+poRTFOl2QhS66yffcblrATimgFg/T459JYmjfMFW2oCclmdEYw
 MKFw==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:mime-version:references:in-reply-to:from:date
 :message-id:subject:to:cc;
 bh=GC22tCK7i91/H/+rGPG4uIU7qCQXXE61iXpNhHaJyVo=;
 b=DwmscBWADlK7KYqcumHypt6ECA92gnU+6E++Ni0982V2MCNFDv1FvZK6YGqLFrxitS
 E07C2ciDW4hrlsZ0D/TXXVHba50kZScBbPCM8oBuK+GcQikvtVIw9sU8pOtfCQ/Hx91k
 OyhU1IDuG/d2NNhuYIIhkMawBNzYDZlM1ERbDStLUtz+vviWXvus9BkXwoZ0oxTmdFBc
 Fs1fnymYStKi4iK9nkDCPV+FK+/SJE+ps6i1vokwhZ7pY/u5hQttxjy1Y8YJK/gc+jVD
 aTH1rNx6MQl72lAhtzgtoR8JtfEx5idNZMt4u7HWESlgGtzP2jLgADqwX5yPSAheufYU
 u7xQ==
X-Gm-Message-State: AOAM530YRZGNrQDz8pHmBOABbgjvls0pfkeNZYv8/zK/wwLlyFTII9sm
 TieCTP/zCm2nRmPDoSijBfYNb+b+1ZVmP9j7RUA=
X-Google-Smtp-Source: ABdhPJxxMsKk6phBSCYp68dC8j5BTXaCB3vq/kWis8U/5s7ixzi/RfWl4Ug6pEXb0gLSeSm/tCiLQtQX2dr07kBni4Y=
X-Received: by 2002:a05:6402:510b:: with SMTP id
 m11mr10827841edd.26.1621972930186; 
 Tue, 25 May 2021 13:02:10 -0700 (PDT)
MIME-Version: 1.0
References: <6do5xN2g5LPnFeM55iJ-4C4MyXOu_KeXxy68Xt4dJQMhi3LJ8ZrLICmEUlh8JGfDmsDG12m1JDAh0e0huwK_MlyKpdfn22ru3zsm7lYLfBo=@protonmail.com>
 <CAJowKg+QM94g+JcC-E-NGD4J9-nXHWt5kBw14bXTAWaqZz=bYw@mail.gmail.com>
 <CALeFGL02d9NVp+yobrtc2g6k2nBjBj0Qb==3Ukkbi8C_zb5qMg@mail.gmail.com>
 <CAD5xwhi1G3Jj3FAAWQP3BXTK34ugDQY32hq-cQnt8Ny8JP4eGQ@mail.gmail.com>
 <CAJowKgJ1x5YKWS1S-sgdU3Tn+hPT64iiUCwG8qh-JS0xqS7ieA@mail.gmail.com>
 <30li5MRxkBhzLxLmzRnHkCdn8n3Feqegi-FLZ5VDyIX2uRJfq4kVtrsLxw6dUtsM1atYV25IfIfDaQp4s2Dn2vc8LvYkhbAsn0v_Fwjerpw=@protonmail.com>
 <CAJ4-pEBYJNuNMUCt5J5DbKU4RC9JXcO7gZdKh2Vq6PHCmddaeg@mail.gmail.com>
 <hASF-iYeGlsq3EhNWY0EWhk5S8R1Wwn534cWsrwLInd8K7f7bUDCAP4GgTj8_ZNsKtgv8y09GJovcS6KXhYRHODC5N_88fvCAF1Z-r2TUFg=@protonmail.com>
 <CAJ4-pECb9QSUDPax8SU+-KGwPgVju=YKax9eb-iRwAmZGcMcPg@mail.gmail.com>
 <CAJowKgJ3DOrtO+_XzoEnqQUQdge=zCopg2mvuy5F=RSeaVPJYQ@mail.gmail.com>
 <CAKy8i-17Snk7ZeTL_U8ULDm3S5fYRXf412p1NpS_6CTT4Fhm0A@mail.gmail.com>
 <CAKy8i-0efmC_AmAK6oLy1FooXd6WeSeOvRUOJ8Lb6BJoqduDTQ@mail.gmail.com>
 <CAGpPWDaiGdgrECZzvM67O6t-kVieL4uR4ydEkHr+gwUB7Ahykg@mail.gmail.com>
 <CAH5Bsr2WaOhSObNX-=61md6tF49auaH7wUB08qKv5baiFutxSw@mail.gmail.com>
 <CAJowKgJOZwb0PgW93Y+Jy+yi1kv09Gu7-gjWvt7eUqWfJ_zJuw@mail.gmail.com>
 <CAGpPWDbWvBQd3xh8fx+Le8br2LmsqC_Tds5R=wvw1EmiLk42Xw@mail.gmail.com>
 <CAJowKgJYUkxJ4htPvCLtARRr0Db13+BKzWtG40DEv6uEOh5yXw@mail.gmail.com>
 <CAGpPWDY4KgNVEoMDAJkWReX4zUUjDuB5SwB0Ap6OU98fuK4DxA@mail.gmail.com>
 <CAJowKgJWZ++6NkbYk15NBtA7x37of0n3_qF1UjCbV0Ui7XG8zA@mail.gmail.com>
In-Reply-To: <CAJowKgJWZ++6NkbYk15NBtA7x37of0n3_qF1UjCbV0Ui7XG8zA@mail.gmail.com>
From: Billy Tetrud <billy.tetrud@gmail.com>
Date: Tue, 25 May 2021 10:01:51 -1000
Message-ID: <CAGpPWDZs5Y10Fjbt8OPx3jEqjgNdQLODNdTW4iRyXTrpuNGFQQ@mail.gmail.com>
To: Erik Aronesty <erik@q32.com>
Content-Type: multipart/alternative; boundary="00000000000056d68a05c32d00f8"
X-Mailman-Approved-At: Tue, 25 May 2021 20:16:47 +0000
Cc: Bitcoin Protocol Discussion <bitcoin-dev@lists.linuxfoundation.org>,
 SatoshiSingh <SatoshiSingh@protonmail.com>
Subject: Re: [bitcoin-dev] Opinion on proof of stake in future
X-BeenThere: bitcoin-dev@lists.linuxfoundation.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: Bitcoin Protocol Discussion <bitcoin-dev.lists.linuxfoundation.org>
List-Unsubscribe: <https://lists.linuxfoundation.org/mailman/options/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=unsubscribe>
List-Archive: <http://lists.linuxfoundation.org/pipermail/bitcoin-dev/>
List-Post: <mailto:bitcoin-dev@lists.linuxfoundation.org>
List-Help: <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=help>
List-Subscribe: <https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=subscribe>
X-List-Received-Date: Tue, 25 May 2021 20:02:16 -0000

--00000000000056d68a05c32d00f8
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

@befreeandopen " An attacker can calculate whether or not she can prolong
this chain or not and if so with what timestamp."

The scenario you describe would only be likely to happen at all if the
malicious actor has a very large fraction of the stake - probably quite
close to 50%. At that point, you're talking about a 51% attack, not the
nothing at stake problem. The nothing at stake problem is the problem where
anyone will mint on any chain. Its clear that if there's a substantial
punishment for minting on chains other than the one that eventually wins,
every minter without a significant fraction of the stake will be honest and
not attempt to mint on old blocks or support someone else's attempt to mint
on old blocks (until and if it becomes the heaviest chain). Because the
attacker would need probably >45% of the active stake (take a look at
the reasoning
here
<https://github.com/fresheneesz/ValidatedProofOfStake#security-the-minimum-=
cost-of-attack>
for a deeper analysis of that statement), I don't agree that punishment is
not a sufficient mitigation of the nothing at stake problem. To exploit the
nothing at stake problem, you basically need to 51% attack, at which point
you've exceeded the operating conditions of the system, so of course its
gonna have problems, just like a 51% attack would cause with PoW.

> I am not sure if this is what you call quorum-based PoS

Yes, pre-selected minters is exactly what I mean by that.

> it allows the attacker to know who to attack at which point with powerful
DDOS in order to hurt liveness of such system

Just like in bitcoin, associating keys with IP addresses isn't generally an
easy thing to do on the fly like that. If you know someone's IP address,
you can target them. But if you only know their address or public key, the
reverse isn't as easy. With a quorum-based PoS system, you can see their
public key and address, but finding out their IP to DOS would be a huge
challenge I think.

Note, tho, that quorum-based PoS generally also have punishments as part of
the protocol. The introduction of punishments do indeed handily solve the
nothing at stake problem. And you didn't mention a single problem that the
punishments introduce that weren't already there before punishments. There
are tradeoffs with introducing punishments (eg in some cases you might
punish honest actors), but they are minor in comparison to solving the
nothing at stake problem.

So I don't think it is at all misleading to claim that "nothing at stake"
is a solved problem. I do in fact mean that the solutions to that problem
don't introduce any other problems with anywhere near the same level of
significance.

On Tue, May 25, 2021 at 3:00 AM Erik Aronesty <erik@q32.com> wrote:

> > > you burn them to be used at a future particular block height
>
> > This sounds exploitable. It seems like an attacker could simply focus
> all their burns on a particular set of 6 blocks to double spend, minimizi=
ng
> their cost of attack.
>
> could be right.   the original idea was to have burns decay over time,
> like ASIC's.
>
> anyway the point was not that "i had a magic formula"
>
> the point was that proof of burn is almost always better than proof of
> stake - simply because the "proof" is on-chain, not sitting on a node
> somewhere waiting to be stolen.
>
> On Mon, May 24, 2021 at 9:53 PM Billy Tetrud <billy.tetrud@gmail.com>
> wrote:
> >
> > Is this the kind of proof of burn you're talking about?
> >
> > >   if i have a choice between two chains, one longer and one shorter, =
i
> can only choose one... deterministically
> >
> > What prevents you from attempting to mine block 553 on both chains?
> >
> > > miners have a very strong, long-term, investment in the stability of
> the chain.
> >
> > Yes, but the same can be said of any coin, even ones that do have the
> nothing at stake problem. This isn't sufficient tho because the chain is =
a
> common good, and the tragedy of the commons holds for it.
> >
> > > you burn them to be used at a future particular block height
> >
> > This sounds exploitable. It seems like an attacker could simply focus
> all their burns on a particular set of 6 blocks to double spend, minimizi=
ng
> their cost of attack.
> >
> > > i can imagine scenarios where large stakeholders can collude to punis=
h
> smaller stakeholders simply to drive them out of business, for example
> >
> > Are you talking about a 51% attack? This is possible in any
> decentralized cryptocurrency.
> >
> >
> > On Mon, May 24, 2021 at 11:49 AM Erik Aronesty <erik@q32.com> wrote:
> >>
> >> > > your burn investment is always "at stake", any redaction can resul=
t
> in a loss-of-burn, because burns can be tied, precisely, to block-heights
> >> > I'm fuzzy on how proof of burn works.
> >>
> >> when you burn coins, you burn them to be used at a future particular
> >> block height: so if i'm burning for block 553, i can only use them to
> >> mine block 553.   if i have a choice between two chains, one longer
> >> and one shorter, i can only choose one... deterministically, for that
> >> burn: the chain with the height 553.   if we fix the "lead time" for
> >> burned coins to be weeks or even months in advance, miners have a very
> >> strong, long-term, investment in the stability of the chain.
> >>
> >> therefore there is no "nothing at stake" problem.   it's
> >> deterministic, so miners have no choice.  they can *only* choose the
> >> transactions that go into the block.  they cannot choose which chain
> >> to mine, and it's time-locked, so rollbacks and instability always
> >> hurt miners the most.
> >>
> >> the "punishment" systems of PoS are "weird at best", certainly
> >> unproven.   i can imagine scenarios where large stakeholders can
> >> collude to punish smaller stakeholders simply to drive them out of
> >> business, for example.   and then you have to put checks in place to
> >> prevent that, and more checks for those prevention system...
> >>
> >> in PoB, there is no complexity.  simpler systems like this are
> >> typically more secure.
> >>
> >> PoB also solves problems caused by "energy dependence", which could
> >> lead to state monopolies on mining (like the new Bitcoin Mining
> >> Council).   these consortiums, if state sanctioned, could become a
> >> source of censorship, for example.   Since PoB doesn't require you to
> >> have a live, well-connected node, it's harder to censor & harder to
> >> trace.
> >>
> >> Eliminating this weakness seems to be in the best interests of
> >> existing stakeholders
> >>
> >>
> >>
> >>
> >> On Mon, May 24, 2021 at 4:44 PM Billy Tetrud <billy.tetrud@gmail.com>
> wrote:
> >> >
> >> > >  proof of burn clearly solves this, since nothing is held online
> >> >
> >> > Well.. the coins to be burned need to be online when they're burned.
> But yes, only a small fraction of the total coins need to be online.
> >> >
> >> > > your burn investment is always "at stake", any redaction can resul=
t
> in a loss-of-burn, because burns can be tied, precisely, to block-heights
> >> >
> >> > So you're saying that if say someone tries to mine a block on a
> shorter chain, that requires them to send a transaction burning their
> coins, and that transaction could also be spent on the longest chain, whi=
ch
> means their coins are burned even if the chain they tried to mine on
> doesn't win? I'm fuzzy on how proof of burn works.
> >> >
> >> > > proof of burn can be more secure than proof-of-stake
> >> >
> >> > FYI, proof of stake can be done without the "nothing at stake"
> problem. You can simply punish people who mint on shorter chains (by
> rewarding people who publish proofs of this happening on the main chain).
> In quorum-based PoS, you can punish people in the quorum that propose or
> sign multiple blocks for the same height. The "nothing at stake" problem =
is
> a solved problem at this point for PoS.
> >> >
> >> >
> >> >
> >> > On Mon, May 24, 2021 at 3:47 AM Erik Aronesty <erik@q32.com> wrote:
> >> >>
> >> >> > I don't see a way to get around the conflicting requirement that
> the keys for large amounts of coins should be kept offline but those are
> exactly the coins we need online to make the scheme secure.
> >> >>
> >> >> proof of burn clearly solves this, since nothing is held online
> >> >>
> >> >> >  how does proof of burn solve the "nothing at stake" problem in
> your view?
> >> >>
> >> >> definition of nothing at stake: in the event of a fork, whether the
> >> >> fork is accidental or a malicious, the optimal strategy for any min=
er
> >> >> is to mine on every chain, so that the miner gets their reward no
> >> >> matter which fork wins.   indeed in proof-of-stake, the proofs are
> >> >> published on the very chains mines, so the incentive is magnified.
> >> >>
> >> >> in proof-of-burn, your burn investment is always "at stake", any
> >> >> redaction can result in a loss-of-burn, because burns can be tied,
> >> >> precisely, to block-heights
> >> >>
> >> >> as a result, miners no longer have an incentive to mine all chains
> >> >>
> >> >> in this way proof of burn can be more secure than proof-of-stake, a=
nd
> >> >> even more secure than proof of work
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>
> >> >> >
> >> >>
> >> >> On Sun, May 23, 2021 at 3:52 AM Lloyd Fournier via bitcoin-dev
> >> >> <bitcoin-dev@lists.linuxfoundation.org> wrote:
> >> >> >
> >> >> > Hi Billy,
> >> >> >
> >> >> > I was going to write a post which started by dismissing many of
> the weak arguments that are made against PoS made in this thread and
> elsewhere.
> >> >> > Although I don't agree with all your points you have done a decen=
t
> job here so I'll focus on the second part: why I think Proof-of-Stake is
> inappropriate for a Bitcoin-like system.
> >> >> >
> >> >> > Proof of stake is not fit for purpose for a global settlement
> layer in a pure digital asset (i.e. "digital gold") which is what Bitcoin
> is trying to be.
> >> >> > PoS necessarily gives responsibilities to the holders of coins
> that they do not want and cannot handle.
> >> >> > In Bitcoin, large unsophisticated coin holders can put their coin=
s
> in cold storage without a second thought given to the health of the
> underlying ledger.
> >> >> > As much as hardcore Bitcoiners try to convince them to run their
> own node, most don't, and that's perfectly acceptable.
> >> >> > At no point do their personal decisions affect the underlying
> consensus -- it only affects their personal security assurance (not that =
of
> the system itself).
> >> >> > In PoS systems this clean separation of responsibilities does not
> exist.
> >> >> >
> >> >> > I think that the more rigorously studied PoS protocols will work
> fine within the security claims made in their papers.
> >> >> > People who believe that these protocols are destined for
> catastrophic consensus failure are certainly in for a surprise.
> >> >> > But the devil is in the detail.
> >> >> > Let's look at what the implications of using the leading proof of
> stake protocols would have on Bitcoin:
> >> >> >
> >> >> > ### Proof of SquareSpace (Cardano, Polkdadot)
> >> >> >
> >> >> > Cardano is a UTXO based PoS coin based on Ouroboros Praos[3] with
> an inbuilt on-chain delegation system[5].
> >> >> > In these protocols, coin holders who do not want to run their nod=
e
> with their hot keys in it delegate it to a "Stake Pool".
> >> >> > I call the resulting system Proof-of-SquareSpace since most will
> choose a pool by looking around for one with a nice website and offering
> the largest share of the block reward.
> >> >> > On the surface this might sound no different than someone with an
> mining rig shopping around for a good mining pool but there are crucial
> differences:
> >> >> >
> >> >> > 1. The person making the decision is forced into it just because
> they own the currency -- someone with a mining rig has purchased it with
> the intent to make profit by participating in consensus.
> >> >> >
> >> >> > 2. When you join a mining pool your systems are very much still
> online. You are just partaking in a pool to reduce your profit variance.
> You still see every block that you help create and *you never help create=
 a
> block without seeing it first*.
> >> >> >
> >> >> > 3. If by SquareSpace sybil attack you gain a dishonest majority
> and start censoring transactions how are the users meant to redelegate
> their stake to honest pools?
> >> >> > I guess they can just send a transaction delegating to another
> pool...oh wait I guess that might be censored too! This seems really real=
ly
> bad.
> >> >> > In Bitcoin, miners can just join a different pool at a whim. Ther=
e
> is nothing the attacker can do to stop them. A temporary dishonest majori=
ty
> heals relatively well.
> >> >> >
> >> >> > There is another severe disadvantage to this on-chain delegation
> system: every UTXO must indicate which staking account this UTXO belongs =
to
> so the appropriate share of block rewards can be transferred there.
> >> >> > Being able to associate every UTXO to an account ruins one of the
> main privacy advantages of the UTXO model.
> >> >> > It also grows the size of the blockchain significantly.
> >> >> >
> >> >> > ### "Pure" proof of stake (Algorand)
> >> >> >
> >> >> > Algorand's[4] approach is to only allow online stake to
> participate in the protocol.
> >> >> > Theoretically, This means that keys holding funds have to be
> online in order for them to author blocks when they are chosen.
> >> >> > Of course in reality no one wants to keep their coin holding keys
> online so in Alogorand you can authorize a set of "participation keys"[1]
> that will be used to create blocks on your coin holding key's behalf.
> >> >> > Hopefully you've spotted the problem.
> >> >> > You can send your participation keys to any malicious party with =
a
> nice website (see random example [2]) offering you a good return.
> >> >> > Damn it's still Proof-of-SquareSpace!
> >> >> > The minor advantage is that at least the participation keys expir=
e
> after a certain amount of time so eventually the SquareSpace attacker wil=
l
> lose their hold on consensus.
> >> >> > Importantly there is also less junk on the blockchain because the
> participation keys are delegated off-chain and so are not making as much =
of
> a mess.
> >> >> >
> >> >> > ### Conclusion
> >> >> >
> >> >> > I don't see a way to get around the conflicting requirement that
> the keys for large amounts of coins should be kept offline but those are
> exactly the coins we need online to make the scheme secure.
> >> >> > If we allow delegation then we open up a new social attack surfac=
e
> and it degenerates to Proof-of-SquareSpace.
> >> >> >
> >> >> > For a "digital gold" like system like Bitcoin we optimize for
> simplicity and desperately want to avoid extraneous responsibilities for
> the holder of the coin.
> >> >> > After all, gold is an inert element on the periodic table that
> doesn't confer responsibilities on the holder to maintain the quality of
> all the other bars of gold out there.
> >> >> > Bitcoin feels like this too and in many ways is more inert and
> beautifully boring than gold.
> >> >> > For Bitcoin to succeed I think we need to keep it that way and
> Proof-of-Stake makes everything a bit too exciting.
> >> >> >
> >> >> > I suppose in the end the market will decide what is real digital
> gold and whether these bad technical trade offs are worth being able to s=
ay
> it uses less electricity. It goes without saying that making bad technica=
l
> decisions to appease the current political climate is an anathema to
> Bitcoin.
> >> >> >
> >> >> > Would be interested to know if you or others think differently on
> these points.
> >> >> >
> >> >> > [1]:
> https://developer.algorand.org/docs/run-a-node/participate/generate_keys/
> >> >> > [2]: https://staking.staked.us/algorand-staking
> >> >> > [3]: https://eprint.iacr.org/2017/573.pdf
> >> >> > [4]:
> https://algorandcom.cdn.prismic.io/algorandcom%2Fece77f38-75b3-44de-bc7f-=
805f0e53a8d9_theoretical.pdf
> >> >> > [5]:
> https://hydra.iohk.io/build/790053/download/1/delegation_design_spec.pdf
> >> >> >
> >> >> > Cheers,
> >> >> >
> >> >> > LL
> >> >> >
> >> >> > On Fri, 21 May 2021 at 19:21, Billy Tetrud via bitcoin-dev <
> bitcoin-dev@lists.linuxfoundation.org> wrote:
> >> >> >>
> >> >> >> I think there is a lot of misinformation and bias against Proof
> of Stake. Yes there have been lots of shady coins that use insecure PoS
> mechanisms. Yes there have been massive issues with distribution of PoS
> coins (of course there have also been massive issues with PoW coins as
> well). However, I want to remind everyone that there is a difference
> between "proved to be impossible" and "have not achieved recognized succe=
ss
> yet". Most of the arguments levied against PoS are out of date or rely on
> unproven assumptions or extrapolation from the analysis of a particular P=
oS
> system. I certainly don't think we should experiment with bitcoin by
> switching to PoS, but from my research, it seems very likely that there i=
s
> a proof of stake consensus protocol we could build that has substantially
> higher security (cost / capital required to execute an attack) while at t=
he
> same time costing far less resources (which do translate to fees on the
> network) *without* compromising any of the critical security properties
> bitcoin relies on. I think the critical piece of this is the disagreement=
s
> around hardcoded checkpoints, which is a critical piece solving attacks
> that could be levied on a PoS chain, and how that does (or doesn't) affec=
t
> the security model.
> >> >> >>
> >> >> >> @Eric Your proof of stake fallacy seems to be saying that PoS is
> worse when a 51% attack happens. While I agree, I think that line of
> thinking omits important facts:
> >> >> >> * The capital required to 51% attack a PoS chain can be made
> substantially greater than on a PoS chain.
> >> >> >> * The capital the attacker stands to lose can be substantially
> greater as well if the attack is successful.
> >> >> >> * The effectiveness of paying miners to raise the honest fractio=
n
> of miners above 50% may be quite bad.
> >> >> >> * Allowing a 51% attack is already unacceptable. It should be
> considered whether what happens in the case of a 51% may not be
> significantly different. The currency would likely be critically damaged =
in
> a 51% attack regardless of consensus mechanism.
> >> >> >>
> >> >> >> > Proof-of-stake tends towards oligopolistic control
> >> >> >>
> >> >> >> People repeat this often, but the facts support this. There is n=
o
> centralization pressure in any proof of stake mechanism that I'm aware of=
.
> IE if you have 10 times as much coin that you use to mint blocks, you
> should expect to earn 10x as much minting revenue - not more than 10x. By
> contrast, proof of work does in fact have clear centralization pressure -
> this is not disputed. Our goal in relation to that is to ensure that the
> centralization pressure remains insignifiant. Proof of work also clearly
> has a lot more barriers to entry than any proof of stake system does. Bot=
h
> of these mean the tendency towards oligopolistic control is worse for PoW=
.
> >> >> >>
> >> >> >> > Energy usage, in-and-of-itself, is nothing to be ashamed of!!
> >> >> >>
> >> >> >> I certainly agree. Bitcoin's energy usage at the moment is I
> think quite warranted. However, the question is: can we do substantially
> better. I think if we can, we probably should... eventually.
> >> >> >>
> >> >> >> > Proof of Stake is only resilient to =E2=85=93 of the network
> demonstrating a Byzantine Fault, whilst Proof of Work is resilient up to
> the =C2=BD threshold
> >> >> >>
> >> >> >> I see no mention of this in the pos.pdf you linked to. I'm not
> aware of any proof that all PoS systems have a failure threshold of 1/3. =
I
> know that staking systems like Casper do in fact have that 1/3 requiremen=
t.
> However there are PoS designs that should exceed that up to nearly 50% as
> far as I'm aware. Proof of work is not in fact resilient up to the 1/2
> threshold in the way you would think. IE, if 100% of miners are currently
> honest and have a collective 100 exahashes/s hashpower, an attacker does
> not need to obtain 100 exahashes/s, but actually only needs to accumulate
> 50 exahashes/s. This is because as the attacker accumulates hashpower, it
> drives honest miners out of the market as the difficulty increases to
> beyond what is economically sustainable. Also, its been shown that the be=
st
> proof of work can do is require an attacker to obtain 33% of the hashpowe=
r
> because of the selfish mining attack discussed in depth in this paper:
> https://arxiv.org/abs/1311.0243. Together, both of these things reduce
> PoW's security by a factor of about 83% (1 - 50%*33%).
> >> >> >>
> >> >> >>  > Proof of Stake requires other trade-offs which are
> incompatible with Bitcoin's objective (to be a trustless digital cash) =
=E2=80=94
> specifically the famous "security vs. liveness" guarantee
> >> >> >>
> >> >> >> Do you have a good source that talks about why you think proof o=
f
> stake cannot be used for a trustless digital cash?
> >> >> >>
> >> >> >> > You cannot gain tokens without someone choosing to give up
> those coins - a form of permission.
> >> >> >>
> >> >> >> This is not a practical constraint. Just like in mining, some
> nodes may reject you, but there will likely be more that will accept you,
> some sellers may reject you, but most would accept your money as payment
> for bitcoins. I don't think requiring the "permission" of one of millions
> of people in the market can be reasonably considered a "permissioned
> currency".
> >> >> >>
> >> >> >> > 2. Proof of stake must have a trusted means of timestamping to
> regulate overproduction of blocks
> >> >> >>
> >> >> >> Both PoW and PoS could mine/mint blocks twice as fast if everyon=
e
> agreed to double their clock speeds. Both systems rely on an honest
> majority sticking to standard time.
> >> >> >>
> >> >> >>
> >> >> >> On Wed, May 19, 2021 at 5:32 AM Michael Dubrovsky via bitcoin-de=
v
> <bitcoin-dev@lists.linuxfoundation.org> wrote:
> >> >> >>>
> >> >> >>> Ah sorry, I didn't realize this was, in fact, a different
> thread! :)
> >> >> >>>
> >> >> >>> On Wed, May 19, 2021 at 10:07 AM Michael Dubrovsky <
> mike@powx.org> wrote:
> >> >> >>>>
> >> >> >>>> Folks, I suggest we keep the discussion to PoW, oPoW, and the
> BIP itself. PoS, VDFs, and so on are interesting but I guess there are
> other threads going on these topics already where they would be relevant.
> >> >> >>>>
> >> >> >>>> Also, it's important to distinguish between oPoW and these
> other "alternatives" to Hashcash. oPoW is a true Proof of Work that doesn=
't
> alter the core game theory or security assumptions of Hashcash and actual=
ly
> contains SHA (can be SHA3, SHA256, etc hash is interchangeable).
> >> >> >>>>
> >> >> >>>> Cheers,
> >> >> >>>> Mike
> >> >> >>>>
> >> >> >>>> On Tue, May 18, 2021 at 4:55 PM Erik Aronesty via bitcoin-dev =
<
> bitcoin-dev@lists.linuxfoundation.org> wrote:
> >> >> >>>>>
> >> >> >>>>> 1. i never suggested vdf's to replace pow.
> >> >> >>>>>
> >> >> >>>>> 2. my suggestion was specifically *in the context of* a worki=
ng
> >> >> >>>>> proof-of-burn protocol
> >> >> >>>>>
> >> >> >>>>> - vdfs used only for timing (not block height)
> >> >> >>>>> - blind-burned coins of a specific age used to replace proof
> of work
> >> >> >>>>> - the required "work" per block would simply be a competition
> to
> >> >> >>>>> acquire rewards, and so miners would have to burn coins, well
> in
> >> >> >>>>> advance, and hope that their burned coins got rewarded in som=
e
> far
> >> >> >>>>> future
> >> >> >>>>> - the point of burned coins is to mimic, in every meaningful
> way, the
> >> >> >>>>> value gained from proof of work... without some of the securi=
ty
> >> >> >>>>> drawbacks
> >> >> >>>>> - the miner risks losing all of his burned coins (like all
> miners risk
> >> >> >>>>> losing their work in each block)
> >> >> >>>>> - new burns can't be used
> >> >> >>>>> - old burns age out (like ASICs do)
> >> >> >>>>> - other requirements on burns might be needed to properly
> mirror the
> >> >> >>>>> properties of PoW and the incentives Bitcoin uses to mine
> honestly.
> >> >> >>>>>
> >> >> >>>>> 3. i do believe it is *possible* that a "burned coin + vdf
> system"
> >> >> >>>>> might be more secure in the long run, and that if the entire
> space
> >> >> >>>>> agreed that such an endeavor was worthwhile, a test net could
> be spun
> >> >> >>>>> up, and a hard-fork could be initiated.
> >> >> >>>>>
> >> >> >>>>> 4. i would never suggest such a thing unless i believed it wa=
s
> >> >> >>>>> possible that consensus was possible.  so no, this is not an
> "alt
> >> >> >>>>> coin"
> >> >> >>>>>
> >> >> >>>>> On Tue, May 18, 2021 at 10:02 AM Zac Greenwood <
> zachgrw@gmail.com> wrote:
> >> >> >>>>> >
> >> >> >>>>> > Hi ZmnSCPxj,
> >> >> >>>>> >
> >> >> >>>>> > Please note that I am not suggesting VDFs as a means to sav=
e
> energy, but solely as a means to make the time between blocks more consta=
nt.
> >> >> >>>>> >
> >> >> >>>>> > Zac
> >> >> >>>>> >
> >> >> >>>>> >
> >> >> >>>>> > On Tue, 18 May 2021 at 12:42, ZmnSCPxj <
> ZmnSCPxj@protonmail.com> wrote:
> >> >> >>>>> >>
> >> >> >>>>> >> Good morning Zac,
> >> >> >>>>> >>
> >> >> >>>>> >> > VDFs might enable more constant block times, for instanc=
e
> by having a two-step PoW:
> >> >> >>>>> >> >
> >> >> >>>>> >> > 1. Use a VDF that takes say 9 minutes to resolve (VDF
> being subject to difficulty adjustments similar to the as-is). As per the
> property of VDFs, miners are able show proof of work.
> >> >> >>>>> >> >
> >> >> >>>>> >> > 2. Use current PoW mechanism with lower difficulty so
> finding a block takes 1 minute on average, again subject to as-is
> difficulty adjustments.
> >> >> >>>>> >> >
> >> >> >>>>> >> > As a result, variation in block times will be greatly
> reduced.
> >> >> >>>>> >>
> >> >> >>>>> >> As I understand it, another weakness of VDFs is that they
> are not inherently progress-free (their sequential nature prevents that;
> they are inherently progress-requiring).
> >> >> >>>>> >>
> >> >> >>>>> >> Thus, a miner which focuses on improving the amount of
> energy that it can pump into the VDF circuitry (by overclocking and
> freezing the circuitry), could potentially get into a winner-takes-all
> situation, possibly leading to even *worse* competition and even *more*
> energy consumption.
> >> >> >>>>> >> After all, if you can start mining 0.1s faster than the
> competition, that is a 0.1s advantage where *only you* can mine *in the
> entire world*.
> >> >> >>>>> >>
> >> >> >>>>> >> Regards,
> >> >> >>>>> >> ZmnSCPxj
> >> >> >>>>> _______________________________________________
> >> >> >>>>> bitcoin-dev mailing list
> >> >> >>>>> bitcoin-dev@lists.linuxfoundation.org
> >> >> >>>>> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-de=
v
> >> >> >>>>
> >> >> >>>>
> >> >> >>>>
> >> >> >>>> --
> >> >> >>>> Michael Dubrovsky
> >> >> >>>> Founder; PoWx
> >> >> >>>> www.PoWx.org
> >> >> >>>
> >> >> >>>
> >> >> >>>
> >> >> >>> --
> >> >> >>> Michael Dubrovsky
> >> >> >>> Founder; PoWx
> >> >> >>> www.PoWx.org
> >> >> >>> _______________________________________________
> >> >> >>> bitcoin-dev mailing list
> >> >> >>> bitcoin-dev@lists.linuxfoundation.org
> >> >> >>> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
> >> >> >>
> >> >> >> _______________________________________________
> >> >> >> bitcoin-dev mailing list
> >> >> >> bitcoin-dev@lists.linuxfoundation.org
> >> >> >> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
> >> >> >
> >> >> > _______________________________________________
> >> >> > bitcoin-dev mailing list
> >> >> > bitcoin-dev@lists.linuxfoundation.org
> >> >> > https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
>

--00000000000056d68a05c32d00f8
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">@befreeandopen &quot;

An attacker can calculate whether or not she can prolong this chain or not =
and if so with what timestamp.&quot;<br><div><br></div><div>The scenario yo=
u describe would only be likely to happen at all if the malicious actor has=
 a very large fraction of the stake - probably quite close to 50%. At that =
point, you&#39;re talking about a 51% attack, not the nothing at stake prob=
lem. The nothing at stake problem is the problem where anyone will mint on =
any chain. Its clear that if there&#39;s a substantial punishment for minti=
ng on chains other than the one that eventually wins, every minter without =
a significant fraction of the stake will be honest and not attempt to mint =
on old blocks or support someone else&#39;s attempt to mint on old blocks (=
until and if it becomes the heaviest chain). Because the attacker would nee=
d probably &gt;45% of the active stake (take a look at the <a href=3D"https=
://github.com/fresheneesz/ValidatedProofOfStake#security-the-minimum-cost-o=
f-attack">reasoning here</a> for a deeper analysis of that statement), I do=
n&#39;t agree that punishment=C2=A0is not a sufficient mitigation of the no=
thing at stake problem. To exploit the nothing at stake problem, you basica=
lly need to 51% attack, at which point you&#39;ve exceeded the operating co=
nditions of the system, so of course its gonna have problems, just like a 5=
1% attack would cause with PoW.</div><div><br></div><div>&gt; I am not sure=
 if this is what you call quorum-based PoS</div><div><br></div><div>Yes, pr=
e-selected minters is exactly what I mean by that.</div><div><br></div><div=
>&gt; it allows the attacker to know who to attack at which point with powe=
rful DDOS in order to hurt liveness of such system</div><div><br></div><div=
>Just like in bitcoin, associating keys with IP addresses isn&#39;t general=
ly an easy thing to do on the fly like that. If you know someone&#39;s IP a=
ddress, you can target them. But if you only know their address or public k=
ey, the reverse isn&#39;t as easy. With a quorum-based PoS system, you can =
see their public key and address, but finding out their IP to DOS would be =
a huge challenge I think.=C2=A0</div><div><br></div><div>Note, tho, that qu=
orum-based PoS generally also have punishments as part of the protocol. The=
 introduction of punishments do indeed handily solve the nothing at stake p=
roblem. And you didn&#39;t mention a single problem that the punishments in=
troduce that weren&#39;t already there before punishments. There are tradeo=
ffs with introducing punishments (eg in some cases you might punish honest =
actors), but they are minor in comparison to solving the nothing at stake p=
roblem.</div><div><br></div><div>So I don&#39;t think it is at all misleadi=
ng to claim that &quot;nothing at stake&quot; is a solved problem. I do in =
fact mean that the solutions to that problem don&#39;t introduce any other =
problems with anywhere near the same level of significance.=C2=A0</div></di=
v><br><div class=3D"gmail_quote"><div dir=3D"ltr" class=3D"gmail_attr">On T=
ue, May 25, 2021 at 3:00 AM Erik Aronesty &lt;<a href=3D"mailto:erik@q32.co=
m">erik@q32.com</a>&gt; wrote:<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">&gt; &gt; you burn them to be used at a future particular bl=
ock height<br>
<br>
&gt; This sounds exploitable. It seems like an attacker could simply focus =
all their burns on a particular set of 6 blocks to double spend, minimizing=
 their cost of attack.<br>
<br>
could be right.=C2=A0 =C2=A0the original idea was to have burns decay over =
time,<br>
like ASIC&#39;s.<br>
<br>
anyway the point was not that &quot;i had a magic formula&quot;<br>
<br>
the point was that proof of burn is almost always better than proof of<br>
stake - simply because the &quot;proof&quot; is on-chain, not sitting on a =
node<br>
somewhere waiting to be stolen.<br>
<br>
On Mon, May 24, 2021 at 9:53 PM Billy Tetrud &lt;<a href=3D"mailto:billy.te=
trud@gmail.com" target=3D"_blank">billy.tetrud@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Is this the kind of proof of burn you&#39;re talking about?<br>
&gt;<br>
&gt; &gt;=C2=A0 =C2=A0if i have a choice between two chains, one longer and=
 one shorter, i can only choose one... deterministically<br>
&gt;<br>
&gt; What prevents you from attempting to mine block 553 on both chains?<br=
>
&gt;<br>
&gt; &gt; miners have a very strong, long-term, investment in the stability=
 of the chain.<br>
&gt;<br>
&gt; Yes, but the same can be said of any coin, even ones that do have the =
nothing at stake problem. This isn&#39;t sufficient tho because the chain i=
s a common good, and the tragedy of the commons holds for it.<br>
&gt;<br>
&gt; &gt; you burn them to be used at a future particular block height<br>
&gt;<br>
&gt; This sounds exploitable. It seems like an attacker could simply focus =
all their burns on a particular set of 6 blocks to double spend, minimizing=
 their cost of attack.<br>
&gt;<br>
&gt; &gt; i can imagine scenarios where large stakeholders can collude to p=
unish smaller stakeholders simply to drive them out of business, for exampl=
e<br>
&gt;<br>
&gt; Are you talking about a 51% attack? This is possible in any decentrali=
zed cryptocurrency.<br>
&gt;<br>
&gt;<br>
&gt; On Mon, May 24, 2021 at 11:49 AM Erik Aronesty &lt;<a href=3D"mailto:e=
rik@q32.com" target=3D"_blank">erik@q32.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; &gt; &gt; your burn investment is always &quot;at stake&quot;, any=
 redaction can result in a loss-of-burn, because burns can be tied, precise=
ly, to block-heights<br>
&gt;&gt; &gt; I&#39;m fuzzy on how proof of burn works.<br>
&gt;&gt;<br>
&gt;&gt; when you burn coins, you burn them to be used at a future particul=
ar<br>
&gt;&gt; block height: so if i&#39;m burning for block 553, i can only use =
them to<br>
&gt;&gt; mine block 553.=C2=A0 =C2=A0if i have a choice between two chains,=
 one longer<br>
&gt;&gt; and one shorter, i can only choose one... deterministically, for t=
hat<br>
&gt;&gt; burn: the chain with the height 553.=C2=A0 =C2=A0if we fix the &qu=
ot;lead time&quot; for<br>
&gt;&gt; burned coins to be weeks or even months in advance, miners have a =
very<br>
&gt;&gt; strong, long-term, investment in the stability of the chain.<br>
&gt;&gt;<br>
&gt;&gt; therefore there is no &quot;nothing at stake&quot; problem.=C2=A0 =
=C2=A0it&#39;s<br>
&gt;&gt; deterministic, so miners have no choice.=C2=A0 they can *only* cho=
ose the<br>
&gt;&gt; transactions that go into the block.=C2=A0 they cannot choose whic=
h chain<br>
&gt;&gt; to mine, and it&#39;s time-locked, so rollbacks and instability al=
ways<br>
&gt;&gt; hurt miners the most.<br>
&gt;&gt;<br>
&gt;&gt; the &quot;punishment&quot; systems of PoS are &quot;weird at best&=
quot;, certainly<br>
&gt;&gt; unproven.=C2=A0 =C2=A0i can imagine scenarios where large stakehol=
ders can<br>
&gt;&gt; collude to punish smaller stakeholders simply to drive them out of=
<br>
&gt;&gt; business, for example.=C2=A0 =C2=A0and then you have to put checks=
 in place to<br>
&gt;&gt; prevent that, and more checks for those prevention system...<br>
&gt;&gt;<br>
&gt;&gt; in PoB, there is no complexity.=C2=A0 simpler systems like this ar=
e<br>
&gt;&gt; typically more secure.<br>
&gt;&gt;<br>
&gt;&gt; PoB also solves problems caused by &quot;energy dependence&quot;, =
which could<br>
&gt;&gt; lead to state monopolies on mining (like the new Bitcoin Mining<br=
>
&gt;&gt; Council).=C2=A0 =C2=A0these consortiums, if state sanctioned, coul=
d become a<br>
&gt;&gt; source of censorship, for example.=C2=A0 =C2=A0Since PoB doesn&#39=
;t require you to<br>
&gt;&gt; have a live, well-connected node, it&#39;s harder to censor &amp; =
harder to<br>
&gt;&gt; trace.<br>
&gt;&gt;<br>
&gt;&gt; Eliminating this weakness seems to be in the best interests of<br>
&gt;&gt; existing stakeholders<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Mon, May 24, 2021 at 4:44 PM Billy Tetrud &lt;<a href=3D"mailto=
:billy.tetrud@gmail.com" target=3D"_blank">billy.tetrud@gmail.com</a>&gt; w=
rote:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt;=C2=A0 proof of burn clearly solves this, since nothing i=
s held online<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Well.. the coins to be burned need to be online when they&#39=
;re burned. But yes, only a small fraction of the total coins need to be on=
line.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt; your burn investment is always &quot;at stake&quot;, any=
 redaction can result in a loss-of-burn, because burns can be tied, precise=
ly, to block-heights<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; So you&#39;re saying that if say someone tries to mine a bloc=
k on a shorter chain, that requires them to send a transaction burning thei=
r coins, and that transaction could also be spent on the longest chain, whi=
ch means their coins are burned even if the chain they tried to mine on doe=
sn&#39;t win? I&#39;m fuzzy on how proof of burn works.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; &gt; proof of burn can be more secure than proof-of-stake<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; FYI, proof of stake can be done without the &quot;nothing at =
stake&quot; problem. You can simply punish people who mint on shorter chain=
s (by rewarding people who publish proofs of this happening on the main cha=
in). In quorum-based PoS, you can punish people in the quorum that propose =
or sign multiple blocks for the same height. The &quot;nothing at stake&quo=
t; problem is a solved problem at this point for PoS.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; On Mon, May 24, 2021 at 3:47 AM Erik Aronesty &lt;<a href=3D"=
mailto:erik@q32.com" target=3D"_blank">erik@q32.com</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt; I don&#39;t see a way to get around the conflicting =
requirement that the keys for large amounts of coins should be kept offline=
 but those are exactly the coins we need online to make the scheme secure.<=
br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; proof of burn clearly solves this, since nothing is held =
online<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;=C2=A0 how does proof of burn solve the &quot;nothing=
 at stake&quot; problem in your view?<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; definition of nothing at stake: in the event of a fork, w=
hether the<br>
&gt;&gt; &gt;&gt; fork is accidental or a malicious, the optimal strategy f=
or any miner<br>
&gt;&gt; &gt;&gt; is to mine on every chain, so that the miner gets their r=
eward no<br>
&gt;&gt; &gt;&gt; matter which fork wins.=C2=A0 =C2=A0indeed in proof-of-st=
ake, the proofs are<br>
&gt;&gt; &gt;&gt; published on the very chains mines, so the incentive is m=
agnified.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; in proof-of-burn, your burn investment is always &quot;at=
 stake&quot;, any<br>
&gt;&gt; &gt;&gt; redaction can result in a loss-of-burn, because burns can=
 be tied,<br>
&gt;&gt; &gt;&gt; precisely, to block-heights<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; as a result, miners no longer have an incentive to mine a=
ll chains<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; in this way proof of burn can be more secure than proof-o=
f-stake, and<br>
&gt;&gt; &gt;&gt; even more secure than proof of work<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; On Sun, May 23, 2021 at 3:52 AM Lloyd Fournier via bitcoi=
n-dev<br>
&gt;&gt; &gt;&gt; &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.o=
rg" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a>&gt; wrote:<=
br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; Hi Billy,<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; I was going to write a post which started by dismiss=
ing many of the weak arguments that are made against PoS made in this threa=
d and elsewhere.<br>
&gt;&gt; &gt;&gt; &gt; Although I don&#39;t agree with all your points you =
have done a decent job here so I&#39;ll focus on the second part: why I thi=
nk Proof-of-Stake is inappropriate for a Bitcoin-like system.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; Proof of stake is not fit for purpose for a global s=
ettlement layer in a pure digital asset (i.e. &quot;digital gold&quot;) whi=
ch is what Bitcoin is trying to be.<br>
&gt;&gt; &gt;&gt; &gt; PoS necessarily gives responsibilities to the holder=
s of coins that they do not want and cannot handle.<br>
&gt;&gt; &gt;&gt; &gt; In Bitcoin, large unsophisticated coin holders can p=
ut their coins in cold storage without a second thought given to the health=
 of the underlying ledger.<br>
&gt;&gt; &gt;&gt; &gt; As much as hardcore Bitcoiners try to convince them =
to run their own node, most don&#39;t, and that&#39;s perfectly acceptable.=
<br>
&gt;&gt; &gt;&gt; &gt; At no point do their personal decisions affect the u=
nderlying consensus -- it only affects their personal security assurance (n=
ot that of the system itself).<br>
&gt;&gt; &gt;&gt; &gt; In PoS systems this clean separation of responsibili=
ties does not exist.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; I think that the more rigorously studied PoS protoco=
ls will work fine within the security claims made in their papers.<br>
&gt;&gt; &gt;&gt; &gt; People who believe that these protocols are destined=
 for catastrophic consensus failure are certainly in for a surprise.<br>
&gt;&gt; &gt;&gt; &gt; But the devil is in the detail.<br>
&gt;&gt; &gt;&gt; &gt; Let&#39;s look at what the implications of using the=
 leading proof of stake protocols would have on Bitcoin:<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; ### Proof of SquareSpace (Cardano, Polkdadot)<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; Cardano is a UTXO based PoS coin based on Ouroboros =
Praos[3] with an inbuilt on-chain delegation system[5].<br>
&gt;&gt; &gt;&gt; &gt; In these protocols, coin holders who do not want to =
run their node with their hot keys in it delegate it to a &quot;Stake Pool&=
quot;.<br>
&gt;&gt; &gt;&gt; &gt; I call the resulting system Proof-of-SquareSpace sin=
ce most will choose a pool by looking around for one with a nice website an=
d offering the largest share of the block reward.<br>
&gt;&gt; &gt;&gt; &gt; On the surface this might sound no different than so=
meone with an mining rig shopping around for a good mining pool but there a=
re crucial differences:<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; 1. The person making the decision is forced into it =
just because they own the currency -- someone with a mining rig has purchas=
ed it with the intent to make profit by participating in consensus.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; 2. When you join a mining pool your systems are very=
 much still online. You are just partaking in a pool to reduce your profit =
variance. You still see every block that you help create and *you never hel=
p create a block without seeing it first*.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; 3. If by SquareSpace sybil attack you gain a dishone=
st majority and start censoring transactions how are the users meant to red=
elegate their stake to honest pools?<br>
&gt;&gt; &gt;&gt; &gt; I guess they can just send a transaction delegating =
to another pool...oh wait I guess that might be censored too! This seems re=
ally really bad.<br>
&gt;&gt; &gt;&gt; &gt; In Bitcoin, miners can just join a different pool at=
 a whim. There is nothing the attacker can do to stop them. A temporary dis=
honest majority heals relatively well.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; There is another severe disadvantage to this on-chai=
n delegation system: every UTXO must indicate which staking account this UT=
XO belongs to so the appropriate share of block rewards can be transferred =
there.<br>
&gt;&gt; &gt;&gt; &gt; Being able to associate every UTXO to an account rui=
ns one of the main privacy advantages of the UTXO model.<br>
&gt;&gt; &gt;&gt; &gt; It also grows the size of the blockchain significant=
ly.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; ### &quot;Pure&quot; proof of stake (Algorand)<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; Algorand&#39;s[4] approach is to only allow online s=
take to participate in the protocol.<br>
&gt;&gt; &gt;&gt; &gt; Theoretically, This means that keys holding funds ha=
ve to be online in order for them to author blocks when they are chosen.<br=
>
&gt;&gt; &gt;&gt; &gt; Of course in reality no one wants to keep their coin=
 holding keys online so in Alogorand you can authorize a set of &quot;parti=
cipation keys&quot;[1] that will be used to create blocks on your coin hold=
ing key&#39;s behalf.<br>
&gt;&gt; &gt;&gt; &gt; Hopefully you&#39;ve spotted the problem.<br>
&gt;&gt; &gt;&gt; &gt; You can send your participation keys to any maliciou=
s party with a nice website (see random example [2]) offering you a good re=
turn.<br>
&gt;&gt; &gt;&gt; &gt; Damn it&#39;s still Proof-of-SquareSpace!<br>
&gt;&gt; &gt;&gt; &gt; The minor advantage is that at least the participati=
on keys expire after a certain amount of time so eventually the SquareSpace=
 attacker will lose their hold on consensus.<br>
&gt;&gt; &gt;&gt; &gt; Importantly there is also less junk on the blockchai=
n because the participation keys are delegated off-chain and so are not mak=
ing as much of a mess.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; ### Conclusion<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; I don&#39;t see a way to get around the conflicting =
requirement that the keys for large amounts of coins should be kept offline=
 but those are exactly the coins we need online to make the scheme secure.<=
br>
&gt;&gt; &gt;&gt; &gt; If we allow delegation then we open up a new social =
attack surface and it degenerates to Proof-of-SquareSpace.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; For a &quot;digital gold&quot; like system like Bitc=
oin we optimize for simplicity and desperately want to avoid extraneous res=
ponsibilities for the holder of the coin.<br>
&gt;&gt; &gt;&gt; &gt; After all, gold is an inert element on the periodic =
table that doesn&#39;t confer responsibilities on the holder to maintain th=
e quality of all the other bars of gold out there.<br>
&gt;&gt; &gt;&gt; &gt; Bitcoin feels like this too and in many ways is more=
 inert and beautifully boring than gold.<br>
&gt;&gt; &gt;&gt; &gt; For Bitcoin to succeed I think we need to keep it th=
at way and Proof-of-Stake makes everything a bit too exciting.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; I suppose in the end the market will decide what is =
real digital gold and whether these bad technical trade offs are worth bein=
g able to say it uses less electricity. It goes without saying that making =
bad technical decisions to appease the current political climate is an anat=
hema to Bitcoin.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; Would be interested to know if you or others think d=
ifferently on these points.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; [1]: <a href=3D"https://developer.algorand.org/docs/=
run-a-node/participate/generate_keys/" rel=3D"noreferrer" target=3D"_blank"=
>https://developer.algorand.org/docs/run-a-node/participate/generate_keys/<=
/a><br>
&gt;&gt; &gt;&gt; &gt; [2]: <a href=3D"https://staking.staked.us/algorand-s=
taking" rel=3D"noreferrer" target=3D"_blank">https://staking.staked.us/algo=
rand-staking</a><br>
&gt;&gt; &gt;&gt; &gt; [3]: <a href=3D"https://eprint.iacr.org/2017/573.pdf=
" rel=3D"noreferrer" target=3D"_blank">https://eprint.iacr.org/2017/573.pdf=
</a><br>
&gt;&gt; &gt;&gt; &gt; [4]: <a href=3D"https://algorandcom.cdn.prismic.io/a=
lgorandcom%2Fece77f38-75b3-44de-bc7f-805f0e53a8d9_theoretical.pdf" rel=3D"n=
oreferrer" target=3D"_blank">https://algorandcom.cdn.prismic.io/algorandcom=
%2Fece77f38-75b3-44de-bc7f-805f0e53a8d9_theoretical.pdf</a><br>
&gt;&gt; &gt;&gt; &gt; [5]: <a href=3D"https://hydra.iohk.io/build/790053/d=
ownload/1/delegation_design_spec.pdf" rel=3D"noreferrer" target=3D"_blank">=
https://hydra.iohk.io/build/790053/download/1/delegation_design_spec.pdf</a=
><br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; Cheers,<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; LL<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; On Fri, 21 May 2021 at 19:21, Billy Tetrud via bitco=
in-dev &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=
=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; I think there is a lot of misinformation and bia=
s against Proof of Stake. Yes there have been lots of shady coins that use =
insecure PoS mechanisms. Yes there have been massive issues with distributi=
on of PoS coins (of course there have also been massive issues with PoW coi=
ns as well). However, I want to remind everyone that there is a difference =
between &quot;proved to be impossible&quot; and &quot;have not achieved rec=
ognized success yet&quot;. Most of the arguments levied against PoS are out=
 of date or rely on unproven assumptions or extrapolation from the analysis=
 of a particular PoS system. I certainly don&#39;t think we should experime=
nt with bitcoin by switching to PoS, but from my research, it seems very li=
kely that there is a proof of stake consensus protocol we could build that =
has substantially higher security (cost / capital required to execute an at=
tack) while at the same time costing far less resources (which do translate=
 to fees on the network) *without* compromising any of the critical securit=
y properties bitcoin relies on. I think the critical piece of this is the d=
isagreements around hardcoded checkpoints, which is a critical piece solvin=
g attacks that could be levied on a PoS chain, and how that does (or doesn&=
#39;t) affect the security model.<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; @Eric Your proof of stake fallacy seems to be sa=
ying that PoS is worse when a 51% attack happens. While I agree, I think th=
at line of thinking omits important facts:<br>
&gt;&gt; &gt;&gt; &gt;&gt; * The capital required to 51% attack a PoS chain=
 can be made substantially greater than on a PoS chain.<br>
&gt;&gt; &gt;&gt; &gt;&gt; * The capital the attacker stands to lose can be=
 substantially greater as well if the attack is successful.<br>
&gt;&gt; &gt;&gt; &gt;&gt; * The effectiveness of paying miners to raise th=
e honest fraction of miners above 50% may be quite bad.<br>
&gt;&gt; &gt;&gt; &gt;&gt; * Allowing a 51% attack is already unacceptable.=
 It should be considered whether what happens in the case of a 51% may not =
be significantly different. The currency would likely be critically damaged=
 in a 51% attack regardless of consensus mechanism.<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; &gt; Proof-of-stake tends towards oligopolistic =
control<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; People repeat this often, but the facts support =
this. There is no centralization pressure in any proof of stake mechanism t=
hat I&#39;m aware of. IE if you have 10 times as much coin that you use to =
mint blocks, you should expect to earn 10x as much minting revenue - not mo=
re than 10x. By contrast, proof of work does in fact have clear centralizat=
ion pressure - this is not disputed. Our goal in relation to that is to ens=
ure that the centralization pressure remains insignifiant. Proof of work al=
so clearly has a lot more barriers to entry than any proof of stake system =
does. Both of these mean the tendency towards oligopolistic control is wors=
e for PoW.<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; &gt; Energy usage, in-and-of-itself, is nothing =
to be ashamed of!!<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; I certainly agree. Bitcoin&#39;s energy usage at=
 the moment is I think quite warranted. However, the question is: can we do=
 substantially better. I think if we can, we probably should... eventually.=
<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; &gt; Proof of Stake is only resilient to =E2=85=
=93 of the network demonstrating a Byzantine Fault, whilst Proof of Work is=
 resilient up to the =C2=BD threshold<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; I see no mention of this in the pos.pdf you link=
ed to. I&#39;m not aware of any proof that all PoS systems have a failure t=
hreshold of 1/3. I know that staking systems like Casper do in fact have th=
at 1/3 requirement. However there are PoS designs that should exceed that u=
p to nearly 50% as far as I&#39;m aware. Proof of work is not in fact resil=
ient up to the 1/2 threshold in the way you would think. IE, if 100% of min=
ers are currently honest and have a collective 100 exahashes/s hashpower, a=
n attacker does not need to obtain 100 exahashes/s, but actually only needs=
 to accumulate 50 exahashes/s. This is because as the attacker accumulates =
hashpower, it drives honest miners out of the market as the difficulty incr=
eases to beyond what is economically sustainable. Also, its been shown that=
 the best proof of work can do is require an attacker to obtain 33% of the =
hashpower because of the selfish mining attack discussed in depth in this p=
aper: <a href=3D"https://arxiv.org/abs/1311.0243" rel=3D"noreferrer" target=
=3D"_blank">https://arxiv.org/abs/1311.0243</a>. Together, both of these th=
ings reduce PoW&#39;s security by a factor of about 83% (1 - 50%*33%).<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;=C2=A0 &gt; Proof of Stake requires other trade-o=
ffs which are incompatible with Bitcoin&#39;s objective (to be a trustless =
digital cash) =E2=80=94 specifically the famous &quot;security vs. liveness=
&quot; guarantee<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; Do you have a good source that talks about why y=
ou think proof of stake cannot be used for a trustless digital cash?<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; &gt; You cannot gain tokens without someone choo=
sing to give up those coins - a form of permission.<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; This is not a practical constraint. Just like in=
 mining, some nodes may reject you, but there will likely be more that will=
 accept you, some sellers may reject you, but most would accept your money =
as payment for bitcoins. I don&#39;t think requiring the &quot;permission&q=
uot; of one of millions of people in the market can be reasonably considere=
d a &quot;permissioned currency&quot;.<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; &gt; 2. Proof of stake must have a trusted means=
 of timestamping to regulate overproduction of blocks<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; Both PoW and PoS could mine/mint blocks twice as=
 fast if everyone agreed to double their clock speeds. Both systems rely on=
 an honest majority sticking to standard time.<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; On Wed, May 19, 2021 at 5:32 AM Michael Dubrovsk=
y via bitcoin-dev &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.o=
rg" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a>&gt; wrote:<=
br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; Ah sorry, I didn&#39;t realize this was, in =
fact, a different thread! :)<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; On Wed, May 19, 2021 at 10:07 AM Michael Dub=
rovsky &lt;<a href=3D"mailto:mike@powx.org" target=3D"_blank">mike@powx.org=
</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt; Folks, I suggest we keep the discussion =
to PoW, oPoW, and the BIP itself. PoS, VDFs, and so on are interesting but =
I guess there are other threads going on these topics already where they wo=
uld be relevant.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt; Also, it&#39;s important to distinguish =
between oPoW and these other &quot;alternatives&quot; to Hashcash. oPoW is =
a true Proof of Work that doesn&#39;t alter the core game theory or securit=
y assumptions of Hashcash and actually contains SHA (can be SHA3, SHA256, e=
tc hash is interchangeable).<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt; Cheers,<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt; Mike<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt; On Tue, May 18, 2021 at 4:55 PM Erik Aro=
nesty via bitcoin-dev &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfoundati=
on.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a>&gt; wro=
te:<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; 1. i never suggested vdf&#39;s to re=
place pow.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; 2. my suggestion was specifically *i=
n the context of* a working<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; proof-of-burn protocol<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; - vdfs used only for timing (not blo=
ck height)<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; - blind-burned coins of a specific a=
ge used to replace proof of work<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; - the required &quot;work&quot; per =
block would simply be a competition to<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; acquire rewards, and so miners would=
 have to burn coins, well in<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; advance, and hope that their burned =
coins got rewarded in some far<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; future<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; - the point of burned coins is to mi=
mic, in every meaningful way, the<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; value gained from proof of work... w=
ithout some of the security<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; drawbacks<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; - the miner risks losing all of his =
burned coins (like all miners risk<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; losing their work in each block)<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; - new burns can&#39;t be used<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; - old burns age out (like ASICs do)<=
br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; - other requirements on burns might =
be needed to properly mirror the<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; properties of PoW and the incentives=
 Bitcoin uses to mine honestly.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; 3. i do believe it is *possible* tha=
t a &quot;burned coin + vdf system&quot;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; might be more secure in the long run=
, and that if the entire space<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; agreed that such an endeavor was wor=
thwhile, a test net could be spun<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; up, and a hard-fork could be initiat=
ed.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; 4. i would never suggest such a thin=
g unless i believed it was<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; possible that consensus was possible=
.=C2=A0 so no, this is not an &quot;alt<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; coin&quot;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; On Tue, May 18, 2021 at 10:02 AM Zac=
 Greenwood &lt;<a href=3D"mailto:zachgrw@gmail.com" target=3D"_blank">zachg=
rw@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt; Hi ZmnSCPxj,<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt; Please note that I am not sugge=
sting VDFs as a means to save energy, but solely as a means to make the tim=
e between blocks more constant.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt; Zac<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt; On Tue, 18 May 2021 at 12:42, Z=
mnSCPxj &lt;<a href=3D"mailto:ZmnSCPxj@protonmail.com" target=3D"_blank">Zm=
nSCPxj@protonmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt; Good morning Zac,<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt; &gt; VDFs might enable more=
 constant block times, for instance by having a two-step PoW:<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt; &gt; 1. Use a VDF that take=
s say 9 minutes to resolve (VDF being subject to difficulty adjustments sim=
ilar to the as-is). As per the property of VDFs, miners are able show proof=
 of work.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt; &gt; 2. Use current PoW mec=
hanism with lower difficulty so finding a block takes 1 minute on average, =
again subject to as-is difficulty adjustments.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt; &gt; As a result, variation=
 in block times will be greatly reduced.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt; As I understand it, another=
 weakness of VDFs is that they are not inherently progress-free (their sequ=
ential nature prevents that; they are inherently progress-requiring).<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt; Thus, a miner which focuses=
 on improving the amount of energy that it can pump into the VDF circuitry =
(by overclocking and freezing the circuitry), could potentially get into a =
winner-takes-all situation, possibly leading to even *worse* competition an=
d even *more* energy consumption.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt; After all, if you can start=
 mining 0.1s faster than the competition, that is a 0.1s advantage where *o=
nly you* can mine *in the entire world*.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt; Regards,<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; &gt;&gt; ZmnSCPxj<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; ____________________________________=
___________<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; bitcoin-dev mailing list<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; <a href=3D"mailto:bitcoin-dev@lists.=
linuxfoundation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.or=
g</a><br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; <a href=3D"https://lists.linuxfounda=
tion.org/mailman/listinfo/bitcoin-dev" rel=3D"noreferrer" target=3D"_blank"=
>https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a><br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt; --<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt; Michael Dubrovsky<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt; Founder; PoWx<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;&gt; <a href=3D"http://www.PoWx.org" rel=3D"n=
oreferrer" target=3D"_blank">www.PoWx.org</a><br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; --<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; Michael Dubrovsky<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; Founder; PoWx<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; <a href=3D"http://www.PoWx.org" rel=3D"noref=
errer" target=3D"_blank">www.PoWx.org</a><br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; ____________________________________________=
___<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; bitcoin-dev mailing list<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; <a href=3D"mailto:bitcoin-dev@lists.linuxfou=
ndation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a><br=
>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; <a href=3D"https://lists.linuxfoundation.org=
/mailman/listinfo/bitcoin-dev" rel=3D"noreferrer" target=3D"_blank">https:/=
/lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a><br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; _______________________________________________<=
br>
&gt;&gt; &gt;&gt; &gt;&gt; bitcoin-dev mailing list<br>
&gt;&gt; &gt;&gt; &gt;&gt; <a href=3D"mailto:bitcoin-dev@lists.linuxfoundat=
ion.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a><br>
&gt;&gt; &gt;&gt; &gt;&gt; <a href=3D"https://lists.linuxfoundation.org/mai=
lman/listinfo/bitcoin-dev" rel=3D"noreferrer" target=3D"_blank">https://lis=
ts.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a><br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt;&gt; &gt; bitcoin-dev mailing list<br>
&gt;&gt; &gt;&gt; &gt; <a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.=
org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a><br>
&gt;&gt; &gt;&gt; &gt; <a href=3D"https://lists.linuxfoundation.org/mailman=
/listinfo/bitcoin-dev" rel=3D"noreferrer" target=3D"_blank">https://lists.l=
inuxfoundation.org/mailman/listinfo/bitcoin-dev</a><br>
</blockquote></div>

--00000000000056d68a05c32d00f8--