Bitcoin

Bitcoin is the pioneering decentralized cryptocurrency, introduced in 2008 by Satoshi Nakamoto, enabling peer-to-peer value transfer via blockchain technology and a capped supply of 21 million coins.

Bitcoin (BTC) is a decentralized digital currency, operating on a peer-to-peer network without a central bank or single administrator. It was introduced in a 2008 white paper by the pseudonymous entity Satoshi Nakamoto, with its implementation beginning in 2009. Transactions are recorded on a public distributed ledger called a blockchain, secured by cryptographic principles. New bitcoins are generated through a process called mining, which involves solving complex computational puzzles to validate transactions and add new blocks to the chain. This process also serves as the mechanism for introducing new coins into circulation, adhering to a predetermined issuance schedule. The total supply of Bitcoin is capped at 21 million coins, making it a deflationary asset. Key architectural components include the peer-to-peer network for transaction propagation, the blockchain for immutable record-keeping, cryptographic [hashing](/en/terms/cryptographic-hashing) (SHA-256) for block integrity and proof-of-work, and digital signatures (ECDSA) for transaction authentication. The consensus mechanism is Proof-of-Work (PoW), requiring miners to expend computational energy. Trade-offs include high energy consumption for PoW, scalability limitations (transaction throughput), and price volatility. However, its decentralization, censorship resistance, and scarcity are considered significant advantages.

        graph LR
  Center["Bitcoin"]:::main
  Pre_cryptography["cryptography"]:::pre --> Center
  click Pre_cryptography "/terms/cryptography"
  Pre_hashing_algorithms["hashing-algorithms"]:::pre --> Center
  click Pre_hashing_algorithms "/terms/hashing-algorithms"
  Rel_blockchain["blockchain"]:::related -.-> Center
  click Rel_blockchain "/terms/blockchain"
  Rel_mining_crypto["mining-crypto"]:::related -.-> Center
  click Rel_mining_crypto "/terms/mining-crypto"
  Rel_proof_of_work["proof-of-work"]:::related -.-> Center
  click Rel_proof_of_work "/terms/proof-of-work"
  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;

      

🧠 Knowledge Check

1 / 3

🧒 Explain Like I'm 5

Bitcoin is like digital gold that you can send directly to anyone in the world without needing a bank. It's kept safe by a giant, shared digital ledger that everyone can see but no one can change.

🤓 Expert Deep Dive

Bitcoin's architecture is a testament to Nakamoto's synthesis of existing cryptographic and distributed systems research. The UTXO (Unspent Transaction Output) model simplifies state management compared to account-based models, reducing reentrancy risks. Proof-of-Work, specifically the SHA-256d [hash function](/en/terms/hash-function), provides Sybil resistance and economic security, albeit at a substantial energy cost. The difficulty adjustment algorithm ensures a consistent block generation time (approx. 10 minutes) irrespective of network hash rate fluctuations. Transaction fees incentivize miners to include transactions in blocks, acting as a secondary security mechanism and a market for block space. The Merkle [Tree](/en/terms/merkle-tree) structure efficiently verifies transaction inclusion within blocks. Vulnerabilities primarily revolve around 51% attacks (requiring immense capital), potential weaknesses in cryptographic primitives (though SHA-256 is considered robust), and social engineering vectors targeting users. Scalability remains a persistent challenge, addressed by Layer 2 solutions like the Lightning Network, which trade off some decentralization for increased throughput.

🔗 Related Terms

📚 Sources