Skip to main content

All these Forks and nothing to eat - yet!

It seems that October of 2017 will be the month of the Fork.   After recently surviving the first Segwit fork a couple months ago, which led to Bitcoin Cash, we now face another "Fork" on October 25th which will create Bitcoin Gold.

I use the term "Fork" lightly there because it isn't really a fork, instead it is an air-drop.  That is to say the BTC code isn't really forking like it did for Segwit, but instead on October 25th Bitcoin Gold will magically appear for anyone that holds any BTC.

Not much is known about Bitcoin Gold other than it's main purpose is to put more power in the hands of the small minors at the expense of the big mining farms.  Bitcoin Gold will be able to be mined on simple home based PC hardware, whereas regular BTC requires custom build ASIC mining rigs.

There is also a big Ethereum (ETH) fork coming in a few days on about October 15th (on block 4,370,000).  That is a true fork and will be the launch of the Byzantium upgrade to ETH.  The Byzantium upgrades sound good and should be good for ETH.  They are generally aimed at speeding up transactions, making the entire network "lighter" and adding security to smart contracts.

As always, there is a chance of a new forked version of ETH like what occurred in the past when ETC (Ethereum Classic) was created, but most big miners and exchanges seem to be on board with this fork and therefore a split is unlikely to occur.

Then we have the Segwit2 Fork in November.  That is the continuation of the Segwit fork that started all the ruckus at the end of the summer over any BTC fork in the first place.

So what does all this mean to you as a Cryto-currency holder?  Well it might explain why ETH has been stuck around $300 for quite a while.  A lot of people are waiting to see the fork go off without a hitch before the price runs up.

Also, the Bitcoin Gold fork might explain the depressed price in Alt coins recently as a lot of people are selling Alts at any price in order to hold as much BTC as they can at the time of the air-drop.  The more BTC you hold at that time the more BTC Gold you will get.

Here's a couple articles that I think do a good job of summing up the various forks and what to be looking out for:

Bitcoin Gold:
https://cointelegraph.com/news/will-bitcoin-gold-return-power-to-ordinary-users

Upcoming Forks and Alt coin future pricing:
https://www.cointelegraph.com/news/with-5000-bitcoin-price-in-sight-whats-to-come-for-altcoins


Comments

Popular posts from this blog

Troubleshooting a Discourse Update on DigitalOcean: Resolving Unresolvable Errors

For the past three years, I've maintained a Discourse server on a DigitalOcean Droplet. Recently, I decided to update it with some of the latest Discourse features. What I anticipated to be a straightforward update process turned into several days of frustrating setbacks. The version of Discourse I was running was already three years old, so I assumed that running the built-in "Update" feature would suffice. However, after clicking the update button, the progress bar sluggishly crawled forward over the next half hour, only to display the dreaded message: "Error – Update Failed." The logs provided little to no help, but based on my experience with other software updates via GIT, I suspected that the failure might be due to the repository head still being called "Master." In recent years, there has been a shift away from using "Master" as the repository head, with "Main" becoming the preferred term. Despite trying several methods ...

Ethereum Merge - So What?

Artwork by Steven Grundy The long awaited Ethereum "Merge" is finally upon us.  I've heard people say "So what".   So what?  I think they don't understand the implications of the merge.  Either that or they really are betting against Ethereum. I think this upgrade is probably the biggest thing for Ethereum since smart contracts first came out.  This change has the possibility of upsetting the apple cart in terms of Ethereum and BTC.  That's a big claim, but I really think it's possible. The Ethereum Merge has been set for the week of September 19th, 2022.  The merge is when the Ethereum execution layer will be joined with the new proof of stake consensus layer.  What does that mean and why should I care? What it means is that Ethereum will be changing from an energy intensive Crypto coin like all others to a 99% more efficient crypto coin like only a few have done.  Right now Ethereum is mined just like BTC and a host of other Crypto cur...

Yelp api via Coldfusion and oAuth

What should have been a fairly easy implementation turned into several frustrating hours. I was using the old Yelp API that is accessed simply by passing your yelp key in the url. But, I wanted to take advantage of some of the new functionality only available in their API version 2.0. Unfortunately Yelp API v2 requires an oAuth key/signature type access. Having already written similar code to access the Amazon web services with a signature I thought this would be a simple as reusing some existing code. Man was I wrong. Turns out a "correctly" implemented version of oAuth is much less tolerant than AWS is. Simple things, such as what characters in the URL must be encoded, invalidated the Yelp signature. After much searching and screwing around with various proposed implementations it became clear that the easiest and best implementation was to use the Java library provided by Yelp and simply access it from Coldfusion. To make this process easier I've consolidated th...