Create a new Blockchain Network in HyperLedger Fabric

Docker Turtle
1 min readJul 3, 2020

--

8 Steps to create a new Network in Hyperledger Fabric:

  1. Create & start a new Ordering Service (Group of Orderer Nodes)
  2. Create a new Organization(Member)with Endorser & Commit Peer Nodes
  3. Create a new Channel A in the Ordering Service
  4. Join required Peers to Channel A(give Permissions to Peers for Channel A)
  5. If we want to install Chaincode Z in Channel A, then install CC Z code in all Endorsing Peers of Channel A
  6. All the Endorsing Peers which are part of Channel A, will instantiate Chaincode Z on Channel A with new Endorsement Policy
  7. After CC Z is instantiated, we have CC Z alive & can process Transactions
  8. Users can send new Transaction Request to Endorsing Peers

**Your new Hyperledger Network is ready and running !!

--

--

No responses yet