Ethereum 101

Introducing Ethereum



The World Computer In 2013, a cryptocurrency researcher named Vitalik Buterin wrote a whitepaper proposing a wider conceptual version of the blockchain. Buterin labeled his concept as Ethereum, and suggested that it would provide greater utility by allowing block data to include executable code which peers could run for each other in a complete computing environment.

Ethereum Virtual Machine (EVM)

The Ethereum Virtual Machine is the collective system made up of hundreds of thousands of individual nodes around the world.
The state of the EVM is maintained communally by all nodes, making it essentially tamper-proof.

Boy Genius

Vitalik Buterin proposed the initial concept of Ethereum at the age of 21. // Forbes.com

BIRTH OF THE MACHINE

Because Ethereum is a complete virtual machine, and not simply a data block like Bitcoin, it is possible to store more complex information, and even manipulate it. In particular, when a new address is created on the network, as shown above, the network uses a state transition event to track the changes.

The State Machine

In the Ethereum Virtual Machine (EVM), a blockchain tracks the innerworkings, and allows all nodes to participate in the computational process. The network collectively tracks signed payloads from participants, and composes transactions which they collectively agree to. When a transaction is approved, the EVM undergoes a collective state change, and all nodes update their personal record.

Rather than the blockchain existing as a ledger of transactions, Buterin proposed that the chain might instead serve as a source of communal truth for the results of computations. In this new version, the network of peers collectively transitioned from one state to another, and the ledger recorded these transitions communally. The rules of this transition and functionality are encompassed in the consensus rules, which you may want to explore on Github. Collectively, the group of peers are referred to as the Ethereum Virtual Machine (EVM).

Aside: Turing Completeness

When a computer is not limited to the execution of a particular type of computation task, we call this Turing complete. Another way of referring to this state is computational universality, because broadly speaking, all Turing complete machines are interchangeable.

In a decentralized context, this means that any code submitted to the network can be computed reliably by every node. The EVM is thereby able to operate as a single computer even though it runs on separate devices all around the world.

Bitcoin vs. Ethereum

While Ethereum and Bitcoin are similar, the rules of the EVM have been constructed with different priorities in mind.
  1. Ethereum's blocks are limited in computational effort, while Bitcoin's blocks are limited in storage space.
  2. New Ethereum blocks are mined every 10-19 seconds, whereas new Bitcoin blocks are mined every ten minutes
  3. In Ethereum, transaction fees are paid in Gas, which can be purchased using Ether.

Don't worry - we'll cover all of ths in due time.

GROWTH OF THE NETWORK

In the weeks and months after the release of the whitepaper, developers across the Bitcoin ecosystem and from other communities quickly proposed a myriad of additional applications and options for this new version of the blockchain. The subjects that emerged now provide the framework for decentralization and Web 3. Distributed computing and storage are expected to provide a new internet which is governed by a group of collaborating peers.

PREVENTING SPAM

Because the EVM is an open system, there is a substantial risk of a rogue actor attempting to subvert the network by running code which repeats endlessly or otherwise monopolizes the computational power of the network. In order to prevent this, a pricing unit known as ”gas” must be paid in order to run computations. Gas is purchased at the time a smart contract is triggered, and must be paid with Ether. Because the price of gas can vary independently from the price of Ether, and will increase when many parties try to purchase it simultaneously, this provides an economic disincentive to prevent spam within the network.

GOVERNANCE

Just like in the early days of Bitcoin, Ethereum’s initial direction took shape over forums and via Github. As the project progressed, the non-profit Ethereum Foundation was established to provide oversight of the growth of the fledgling currency.

Once a proposed idea has gained momentum through community discussion, it can be formalized as an Ethereum Request for Comment (ERC). If an ERC is adopted by the community, a clearly defined Ethereum Implementation Proposal (EIP) can be created, and developers can begin to collaborate to build the new feature. Once a formal EIP has been produced, funding is sometimes allocated in the form of a bounty from the Foundation or other parties within the Ethereum community.

Because the Ethereum Virtual Machine is Turing complete, many new features are built using smart contracts, and rarely require changes to the core Ethereum protocol. In these cases, the ERC process will mainly define a standard which developers can use to increase interoperability of their code, as we’ll discuss in the next module.