Hyperledger Development with in 10 days — Day 8
We have seen the structuring and running the sample apps. In this part we can do a deep dive into some important modules of the Hyperledger Fabric. We are going to see about MSP(Membership service providers) In Hyperledger Fabric, blockchain is considered as permissioned. So it conveys that, only approved users will be allowed to be the part of Blockchain network. How to give access to any specific members in blockchain is very important. In Hyperledger network, there is a possiblity of having multiple Organisations/parties/businesses involved. So we need to have a mechanism for each organisation to create users for it cryptographically and validate the user transactions. Blockchain’s main dependency is cryptography. All members/users are created with cryptographically encrypted key which will be validated by the blockchain network to participate in the network. So the complete membership providing architecture is abstracted as a separate module called Membership ...