Category Archives: BlockChain

How to Install Hyperledger Explorer & Access Fabric Network

Hyperledgder Explorer is a Blockchain explorer which can be used to view the details on the one or more blockchain network (channels) created using Hyperledger Fabric 1.0. In this post, you will learn about some of the following: Introduction to Hyperledger Explorer App Installation/Setup of Hyperledger Explorer Configure hyperledger explorer for the first network Starting the Explorer App Introduction to Hyperledger Explorer App Hyperledger Explorer is a Nodejs based web app which runs on Node/ExpressJS with MySQL as the backend database. It provides details related Fabric blockchain network (channels) based on configuration provided in the file, blockchain_explorer/config.json. The following represents some of the key details provided by the explorer app vis-a-vis …

Continue reading

Posted in BlockChain, Hyperledger, Tools, Tutorials. Tagged with , , .

Learn to Create Hyperledger Fabric Blockchain with byfn.sh – Part 1

Hyperledger Fabric Blockchain with byfn.sh

Hyperledger Fabric comes up with a script namely byfn.sh which can be used to Build Your First Network (byfn). Hyperledger Fabric script, byfn.sh (found in folder fabric-samples/first-network), can be used to build your first Hyperledger Fabric permissioned blockchain network. As I went about writing the post, it got much longer. Thus, I have split the post into two parts. In the first part, you will learn about some of the following: A quick introduction to some of the following: Installation pre-requisites before getting started with byfn.sh execution Initial configuration prior to executing byfn.sh How to go about executing byfn.sh Deep dive into byfn.sh execution to learn key aspects of building a permissioned blockchain network such …

Continue reading

Posted in BlockChain, Hyperledger, Tutorials. Tagged with , .

Hyperledger Fabric – Are Channels Private Blockchain? (Deep Dive)

hyperledger fabric channels

This article represents Hyperledger Fabric Channels concepts and related details in form of some of the following topics: What are Channels? Hyperledger Fabric Blockchain Network is a channel Channels are private and permissioned Blockchain Channels explained with examples Channels – channel configuration, genesis block Ordering service creates a transaction block per channel Blockchain network is categorized into two broad classes: Public network: Anyone can join this type of network. For example, bitcoin network. Private or permissioned network: A member needs to be authenticated by the assigned membership service provider (identity issuing authority service) for joining and conducting transactions in the network. Hyperledger Fabric can be said to be private or permissioned blockchain. …

Continue reading

Posted in BlockChain, Hyperledger. Tagged with , , .

Hyperledger Fabric – Cryptogen Tool Not Found…Exiting

hyperledger fabric cryptogen tool

This error, Cryptogen Tool Not Found…Exiting occurred when I tried to build the first network by executing byfn.sh script using following commands for the first time after downloading and installing hyperledger fabric platform binaries/components and fabric samples: The following screenshot represents the error: Why the Error – Cryptogen Tool Not Found This error occurs, primarily, due to the reason that cryptogen tool can be not be found in the path. The path to cryptogen tool needs to be set to PATH variable. This can be confirmed by checking the logs of the script execution by putting the following code (set -x) in the beginning of the file, byfn.sh, as shown below. Note that the code set-x is used to expand …

Continue reading

Posted in BlockChain, Hyperledger. Tagged with , .

Hyperledger Fabric Transaction Flow (Interview Q&A & Notes)

hyperledger fabric transaction flow

This article represents concepts in relation to, how does a transaction flow in Hyperledger Fabric Blockchain network, in form of notes and interview questions and answers. Those appearing for Hyperledger Fabric interview would find the questions and notes very useful for quick brush-up. Hyperledger Fabric is a platform for distributed ledger solutions. The following represents key participants in Hyperledger Fabric Blockchain network who are involved in the transaction flow right from the initiation of transaction proposal to committing a transaction into the distributed ledger. Application: Gets involved in following capacity: Sends the transaction proposal to endorsing peers Receives the transaction results from endorsing peers Broadcasts the transaction message to ordering service Endorsing peers: Do some of the …

Continue reading

Posted in BlockChain, Hyperledger, Interview questions. Tagged with , , , .

Hyperledger Fabric Distributed Ledger – Interview Questions / Notes

hyperledger fabric distributed ledger interview questions

This article represents practice test / interview questions and answers and revision notes on Hyperledger Fabric Distributed Ledger**. These questions and answers can prove to be very helpful to check your knowledge on Hyperledger Fabric if you are appearing for Hyperledger Fabric interview in near future. Hyperledger Fabric is an open-source framework for building distributed ledger solutions. The distributed ledger is maintained by every peer participating in the network. It is stored as a combination of a transaction logs and a world state database (key-value pairs). Revision Notes – Hyperledger Fabric Distributed Ledger Concepts The distributed ledger is a combination of following: Blockchain to store immutable ordered/sequenced records; It is stored in form of transaction logs and stored in peers’ file system (local …

Continue reading

Posted in BlockChain, Hyperledger, Interview questions. Tagged with , , .

Hyperledger Fabric – Difference between World State DB & Transaction Logs

distributed ledger world state database transaction logs

This article highlights key differences between World State Database (DB) and Transaction Logs which comprise the Hyperledger Fabric Distributed Ledger. Hyperledger Fabric Distributed Ledger can be said to be a combination of World State Database (DB) and transaction logs. It requires invocation of chaincode (smart contracts) for interacting with distributed ledgers (world state DB and transaction logs). The transactions are stored in the block in the same sequence in which they occured and this is responsibility of ordering service to ensure the ordering sequence of transactions in the block. World State Database Transaction Logs Stores the chain’s state information in form of key-value pairs Stores chain of blocks consisting of transaction details in form of sequence of transactions Stored in database such as LevelDB …

Continue reading

Posted in BlockChain, Hyperledger. Tagged with , .

Hyperledger Fabric Introduction – Interview Questions / Revision Notes

hyperledger fabric introduction

This article represents practice test and revision notes on Introduction to Hyperledger Fabric. These questions and answers can prove to be very helpful to check your knowledge of Hyperledger Fabric if you are appearing for Hyperledger Fabric interview in near future. Hyperledger Fabric is an open-source framework for building distributed ledger solutions. The unique thing about Hyperledger Fabric is that it supports pluggable implementations of different components such as identity management, consensus algorithm etc. Revision notes on Introduction to Hyperledger Fabric Hyperledger Fabric can be used for creating private and permissionless Blockchain network. Blockchain Participants – Membership Members join Hyperledger Fabric Blockchain network using Membership Service Provider (MSP) service. Hyperledger Fabric allows custom MSP to be plugged. Distributed Ledger – Data and Database Hyperledger Fabric allows ledger data to be stored …

Continue reading

Posted in BlockChain, Hyperledger, Interview questions. Tagged with , .

Hyperledger Fabric Platform Components & Docker Images

hyperledger fabric distributed ledger interview questions

This article represents details on installing / setting up Hyperledger Fabric Platform Components / Binaries  with emphasis on some of the following: Steps for how to install / setup Fabric platform components & docker images Details on platform components which are used for setting up the Fabric network Details on docker images which comprise Hyperledger Fabric network The installation leads to download /pull of docker images which are required to run the Blockchain network using Hyperledger Fabric. Installing Fabric Platform Components & Docker Images The following command can be used to install Platform binaries: In case Docker commands require sudo, the above command looks like following: The script which gets …

Continue reading

Posted in BlockChain, Hyperledger. Tagged with , .

Hyperledger Tools – When / Why to use them?

Hyperledger Fabric Blockchain with byfn.sh

This article aims to present details on when and why to use which Hyperledger tools. The following are different tools which are referred later in this article: Cello Composer Explorer Quilt This article will be updated on regular basis as newer tools come up. When / Why to use which Hyperledger Tools? The following represents details related with the Hyperledger tools: Hyperledger Tools When and Why to use them? Explorer Hyperledger Explorer is a web application which can be used to view, invoke, deploy or query blocks, transactions and associated data, network information (name, status, list of nodes), chain codes and transaction families, as well as any other relevant information stored in the …

Continue reading

Posted in BlockChain, Hyperledger, Tools. Tagged with , , .

Hyperledger Interview Questions and Answers – Set 1

Interview questions deep learning

This is the first in series of practice tests / interview questions and answers in relation to Hyperledger products suite for building distributed ledgers / Blockchain business networks. This test focuses on checking your knowledge on different products such as following under hyperledger umbrella. Fabric Sawtooth Iroha Indy Burrow Cello Composer Quilt Explorer Revision Notes – Hyperledger Tools & Frameworks Hyperledger Fabric supports pluggable consensus algorithm (ordering service) and membership service provider Hyperledger Indy can be used to build distributed ledger (Blockchain) related with decentralized digital identities Hyperledger Burrow is used for creating a permissioned Ethereum smart-contract blockchain node that executes smart contract code following the Ethereum specification. Hyperledger Explorer can be used to view, invoke, deploy or query blocks, transactions and associated data, network …

Continue reading

Posted in BlockChain, Hyperledger, Interview questions. Tagged with , , .

List of Hyperledger Tools & Frameworks for Blockchain Apps

Hyperledger tools and frameworks

This article represents a list of Hyperledger tools and frameworks for building Blockchain applications and when to use each one of them. Hyperledger Frameworks The following is the list of frameworks that can be used to create blockchain applications based on distributed ledger technology. Hyperledger Fabric Hyperledger Fabric is a blockchain framework implementation. It is one of the foundation framework for developing / building Blockchain applications or solutions with a modular architecture. The most striking feature of Hyperledger Fabric is that it allows components, such as consensus and membership services, to be plug-and-play. At the core of Hyperledger Fabric is container technology which is used to host smart contracts called chaincode that comprise the application logic of the system. The following is the list of cool features of …

Continue reading

Posted in BlockChain, Hyperledger, Tools. Tagged with , .

15+ Blockchain Jobs Designations for Your Next Blockchain Hire

Blockchain Job Designations

Given that Blockchain has gone mainstream, companies are now hiring blockchain developers at all levels such as following: Blockchain Development Software Engineer Senior Software Engineer Principal Software Engineer Staff Software Engineer Infrastructure Engineer Visual Designer Blockchain Technology Leadership Solution Architect, Application Architect, Lead Architect, Consultant Technology Lead Blockchain Project/Program Management Project Lead Program Manager Practice Head Business Development Business development (VP) Blockchain Job Designations from Indeed.com Below are some of the designations in relation to Blockchain application development whose jobs can be found on Indeed.com. Blockchain Developer: Other designations similar to this one are following: Blockchain Software Engineer Blockchain Engineer Blockchain Platform Developer Full-stack Developer (Blockchain) IT Blockchain Engineer Blockchain Developer …

Continue reading

Posted in BlockChain, jobs, News. Tagged with , , .

Blockchain Usecase – Airline Booking and Baggage Tracking

Blockchain usecase for airline booking and baggage tracking

Blockchain is all out there to disrupt different industries requiring greater security (trust), traceability and transparency. Be it supply chain, manufacturing, logistics, real-estate, energy, airline industry etc. Here is another Blockchain use case in relation with Airline booking, baggage tracking, putting travel itinerary on Blockchain. Airlines such as Air New Zealand and Luftansa is exploring Blockchain to enhance / improve security and efficiency of services such as booking (rebooking) and baggage tracking. Blockchain would help connect suppliers such as airlines and hotels directly to sellers, allowing companies to bypass third-party vendors. Both Airline companies such as Air New Zealand and Luftansa has entered into strategic partnership with Winding Tree, a …

Continue reading

Posted in BlockChain, Ethereum, News. Tagged with , .

Blockchain Usecase – Air Cargo Industry (Supply-chain)

Blockchain POC flydubai Aircargo Dnata

Blockchain is being aggressively pursued by business owners and technology / business evangelists in order to determine if it would help business grow in addition to bringing competitive edge as a result of technology benefits provided by the Blockchain. Recently, a Blockchain proof-of-concept (POC) is successfully completed by Dnata, a provider of air and travel services in the Middle East. They evaluated the Blockchain potential in Dubai Air Cargo industry. The following company participated in the Blockchain POC: DNata flydubai Cargo IBM Blockchain Technology Benefits As a result of Blockchain POC, following benefits were realized: Elimination of redundant data Enhance visibility and transparency for all stakeholders Business Goal vis-a-vis Business …

Continue reading

Posted in BlockChain, News. Tagged with , .

Top 5 Blockchain Technology Online Courses

blockchain technology courses

This is a list of top 5 blockchain technology courses which can be used for training yourself online. My Favorite one is Bitcoin and Cryptocurrency technologies course on Coursera.org from Arvind Narayana, Assistant professor in Princeton University. All these courses are well suited for beginners. Thus, if you are planning for reskilling yourself in Blockchain technologies, go ahead and try one of these courses. Please feel free to suggest one or more courses if I missed to mention them. Blockchain for Business: An Introduction to Hyperledger Technologies A primer to blockchain and distributed ledger technologies. One can learn how to start building permissioned Blockchain applications for their enterprises/business. Following are some of …

Continue reading

Posted in BlockChain, Career Planning, Online Courses. Tagged with , .