-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
976 lines (548 loc) · 32.7 KB
/
index.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>freetrader's blog</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="stylesheet" href="local.css" type="text/css" />
</head>
<body>
<div class="page">
<div class="pageheader">
<div class="header">
<span>
<span class="parentlinks">
</span>
<span class="title">
freetrader's blog
</span>
</span>
</div>
</div>
<div class="sidebar">
<div><div class="calendar"><table class="month-calendar">
<tr>
<th class="month-calendar-arrow"></th>
<th class="month-calendar-head" colspan="5">May 2018</th>
<th class="month-calendar-arrow"></th>
</tr>
<tr>
<th class="month-calendar-day-head Sunday" title="Sunday">S</th>
<th class="month-calendar-day-head Monday" title="Monday">M</th>
<th class="month-calendar-day-head Tuesday" title="Tuesday">T</th>
<th class="month-calendar-day-head Wednesday" title="Wednesday">W</th>
<th class="month-calendar-day-head Thursday" title="Thursday">T</th>
<th class="month-calendar-day-head Friday" title="Friday">F</th>
<th class="month-calendar-day-head Saturday" title="Saturday">S</th>
</tr>
<tr>
<td class="month-calendar-day-noday Sunday"> </td>
<td class="month-calendar-day-noday Monday"> </td>
<td class="month-calendar-day-nolink Tuesday">1</td>
<td class="month-calendar-day-nolink Wednesday">2</td>
<td class="month-calendar-day-nolink Thursday">3</td>
<td class="month-calendar-day-this-day Friday"><a href="./posts/misc/welcome.html" title="welcome">4</a></td>
<td class="month-calendar-day-future Saturday">5</td>
</tr>
<tr>
<td class="month-calendar-day-nolink Sunday">6</td>
<td class="month-calendar-day-nolink Monday">7</td>
<td class="month-calendar-day-nolink Tuesday">8</td>
<td class="month-calendar-day-nolink Wednesday">9</td>
<td class="month-calendar-day-nolink Thursday">10</td>
<td class="month-calendar-day-nolink Friday">11</td>
<td class="month-calendar-day-nolink Saturday">12</td>
</tr>
<tr>
<td class="month-calendar-day-nolink Sunday">13</td>
<td class="month-calendar-day-nolink Monday">14</td>
<td class="month-calendar-day-nolink Tuesday">15</td>
<td class="month-calendar-day-nolink Wednesday">16</td>
<td class="month-calendar-day-nolink Thursday">17</td>
<td class="month-calendar-day-nolink Friday">18</td>
<td class="month-calendar-day-nolink Saturday">19</td>
</tr>
<tr>
<td class="month-calendar-day-nolink Sunday">20</td>
<td class="month-calendar-day-nolink Monday">21</td>
<td class="month-calendar-day-nolink Tuesday">22</td>
<td class="month-calendar-day-nolink Wednesday">23</td>
<td class="month-calendar-day-nolink Thursday">24</td>
<td class="month-calendar-day-nolink Friday">25</td>
<td class="month-calendar-day-nolink Saturday">26</td>
</tr>
<tr>
<td class="month-calendar-day-nolink Sunday">27</td>
<td class="month-calendar-day-nolink Monday">28</td>
<td class="month-calendar-day-nolink Tuesday">29</td>
<td class="month-calendar-day-nolink Wednesday">30</td>
<td class="month-calendar-day-nolink Thursday">31</td>
<td class="month-calendar-day-noday Friday"> </td>
<td class="month-calendar-day-noday Saturday"> </td>
</tr>
</table>
</div></div>
<p><a href="./archives.html">Archives</a></p>
<p><a href="./tags.html">Tags</a>:</p>
<ul class="list">
<li><span class="smallPC"><a href="./tags/ABC.html">ABC</a></span>
</li><li><span class="smallestPC"><a href="./tags/BTCfork.html">BTCfork</a></span>
</li><li><span class="biggestPC"><a href="./tags/Bitcoin.html">Bitcoin</a></span>
</li><li><span class="smallestPC"><a href="./tags/HFP0.html">HFP0</a></span>
</li><li><span class="smallestPC"><a href="./tags/Unlimited.html">Unlimited</a></span>
</li><li><span class="smallestPC"><a href="./tags/fork.html">fork</a></span>
</li><li><span class="bigPC"><a href="./tags/musings.html">musings</a></span>
</li><li><span class="smallestPC"><a href="./tags/personal.html">personal</a></span>
</li><li><span class="bigPC"><a href="./tags/weekly.html">weekly</a></span>
</li></ul>
</div>
<div id="pagebody">
<div id="content">
<div class="feedlink">
</div>
<div class="inlinepage">
<div class="inlineheader">
<span class="header">
<a href="./posts/misc/welcome.html">welcome</a>
</span>
</div>
<div class="inlinecontent">
<p><a href="./images/freetrader_blog_avatar.png"><img src="./images/freetrader_blog_avatar.png" width="45" height="45" alt="freetrader avatar image" class="img" /></a></p>
<h1>Welcome</h1>
<p>I'm freetrader (ftrader on <a href="https://github.com/ftrader/">github</a>, <a href="https://gitgud.io/u/ftrader">gitgud</a> and <a href="https://www.reddit.com/user/ftrader">Reddit</a>), a fervent fan of freedom - in software, markets, currencies and communication.</p>
<p>Right now, I'm very much interested in successful on-chain scaling of Bitcoin, mostly through the hard fork of <a href="https://www.bitcoincash.org">Bitcoin Cash</a>.
Bitcoin Cash arose out of the desire to <a href="https://bitcoinforks.org">hard fork Bitcoin</a> as a way of upgrading and getting more capacity and growth back into Bitcoin.
I share the same vision for Bitcoin as peer-to-peer electronic cash for the world as initially put forth by the <a href="https://www.reddit.com/r/btcfork">BTCfork</a> community.</p>
<p>I can usually be found in the development Slacks of BTCfork and various Bitcoin implementations <a href="#footnote1">[1]</a>, on Bitcoin- and cryptocurrency-related forums <a href="#footnote2">[2]</a>, and you can contact me by email if you need.</p>
<p>My PGP key ID is <code>C07A7C345E86B06C</code>, and the fingerprint is <code>CC32 9A4F B0E4 1392 8295 05FE C07A 7C34 5E86 B06C</code>.</p>
<p>I'm a member of <a href="https://www.bitcoinunlimited.info">Bitcoin Unlimited</a> and my BU signing address is <a href="https://bitco.in/forum/threads/bitcoin-unlimited-membership-join-us.208/page-3#post-7903"><code>1Libre7MGkCXr7pUAEbwihCR9X4quYAyQ4</code></a>.</p>
<p>I'm on <a href="https://www.memo.cash">Memo</a> - my profile is <a href="https://memo.cash/profile/1EDtyAxn8zh9qBdWxdCyhY7AFzLcHvFrtE">https://memo.cash/profile/1EDtyAxn8zh9qBdWxdCyhY7AFzLcHvFrtE</a> .</p>
<p>Ask for signature proof if you think someone is impersonating me, and please notify me if you find someone pretending to be me.</p>
<hr />
<p><a name="footnote1">[1]</a> btcforks.slack.com, bitcoinclassic.slack.com, bitcoinunlimited.slack.com</p>
<p><a name="footnote2">[2]</a> <a href="https://bitco.in/forum">https://bitco.in/forum</a>, <a href="https://forum.bitcoin.com">https://forum.bitcoin.com</a></p>
<p><a name="footnote3">[3]</a> Why hard forks? <a href="https://medium.com/@octskyward/on-consensus-and-forks-c6a050c792e7#.4kqubk8rx">https://medium.com/@octskyward/on-consensus-and-forks-c6a050c792e7#.4kqubk8rx</a></p>
</div>
<div class="inlinefooter">
<span class="pagedate">
Posted <span class="date">Fri 04 May 2018 11:30:00 CEST</span>
</span>
<span class="tags">
Tags:
<a href="./tags/personal.html" rel="tag">personal</a>
</span>
</div>
</div>
<div class="inlinepage">
<div class="inlineheader">
<span class="header">
<a href="./posts/bitcoin_abc/20171101-bitcoin-abc-0007-1.html">freetrader's ABC dispatches - volume 7</a>
</span>
</div>
<div class="inlinecontent">
<h1>Bare signature of Bitcoin ABC release 0.16.0 (1 Nov 2017)</h1>
<p>Text:</p>
<pre><code>I confirmed the following checksums for the Bitcoin ABC 0.16.0 release
using gitian:
freetrader (1Libre7MGkCXr7pUAEbwihCR9X4quYAyQ4)
ca4ee570d8cef5a6c55eea23ec4308f8c34893bdd0348a29b66fdaf5e78d6ed3 bitcoin-abc-0.16.0-aarch64-linux-gnu-debug.tar.gz
113227460cf22253a1bd7a55a61c1c4d4911957ab33e32a8c6cd92ccfb47d4bb bitcoin-abc-0.16.0-aarch64-linux-gnu.tar.gz
70dac39460cccee49e7f2d74a5ec7e2466e5c85c6a242fe3ef6c3d617f8c2798 bitcoin-abc-0.16.0-arm-linux-gnueabihf-debug.tar.gz
2da1940875040295cb4bcab544cc06588c8c02d22af7a0934f48ca825f655727 bitcoin-abc-0.16.0-arm-linux-gnueabihf.tar.gz
2ca0006033ff51f3a44913d65ff60dab375d1d7e80397b481d47b552135fc69d bitcoin-abc-0.16.0-i686-pc-linux-gnu-debug.tar.gz
0ebf9a8af97afa51150230e4d6fdaf09280ef4149effdc61afb1a9e3552f776c bitcoin-abc-0.16.0-i686-pc-linux-gnu.tar.gz
807d32b200a6bbe843b58270e7f4a818223a62a6565058851866ef6eee82b5f8 bitcoin-abc-0.16.0-osx64.tar.gz
322875dc0730c6d49e72a273e637d747dc5a30d80486c88102b79a552e532198 bitcoin-abc-0.16.0-osx-unsigned.dmg
9231b4dfea679991d318602f505c7cc258913b1198c9b90cfddc1c2b01c51ad8 bitcoin-abc-0.16.0-osx-unsigned.tar.gz
4baf7e14347f4f2c9b8bc592660e72311b74d97cb09254155ae38cead6d37136 bitcoin-abc-0.16.0-x86_64-linux-gnu-debug.tar.gz
132912e57d28adc0dee8ad2beb6322e873310aa0c826b92f8c89a9b14c5b321a bitcoin-abc-0.16.0-x86_64-linux-gnu.tar.gz
343721d497dee4e8e8eeefa91d572b8bb1559786c57c88f20c80fb8cb0237ae6 src/bitcoin-abc-0.16.0.tar.gz
Due to a build problem I was unable to confirm the checksums for the
Windows build through gitian.
</code></pre>
<p>Signature:</p>
<pre><code>HIVAuz6jL6FWHNY0ycQfUnipVvbgX2GDlwZtlz8Q+zyGri+CPgvPOnORn9hByiUkMjhn8lDvzz32/nFnrV/Y0I4=
</code></pre>
<p>It should be possible to confirm this bare signature by pasting the text from "I confirm" until the final
"src/bitcoin..." line into your client and verify using the signature which follows the text.
The bare signature should work in any Bitcoin-Qt client, such as ABC.</p>
<p>An update of this post will be released once I am able to verify the checksums for the Windows build.</p>
<p>Thanks to all who made this release possible and are supporting Bitcoin ABC.</p>
<h2>Further links:</h2>
<p>Official ABC website: <a href="https://www.bitcoinabc.org/">https://www.bitcoinabc.org/</a></p>
<p>Official ABC Twitter: <a href="https://twitter.com/Bitcoin_ABC">https://twitter.com/Bitcoin_ABC</a></p>
<p>Subreddit: <a href="https://www.reddit.com/r/BitcoinABC/">https://www.reddit.com/r/BitcoinABC/</a></p>
<p>Forum: <a href="https://bitco.in/forum/forums/bitcoin-abc.25/">https://bitco.in/forum/forums/bitcoin-abc.25/</a></p>
<p>Support slack (currently at BTCfork): self-invite via <a href="https://btcforks.signup.team/">https://btcforks.signup.team/</a></p>
</div>
<div class="inlinefooter">
<span class="pagedate">
Posted <span class="date">Wed 01 Nov 2017 04:06:00 CET</span>
</span>
<span class="tags">
Tags:
<a href="./tags/ABC.html" rel="tag">ABC</a>
<a href="./tags/Bitcoin.html" rel="tag">Bitcoin</a>
</span>
</div>
</div>
<div class="inlinepage">
<div class="inlineheader">
<span class="header">
<a href="./posts/weekly_musings/20170902-weekly-musing-022-1.html">freetrader's weekly musings - volume 22</a>
</span>
</div>
<div class="inlinecontent">
<h1>Weekly musing #22 - Troubleshooting, buildbot</h1>
<h2>Bitcoin ABC</h2>
<p>I found a partial solution to <a href="https://github.com/Bitcoin-ABC/bitcoin-abc/issues/80">ABC issue 80</a>,
which is a problem of pre-fork transactions showing up with wrong dates after import of private keys from older
wallets.</p>
<p>Transaction dates are assigned using a selection of heuristics during a re-scan, some of which produce very strange (wrong) results.
A workaround to some of these problems was described by user 'dooglus' in <a href="https://github.com/bitcoin/bitcoin/issues/6662">Core issue 6662</a>.
However, it does not solve all problems. I'm looking at the wallet code to familiarize myself with it.</p>
<p>Other small fixes are being made in preparation for next release.</p>
<h2>buildbot</h2>
<p>I've looked at the <a href="https://buildbot.net/">buildbot</a> software, which deadalnix mentioned a few times.</p>
<p>It seems a great fit for ABC's (and the wider Bitcoin Cash clients) testing needs.</p>
<p>We could set up a structure of master servers and people could contribute worker instances on various platforms.</p>
<p>I am in the process of setting up some hosted servers (a build master and worker for starters) which should be able to run builds and perform tests.</p>
<p>Incidentally, the ZCash project is also using buildbot, with Amazon Web Services. We might look at that later on.
For the beginning I think we can run workers on our own dedicated servers.</p>
<h2>Bitcoin Unlimited</h2>
<p>Bitcoin Unlimited has tagged BUcash v1.1.1.1 , which should be out shortly.
A great set of changes.</p>
<p>For some reason my OSX gitian build for BU is broken (SSL certificate problems with curl).</p>
</div>
<div class="inlinefooter">
<span class="pagedate">
Posted <span class="date">Sat 02 Sep 2017 18:30:00 CEST</span>
</span>
<span class="tags">
Tags:
<a href="./tags/Bitcoin.html" rel="tag">Bitcoin</a>
<a href="./tags/musings.html" rel="tag">musings</a>
<a href="./tags/weekly.html" rel="tag">weekly</a>
</span>
</div>
</div>
<div class="inlinepage">
<div class="inlineheader">
<span class="header">
<a href="./posts/weekly_musings/20170827-weekly-musing-021-1.html">freetrader's weekly musings - volume 21</a>
</span>
</div>
<div class="inlinecontent">
<p>[Due to a publishing error this musing didn't make it onto the blog in regular scheduled manner.]</p>
<h1>Weekly musing #21 - The slow rise of Bitcoin Cash</h1>
<h2>Return of Bitcoin use cases</h2>
<p>Bitcoin Cash has a huge advantage in that it is able to absorb a large amount of actual economic use by inviduals and small to medium sized businesses which have been driven away by the high fees on Bitcoin.</p>
<p>In a short time, we have seen interesting use cases return, including tip bots on Reddit, and the content platform <a href="https://yours.org">Yours.org</a> which intends to build an innovative micropayment-based service has also moved back from Litecoin to Bitcoin (Cash). Fairlay have stated that they plan to provide tipping integration services with big social media platforms like Facebook and Twitter. This will greatly help to get people interested and using the currency, which is our number one priority right now.</p>
<p>Other important use cases like coin mixing services are bound to make a comeback on Bitcoin Cash as long as fees remain low.
This could give the currency a privacy / fungibility advantage over legacy Bitcoin.</p>
<h2>Bitcoin Cash Emergency Difficulty Adjustment (EDA)</h2>
<p>There has been much discussion around the topic of the Emergency Difficulty Adjustment (EDA).</p>
<p>My view agrees largely with that of deadalnix as he expressed on the bitcoin-ml mailing list.</p>
<p>The EDA has ensured the survival of the chain up to now, but it is not optimal and not intended to be used repeatedly in the longer term. Unless there is a definitive and permanent majority swing of hashpower to the Cash chain, a replacement will need to be ready (but not necessarily deployed) in the next weeks.</p>
<p>A number of proposals have been made on the mailing list.
These need to be carefully studied, simulated and compared, before a choice is made for the next hard fork.
Whatever is chosen needs to demonstrate that it is clearly superior to Bitcoin's existing algorithm and to the EDA, and does not leave the chain more vulnerable to attacks.</p>
<p>Realistically, indications are that the fight over hashpower is going to take a while, and the outcome is uncertain.
Being in a permanent competition for hashpower with another coin is not desirable, even if it may be survivable.</p>
<h2>Discussion picks up on bitcoin-ml mailing list</h2>
<p>It is refreshing to see volume pick up on the bitcoin-ml mailing list, with various people, including the developers of the Cash-supporting clients, contributing to the discussion.
Naturally, the topics revolve around EDA, the further roadmap and hard fork planning.</p>
<p>Like most others, I think we should give businesses a chance to become familiar and comfortable with Bitcoin Cash before we fork again.
Unless there is an emergency requirement to fork, I would hope we can have a period of stabilisation for at least six months.</p>
</div>
<div class="inlinefooter">
<span class="pagedate">
Posted <span class="date">Sun 27 Aug 2017 23:59:59 CEST</span>
</span>
<span class="tags">
Tags:
<a href="./tags/Bitcoin.html" rel="tag">Bitcoin</a>
<a href="./tags/musings.html" rel="tag">musings</a>
<a href="./tags/weekly.html" rel="tag">weekly</a>
</span>
</div>
</div>
<div class="inlinepage">
<div class="inlineheader">
<span class="header">
<a href="./posts/weekly_musings/20170820-weekly-musing-020-1.html">freetrader's weekly musings - volume 20</a>
</span>
</div>
<div class="inlinecontent">
<h1>Weekly musing #20 - Let the market speak</h1>
<h2>Bitcoin Cash</h2>
<p>It's inspiring to see how well Bitcoin Cash has done in this last week.</p>
<p>The market has certainly run with it.</p>
<p>It's unclear whether the temporary spike in transactions that led to the mining of a nearly 8MB block was an attempt to attack the network, or simply a test of transaction capacity.
It certainly was not a scheduled test by any of the main implementations, so naturally it put everyone on alert.</p>
<p>Regardless of intent, it showed the network was more than capable of absorbing such loads, and may have contributed to increasing confidence among users and those watching on the sidelines.</p>
<p>If it was intended as an attack, it's safe to say it backfired spectacularly.</p>
<p>Price rises brought parity in terms of mining profitability with the legacy chain.</p>
<p>A further difficulty reduction by about 40 percent boosted that profitability advantage (at least momentarily) to upwards of 150%.
Miners have certainly paid attention, with large new pools joining to mine the chain.</p>
<p>All signs point to continued support and growth.
We shall need to let the market speak, and listen carefully to what it says.</p>
<h2>Bitcoin ABC</h2>
<p>I believe we need to open the public discussion to introduce a separate address scheme in this coming week.</p>
<p>Reproducing the import-related wallet issues has proved difficult, and work is still ongoing.</p>
<h2>References</h2>
</div>
<div class="inlinefooter">
<span class="pagedate">
Posted <span class="date">Sun 20 Aug 2017 23:59:59 CEST</span>
</span>
<span class="tags">
Tags:
<a href="./tags/Bitcoin.html" rel="tag">Bitcoin</a>
<a href="./tags/musings.html" rel="tag">musings</a>
<a href="./tags/weekly.html" rel="tag">weekly</a>
</span>
</div>
</div>
<div class="inlinepage">
<div class="inlineheader">
<span class="header">
<a href="./posts/weekly_musings/20170813-weekly-musing-019-1.html">freetrader's weekly musings - volume 19</a>
</span>
</div>
<div class="inlinecontent">
<h1>Weekly musing #19 - A new beginning and a new hope</h1>
<h2>Bitcoin Cash</h2>
<p>This week has seen adoption by the first merchants such as <a href="https://www.keyois.com">Keyois</a>, the manufacturers of the Keyois Capsule (a stylish and secure storage device for paper wallets), and <a href="https://www.keys4coins.com">Keys4Coins</a>, a PC games store.
<a href="https://rocketr.net/">Rocketr</a>'s new Bitcoin Cash payment option is a great solution for merchants wishing to get on board.</p>
<p>Reddit users are also setting up a <a href="https://np.reddit.com/r/btc/comments/6teod7/we_need_changetip_back_but_based_on_bitcoin_cash/">tip bot</a> which seems to be progressing nicely.</p>
<p>There is a lot of positive momentum, but the recent price rises in Bitcoin have been stealing some of the excitement.
At the same time, a rise in the Bitcoin transaction backlog due to this market action is putting the spotlight on the shortcomings of the legacy chain.
With every further wave of problems (high fees, erratic/long confirmation times) on Bitcoin, more users will realize that these problems do not need to exist, and that Bitcoin Cash can offer a better future.</p>
<h2>Bitcoin ABC</h2>
<p>As a matter of first priority ABC developers are trying to reproduce and fix issues reported by users.</p>
<p>Several users reported interoperability problems based on the 'bitcoin:' URI scheme being associated with payment on the existing Bitcoin chain.</p>
<p>Discussion about a new URI prefix has converged on 'bitcoincash:' among after some initial to-and-fro on the bitcoin-ml mailing list, Github and other discussion forums.</p>
<p>Bitcoin ABC's next release should support this new scheme, as well as roll out optional support for new network magic.</p>
<p>Some wallet related issues to do with import of BTC private keys and potential problems with long inter-block times are being followed up too.</p>
<p>Next steps will involve enforcing new network magic, cleaning up the logical separation in terms of software package names and resources such as data directory and registry entries.
Also, a new address scheme will need to be coordinated to reduce the chance of accidentally sending coins of the wrong type.</p>
<h2>References</h2>
</div>
<div class="inlinefooter">
<span class="pagedate">
Posted <span class="date">Sun 13 Aug 2017 23:59:59 CEST</span>
</span>
<span class="tags">
Tags:
<a href="./tags/Bitcoin.html" rel="tag">Bitcoin</a>
<a href="./tags/musings.html" rel="tag">musings</a>
<a href="./tags/weekly.html" rel="tag">weekly</a>
</span>
</div>
</div>
<div class="inlinepage">
<div class="inlineheader">
<span class="header">
<a href="./posts/weekly_musings/20170806-weekly-musing-18-1.html">freetrader's weekly musings - volume 18</a>
</span>
</div>
<div class="inlinecontent">
<h1>Weekly musing #18 - After the fork</h1>
<table class="img"><caption>Raising the fork (Iwo Jima)</caption><tr><td><a href="./images/Iwo_Jima-Raise_the_Fork-K7FSBak.jpg"><img src="./images/Iwo_Jima-Raise_the_Fork-K7FSBak.jpg" width="417" height="336" alt="Raising the fork (Iwo Jima)" class="img" /></a></td></tr></table>
<h2>A hard fork and a hard deadline</h2>
<p>August 1 2017 was F-Day.</p>
<p>Bitcoin's first block size upgrade hard fork - a controversial event which some had said could not happen.</p>
<p>Yet, here we are, nearly a week after this significant event which has given birth to a spin-off chain with a bigger (and flexible) block size cap.</p>
<p>Congratulations to all!</p>
<h2>Some lessons emerging</h2>
<p>Though coordination for a hard fork among 4 different client implementations (ABC, BU, Classic and XT) is not entirely easy, it does seem like this fork could not have been a success otherwise. The valuable contributions from every client is what made it a success in the end.</p>
<p>Late-game specification changes led to some consternation, and should better be avoided in future.</p>
<p>A surprisingly large amount of code and tests need cleanup and fixing after a hard fork.</p>
<p>And not everything will go smoothly - bugs will be there (in various implementations) no matter what.
As someone predicted, having multiple client implementations is a good way to save each other's bacon during such events.</p>
<h2>References</h2>
<p>[1] Image of raising fork at Iwo Jima is by Imgur user "totherioters" http://imgur.com/gallery/FGEzb <br></p>
</div>
<div class="inlinefooter">
<span class="pagedate">
Posted <span class="date">Sun 06 Aug 2017 23:59:00 CEST</span>
</span>
<span class="tags">
Tags:
<a href="./tags/Bitcoin.html" rel="tag">Bitcoin</a>
<a href="./tags/musings.html" rel="tag">musings</a>
<a href="./tags/weekly.html" rel="tag">weekly</a>
</span>
</div>
</div>
<div class="inlinepage">
<div class="inlineheader">
<span class="header">
<a href="./posts/weekly_musings/20170730-weekly-musing-017-1.html">freetrader's weekly musings - volume 17</a>
</span>
</div>
<div class="inlinecontent">
<h1>Weekly musing #17 - Prepare to Fork</h1>
<p>Two new ABC releases since last week <img src="./smileys/smile.png" alt=":-)" /></p>
<p>I am extremely happy to see Bitcoin Unlimited, Bitcoin Classic
and Bitcoin XT all join together in preparing UAHF-compatible
versions.</p>
<p>I will try to run them all during this fork, and would encourage
everyone who has a moderately powerful PC to do the same
(use different ports and separate data directories).</p>
<p>That way, even if the UAHF node network is attacked using
zero-day vulnerabilities, there is a chance at least one of your
nodes will stay up.</p>
<p>May the fork be with us!</p>
</div>
<div class="inlinefooter">
<span class="pagedate">
Posted <span class="date">Sun 30 Jul 2017 23:59:00 CEST</span>
</span>
<span class="tags">
Tags:
<a href="./tags/Bitcoin.html" rel="tag">Bitcoin</a>
<a href="./tags/musings.html" rel="tag">musings</a>
<a href="./tags/weekly.html" rel="tag">weekly</a>
</span>
</div>
</div>
<div class="inlinepage">
<div class="inlineheader">
<span class="header">
<a href="./posts/bitcoin_abc/20170729-bitcoin-abc-0006-2.html">freetrader's ABC dispatches - volume 6 (take 2)</a>
</span>
</div>
<div class="inlinecontent">
<h1>Bare signature of sixth Bitcoin ABC binary release (29 July 2017)</h1>
<p>By popular demand, I am providing a "bare" signature instead of the
clearsign signatures produced by my old Armory (people are having
trouble verifying these with other clients).</p>
<p>The following is the data (paste from "I confirm" until the final
"src/bitcoin..." line into your client and verify using the signature
which follows the text. The bare signature should work in any Bitcoin-Qt
client, such as ABC.</p>
<p>Text:</p>
<pre><code>I confirm the following checksums for the Bitcoin ABC 0.14.6 release.
freetrader (1Libre7MGkCXr7pUAEbwihCR9X4quYAyQ4)
0ae6406cd0fed52336739847808232410235873f8276b657458c55a6571713e2 bitcoin-0.14.6-aarch64-linux-gnu-debug.tar.gz
86d8887792214c262d1e38d00991bd7786aeaed13b27fb108349c99c2371a735 bitcoin-0.14.6-aarch64-linux-gnu.tar.gz
c50d4159bcdd2e1935b49f94466db781fa4dfc63d4600c718ccfb2fc13365626 bitcoin-0.14.6-arm-linux-gnueabihf-debug.tar.gz
0f8ad170892da62a5387603b6abd8fafa0242eb932d87a7a51583ddbe1e301a9 bitcoin-0.14.6-arm-linux-gnueabihf.tar.gz
82f8ffe4a76830b7ebe0b5a7ff36e0e22450a313644cc2c5df05a32fd66e2482 bitcoin-0.14.6-i686-pc-linux-gnu-debug.tar.gz
984832d76e0af259691f28f57ae5dee08046fadbe18dbe759153433a7aabcc12 bitcoin-0.14.6-i686-pc-linux-gnu.tar.gz
5543548f2421cffca5aa05b3064883b49f5d523ca56fe05c500fb59f0ab9b217 bitcoin-0.14.6-osx64.tar.gz
478f98966eb5a55b9ef58ca45c6f3301722f616b57211d7a8b11807f301e29a2 bitcoin-0.14.6-osx-unsigned.dmg
1c3a8957a8d061c828b6fdb3abc3734304caa2acb540ccce17cad296bf6cad22 bitcoin-0.14.6-osx-unsigned.tar.gz
c0ed4c451c54bbbc3b516516da07260a69000747f42834b31063ee1ec0ce21b5 bitcoin-0.14.6-win32-debug.zip
9d97163a0b1a86fa0d9e02f347af258df050b0f4880dee72061e56259f2d4d91 bitcoin-0.14.6-win32-setup-unsigned.exe
5bc741ec1d1aba6a1a1a86410d567e3bfc74676bb0ed65c10e3ae8b5fcc6689d bitcoin-0.14.6-win32.zip
d26485323f577a44bef2f0c0dde04e592c71f33b71d30ae1c93faafaf9bcbb5f bitcoin-0.14.6-win64-debug.zip
c75d1b32bd7bb22628aa379aafd6866ed88ddaaf5b5e30897fe11d503126b016 bitcoin-0.14.6-win64-setup-unsigned.exe
d5721b246ff4189da853cd12d8d66b14496d7e64a6ecbb330423488cfc0e116d bitcoin-0.14.6-win64.zip
7a70db3a250df5034a78b1fd1900e792dc0ba9416f519627701633efb0f483a8 bitcoin-0.14.6-win-unsigned.tar.gz
c45ac452497c0a3dd738b9ef3845314c092bbc4c9b6bffaa9b340ebd945deb64 bitcoin-0.14.6-x86_64-linux-gnu-debug.tar.gz
9f37b8ec36a37944b016bbbf07340adb8ba644abb897b2d2e0edeb99ccf709c0 bitcoin-0.14.6-x86_64-linux-gnu.tar.gz
595238e647255265299b0f17dfe0ba37083cf17a926049371da8a4be2a261c59 src/bitcoin-0.14.6.tar.gz
</code></pre>
<p>Signature:</p>
<pre><code>HGvCNoqGY8yvIkylnFZ35EgxPRbLMKoRKyeglda3tvLwjeQ/RdFZd4+hfEcKeq2KO4edw7dFv9qvG29ZpZGeb90=
</code></pre>
<p>Thanks to all who made this release possible and are supporting Bitcoin ABC.</p>
<h2>Further links:</h2>
<p>Official ABC website: <a href="https://www.bitcoinabc.org/">https://www.bitcoinabc.org/</a></p>
<p>Official ABC Twitter: <a href="https://twitter.com/Bitcoin_ABC">https://twitter.com/Bitcoin_ABC</a></p>
<p>Subreddit: <a href="https://www.reddit.com/r/BitcoinABC/">https://www.reddit.com/r/BitcoinABC/</a></p>
<p>Forum: <a href="https://bitco.in/forum/forums/bitcoin-abc.25/">https://bitco.in/forum/forums/bitcoin-abc.25/</a></p>
<p>Support slack (currently at BTCfork): self-invite via <a href="https://btcforks.signup.team/">https://btcforks.signup.team/</a></p>
</div>
<div class="inlinefooter">
<span class="pagedate">
Posted <span class="date">Sat 29 Jul 2017 19:00:00 CEST</span>
</span>
<span class="tags">
Tags:
<a href="./tags/ABC.html" rel="tag">ABC</a>
<a href="./tags/Bitcoin.html" rel="tag">Bitcoin</a>
</span>
</div>
</div>
<div class="inlinepage">
<div class="inlineheader">
<span class="header">
<a href="./posts/bitcoin_abc/20170729-bitcoin-abc-0006-1.html">freetrader's ABC dispatches - volume 6</a>
</span>
</div>
<div class="inlinecontent">
<h1>Signatures of sixth Bitcoin ABC binary release (29 July 2017)</h1>
<p>Linux, OSX and Windows Binaries for the 0.14.6 version have been built by deadalnix and myself using gitian (reproducible builds).</p>
<p>The binaries can be downloaded from <a href="https://download.bitcoinabc.org/0.14.6/">https://download.bitcoinabc.org/0.14.6/</a> .</p>
<pre><code>-----BEGIN BITCOIN SIGNED MESSAGE-----
Comment: Signed by Bitcoin Armory v0.93.2
I confirm the following checksums for the Bitcoin ABC 0.14.6 release.
freetrader (1Libre7MGkCXr7pUAEbwihCR9X4quYAyQ4)
0ae6406cd0fed52336739847808232410235873f8276b657458c55a6571713e2 bitcoin-0.14.6-aarch64-linux-gnu-debug.tar.gz
86d8887792214c262d1e38d00991bd7786aeaed13b27fb108349c99c2371a735 bitcoin-0.14.6-aarch64-linux-gnu.tar.gz
c50d4159bcdd2e1935b49f94466db781fa4dfc63d4600c718ccfb2fc13365626 bitcoin-0.14.6-arm-linux-gnueabihf-debug.tar.gz
0f8ad170892da62a5387603b6abd8fafa0242eb932d87a7a51583ddbe1e301a9 bitcoin-0.14.6-arm-linux-gnueabihf.tar.gz
82f8ffe4a76830b7ebe0b5a7ff36e0e22450a313644cc2c5df05a32fd66e2482 bitcoin-0.14.6-i686-pc-linux-gnu-debug.tar.gz
984832d76e0af259691f28f57ae5dee08046fadbe18dbe759153433a7aabcc12 bitcoin-0.14.6-i686-pc-linux-gnu.tar.gz
5543548f2421cffca5aa05b3064883b49f5d523ca56fe05c500fb59f0ab9b217 bitcoin-0.14.6-osx64.tar.gz
478f98966eb5a55b9ef58ca45c6f3301722f616b57211d7a8b11807f301e29a2 bitcoin-0.14.6-osx-unsigned.dmg
1c3a8957a8d061c828b6fdb3abc3734304caa2acb540ccce17cad296bf6cad22 bitcoin-0.14.6-osx-unsigned.tar.gz
c0ed4c451c54bbbc3b516516da07260a69000747f42834b31063ee1ec0ce21b5 bitcoin-0.14.6-win32-debug.zip
9d97163a0b1a86fa0d9e02f347af258df050b0f4880dee72061e56259f2d4d91 bitcoin-0.14.6-win32-setup-unsigned.exe
5bc741ec1d1aba6a1a1a86410d567e3bfc74676bb0ed65c10e3ae8b5fcc6689d bitcoin-0.14.6-win32.zip
d26485323f577a44bef2f0c0dde04e592c71f33b71d30ae1c93faafaf9bcbb5f bitcoin-0.14.6-win64-debug.zip
c75d1b32bd7bb22628aa379aafd6866ed88ddaaf5b5e30897fe11d503126b016 bitcoin-0.14.6-win64-setup-unsigned.exe
d5721b246ff4189da853cd12d8d66b14496d7e64a6ecbb330423488cfc0e116d bitcoin-0.14.6-win64.zip
7a70db3a250df5034a78b1fd1900e792dc0ba9416f519627701633efb0f483a8 bitcoin-0.14.6-win-unsigned.tar.gz
c45ac452497c0a3dd738b9ef3845314c092bbc4c9b6bffaa9b340ebd945deb64 bitcoin-0.14.6-x86_64-linux-gnu-debug.tar.gz
9f37b8ec36a37944b016bbbf07340adb8ba644abb897b2d2e0edeb99ccf709c0 bitcoin-0.14.6-x86_64-linux-gnu.tar.gz
595238e647255265299b0f17dfe0ba37083cf17a926049371da8a4be2a261c59 src/bitcoin-0.14.6.tar.gz
-----BEGIN BITCOIN SIGNATURE-----
HMP1qGgx9iTWDUnGyDe+ierLNI0REA/NgioRj3n6fqPs2Cok+ruk3Zz0YNEZibNd
NiahwOESZYPJd52oRgEHjTk=
=uvUp
-----END BITCOIN SIGNATURE-----
</code></pre>
<p>Thanks to all who made this release possible and are supporting Bitcoin ABC.</p>
<h2>Further links:</h2>
<p>Official ABC website: <a href="https://www.bitcoinabc.org/">https://www.bitcoinabc.org/</a></p>
<p>Official ABC Twitter: <a href="https://twitter.com/Bitcoin_ABC">https://twitter.com/Bitcoin_ABC</a></p>
<p>Subreddit: <a href="https://www.reddit.com/r/BitcoinABC/">https://www.reddit.com/r/BitcoinABC/</a></p>
<p>Forum: <a href="https://bitco.in/forum/forums/bitcoin-abc.25/">https://bitco.in/forum/forums/bitcoin-abc.25/</a></p>
<p>Support slack (currently at BTCfork): self-invite via <a href="https://btcforks.signup.team/">https://btcforks.signup.team/</a></p>
</div>
<div class="inlinefooter">
<span class="pagedate">
Posted <span class="date">Sat 29 Jul 2017 05:00:00 CEST</span>
</span>
<span class="tags">
Tags:
<a href="./tags/ABC.html" rel="tag">ABC</a>
<a href="./tags/Bitcoin.html" rel="tag">Bitcoin</a>
</span>
</div>
</div>
<p>This blog is powered by <a href="http://ikiwiki.info">ikiwiki</a>.</p>
</div>
</div>
<div id="footer" class="pagefooter">
<div id="pageinfo">
<div id="backlinks">
Links:
<a href="./posts.html">posts</a>
</div>
<div class="pagedate">
Last edited <span class="date">Mon 19 Sep 2016 10:43:01 CEST</span>
<!-- Created <span class="date">Mon 09 May 2016 23:39:24 CEST</span> -->
</div>
</div>
<!-- from freetrader's blog -->
</div>
</div>
</body>
</html>