Reputation: 11
I am new to Hyperledger and would like to build a proof-of-concept using Hyperledger Composer. I know Composer is a toolset to build Blockchain-Applications, which can be deployed on Hyperledger Fabric. Still, I don't really understand the structure of Hyperledger Composer, so I have the following questions:
I am sorry if the questions may seem stupid but I am new in this field and can't find the answers online.
Upvotes: 1
Views: 200
Reputation: 153
I would recommend following the tutorials for a hyperledger fabric's first network as Composer is very restrictive when it comes to customizing the network structure (ie adding more nodes and/or organisations)
Composer is good for writing up quick smart contracts and connecting it to an app for a demo as it is easy to test and generates an API for the chain code.
When running a Composer locally, it will run the 2 organisation 2 peer network outlined in fabric first network tutorial. It will then install the chain code you have written and generate an API for it.
As for your last point about the consensus mechanism I'm not to sure.
Upvotes: 0
Reputation: 198
Upvotes: 1
Reputation: 6092
No, you're not building a blockchain. The blockchain is created using Fabric. You're just developing and deploying your chaincode to the Fabric-based blockchain. Same for nodes and the consensus.
However, the blockchain is simulated when you run your Composer tests.
Upvotes: 1