Blog Posts

How RSA cryptosystem works?

July 23, 2023

The RSA is one of the oldest public-key cryptosystems that is widely used for secure data transmission.

Sending transactions

April 29, 2022

In this post, we will implement a CLI tool to send transactions and have miners include them in the block.

Visualize Blockchain With Graphwiz

December 4, 2021

In this post, we will learn how to use Graphwiz to visualize a blockchain, showing all the blocks in the blockchain and marking the active ones.

Mining Process

November 20, 2021

JSON-RPC is an RPC protocol encoded as JSON. A request is a call to a method provided by the server, and it contains three members: method, params, and id.

Initial Block Download

November 11, 2021

Newer versions of Bitcoin use an approach where a node builds a partial view of the blockchain using block headers only, without downloading full block data.

Node Roles and Handshake Protocol

November 10, 2021

A node role identifies the logic that runs on a node. There are four roles in the LearnCoin P2P network: network routing, full blockchain, miner, and wallet.

Proof of Work and Mining

November 8, 2021

Proof-of-Work is a piece of data that requires significant computation to find but only a small amount of computation to verify as proven. In Bitcoin, miners must find a numeric solution to the SHA-256 hash that meets the difficulty criteria.

Blockchain, Block, and Merkle Tree

November 7, 2021

A blockchain is a distributed list (or a chain) of blocks of transactions. It is distributed across the entire network of nodes.

Hash Functions and Transactions

November 6, 2021

A cryptocurrency, a cryptographic hash function, and anatomy of the transaction, transaction inputs and transaction outputs. What are these?

Let's Build Bitcoin

November 4, 2021

This project aims to teach you how blockchain works at its core, starting with simple concepts and building up to more complex ones.