DEV Community

Cover image for Why do we trust blockchain as a technology?
Mojtaba khodami
Mojtaba khodami

Posted on

Why do we trust blockchain as a technology?

Blockchain is a young tech introduced by “Satoshi Nakamoto” as a decentralized, distributed and cryptographically hashed tamper-proof ledger! (Wait, what?)

THIS ARTICLE WAS FIRST PUBLISHED ON @MJTBKH ON MEDIUM

Simply explained, it’s a new database architecture in which the data is cryptographically hashed and stored on various hosts also called “nodes” in the world of blockchain and cryptography. Blockchain stores data on entities called block; each block has a signature or hash which is unique and is an identicator specific to that block.
The data being a bitcoin transaction in our case is picked by the node (better say miner) and evaluated to see if data is consisted of valid transactions. Then if it’s valid, the miner will sign it (hash it) to be emitted to all other nodes present in network.
Hashes generated by bitcoin blockchain algorithm (SHA-256) are 64-digit hexadecimal numbers, highly randomized and unpredictable; meaning you can’t guess what will be the hash of a block going to be mined containing 2000 transactions, unless you calculate the hash. Neither you can’t guess the outcome of adding 1 more transaction or replacing 1 with other.
The hash generated for a specific data will always be the same and it can’t be reversed, meaning you wouldn’t know what the actual data was even if you have the hash. A phenomenon named “Avalanche effect” makes the hashes so unpredictable; meaning the hash for “hello, world” will be totally different from the hash for “Hello, world”.

sha-256 hash of “hello, world”: 09ca7e4eaa6e8ae9c7d261167129184883644d07dfba7cbfbc4c8a2e08360d5b
Enter fullscreen mode Exit fullscreen mode
sha-256 hash of “Hello, world” : 4ae7c3b6ac0beff671efa8cf57386151c06e58ca53a78d83f36107316cec125f
Enter fullscreen mode Exit fullscreen mode

Try your self: hashing tool

In addition to transactions, there multiple other parameters involved in generating a hash; one them being the hash of previous block. Miner should pick a bunch of transactions and get the hash of previous mined block and begin generating as many hashes as possible until it finds a hash which is equal or less then a hexadecimal number indicated by the blockchain it self. This number is called “difficulty of network”, calculated by the blockchain based on the number of current miners (hashing power) active in the network.
Now imagine a dumb miner trying to manipulate a block in the blockchain mined 2 years ago by adding a fake transaction to the block. By doing so, the previous hash of block becomes invalid. No he mines a new hash for that block, but here comes the Avalanche effect; the hash of next block becomes invalid too, and in a chain reaction the hash of blocks mined after the manipulated block become invalid. Now let’s imagine our fool friend has mined new hash for every block, it’s now time to emit the blocks and their hashed to other nodes in the network. The blockchain has now to decide the healthy chain, and here comes the “Consensus protocol”, all other healthy nodes/miners reject the emitted chain and since the majority of nodes in the blockchain are going to reject the new manipulated chain, the process of manipulating the blockchain fails. The distribution and decentrality of blockchain avoids it to relay on one central copy of the whole network which demonstrates what is right and what is not. This is the tamper-proof nature of blockchain that gives us trust.

Simple example to better understand blockchain

Imagine a small city without any banks, where people rely on 7 accountants to record their transactions. Each accountant is responsible to record the list of transaction in his ledger and by the end of day, other 6 accountants will write a copy of the list in their own ledger.
Thus, there are 7 copies of all transactions since the day 1 in the city. Whenever someone is going to send a transaction for another citizen, accountant is responsible to see if the person has enough balance to do the transaction, and if so, the accountant approves the transaction. When other accountants are going to record the list generated by the other accountant, they'll be also verifying if the transactions recorded by the responsible accountant are valid.
This is a simple example of a non-digital, non-cryptographically hashed distributed ledger. Using blockchain we can achieve an even more secure distributed ledger to keep transaction data and avoid fraud.

Top comments (0)