summaryrefslogtreecommitdiff
path: root/a7/b76651c78727a040e12ee0f7cbc00ebda8449b
blob: 68075e880048888aae4a0a60ea8ca9cf651edfd9 (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
Return-Path: <earonesty@gmail.com>
Received: from smtp3.osuosl.org (smtp3.osuosl.org [IPv6:2605:bc80:3010::136])
 by lists.linuxfoundation.org (Postfix) with ESMTP id 50E43C000A
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Wed, 17 Mar 2021 00:24:50 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
 by smtp3.osuosl.org (Postfix) with ESMTP id 2425360688
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Wed, 17 Mar 2021 00:24:50 +0000 (UTC)
X-Virus-Scanned: amavisd-new at osuosl.org
X-Spam-Flag: NO
X-Spam-Score: -1.389
X-Spam-Level: 
X-Spam-Status: No, score=-1.389 tagged_above=-999 required=5
 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
 FREEMAIL_FORGED_FROMDOMAIN=0.249, FREEMAIL_FROM=0.001,
 HEADER_FROM_DIFFERENT_DOMAINS=0.25, HTML_MESSAGE=0.001,
 RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001,
 T_KAM_HTML_FONT_INVALID=0.01] autolearn=no autolearn_force=no
Authentication-Results: smtp3.osuosl.org (amavisd-new);
 dkim=pass (2048-bit key) header.d=q32-com.20150623.gappssmtp.com
Received: from smtp3.osuosl.org ([127.0.0.1])
 by localhost (smtp3.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id Qy8NVJDTueES
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Wed, 17 Mar 2021 00:24:47 +0000 (UTC)
X-Greylist: whitelisted by SQLgrey-1.8.0
Received: from mail-pj1-x102f.google.com (mail-pj1-x102f.google.com
 [IPv6:2607:f8b0:4864:20::102f])
 by smtp3.osuosl.org (Postfix) with ESMTPS id 9A44C605E8
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Wed, 17 Mar 2021 00:24:47 +0000 (UTC)
Received: by mail-pj1-x102f.google.com with SMTP id
 cl21-20020a17090af695b02900c61ac0f0e9so4411248pjb.1
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue, 16 Mar 2021 17:24:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=q32-com.20150623.gappssmtp.com; s=20150623;
 h=mime-version:references:in-reply-to:from:date:message-id:subject:to
 :cc; bh=fFAFjveHcB8rv41Xg8jJTgkDg523TH2W/4pLVa1oQmI=;
 b=a5y6rF52cOBxRajP0XxIYjDbkOpxzCHawkRBtZ2H0R315YK++pWBGKURrdFiPsfYKG
 mnOfkmmnMEUz2nZz/kUt5KeRq8SaJYYB+3f4YehcGdWSBDLtAUotXhlFRf0DG3JjUrXx
 lyy6sSLYprB8mh7C+h4ExPPM7VcmDlR+GVTLhfOXsBWs8K2/O93Zqibavu2dBdHOefk7
 LuZTxOq1Y5AFja3R4RjYscPYGM1QVNQa9A33jE94jgZi1d9oZ1zpFIoTUkU+Pdl/wdEQ
 P1+W4tB/16u6kT8gm/sZfi9fdMXUcrwJRuqpUHe4S8sIAkv6mk/ChD7S9cHPuJ1ZjLkq
 Uj7A==
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=fFAFjveHcB8rv41Xg8jJTgkDg523TH2W/4pLVa1oQmI=;
 b=SNoj5iT9bvXuDlxYF7sON6U7Q4UlMWseeU/JPAAYtuX8zYVvLhetWR33v3xRfowfGH
 KE/10ijaNdkhykVWboEw4VC2sX4kSqJVqDWu2RwcxTGmye0yrQaxEyinN+quWAMPyipS
 6RSMVhQ2XWI0MjhgL0gOkY6DKtfPrLT9NU22T9S0r6dhBgz4K5WcTwEBGOkkBDEaMYGv
 Sp4teksO0cU+pt3RbG0hEZURTpQWC9NAQebZ6vf17dVvSu2DQLGEE2bhyoq0dPzTbNpt
 8tJygsLPkpuyAZFbZTdhtPB/LKEmkr4rLqrek/VPqsDA3zb7d315hsKSSpApyoegShfv
 3y9g==
X-Gm-Message-State: AOAM531dbxgoPHctTVdaq3VqRHIRpXOKnw3iU6TiaqnhqQwHKFQRQEMi
 qoEmwrXBofmTm7WQ+lsZFAJ3bpXxIg0lBqDWNWmLOkM=
X-Google-Smtp-Source: ABdhPJzzoPvUF1byhp7MCNnRHqnQ8Q7jQIlPDa83ptXfFN9MJA8Aixd8dKTobAAmX57/rbxWeu6vQ+vkZQLUVw/nZpM=
X-Received: by 2002:a17:902:aa0a:b029:e4:c090:ad76 with SMTP id
 be10-20020a170902aa0ab02900e4c090ad76mr1919518plb.2.1615940686738; Tue, 16
 Mar 2021 17:24:46 -0700 (PDT)
MIME-Version: 1.0
References: <CA+YkXXw5uh4yfvqDiBBEXcq188PEGku-NFFAq7uNuAFTG3ooTQ@mail.gmail.com>
 <1802-604c7400-4d1-7b635e80@91248813>
 <CA+YkXXzPt8vf=bfpW+NBqH_G7sTiyFcGSZa+j31Fx_O5ir93Cw@mail.gmail.com>
In-Reply-To: <CA+YkXXzPt8vf=bfpW+NBqH_G7sTiyFcGSZa+j31Fx_O5ir93Cw@mail.gmail.com>
From: Erik Aronesty <erik@q32.com>
Date: Tue, 16 Mar 2021 20:24:35 -0400
Message-ID: <CAJowKgL836fCjKvC=yu0aFtF4Sot6WvzJY-Uo9Oxh27bfMw5vA@mail.gmail.com>
To: Lonero Foundation <loneroassociation@gmail.com>
Content-Type: multipart/alternative; boundary="0000000000009c7a7105bdb0820d"
X-Mailman-Approved-At: Wed, 17 Mar 2021 01:02:26 +0000
Cc: Bitcoin Protocol Discussion <bitcoin-dev@lists.linuxfoundation.org>
Subject: Re: [bitcoin-dev] BIP Proposal: Consensus (hard fork) PoST
 Datastore for Energy Efficient Mining
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: Wed, 17 Mar 2021 00:24:50 -0000

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

Any proposed hard fork will wind up being some sort of Bitcoin sv thing

no matter what you propose or no matter how awesome it is they'll be many
people in the community who would prefer to continue business as usual.
which I'd like to point out seems to be working very, very well.

so you should go into it with open eyes and start a fork right from the
get-go.

This is why I'm a fan of proof of burn.   you can also use burned main
chain as a way of mining on the new chain.

the interesting thing is that you can calculate proof of work equivalence
in a meaningful way if you use Bitcoin as a reference, and the total mined
supply of the new coin, as another reference point.

That would enable you to switch it entirely to burned coins as a proxy for
proof of work, and enable people who have Bitcoin to meaningfully
participate in the new network.













On Sat, Mar 13, 2021, 10:02 AM Lonero Foundation <
loneroassociation@gmail.com> wrote:

> Hi, I know the differences between the cryptographic hashing algorithm an=
d
> key validation. I know hashing is for SHA, but was referring to asymmetri=
c
> cryptography in regards to the key validation. I should have used a
> different term though instead of, "In regards to cryptographic hashing,",=
 I
> should have stated in regards to cryptographic key validation. There are =
a
> few other dubious clarifications or minor edits I should make in order to
> not draw confusion. I will do a repo update today. Honest mistake, but
> enough with the sarcasm.
>
> Best regards, Andrew
>
> On Sat, Mar 13, 2021, 3:13 AM email@yancy.lol <email@yancy.lol> wrote:
>
>> My email was not intended as an insult.  Your proposal seemed a bit like
>> gibberish and made some obvious mistakes as pointed out before (such as
>> conflating secp256k1 with sha256), and so I was genuinely curious if you
>> were a bot spamming the list.
>>
>>
>> Maybe a more interesting topic is, can GPT3 be used to generate a BIP?
>> How long before our AI overlord produces improvements to Bitcoin?  At wh=
at
>> point will the AI have more than 51% of commit frequency?  Will we have
>> lost the war to our new centralized overlord?
>>
>> Cheers,
>> -Yancy
>>
>>
>> On Saturday, March 13, 2021 00:31 CET, Lonero Foundation <
>> loneroassociation@gmail.com> wrote:
>>
>>
>> Also, I already stated I was referring to signature validation
>> cryptography in that aspect:
>> https://wizardforcel.gitbooks.io/practical-cryptography-for-developers-b=
ook/content/digital-signatures/ecdsa-sign-verify-examples.html
>> My BIP has a primary purpose in regards to what I want to develop proofs
>> for and the different cryptographic elements I want to develop proofs fo=
r.
>> That said to those who disagree with the premise, I do prefer
>> constructive feedback over insults or making fun of one another. After a=
ll
>> this is an improvement proposal with a specific purpose aiming to develo=
p a
>> specific thing, not a guy who is just wanting to copy and paste a
>> repository and call it a day.
>>
>> Best regards, Andrew
>>
>> On Fri, Mar 12, 2021 at 6:21 PM Lonero Foundation <
>> loneroassociation@gmail.com> wrote:
>>
>>> Hi, I also want to emphasize that my main point isn't just to create a
>>> BTC hardfork or become another Bitcoin Cash, Gold, or SV. The main poin=
t in
>>> regards to this BIP actually expands POW rather than replaces or create=
s an
>>> alternative. Many of the problems faced in regards to security in the
>>> future as well as sustainability is something I believe lots of the cha=
nges
>>> I am proposing can fix. In regards to technological implementation, onc=
e
>>> this is assigned draft status I am more than willing to create preprint=
s
>>> explaining the cryptography, hashing algorithm improvements, and consen=
sus
>>> that I am working on. This is a highly technologically complex idea tha=
t I
>>> am willing to "call my bluff on" and expand upon. As for it being a dra=
ft,
>>> I think this is a good starting point at least for draft status prior t=
o
>>> working on technological implementation.
>>>
>>> Best regards, Andrew
>>>
>>> On Fri, Mar 12, 2021 at 5:37 PM email@yancy.lol <email@yancy.lol> wrote=
:
>>>
>>>> I think Andrew himself is an algo.  The crypto training set must not b=
e
>>>> very good.
>>>>
>>>> Cheers,
>>>> -Yancy
>>>>
>>>> On Friday, March 12, 2021 17:54 CET, Lonero Foundation via bitcoin-dev=
 <
>>>> bitcoin-dev@lists.linuxfoundation.org> wrote:
>>>>
>>>>
>>>> Hi, I awkwardly phrased that part, I was referring to key validation i=
n
>>>> relation to that section as well as the hashing related to those keys.=
 I
>>>> might rephrase it.
>>>>
>>>> In regards to technical merit, the main purpose of the BIP is to get a
>>>> sense of the idea. Once I get assigned a BIP draft #, I am willing to
>>>> follow it up with many preprints or publications to go in the referenc=
es
>>>> implementation section and start dev work before upgrading to final st=
atus.
>>>>
>>>> This will take about 400 hours of my time, but is something I am
>>>> personally looking into developing as a hard fork.
>>>>
>>>> Keep in mind this is a draft, so after it is assigned a number to
>>>> references I do at the very least hope to describe various parts of th=
e
>>>> cryptographic proofs and algorithmic structure I am hoping for.
>>>>
>>>> Best regards, Andrew
>>>>
>>>> On Fri, Mar 12, 2021, 10:03 AM Erik Aronesty <erik@q32.com> wrote:
>>>>
>>>>> secp236k1 isn't a hashing algo.   your BIP needs about 10 more pages
>>>>> and some degree of technical merit.
>>>>>
>>>>> i suggest you start here:
>>>>>
>>>>> https://en.bitcoin.it/wiki/Proof_of_burn
>>>>> https://bitcointalk.org/index.php?topic=3D225690.0
>>>>>
>>>>> proof-of-burn is a nice alternative to proof-of-work.   i always
>>>>> suspected that, if designed correctly, it could be a proven
>>>>> equivalent.   you could spin up a fork of bitcoin that allows aged,
>>>>> burned, coins instead of POW that would probably work just fine.
>>>>>
>>>>> - erik
>>>>>
>>>>> On Thu, Mar 11, 2021 at 11:56 AM Lonero Foundation via bitcoin-dev
>>>>> <bitcoin-dev@lists.linuxfoundation.org> wrote:
>>>>> >
>>>>> > Hi, I have submitted the BIP Pull Request here:
>>>>> https://github.com/bitcoin/bips/pull/1084
>>>>> >
>>>>> > Hoping to receive a BIP # for the draft prior to
>>>>> development/reference implementation.
>>>>> >
>>>>> > Best regards, Andrew
>>>>> >
>>>>> > On Mon, Mar 8, 2021, 6:40 PM Lonero Foundation <
>>>>> loneroassociation@gmail.com> wrote:
>>>>> >>
>>>>> >> Hi, here is the list to the BIP proposal on my own repo:
>>>>> https://github.com/Mentors4EDU/bip-amkn-posthyb/blob/main/bip-draft.m=
ediawiki
>>>>> >> Can I submit a pull request on the BIPs repo for this to go into
>>>>> draft mode? Also, I think this provides at least some more insight on=
 what
>>>>> I want to work on.
>>>>> >>
>>>>> >> Best regards, Andrew
>>>>> >>
>>>>> >> On Sat, Mar 6, 2021, 10:42 AM Lonero Foundation <
>>>>> loneroassociation@gmail.com> wrote:
>>>>> >>>
>>>>> >>> [off-list]
>>>>> >>>
>>>>> >>> Okay. I will do so and post the link here for discussion before
>>>>> doing a pull request on BIP's repo as the best way to handle it.
>>>>> >>>
>>>>> >>> Best regards, Andrew
>>>>> >>>
>>>>> >>> On Sat, Mar 6, 2021, 10:21 AM Ricardo Filipe <
>>>>> ricardojdfilipe@gmail.com> wrote:
>>>>> >>>>
>>>>> >>>> As said before, you are free to create the BIP in your own
>>>>> repository
>>>>> >>>> and bring it to discussion on the mailing list. then you can do =
a
>>>>> PR
>>>>> >>>>
>>>>> >>>> Lonero Foundation via bitcoin-dev
>>>>> >>>> <bitcoin-dev@lists.linuxfoundation.org> escreveu no dia s=C3=A1b=
ado,
>>>>> >>>> 6/03/2021 =C3=A0(s) 08:58:
>>>>> >>>> >
>>>>> >>>> > I know Ethereum had an outlandishly large percentage of nodes
>>>>> running on AWS, I heard the same thing is for Bitcoin but for mining.=
 Had
>>>>> trouble finding the article online so take it with a grain of salt. T=
he
>>>>> point though is that both servers and ASIC specific hardware would st=
ill be
>>>>> able to benefit from the cryptography upgrade I am proposing, as this=
 was
>>>>> in relation to the disinfranchisemet point.
>>>>> >>>> >
>>>>> >>>> > That said, I think the best way to move forward is to submit a
>>>>> BIP pull request for a draft via GitHub using BIP #2's draft format a=
nd any
>>>>> questions people have can be answered in the reqeust's comments. That=
 way
>>>>> people don't have to get emails everytime there is a reply, but repli=
es
>>>>> still get seen as opposed to offline discussion. Since the instructio=
ns say
>>>>> to email bitcoin-dev before doing a bip draft, I have done that. Sinc=
e
>>>>> people want to see the draft beforehand and it isn't merged manually
>>>>> anyways, I think it is the easiest way to handle this.
>>>>> >>>> >
>>>>> >>>> > I'm also okay w/ continuing the discussion on bitcoin-dev but
>>>>> rather form a discussion on git instead given I don't want to acciden=
tally
>>>>> impolitely bother people given this is a moderated list and we alread=
y
>>>>> established some interest for at least a draft.
>>>>> >>>> >
>>>>> >>>> > Does that seem fine?
>>>>> >>>> >
>>>>> >>>> > Best regards, Andrew
>>>>> >>>> >
>>>>> >>>> > On Fri, Mar 5, 2021, 7:41 PM Keagan McClelland <
>>>>> keagan.mcclelland@gmail.com> wrote:
>>>>> >>>> >>
>>>>> >>>> >> > A large portion of BTC is already mined through AWS servers
>>>>> and non-asic specific hardware anyways. A majority of them would bene=
fit
>>>>> from a hybrid proof, and the fact that it is hybrid in that manner wo=
uldn't
>>>>> disenfranchise currently optimized mining entities as well.
>>>>> >>>> >>
>>>>> >>>> >> My instincts tell me that this is an outlandish claim. Do you
>>>>> have supporting evidence for this?
>>>>> >>>> >>
>>>>> >>>> >> Keagan
>>>>> >>>> >>
>>>>> >>>> >> On Fri, Mar 5, 2021 at 3:22 PM Lonero Foundation via
>>>>> bitcoin-dev <bitcoin-dev@lists.linuxfoundation.org> wrote:
>>>>> >>>> >>>
>>>>> >>>> >>> Actually I mentioned a proof of space and time hybrid which
>>>>> is much different than staking. Sorry to draw for the confusion as Po=
C is
>>>>> more commonly used then PoST.
>>>>> >>>> >>> There is a way to make PoC cryptographically compatible w/
>>>>> Proof of Work as it normally stands:
>>>>> https://en.wikipedia.org/wiki/Proof_of_space
>>>>> >>>> >>> It has rarely been done though given the technological
>>>>> complexity of being both CPU compatible and memory-hard compatible. T=
here
>>>>> are lots of benefits outside of the realm of efficiency, and I alread=
y
>>>>> looked into numerous fault tolerant designs as well and what others i=
n the
>>>>> cryptography community attempted to propose. The actual argument you =
have
>>>>> only against this is the Proof of Memory fallacy, which is only parti=
ally
>>>>> true. Given how the current hashing algorithm works, hard memory allo=
cation
>>>>> wouldn't be of much benefit given it is more optimized for CPU/ASIC
>>>>> specific mining. I'm working towards a hybrid mechanism that fixes th=
at.
>>>>> BTW: The way Bitcoin currently stands in its cryptography still needs
>>>>> updating regardless. If someone figures out NP hardness or the haltin=
g
>>>>> problem the traditional rule of millions of years to break all of Bit=
coin's
>>>>> cryptography now comes down to minutes. Bitcoin is going to have to
>>>>> eventually radically upgrade their cryptography and hashing algo in t=
he
>>>>> future regardless. I want to integrate some form of NP complexity in
>>>>> regards to the hybrid cryptography I'm aiming to provide which includ=
es a
>>>>> polynomial time algorithm in the cryptography. More than likely the f=
irst
>>>>> version of my BTC hard fork will be coded in a way where integrating =
such
>>>>> complexity in the future only requires a soft fork or minor upgrade t=
o its
>>>>> chain.
>>>>> >>>> >>>
>>>>> >>>> >>> In regards to the argument, "As a separate issue, proposing =
a
>>>>> hard fork in the hashing algorithm will invalidate the enormous amoun=
t of
>>>>> capital expenditure by mining entities and disincentivize future capi=
tal
>>>>> expenditure into mining hardware that may compute these more "useful"
>>>>> proofs of work."
>>>>> >>>> >>>
>>>>> >>>> >>> A large portion of BTC is already mined through AWS servers
>>>>> and non-asic specific hardware anyways. A majority of them would bene=
fit
>>>>> from a hybrid proof, and the fact that it is hybrid in that manner wo=
uldn't
>>>>> disenfranchise currently optimized mining entities as well.
>>>>> >>>> >>>
>>>>> >>>> >>> There are other reasons why a cryptography upgrade like this
>>>>> is beneficial. Theoretically one can argue BItcoin isn't fully
>>>>> decentralized. It is few unsolved mathematical proofs away from being
>>>>> entirely broken. My goal outside of efficiency is to build cryptograp=
hy in
>>>>> a way that prevents such an event from happening in the future, if it=
 was
>>>>> to ever happen. I have various research in regards to this area and w=
ork
>>>>> alot with distributed computing. I believe if the BTC community likes=
 such
>>>>> a proposal, I would single handedly be able to build the cryptographi=
c
>>>>> proof myself (though would like as many open source contributors as I=
 can
>>>>> get :)
>>>>> >>>> >>>
>>>>> >>>> >>> Anyways just something to consider. We are in the same space
>>>>> in regards to what warrants a shitcoin or the whole argument against
>>>>> staking.
>>>>> >>>> >>>
>>>>> https://hackernoon.com/ethereum-you-are-a-centralized-cryptocurrency-=
stop-telling-us-that-you-arent-pi3s3yjl
>>>>> >>>> >>>
>>>>> >>>> >>> Best regards,  Andrew
>>>>> >>>> >>>
>>>>> >>>> >>> On Fri, Mar 5, 2021 at 4:11 PM Keagan McClelland <
>>>>> keagan.mcclelland@gmail.com> wrote:
>>>>> >>>> >>>>
>>>>> >>>> >>>> It is important to understand that it is critical for the
>>>>> work to be "useless" in order for the security model to be the same. =
If the
>>>>> work was useful it provides an avenue for actors to have nothing at s=
take
>>>>> when submitting a proof of work, since the marginal cost of block
>>>>> construction will be lessened by the fact that the work was useful in=
 a
>>>>> different context and therefore would have been done anyway. This act=
ually
>>>>> degrades the security of the network in the process.
>>>>> >>>> >>>>
>>>>> >>>> >>>> As a separate issue, proposing a hard fork in the hashing
>>>>> algorithm will invalidate the enormous amount of capital expenditure =
by
>>>>> mining entities and disincentivize future capital expenditure into mi=
ning
>>>>> hardware that may compute these more "useful" proofs of work. This is
>>>>> because any change in the POW algorithm will be considered unstable a=
nd
>>>>> subject to change in the future. This puts the entire network at even=
 more
>>>>> risk meaning that no entity is tying their own interests to that of t=
he
>>>>> bitcoin network at large. It also puts the developers in a position w=
here
>>>>> they can be bribed by entities with a vested interest in deciding wha=
t the
>>>>> new "useful" proof of work should be.
>>>>> >>>> >>>>
>>>>> >>>> >>>> All of these things make the Bitcoin network worse off.
>>>>> >>>> >>>>
>>>>> >>>> >>>> Keagan
>>>>> >>>> >>>>
>>>>> >>>> >>>> On Fri, Mar 5, 2021 at 1:48 PM Lonero Foundation via
>>>>> bitcoin-dev <bitcoin-dev@lists.linuxfoundation.org> wrote:
>>>>> >>>> >>>>>
>>>>> >>>> >>>>> Also in regards to my other email, I forgot to iterate tha=
t
>>>>> my cryptography proposal helps behind the efficiency category but als=
o
>>>>> tackles problems such as NP-Completeness or Halting which is somethin=
g the
>>>>> BTC network could be vulnerable to in the future. For sake of simplic=
ity, I
>>>>> do want to do this BIP because it tackles lots of the issues in regar=
ds to
>>>>> this manner and can provide useful insight to the community. If thing=
s such
>>>>> as bigger block height have been proposed as hard forks, I feel at th=
e very
>>>>> least an upgrade regarding the hashing algorithm and cryptography doe=
s at
>>>>> least warrant some discussion. Anyways I hope I can send you my BIP, =
just
>>>>> let me know on the preferred format?
>>>>> >>>> >>>>>
>>>>> >>>> >>>>> Best regards, Andrew
>>>>> >>>> >>>>>
>>>>> >>>> >>>>> On Fri, Mar 5, 2021, 10:12 AM Lonero Foundation <
>>>>> loneroassociation@gmail.com> wrote:
>>>>> >>>> >>>>>>
>>>>> >>>> >>>>>> Hi, this isn't about the energy efficient argument in
>>>>> regards to renewables or mining devices but a better cryptography lay=
er to
>>>>> get the most out of your hashing for validation. I do understand the
>>>>> arbitrariness of it, but do want to still propose a document. Do I us=
e the
>>>>> Media Wiki format on GitHub and just attach it as my proposal?
>>>>> >>>> >>>>>>
>>>>> >>>> >>>>>> Best regards, Andrew
>>>>> >>>> >>>>>>
>>>>> >>>> >>>>>> On Fri, Mar 5, 2021, 10:07 AM Devrandom <
>>>>> c1.devrandom@niftybox.net> wrote:
>>>>> >>>> >>>>>>>
>>>>> >>>> >>>>>>> Hi Ryan and Andrew,
>>>>> >>>> >>>>>>>
>>>>> >>>> >>>>>>> On Fri, Mar 5, 2021 at 5:42 AM Ryan Grant via bitcoin-de=
v
>>>>> <bitcoin-dev@lists.linuxfoundation.org> wrote:
>>>>> >>>> >>>>>>>>
>>>>> >>>> >>>>>>>>
>>>>> >>>> >>>>>>>>   https://www.truthcoin.info/blog/pow-cheapest/
>>>>> >>>> >>>>>>>>     "Nothing is Cheaper than Proof of Work"
>>>>> >>>> >>>>>>>>     on | 04 Aug 2015
>>>>> >>>> >>>>>>>>
>>>>> >>>> >>>>>>>
>>>>> >>>> >>>>>>> Just to belabor this a bit, the paper demonstrates that
>>>>> the mining market will tend to expend resources equivalent to miner
>>>>> reward.  It does not prove that mining work has to expend *energy* as=
 a
>>>>> primary cost.
>>>>> >>>> >>>>>>>
>>>>> >>>> >>>>>>> Some might argue that energy expenditure has negative
>>>>> externalities and that we should move to other resources.  I would ar=
gue
>>>>> that the negative externalities will go away soon because of the move=
 to
>>>>> renewables, so the point is likely moot.
>>>>> >>>> >>>>>>>
>>>>> >>>> >>>>> _______________________________________________
>>>>> >>>> >>>>> 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
>>>>> >
>>>>> > _______________________________________________
>>>>> > bitcoin-dev mailing list
>>>>> > bitcoin-dev@lists.linuxfoundation.org
>>>>> > https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
>>>>
>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>>
>
>

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

<div dir=3D"auto">Any proposed hard fork will wind up being some sort of Bi=
tcoin sv thing<div dir=3D"auto"><br></div><div dir=3D"auto">no matter what =
you propose or no matter how awesome it is they&#39;ll be many people in th=
e community who would prefer to continue business as usual.=C2=A0 which I&#=
39;d like to point out seems to be working very, very well.</div><div dir=
=3D"auto"><div dir=3D"auto"><div dir=3D"auto"><br></div><div dir=3D"auto">s=
o you should go into it with open eyes and start a fork right from the get-=
go.</div><div dir=3D"auto"><br></div><div dir=3D"auto">This is why I&#39;m =
a fan of proof of burn.=C2=A0 =C2=A0you can also use burned main chain as a=
 way of mining on the new chain.=C2=A0=C2=A0</div><div dir=3D"auto"><br></d=
iv><div dir=3D"auto">the interesting thing is that you can calculate proof =
of work equivalence in a meaningful way if you use Bitcoin as a reference, =
and the total mined supply of the new coin, as another reference point.</di=
v><div dir=3D"auto"><br></div><div dir=3D"auto">That would enable you to sw=
itch it entirely to burned coins as a proxy for proof of work, and enable p=
eople who have Bitcoin to meaningfully participate in the new network.</div=
><div dir=3D"auto"><br></div><div dir=3D"auto"><br></div><div dir=3D"auto">=
<br></div><div dir=3D"auto"><br></div><div dir=3D"auto"><br></div><div dir=
=3D"auto"><br></div><div dir=3D"auto"><br></div><div dir=3D"auto"><br></div=
><div dir=3D"auto"><br></div><div dir=3D"auto"><br><div dir=3D"auto"><br></=
div><div dir=3D"auto"><br></div></div></div></div></div><br><div class=3D"g=
mail_quote"><div dir=3D"ltr" class=3D"gmail_attr">On Sat, Mar 13, 2021, 10:=
02 AM Lonero Foundation &lt;<a href=3D"mailto:loneroassociation@gmail.com">=
loneroassociation@gmail.com</a>&gt; wrote:<br></div><blockquote class=3D"gm=
ail_quote" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-le=
ft:1ex"><div dir=3D"auto">Hi, I know the differences between the cryptograp=
hic hashing algorithm and key validation. I know hashing is for SHA, but wa=
s referring to=C2=A0<span>asymmetric cryptography in regards to the key val=
idation. I should have used a different term though instead of, &quot;In re=
gards to cryptographic hashing,&quot;, I should have stated in regards to c=
ryptographic key validation. There are a few other dubious clarifications o=
r minor edits I should make in order to not draw confusion. I will do a rep=
o update today. Honest mistake, but enough with the sarcasm.</span><div dir=
=3D"auto"><span><br></span></div><div dir=3D"auto">Best regards, Andrew</di=
v></div><br><div class=3D"gmail_quote"><div dir=3D"ltr" class=3D"gmail_attr=
">On Sat, Mar 13, 2021, 3:13 AM email@yancy.lol &lt;email@yancy.lol&gt; wro=
te:<br></div><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;b=
order-left:1px #ccc solid;padding-left:1ex"><p dir=3D"ltr" style=3D"line-he=
ight:1.38;margin-top:0pt;margin-bottom:0pt" id=3D"m_6834197471630777891m_-7=
605373105595509035m_8158420199876589271m_-1581779554600417290m_-17411290091=
80998294m_3490105251412115872m_-7757793637796267019m_-5697419812760722977do=
cs-internal-guid-4056a8b1-7fff-9296-3427-4d2e04c785c7"><span style=3D"font-=
size:11pt;font-family:Arial;background-color:transparent;font-weight:400;fo=
nt-style:normal;font-variant:normal;text-decoration:none;vertical-align:bas=
eline;white-space:pre-wrap">My email was not intended as an insult.=C2=A0 Y=
our proposal seemed a bit like gibberish and made some obvious mistakes as =
pointed out before (such as conflating secp256k1 with sha256), and so I was=
 genuinely curious if you were a bot spamming the list.</span></p>=C2=A0<p =
dir=3D"ltr" style=3D"line-height:1.38;margin-top:0pt;margin-bottom:0pt"><sp=
an style=3D"font-size:11pt;font-family:Arial;background-color:transparent;f=
ont-weight:400;font-style:normal;font-variant:normal;text-decoration:none;v=
ertical-align:baseline;white-space:pre-wrap">Maybe a more interesting topic=
 is, can GPT3 be used to generate a BIP?=C2=A0 How long before our AI overl=
ord produces improvements to Bitcoin?=C2=A0 At what point will the AI have =
more than 51% of commit frequency?=C2=A0 Will we have lost the war to our n=
ew centralized overlord?</span></p><br>Cheers,<br>-Yancy<br><br><br>On Satu=
rday, March 13, 2021 00:31 CET, Lonero Foundation &lt;<a href=3D"mailto:lon=
eroassociation@gmail.com" rel=3D"noreferrer noreferrer noreferrer noreferre=
r noreferrer noreferrer noreferrer noreferrer" target=3D"_blank">loneroasso=
ciation@gmail.com</a>&gt; wrote:<br>=C2=A0<blockquote type=3D"cite" cite=3D=
"http://CA+YkXXw5uh4yfvqDiBBEXcq188PEGku-NFFAq7uNuAFTG3ooTQ@mail.gmail.com"=
><div dir=3D"ltr"><div>Also, I already stated I was referring to signature =
validation cryptography in that aspect: <a href=3D"https://wizardforcel.git=
books.io/practical-cryptography-for-developers-book/content/digital-signatu=
res/ecdsa-sign-verify-examples.html" rel=3D"noreferrer noreferrer noreferre=
r noreferrer noreferrer noreferrer noreferrer noreferrer" target=3D"_blank"=
>https://wizardforcel.gitbooks.io/practical-cryptography-for-developers-boo=
k/content/digital-signatures/ecdsa-sign-verify-examples.html</a></div><div>=
My BIP has a primary purpose in regards to what I want to develop proofs fo=
r and the different cryptographic elements I want to develop proofs for.</d=
iv><div>That said to those who disagree with the premise, I do prefer const=
ructive feedback over insults or making fun of one another. After all this =
is an improvement proposal with a specific purpose aiming to develop a spec=
ific thing, not a guy who is just wanting to copy and paste a repository an=
d call it a day.</div><div>=C2=A0</div><div>Best regards, Andrew</div></div=
>=C2=A0<div class=3D"gmail_quote"><div dir=3D"ltr" class=3D"gmail_attr">On =
Fri, Mar 12, 2021 at 6:21 PM Lonero Foundation &lt;<a href=3D"mailto:lonero=
association@gmail.com" rel=3D"noreferrer noreferrer noreferrer noreferrer n=
oreferrer noreferrer noreferrer noreferrer" target=3D"_blank">loneroassocia=
tion@gmail.com</a>&gt; wrote:</div><blockquote class=3D"gmail_quote" style=
=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding=
-left:1ex"><div dir=3D"ltr"><div>Hi, I also want to emphasize that my main =
point isn&#39;t just to create a BTC hardfork or become another Bitcoin Cas=
h, Gold, or SV. The main point in regards to this BIP actually expands POW =
rather than replaces or creates an alternative. Many of the problems faced =
in regards to security in the future as well as sustainability is something=
 I believe lots of the changes I am proposing can fix. In regards to techno=
logical implementation, once this is assigned draft status I am more than w=
illing to create preprints explaining the cryptography, hashing algorithm i=
mprovements, and consensus that I am working on. This is a highly technolog=
ically complex idea that I am willing to &quot;call my bluff on&quot; and e=
xpand upon. As for it being a draft, I think this is a good starting point =
at least for draft status prior to working on technological implementation.=
</div><div>=C2=A0</div><div>Best regards, Andrew</div></div>=C2=A0<div clas=
s=3D"gmail_quote"><div dir=3D"ltr" class=3D"gmail_attr">On Fri, Mar 12, 202=
1 at 5:37 PM email@yancy.lol &lt;email@yancy.lol&gt; wrote:</div><blockquot=
e class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px s=
olid rgb(204,204,204);padding-left:1ex">I think Andrew himself is an algo.=
=C2=A0 The crypto training set must not be very good.<br><br>Cheers,<br>-Ya=
ncy<br><br>On Friday, March 12, 2021 17:54 CET, Lonero Foundation via bitco=
in-dev &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" rel=3D"=
noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer noreferre=
r noreferrer" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a>&g=
t; wrote:<br>=C2=A0<blockquote type=3D"cite" cite=3D"http://CA+YkXXz9aHfZtt=
-it_8w4ovF=3D-QaZ4_9vwDS0Kz36qhHwVDC5Q@mail.gmail.com"><div dir=3D"auto">Hi=
, I awkwardly phrased that part, I was referring to key validation in relat=
ion to that section as well as the hashing related to those keys. I might r=
ephrase it.=C2=A0<div dir=3D"auto">=C2=A0</div><div dir=3D"auto">In regards=
 to technical merit, the main purpose of the BIP is to get a sense of the i=
dea. Once I get assigned a BIP draft #, I am willing to follow it up with m=
any preprints or publications to go in the references implementation sectio=
n and start dev work before upgrading to final status.</div><div dir=3D"aut=
o">=C2=A0</div><div dir=3D"auto">This will take about 400 hours of my time,=
 but is something I am personally looking into developing as a hard fork.</=
div><div dir=3D"auto">=C2=A0</div><div dir=3D"auto">Keep in mind this is a =
draft, so after it is assigned a number to references I do at the very leas=
t hope to describe various parts of the cryptographic proofs and algorithmi=
c structure I am hoping for.</div><div dir=3D"auto">=C2=A0</div><div dir=3D=
"auto">Best regards, Andrew</div></div>=C2=A0<div class=3D"gmail_quote"><di=
v dir=3D"ltr" class=3D"gmail_attr">On Fri, Mar 12, 2021, 10:03 AM Erik Aron=
esty &lt;<a href=3D"mailto:erik@q32.com" rel=3D"noreferrer noreferrer noref=
errer noreferrer noreferrer noreferrer noreferrer noreferrer" target=3D"_bl=
ank">erik@q32.com</a>&gt; wrote:</div><blockquote class=3D"gmail_quote" sty=
le=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);paddi=
ng-left:1ex">secp236k1 isn&#39;t a hashing algo.=C2=A0 =C2=A0your BIP needs=
 about 10 more pages<br>and some degree of technical merit.<br><br>i sugges=
t you start here:<br><br><a rel=3D"noreferrer noreferrer noreferrer norefer=
rer noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer" href=
=3D"https://en.bitcoin.it/wiki/Proof_of_burn" target=3D"_blank">https://en.=
bitcoin.it/wiki/Proof_of_burn</a><br><a rel=3D"noreferrer noreferrer norefe=
rrer noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer nore=
ferrer" href=3D"https://bitcointalk.org/index.php?topic=3D225690.0" target=
=3D"_blank">https://bitcointalk.org/index.php?topic=3D225690.0</a><br><br>p=
roof-of-burn is a nice alternative to proof-of-work.=C2=A0 =C2=A0i always<b=
r>suspected that, if designed correctly, it could be a proven<br>equivalent=
.=C2=A0 =C2=A0you could spin up a fork of bitcoin that allows aged,<br>burn=
ed, coins instead of POW that would probably work just fine.<br><br>- erik<=
br><br>On Thu, Mar 11, 2021 at 11:56 AM Lonero Foundation via bitcoin-dev<b=
r>&lt;<a rel=3D"noreferrer noreferrer noreferrer noreferrer noreferrer nore=
ferrer noreferrer noreferrer noreferrer" href=3D"mailto:bitcoin-dev@lists.l=
inuxfoundation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org=
</a>&gt; wrote:<br>&gt;<br>&gt; Hi, I have submitted the BIP Pull Request h=
ere: <a rel=3D"noreferrer noreferrer noreferrer noreferrer noreferrer noref=
errer noreferrer noreferrer noreferrer noreferrer" href=3D"https://github.c=
om/bitcoin/bips/pull/1084" target=3D"_blank">https://github.com/bitcoin/bip=
s/pull/1084</a><br>&gt;<br>&gt; Hoping to receive a BIP # for the draft pri=
or to development/reference implementation.<br>&gt;<br>&gt; Best regards, A=
ndrew<br>&gt;<br>&gt; On Mon, Mar 8, 2021, 6:40 PM Lonero Foundation &lt;<a=
 rel=3D"noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer n=
oreferrer noreferrer noreferrer" href=3D"mailto:loneroassociation@gmail.com=
" target=3D"_blank">loneroassociation@gmail.com</a>&gt; wrote:<br>&gt;&gt;<=
br>&gt;&gt; Hi, here is the list to the BIP proposal on my own repo: <a rel=
=3D"noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer noref=
errer noreferrer noreferrer noreferrer" href=3D"https://github.com/Mentors4=
EDU/bip-amkn-posthyb/blob/main/bip-draft.mediawiki" target=3D"_blank">https=
://github.com/Mentors4EDU/bip-amkn-posthyb/blob/main/bip-draft.mediawiki</a=
><br>&gt;&gt; Can I submit a pull request on the BIPs repo for this to go i=
nto draft mode? Also, I think this provides at least some more insight on w=
hat I want to work on.<br>&gt;&gt;<br>&gt;&gt; Best regards, Andrew<br>&gt;=
&gt;<br>&gt;&gt; On Sat, Mar 6, 2021, 10:42 AM Lonero Foundation &lt;<a rel=
=3D"noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer noref=
errer noreferrer noreferrer" href=3D"mailto:loneroassociation@gmail.com" ta=
rget=3D"_blank">loneroassociation@gmail.com</a>&gt; wrote:<br>&gt;&gt;&gt;<=
br>&gt;&gt;&gt; [off-list]<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; Okay. I will do =
so and post the link here for discussion before doing a pull request on BIP=
&#39;s repo as the best way to handle it.<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; B=
est regards, Andrew<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; On Sat, Mar 6, 2021, 10=
:21 AM Ricardo Filipe &lt;<a rel=3D"noreferrer noreferrer noreferrer norefe=
rrer noreferrer noreferrer noreferrer noreferrer noreferrer" href=3D"mailto=
:ricardojdfilipe@gmail.com" target=3D"_blank">ricardojdfilipe@gmail.com</a>=
&gt; wrote:<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; As said before, you are=
 free to create the BIP in your own repository<br>&gt;&gt;&gt;&gt; and brin=
g it to discussion on the mailing list. then you can do a PR<br>&gt;&gt;&gt=
;&gt;<br>&gt;&gt;&gt;&gt; Lonero Foundation via bitcoin-dev<br>&gt;&gt;&gt;=
&gt; &lt;<a rel=3D"noreferrer noreferrer noreferrer noreferrer noreferrer n=
oreferrer noreferrer noreferrer noreferrer" href=3D"mailto:bitcoin-dev@list=
s.linuxfoundation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.=
org</a>&gt; escreveu no dia s=C3=A1bado,<br>&gt;&gt;&gt;&gt; 6/03/2021 =C3=
=A0(s) 08:58:<br>&gt;&gt;&gt;&gt; &gt;<br>&gt;&gt;&gt;&gt; &gt; I know Ethe=
reum had an outlandishly large percentage of nodes running on AWS, I heard =
the same thing is for Bitcoin but for mining. Had trouble finding the artic=
le online so take it with a grain of salt. The point though is that both se=
rvers and ASIC specific hardware would still be able to benefit from the cr=
yptography upgrade I am proposing, as this was in relation to the disinfran=
chisemet point.<br>&gt;&gt;&gt;&gt; &gt;<br>&gt;&gt;&gt;&gt; &gt; That said=
, I think the best way to move forward is to submit a BIP pull request for =
a draft via GitHub using BIP #2&#39;s draft format and any questions people=
 have can be answered in the reqeust&#39;s comments. That way people don&#3=
9;t have to get emails everytime there is a reply, but replies still get se=
en as opposed to offline discussion. Since the instructions say to email bi=
tcoin-dev before doing a bip draft, I have done that. Since people want to =
see the draft beforehand and it isn&#39;t merged manually anyways, I think =
it is the easiest way to handle this.<br>&gt;&gt;&gt;&gt; &gt;<br>&gt;&gt;&=
gt;&gt; &gt; I&#39;m also okay w/ continuing the discussion on bitcoin-dev =
but rather form a discussion on git instead given I don&#39;t want to accid=
entally impolitely bother people given this is a moderated list and we alre=
ady established some interest for at least a draft.<br>&gt;&gt;&gt;&gt; &gt=
;<br>&gt;&gt;&gt;&gt; &gt; Does that seem fine?<br>&gt;&gt;&gt;&gt; &gt;<br=
>&gt;&gt;&gt;&gt; &gt; Best regards, Andrew<br>&gt;&gt;&gt;&gt; &gt;<br>&gt=
;&gt;&gt;&gt; &gt; On Fri, Mar 5, 2021, 7:41 PM Keagan McClelland &lt;<a re=
l=3D"noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer nore=
ferrer noreferrer noreferrer" href=3D"mailto:keagan.mcclelland@gmail.com" t=
arget=3D"_blank">keagan.mcclelland@gmail.com</a>&gt; wrote:<br>&gt;&gt;&gt;=
&gt; &gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&gt; &gt; A large portion of BTC is a=
lready mined through AWS servers and non-asic specific hardware anyways. A =
majority of them would benefit from a hybrid proof, and the fact that it is=
 hybrid in that manner wouldn&#39;t disenfranchise currently optimized mini=
ng entities as well.<br>&gt;&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&=
gt; My instincts tell me that this is an outlandish claim. Do you have supp=
orting evidence for this?<br>&gt;&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt;&gt; =
&gt;&gt; Keagan<br>&gt;&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&gt; O=
n Fri, Mar 5, 2021 at 3:22 PM Lonero Foundation via bitcoin-dev &lt;<a rel=
=3D"noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer noref=
errer noreferrer noreferrer" 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;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt; Actua=
lly I mentioned a proof of space and time hybrid which is much different th=
an staking. Sorry to draw for the confusion as PoC is more commonly used th=
en PoST.<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt; There is a way to make PoC crypto=
graphically compatible w/ Proof of Work as it normally stands: <a rel=3D"no=
referrer noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer =
noreferrer noreferrer noreferrer" href=3D"https://en.wikipedia.org/wiki/Pro=
of_of_space" target=3D"_blank">https://en.wikipedia.org/wiki/Proof_of_space=
</a><br>&gt;&gt;&gt;&gt; &gt;&gt;&gt; It has rarely been done though given =
the technological complexity of being both CPU compatible and memory-hard c=
ompatible. There are lots of benefits outside of the realm of efficiency, a=
nd I already looked into numerous fault tolerant designs as well and what o=
thers in the cryptography community attempted to propose. The actual argume=
nt you have only against this is the Proof of Memory fallacy, which is only=
 partially true. Given how the current hashing algorithm works, hard memory=
 allocation wouldn&#39;t be of much benefit given it is more optimized for =
CPU/ASIC specific mining. I&#39;m working towards a hybrid mechanism that f=
ixes that. BTW: The way Bitcoin currently stands in its cryptography still =
needs updating regardless. If someone figures out NP hardness or the haltin=
g problem the traditional rule of millions of years to break all of Bitcoin=
&#39;s cryptography now comes down to minutes. Bitcoin is going to have to =
eventually radically upgrade their cryptography and hashing algo in the fut=
ure regardless. I want to integrate some form of NP complexity in regards t=
o the hybrid cryptography I&#39;m aiming to provide which includes a polyno=
mial time algorithm in the cryptography. More than likely the first version=
 of my BTC hard fork will be coded in a way where integrating such complexi=
ty in the future only requires a soft fork or minor upgrade to its chain.<b=
r>&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt; In regards=
 to the argument, &quot;As a separate issue, proposing a hard fork in the h=
ashing algorithm will invalidate the enormous amount of capital expenditure=
 by mining entities and disincentivize future capital expenditure into mini=
ng hardware that may compute these more &quot;useful&quot; proofs of work.&=
quot;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt; A l=
arge portion of BTC is already mined through AWS servers and non-asic speci=
fic hardware anyways. A majority of them would benefit from a hybrid proof,=
 and the fact that it is hybrid in that manner wouldn&#39;t disenfranchise =
currently optimized mining entities as well.<br>&gt;&gt;&gt;&gt; &gt;&gt;&g=
t;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt; There are other reasons why a cryptogra=
phy upgrade like this is beneficial. Theoretically one can argue BItcoin is=
n&#39;t fully decentralized. It is few unsolved mathematical proofs away fr=
om being entirely broken. My goal outside of efficiency is to build cryptog=
raphy in a way that prevents such an event from happening in the future, if=
 it was to ever happen. I have various research in regards to this area and=
 work alot with distributed computing. I believe if the BTC community likes=
 such a proposal, I would single handedly be able to build the cryptographi=
c proof myself (though would like as many open source contributors as I can=
 get :)<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt; A=
nyways just something to consider. We are in the same space in regards to w=
hat warrants a shitcoin or the whole argument against staking.<br>&gt;&gt;&=
gt;&gt; &gt;&gt;&gt; <a rel=3D"noreferrer noreferrer noreferrer noreferrer =
noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer" href=3D"=
https://hackernoon.com/ethereum-you-are-a-centralized-cryptocurrency-stop-t=
elling-us-that-you-arent-pi3s3yjl" target=3D"_blank">https://hackernoon.com=
/ethereum-you-are-a-centralized-cryptocurrency-stop-telling-us-that-you-are=
nt-pi3s3yjl</a><br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&g=
t;&gt; Best regards,=C2=A0 Andrew<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;<br>&gt;&=
gt;&gt;&gt; &gt;&gt;&gt; On Fri, Mar 5, 2021 at 4:11 PM Keagan McClelland &=
lt;<a rel=3D"noreferrer noreferrer noreferrer noreferrer noreferrer norefer=
rer noreferrer noreferrer noreferrer" href=3D"mailto:keagan.mcclelland@gmai=
l.com" target=3D"_blank">keagan.mcclelland@gmail.com</a>&gt; wrote:<br>&gt;=
&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt; It is im=
portant to understand that it is critical for the work to be &quot;useless&=
quot; in order for the security model to be the same. If the work was usefu=
l it provides an avenue for actors to have nothing at stake when submitting=
 a proof of work, since the marginal cost of block construction will be les=
sened by the fact that the work was useful in a different context and there=
fore would have been done anyway. This actually degrades the security of th=
e network in the process.<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>&gt;&gt;&=
gt;&gt; &gt;&gt;&gt;&gt; As a separate issue, proposing a hard fork in the =
hashing algorithm will invalidate the enormous amount of capital expenditur=
e by mining entities and disincentivize future capital expenditure into min=
ing hardware that may compute these more &quot;useful&quot; proofs of work.=
 This is because any change in the POW algorithm will be considered unstabl=
e and subject to change in the future. This puts the entire network at even=
 more risk meaning that no entity is tying their own interests to that of t=
he bitcoin network at large. It also puts the developers in a position wher=
e they can be bribed by entities with a vested interest in deciding what th=
e new &quot;useful&quot; proof of work should be.<br>&gt;&gt;&gt;&gt; &gt;&=
gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt; All of these things make t=
he Bitcoin network worse off.<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br>&gt;&=
gt;&gt;&gt; &gt;&gt;&gt;&gt; Keagan<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;<br=
>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt; On Fri, Mar 5, 2021 at 1:48 PM Lonero Fo=
undation via bitcoin-dev &lt;<a rel=3D"noreferrer noreferrer noreferrer nor=
eferrer noreferrer noreferrer noreferrer noreferrer noreferrer" href=3D"mai=
lto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_blank">bitcoin-dev@li=
sts.linuxfoundation.org</a>&gt; wrote:<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;=
&gt;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt; Also in regards to my other e=
mail, I forgot to iterate that my cryptography proposal helps behind the ef=
ficiency category but also tackles problems such as NP-Completeness or Halt=
ing which is something the BTC network could be vulnerable to in the future=
. For sake of simplicity, I do want to do this BIP because it tackles lots =
of the issues in regards to this manner and can provide useful insight to t=
he community. If things such as bigger block height have been proposed as h=
ard forks, I feel at the very least an upgrade regarding the hashing algori=
thm and cryptography does at least warrant some discussion. Anyways I hope =
I can send you my BIP, just let me know on the preferred format?<br>&gt;&gt=
;&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt; Bes=
t regards, Andrew<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&=
gt; &gt;&gt;&gt;&gt;&gt; On Fri, Mar 5, 2021, 10:12 AM Lonero Foundation &l=
t;<a rel=3D"noreferrer noreferrer noreferrer noreferrer noreferrer noreferr=
er noreferrer noreferrer noreferrer" href=3D"mailto:loneroassociation@gmail=
.com" target=3D"_blank">loneroassociation@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;&g=
t;&gt; Hi, this isn&#39;t about the energy efficient argument in regards to=
 renewables or mining devices but a better cryptography layer to get the mo=
st out of your hashing for validation. I do understand the arbitrariness of=
 it, but do want to still propose a document. Do I use the Media Wiki forma=
t on GitHub and just attach it as my proposal?<br>&gt;&gt;&gt;&gt; &gt;&gt;=
&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; Best regards,=
 Andrew<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; &g=
t;&gt;&gt;&gt;&gt;&gt; On Fri, Mar 5, 2021, 10:07 AM Devrandom &lt;<a rel=
=3D"noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer noref=
errer noreferrer noreferrer" href=3D"mailto:c1.devrandom@niftybox.net" targ=
et=3D"_blank">c1.devrandom@niftybox.net</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;&g=
t; Hi Ryan and Andrew,<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>=
&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; On Fri, Mar 5, 2021 at 5:42 A=
M Ryan Grant via bitcoin-dev &lt;<a rel=3D"noreferrer noreferrer noreferrer=
 noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer" href=3D=
"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_blank">bitcoin-de=
v@lists.linuxfoundation.org</a>&gt; wrote:<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;<b=
r>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;=C2=A0 =C2=A0<a rel=3D"n=
oreferrer noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer=
 noreferrer noreferrer noreferrer" href=3D"https://www.truthcoin.info/blog/=
pow-cheapest/" target=3D"_blank">https://www.truthcoin.info/blog/pow-cheape=
st/</a><br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;=C2=A0 =C2=A0 =
=C2=A0&quot;Nothing is Cheaper than Proof of Work&quot;<br>&gt;&gt;&gt;&gt;=
 &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;=C2=A0 =C2=A0 =C2=A0on | 04 Aug 2015<br>&g=
t;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&gt=
;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; Just=
 to belabor this a bit, the paper demonstrates that the mining market will =
tend to expend resources equivalent to miner reward.=C2=A0 It does not prov=
e that mining work has to expend *energy* as a primary cost.<br>&gt;&gt;&gt=
;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt;=
&gt;&gt; Some might argue that energy expenditure has negative externalitie=
s and that we should move to other resources.=C2=A0 I would argue that the =
negative externalities will go away soon because of the move to renewables,=
 so the point is likely moot.<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&=
gt;<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt; ______________________________=
_________________<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt; bitcoin-dev mail=
ing list<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt;&gt;&gt; <a rel=3D"noreferrer nore=
ferrer noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer no=
referrer" href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_=
blank">bitcoin-dev@lists.linuxfoundation.org</a><br>&gt;&gt;&gt;&gt; &gt;&g=
t;&gt;&gt;&gt; <a rel=3D"noreferrer noreferrer noreferrer noreferrer norefe=
rrer noreferrer noreferrer noreferrer noreferrer noreferrer" href=3D"https:=
//lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev" target=3D"_blank"=
>https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev</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; bitcoin-de=
v mailing list<br>&gt;&gt;&gt;&gt; &gt;&gt;&gt; <a rel=3D"noreferrer norefe=
rrer noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer nore=
ferrer" href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_bl=
ank">bitcoin-dev@lists.linuxfoundation.org</a><br>&gt;&gt;&gt;&gt; &gt;&gt;=
&gt; <a rel=3D"noreferrer noreferrer noreferrer noreferrer noreferrer noref=
errer noreferrer noreferrer noreferrer noreferrer" href=3D"https://lists.li=
nuxfoundation.org/mailman/listinfo/bitcoin-dev" target=3D"_blank">https://l=
ists.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a><br>&gt;&gt;&gt;&g=
t; &gt;<br>&gt;&gt;&gt;&gt; &gt; __________________________________________=
_____<br>&gt;&gt;&gt;&gt; &gt; bitcoin-dev mailing list<br>&gt;&gt;&gt;&gt;=
 &gt; <a rel=3D"noreferrer noreferrer noreferrer noreferrer noreferrer nore=
ferrer noreferrer noreferrer noreferrer" href=3D"mailto:bitcoin-dev@lists.l=
inuxfoundation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org=
</a><br>&gt;&gt;&gt;&gt; &gt; <a rel=3D"noreferrer noreferrer noreferrer no=
referrer noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer"=
 href=3D"https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev" ta=
rget=3D"_blank">https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-=
dev</a><br>&gt;<br>&gt; _______________________________________________<br>=
&gt; bitcoin-dev mailing list<br>&gt; <a rel=3D"noreferrer noreferrer noref=
errer noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer" hr=
ef=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_blank">bitco=
in-dev@lists.linuxfoundation.org</a><br>&gt; <a rel=3D"noreferrer noreferre=
r noreferrer noreferrer noreferrer noreferrer noreferrer noreferrer norefer=
rer noreferrer" href=3D"https://lists.linuxfoundation.org/mailman/listinfo/=
bitcoin-dev" target=3D"_blank">https://lists.linuxfoundation.org/mailman/li=
stinfo/bitcoin-dev</a></blockquote></div></blockquote><br><br><br>=C2=A0</b=
lockquote></div></blockquote></div></blockquote><br><br><br>=C2=A0
</blockquote></div>
</blockquote></div>

--0000000000009c7a7105bdb0820d--