hyperledger / fabric-sdk-go

https://wiki.hyperledger.org/display/fabric
Apache License 2.0
910 stars 510 forks source link

Configuration file and dynamic network structure #234

Open YanYeG opened 2 years ago

YanYeG commented 2 years ago

As far as I understand, go SDK use config.yaml to initialize.

The network connection profile provides client applications the information about the target blockchain network that are necessary for the applications to interact with it. These are all knowledge that must be acquired from out-of-band sources. This file provides such a source.

But I want my network to be dynamic. i.e I may add new organisations, peers or channels to my network. So. for such a case I think a static config file wont help. Is such scenario possible with fabric??

Thanks