Create a new Blockchain Network in HyperLedger Fabric
1 min readJul 3, 2020
8 Steps to create a new Network in Hyperledger Fabric:
- Create & start a new Ordering Service (Group of Orderer Nodes)
- Create a new Organization(Member)with Endorser & Commit Peer Nodes
- Create a new Channel A in the Ordering Service
- Join required Peers to Channel A(give Permissions to Peers for Channel A)
- If we want to install Chaincode Z in Channel A, then install CC Z code in all Endorsing Peers of Channel A
- All the Endorsing Peers which are part of Channel A, will instantiate Chaincode Z on Channel A with new Endorsement Policy
- After CC Z is instantiated, we have CC Z alive & can process Transactions
- Users can send new Transaction Request to Endorsing Peers
**Your new Hyperledger Network is ready and running !!