<aside> 💡 It is highly recommended that you go through all these articles!

</aside>

📚 Blockchain Reading List:

  1. Blockchain for noobs: WTF is The Blockchain? by Mohit Mamoria
  2. Blockchain for beginners: Introduction to blockchain technology by GeeksforGeeks
  3. Blockchain is a paradigm shift in the way we trust by Him Gajria
  4. The Limits to Blockchain Scalability by Vitalik Buterin

📖What is a blockchain?

A blockchain is defined as a P2P¹ distributed ledger² forged by consensus³.

In essence, a blockchain is a distributed database built to log, store and share secure, verified and unmodifiable data.

¹Peer-to-Peer (P2P) Computing

P2P networking is a distributed application architecture that partitions tasks or workloads between peers.

A P2P network is designed around the notion of equal peer nodes simultaneously functioning as both "clients" and "servers" to the other nodes on the network. This model of network arrangement differs from the client–server model where communication is usually to and from a centralized server.

The decentralized nature of P2P networks increases robustness because it removes the single point of failure that can be inherent in a client-server based system. As nodes arrive and demand on the system increases, the total capacity of the system also increases, and the likelihood of failure decreases.

If one peer on the network fails to function properly, the whole network is not compromised or damaged. In contrast, in a typical client–server architecture, clients share only their demands with the system, but not their resources. In this case, as more clients join the system, fewer resources are available to serve each client, and if the central server fails, the entire network is taken down.

In short, it is a system of nodes (computers) powering the entire network acting as both the supplier and consumer of resources, with decentralization as a key feature.

²Distributed Ledger

A ledger is a system containing all the records of a input and output of a process, in the case of cryptocurrencies: transactions.

A distributed ledger is a data structure which is spread across different computing devices.

³Consensus

The purpose of a consensus mechanism is to bring all the nodes in agreement on a single version of the blockchain.