Blockchain Generation

( 9 users )

BlockChain Generation

The transaction data are written as blocks. Each new block is chained to the earlier block, except the first block. Blocks are chained based on the chronology of timestamp. Blocks are added to the main chain only after obtaining consensus from the peer nodes. If no consensus arrived, those blocks get orphaned and stay away from the main chain. This activity of Blockchain formation is better explained in figure 2.1. The green square is the parent block or the first block. The ones in black color are the blocks in the main chain and alive. The purple ones are orphaned and discarded blocks.

Blockchain Formation simplified
Figure.2.1. Blockchain Formation simplified

Hashing

Hashing is a mapping operation of creating a shortcode for a stretch of string, using a mapping function. Generally used for generating a key or coding the original data. After hashing the data gets transformed. Such transformed value has many names like hash value, digest, hash code, key, etc., depending on the application. The function used in generating the hash value is called the hash function. It is a chosen function for mapping. The hash function is chosen keeping the three key characteristics in mind, i.e. Easy to Compute, Uniform distribution over the data and fewer collisions in the mapping process. Figure 2.2 shows the hash value generation with two different hash functions.

In DBMS, hashing used for generating Index, so that records can be accessed faster. In Blockchain, hashing is used for generating a cryptographic digital signature for the block. Blockchain uses fixed-length output hash. This means irrespective of the size of the transaction data, the hash output generated by the function is of a particular length as decided by the designer of the application. This concept makes hacking difficult thus enhancing security and immutability. Further, blocks can be easily located using the hash value as an index, as each block gets a unique hash. Hashing is a mapping function and a complex mathematical function. Hence hashing is computational resource intensive.

Hashing Examples
Figure.2.2. Hashing Examples

Nonce and Markel Tree

NONCE – An acronym for “Number only used Once”. In Cryptocurrency Applications, Nonce is a number added to the hashed block to meet the defined difficulty level of work. A nonce is a number, the miners of Cryptocurrency solve for and show proof of work in the network. In Commercial applications, Nonce serves the purpose of Token.

MERKLE TREE – It is a data structure also called Binary Hash Tree. Merkle tree is used to encode the Blockchain data efficiently and securely. Merkle tree allows the user to verify any particular transaction without having the necessity to go through the whole Blockchain. Thus Merkle tree enhances the efficiency of Blockchain. The Merkle tree diagram in Figure 2.3 provides a good understanding of its formation.

Markel Tree
Figure.2.3. Markel Tree (Reprinted from https://commons.wikimedia.org/wiki/File:Bitcoin_Block_Data.svg#filelinks | Licence CC-BY- AS-3.0)

Blocks Formation

As seen from figure 2.4, a block in a Blockchain has four components, namely, Hash of the previous block, Transaction root value (Merkle root which contains the hash of all the transactions/records of the current block), Timestamp for block creation and the Nonce. Every new block is created with these four components and chained to the previous block. As blocks get added, the Blockchain grows. From figure 2.4, it can be inferred that only new blocks can be added and chain cannot be broken. Already created blocks cannot be altered. If ever such a necessity arises, such modifications will have to be done by way of new transactions satisfying the necessitated corrections. This characteristic is called non-tamperability.

Blockchain Formation
Figure 2.4. Blockchain Formation (Reprinted from https://commons.wikimedia.org/wiki/File:Bitcoin_Block_Data.svg#filelinks | Licence CC-BY- AS-3.0)

It is to be noted that the definition of a transaction is "Unit of Work". Work is done in many steps of sub-transactions. These sub-transactions form the leaves of the Merkle tree. The depth of the Merkle tree depends on the number of leaves. A hash is generated for each leave. Each two hash is rehashed at the next level until the root is reached. The Merkle root is the mother of all hashes in the block.

Note that the hash of the previous block is one of the components for current clock formation. This ensures immutability. i.e no block can be inserted out of order. Timestamp provides verifiability that the blocks are in chronological time order. Nonce ensures that the work defined is done. Merkle root packages the sub-transactions securely using an overall hash.

Thus Blockchain inherits the characteristics of Security, Immutability, Traceability, and Verifiability. These characteristics of Blockchain increase the trust in whatever is done. Further, a group of individuals who have never met could do business online, cooperatively in a system that is inbuilt with trust against cheating.

Database Vs. Blockchain Technology Transactions

We have been discussing transactions for a while. Nobody can fail to recollect transactions of DBMS. Therefore a comparison between DBMS operations and Blockchain Operations is done here. But one has to remember that the data handling methods are entirely different approaches between the two and neither one is to replace the other. A Blockchain may be a database but a database is not a Blockchain.

#Traditional Database TransactionBlockchain Transation
1Data is maintained as recordsData is inbuilt into the blocks
2Create, Modify, Update and Delete are operations that can be carried out by clients on Database. Read / Write feasible on any recordBlockchain is append-only structure. A block created becomes a read-only block; write operations feasible only for new block creation.
3Operates on Centralised Client / Server Concept. The users are called Nodes/ Clients.Operates on Peer to Peer Decentralised Network architecture. All nodes are generally equal.
4Centralized LedgerDistributed Ledger
5With Authentication, a client can modify data in the Database.Any addition requires voting by peers
6A Designated authority authenticates client credentials. If any compromise happens in the authority, data may also be compromised.Peers do verification and validation. This consensus mechanism makes it difficult to tamper data.
7Designated authority is the administratorMost of the nodes participate in the administrator role.
8DBMS software is accountable for the Integrity of the Database. Transparency is a user's rights-based issue.Public verifiability provides integrity and transparency
9Database meant for data handlingBlockchain is more suited for process orientation i.e. when the process of transaction is more important
10DBMS provides snapshot almost to a momentBlockchains provide status “now” and maintain an archive
11Difficult to trace how the changes to a record have happenedWrite to a block is Possible to be verified at any time

The lifecycle of Blockchain Transaction

Let us analyze the steps involved in a blockchain transaction with an example. Let us say B sells his Bike to A. A, B, RTO office, Insurance Company, Banker are members of the Blockchain application network. The chronological steps involved in the transaction and block creation are:

  1. B puts up his terms of sale for Bike.
  2. This is created as a block n and broadcast to all members
  3. A shows his interest to purchase bike along with his price bid
  4. The banker validates A’s bank balance
  5. The RTO validates the ownership of B over the Bike
  6. The Insurance Company confirms the life of bike insurance
  7. When all have approved, the money gets transferred from A to B
  8. Money added to B’s account
  9. The digital contract for Sale created
  10. A confirms receipt of Vehicle
  11. Records newly created at RTO of new vehicle ownership
  12. Insurance company changes the name of the owner

All the above steps get into a block as transaction details. The sequence essentially depends on the set rules for transaction and block creation. Hence the sequence of sub-transactions may vary from application to application. Finally, the block is created and added to the chain. We call this as the life cycle of a Blockchain transaction. The simplicity here is that everyone involved is part of the network and the bike sale happens with full transparency.

If the same bike sale has to happen over a non-blockchain model, we know the hassles and run around one has to go through all the third parties and the time required along with the stress. The risk and stress are in getting the ownership document verified, the insurance details verified for the claims, the financial status of A getting verified. Explaining those steps is outside the scope here.

To Do

* Note : These actions will be locked once done and hence can not be reverted.

1. Track your progress [Earn 200 points]

2. Provide your ratings to this chapter [Earn 100 points]

0
Key concepts of Blockchain
Blockchain Characteristics
Note : At the end of this chapter, there is a ToDo section where you have to mark this chapter as completed to record your progress.