What are the differences between chaincode (in golang) and the bna file (created from hyperledger-composer)?.
And, how to add a peer into an existing hyperledger fabric network?.
This article can explain as a side-by-side (Golang and Composer model-driven approach) comparison -> https://blog.selman.org/2017/07/08/getting-started-with-blockchain-development/. The main difference is Hyperledger Composer is a set of abstractions, tools and APIs to model, build, integrate and deploy a blockchain solution (eg a business network for parties to transact on) to the blockchain network. Composer business network archives may be deployed to Hyperledger Fabric for execution.
As for your Fabric question - in order to add new peers to an existing organization you need to generate new certificates for your peers and sign them using the key of the root CA certs for the existing organizations. See this SO and links therein for more info -> Add Org or peer in Org dynamically in Hyperledger fabric
Related
I have a RAFT setup of hyperledger fabric 1.4. I am trying to onboard a new organisation. I have created different sets of crypto materials using cryptogen tool for the new organisation and followed the steps mentioned in https://hyperledger-fabric.readthedocs.io/en/release-1.4/channel_update_tutorial.html for onboarding of organisation. I am able to join the peer of the new organisation. How can I add the orderer of the new organisation to the existing network ?
Hi Did u foudn answer of your query? I also want to add orderer of same ORG and diffrent org
I am using first-network sample to build my fabric network. By default it provides 2 Organisations with 2 peers for each Org. I want to create new Organisation and add more peers to these Organisations. What are the steps involved in doing this?
Thank You
You can checkout this link from the official hyperledger-fabric docs.
This adds an organization to the already created fabric network
Hello I am new to both HyperLedger Fabric and composer.I got confused with two terms. one is user in HyperLedger Fabric and another is participant in HyperLedger Composer.We have a set of users(including one administrator) in each organization along with peers in crypto-config.yaml file.
what is the roles and responsibilities of administrator user?
What is the roles and responsibilities of other users in crypto-config file?
It is said that a business network that is built using hyperledger composer can be deployed on hyperledger fabric network.What does business network contain and what does fabric network contain?
Difference between chaincode in fabric and transaction logic(which is written in javascript) in composer?
Admin credentials are used to create PeerAdmin card in composer which in turn is responsible for starting composer over fabric using your bna file and issue identity.
User is just extra set of credentials so that you will have some credentials initially to use the network. Later on you can issue new users using fabric CA.
Business network is nothing but a sort of abstraction over fabric using composer. Business network is deployed using bna file which has model file, transaction logic file, ACL file or query file. Fabric network is nothing but set of peers communicating with each other.
Chaincode is the smart contract which you directly deploy on fabric while the transaction logic used in composer is part of business network card which is deployed on fabric via composer. You cannot deploy standalone transaction logic on fabric, its deployed using composer with bna file, while chaincode you can deploy directly.
As far as I know, participant in hyperledger composer is identical to user in hyperledger fabric. However, in hyperledger fabric tutorials, they are mainly for testing mode. Thus, examples which you do are using cryptogen tool. This tool creates fix number of credentials based on "User" in your crypto-config.yaml. For instance, in the example about commercial paper 1, cryptogen creates 2 credentials for Admin and User1. Then, Isabella uses User1 credential (you can see in detail in code of addtoWallet.js). In the code, Isabella copies credential from User1 for making transaction.
Hyperledger composer looks like an abstraction running above Hyperledger fabric. It is more flexible when it allows to create credentials easily. When you create a participant and give them permission to access business network, you are generating credentials for them.
If we can build a business network in composer playground online(or) locally and then deploy network in fabric, make a REST call from an angular app (user facing) to connect to blockchain.
Do I still need to learn about the fabric implementation or its infrastructure, When composer has provided me with necessary toolings to work with blockchain.
What am I missing in this ?
ps:I am still in the early phase of learning hyperledger and so not very clear as to use which and when.
Composer just provide necessary tools to work with blockchain.
But if you want to build your own blockchain network, You need to learn about fabric.
In composer guide, it mainly showed two fabric networks: One organization Hyperledger Fabric and Two organizations Hyperledger Fabric.
Let's say if you want to add one more organization or add one more peer node for each organization. You can't implement the requirements just utilize composer.
I'm also quite new to this. So if I understand well your answer lissdy, if I follow the developer tutorial (https://hyperledger.github.io/composer/tutorials/developer-tutorial.html) my network will be deployed but with only one peer ? And I need to use fabric to go further ?
My question is related to integration of Hyperledger Composer with Hyperledger Explorer.
I am able to see channel specific explorer dashboard but not abIe to see chaincode, assets, participants or transactions added using rest server.
Is explorer works with application set up using node sdk or cli only ?
And due to this only Historian added in Composer?
Thanks in advance.
the Blockchain or - Fabric Explorer - has views/dashboard specifically for Hyperledger Fabric, and is Fabric specific. Composer provides views of the business network (or the chaincode deployed as a business network).
So 'exploration' of Fabric blockchain elements (relating to Blocks and Fabric transactions) is separate to the Composer business network elements you see through using the Composer REST APIs (ie related to a specify Composer business network you deployed - and for which you have views of individual assets, participants and transactions - as well as a history of transactions - that got you to the current world state). So the former is a Fabric view - and the latter is a view into a specific part of the ledger - ie the business network in question.