Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 1.4 KB

01-what-is-blockchain.md

File metadata and controls

24 lines (16 loc) · 1.4 KB
sidebar_position
1

What is Blockchain?

Blockchain is a specific type of database made up of blocks of data, concatenated together to form a chain.

Specifically, new data comes in piece by piece in the form of transactions. Each transaction is added to a block. Each block is chained to the previous block, creating a chronological ordering of data.

While blockchains can store any type of data, the most common use is to produce a ledger: an append-only list of transactions. For example, Bitcoin's blockchain stores all the transactions from one wallet (account) to every other. The balance of each account is a reduce over these transactions.

Blockchains use cryptography and distributed computing algorithms to provide immutability, meaning that data entered cannot be changed after the fact. For Bitcoin, this means that transactions are permanently recorded and viewable to anyone.

Sources {#sources}

<iframe width="560" height="315" src="https://www.youtube.com/embed/SSo_EIwHSd4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> <iframe width="560" height="315" src="https://www.youtube.com/embed/bBC-nXj3Ng4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>