블록체인 기초 (Blockchain Basics)

분산 원장 기술 입문.

A blockchain is a database where data is stored in blocks that are chained together. Each block contains a hash of itself and the previous block, ensuring immutability. It is typically decentralized, meaning consensus is reached by a global node network. In 2026, the focus has moved from simple ledgers to modular storage and data availability layers.

        graph LR
  Center["블록체인 기초 (Blockchain Basics)"]:::main
  Pre_cryptography["cryptography"]:::pre --> Center
  click Pre_cryptography "/terms/cryptography"
  Pre_distributed_systems["distributed-systems"]:::pre --> Center
  click Pre_distributed_systems "/terms/distributed-systems"
  Rel_layer_1["layer-1"]:::related -.-> Center
  click Rel_layer_1 "/terms/layer-1"
  Rel_distributed_ledger_technology_dlt["distributed-ledger-technology-dlt"]:::related -.-> Center
  click Rel_distributed_ledger_technology_dlt "/terms/distributed-ledger-technology-dlt"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧒 5살도 이해할 수 있게 설명

여러 명이 똑같이 나눠 갖는 '디지털 장부'라고 생각하면 됩니다. 누군가 내용을 몰래 바꾸려 해도 다른 사람들의 장부와 비교하면 바로 들통나기 때문에, 모두가 안심하고 사용할 수 있어요.

🤓 Expert Deep Dive

Core tech includes Cryptographic [Hashing](/ko/terms/cryptographic-hashing) (SHA-256), [Public-Key Cryptography](/ko/terms/public-key-cryptography) (ECDSA), and P2P Networking. The system solves the Byzantine Generals Problem using economic incentives. Modern developments separate data availability from execution to solve the scaling trilemma.

🔗 관련 용어

📚 출처