Skip to content

Latest commit

 

History

History
43 lines (24 loc) · 2.17 KB

File metadata and controls

43 lines (24 loc) · 2.17 KB

P14 ETH - Overview

1 Definition

Bitcoin and Ethereum are two major cryptocurrencies.

name definition unit
Bitcoin (BTC) decentralized currency (known as blockchain 1.0) Satoshi
Ethereum (ETH) decentralized contract (known as blockchain 2.0) Wei

2 Optimization of ETH compared to BTC

Ethereum has made improvements to Bitcoin's operational issues in system design:

  • Shortened block generation time from 10 minutes to just over ten seconds and designed a consensus mechanism based on the GHOST protocol.

  • Changed mining puzzle: Bitcoin's is computationally intensive for hash value calculation with specialized mining equipment. Ethereum's is memory hard to resist ASIC chips. Future change will replace proof of work with proof of stake.

In addition, Ethereum supports smart contracts.

3 How decentralized contract is inspired?

  • After the success of Bitcoin, people further think about what else we can decentralize.

  • Bitcoin replaced government functions with technical means like cryptography and consensus mechanisms.

  • Ethereum replaced government judicial means with technical means to maintain the effectiveness of contracts.

  • The contract can be implemented by code placed on the blockchain. Through the immutability of the blockchain, the effectiveness of the contract can be guaranteed. Some contracts with simple and clear logic can be written as smart contracts but not all.

4 What are the benefits of decentralized currency and contracts?

  • Faster cross-border transfer speed: Decentralized currency like Bitcoin has an advantage in cross-border transfers compared to legal tender as it is faster despite some imperfections.

  • Smart contracts are immutable: everyone must execute according to the code rules, ensuring that contract participants cannot default.

5 Remaining course content

  • Ethereum's data structure and consensus mechanism;

  • Mining algorithms, including the currently used proof of work and the future proof of stake;

  • Smart contracts.