Skip to content

Commit c016f63

Browse files
committed
revert last commit
1 parent 3a58b5c commit c016f63

File tree

1 file changed

+6
-0
lines changed
  • Intro-to-blockchain-and-ethereum/intro-to-blockchain

1 file changed

+6
-0
lines changed

Intro-to-blockchain-and-ethereum/intro-to-blockchain/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@ A blockchain is an append-only ledger shared across many computers (nodes). Unli
22

33
On public blockchains (some blockchains are private), identical copies of this ledger are widely replicated, and nodes accept new data only if it satisfies the network’s consensus rules.
44

5+
## How blockchains work
56

7+
At a high level, three parts cooperate: an execution layer that deterministically turns transactions into state changes, a consensus mechanism that orders blocks and decides what becomes canonical, and data availability/state so everyone can fetch and verify the data. When these are aligned, immutability is the practical outcome and rewriting history becomes economically prohibitive.
8+
9+
### Consensus mechanism
10+
11+
A consensus mechanism is how the network agrees on the next valid block. For example, **proof-of-stake**, where validators bond capital and can be slashed, and or **proof-of-work**, where miners prove computational effort.
612

713
### Execution Layer
814

0 commit comments

Comments
 (0)