Hyperledger Fabric component design
Let's discuss various components that facilitate the blockchain technology tenets of shared ledger, encryption, the trusts system, and smart contracts. The components represent the Hyperledger Fabric infrastructure components and provide isolation from chain code or smart contract development constructs. Chain code or smart contract development details will be discussed in detail in a separate chapter.
The following diagram depicts the Hyperledger Fabric infrastructure components:Â
Hyperledger Fabric infrastructure components
Following are the infrastructure components:
- Hyperledger Fabric CAÂ is an implementation of membership services but is not required to be used (that is, any X509-based PKI infrastructure that can issue EC certificates can be used)
- Dedicated orderer nodes
- Implements atomic broadcast API
- Orders and batches transactions and signs each batch (block) to create a hash chain
- Hyperledger Fabric provides two implementations—Solo (for dev/test) and...