Can we add new consortium to hyperledger fabric? what will be the typical use-case for adding new consortium to the fabric network.?
If I understand correctly you want to add organization to app.
Here you have tutorial https://www.youtube.com/watch?v=DKuGU5CYV_E
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
I am trying to move from Hyperledger composer to Fabric and I was looking at creating a similar pattern as composer to associate a participant to a connection identity.
Did you guys already tried to implemente a similar schema/pattern in fabric smart contract ?
Thanks a lot for you help.
I've found that in Hyperledger composer playground anyone can delete the current business network. How can I restrict it so that only an admin can delete their own business network?
Fabric Composer is an old and temporary name and has been replaced with Hyperledger Composer. It is the same thing
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