profile picture

A brief history of Ethereum

Soon after Bitcoin launched ideas around tracking other assets started to emerge. The initial attempts included efforts around forking the Bitcoin codebase to create coin-specific blockchains1. This was a tedious process often taking months or years of development depending on how much the implementation deviated from Bitcoin. Later attempts include colored coins2 where the idea was that certain bitcoins would be repurposed to carry a second meaning. Colored coins would theoretically reduce development time and rely in part on the security of Bitcoin as opposed to competing for the security of its network with Bitcoin.

The early innings

The fundamental insight which the creators of Ethereum had was that Bitcoin was inherently a replicated state machine with a fixed set of transformation rules3 (Σ). The network participants came to consensus by validating each transformation (δ : S  × Σ → S) in sequence until they arrived at the current state (S). Ethereum’s core contribution, originally laid out in the whitepaper, was to define low-level operations for a virtual machine which formed the rules for a valid computation from one state to another. The functionality of such a hypothetical blockchain would be extendible by uploading a bytecode for the virtual machine in a contract creation transaction. Once the bytecode had been added to the replicated state it could be invoked in a contract call transaction instructing the miners to compute a new state by executing the bytestring on the current state. Such extensions would later be branded as smart contracts.

At the start of the sale and for fourteen days the price was set so that one bitcoin bought 2,000 ether. At the end of the 14-day period the amount would decline linearly to a final rate of 1,337 ether, which meant that one ether was worth 0.0007479 bitcoin or about 30 cents at bitcoin prices in September 2014.

To fund the development of Ethereum a pre-sale was conducted where bitcoin holders were invited to exchange their bitcoins for a private key on Ethereum. The initial account state of pre-allocated ether4 would be derived from the amount of bitcoins raised and the private key controlled an address containing an amount of ether proportional to the investor’s share in the pre-sale. The original purpose of ether was to pay for computation on the Ethereum network akin to pre-paid credits with a cloud vendor – giving ether its perceived value (collateral, staking tokens, etc.). During the pre-sale 60 million ether were auctioned off for the equivalent of $18.3 million worth of bitcoins. After a successful deployment of the Olympic testnet, the Frontier mainnet was launched on July 30th 2015.

The smart contract platform

A few years earlier independent developer studio Zynga had released a number of online games on the Facebook platform. After launching in 2009, FarmVille became the most popular game on Facebook’s platform generating hundreds of millions of dollars in revenue. Zynga, attributing much of its early success in marketing and distributing their games to the Facebook platform, started to worry about the risks stemming from Facebook’s ability to change the rules post-factum. This kind of risk, later referred to as platform risk, materialized as Facebook started to pull the rug out from under Zynga’s feet. Ethereum started to attract the attention of regular developers who suddenly had an alternative to the centralized platforms to build on where the rules were encoded from the get-go into the protocol and enforced collectively by a decentralized group of maintainers of the network. As with any public blockchain anyone could add to the security of Ethereum and since any violation of the network rules would have a negative effect on the price of ether, maintainers were incentivized to enforce the rules correctly.

A large portion of our business is dependent upon, and our bookings and revenues are derived from, the Facebook platform, and Facebook in many cases has the unilateral ability to interpret its policies and terms and conditions for applications and developers.5

Tokens were the first class of smart contracts to gain mass adoption. They were a new take on the old idea of altcoins and colored coins. Tokens could be launched in days or weeks reducing development efforts by many orders of magnitude and relied purely on Ethereum for its security. Originally envisioned to track the ownership and transfers of other financial instruments tokens became an asset class by itself in the ICO6 mania of 2017 where teams would collect hundreds of million of dollars worth of ether in a few minutes on the back of a whitepaper outlining the scope and design of the project. The tokens were neither equity nor debt in the capital structure of a company but in many cases were designed to have a closer relationship with the project’s underlying protocol. This included access to it once it was released similar to a prepaid membership token, participation in the governance of the project, or a mechanism to collect fees generated by the protocol. Many of the projects turned out to be blatant scams while others would spend the next couple of years silently researching and building a protocol, a dapp and a community around them slowly accruing value to the tokens to become among the top 20 coins by market cap.

A fork in the road

Theoretically public blockchains can be viewed as a court system with deterministic rulings. Parties can enter into agreements written in code and either cooperatively honor their obligations or submit the terms of the contract to the blockchain which will determine the outcome by executing it — often referred to as Code is Law. A DAO7, implemented as a smart contract, can own funds natively stored on the blockchain and its members, through a governance token, can vote on how how to deploy them. One of the earlier attempts, The DAO, would collect ether from its members in exchange for a governance token. Its objective was to provide a new decentralized business model for organizing both commercial and non-profit enterprises.

On June 17th 2016, The DAO was hacked and 3.6 million ether ($50 Million) were stolen using the first reentrancy attack enabled by a bug in the contract which authorized a third-party “attacker” to invoke its code in an unintended manner and drain the funds of the DAO over a period of days. There was a great community debate whether the attacker was in fact stealing the funds or not since all this third-party did was to invoke clauses of the code which had in fact been written into the contract. Ultimately a decision was made to hardfork8 Ethereum to change the rules so that the stolen funds were returned to a new address which owners could withdraw their ether from — splitting Ethereum into two blockchains with a common history but separate and incompatible futures9. An interesting learning from the DAO hack was that if Code is Law then Community is Supreme Court must be implied. Secondly, the attack, the discussion and ultimately the solution happened in public and even though funds were confiscated from the attacker’s addresses by the community, no state changes were rolled back, preserving the full history. Thirdly, although the Ethereum community was split around the decision both groups would have their way albeit on a different blockchains. This would simply be impossible in other governance contexts without resulting in a war. Blockchain hardforks have since been understood to be a feature – not a bug.

The journey forward

Today Ethereum is alive and well with a large community of both developers and users. DeFi10 currently is the primary driver of usage and adoption and while still in its infancy, DeFi experiments are being conducted which will surely impact the future of financial services. The recent surge in usage has highlighted a major challenge for popular blockchains, namely scalability. Ethereum’s throughput is only around 7 transactions per second globally and the recent surge in usage is filling up block space driving the price of transactions up. Ethereans are already working on Ethereum 2.0 which amongst other things addresses the problem by sharding the blockchain into 1024 blockchains with cross-chain communication between them. Other L211 efforts are already being deployed to alleviate the pain in the meantime.

Gisli


  1. Coin-specific blockchains are usually referred to as altcoins. Namecoin and Litecoin were some of the first altcoins to launch off of a fork of the Bitcoin codebase.↩︎

  2. Mastercoin, rebranded as Omni in 2015, was an early implementation of the colored coin idea.↩︎

  3. Bitcoin Script is a high-level stack based rules engine.↩︎

  4. Ether is the native cryptocurrency of Ethereum↩︎

  5. Zynga: Quarterly report which provides a continuing view of a company’s financial position↩︎

  6. Initial Coin Offering (ICO) is a spin on it’s real-world Initial Public Offering (IPO)↩︎

  7. In the same way blockchains are decentralized state machines, Decentralized Autonomous Organisations (DAO) are decentralized companies.↩︎

  8. Hardfork are backwards-breaking changes to the protocol. The DOA hardfork on GitHub.↩︎

  9. Ethereum Classic.↩︎

  10. Decentralized Finance (DeFi) where the counterparty is a smart contract and users transact in a permissionless manner.↩︎

  11. Layer two (L2) solutions are systems which operate independently of the base layer (Ethereum) but derive their security from it.↩︎

@crypto #ethereum