Questions tagged [hyperledger-fabric]

Hyperledger Fabric is an implementation of blockchain technology. Use this tag for questions about this project.

Use this tag for questions about this project.

Another good idea is to reach out to the community at

Documentation can be found at

Refer development lifecycle and officially provided resources at

6206 questions
4
votes
2 answers

Difference between users in hyperledger fabric and participants in hyperledger composer

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…
4
votes
3 answers

Hyperledger Composer vs Hyperledger Nodejs Api

I am new to hyperledger and bit confused about hyperledger composer & nodejs api. I saw using composer we can create assets, transactions, participants and chaincode and in last we have to archive it this all into .bna file and finally we deploy…
zubair
  • 185
  • 3
  • 15
4
votes
2 answers

chaincode in hyperledger composer vs chaincode in hyperleger fabric?

does same functionality can be achieved by writing chaincode with javascript in hyperledger composer as writing chaincode with go in Hyperledger fabric? and What are the limitations and benefits of writing chaincode in JS as compared to writing in…
4
votes
0 answers

visibility settings for input data on chaincode

In the Fabric-FAQ on the Data Privacy and Access Control section it is noted: within a channel you can restrict the input data to chaincode to the set of endorsers only, by using visibility settings. The visibility setting will determine whether…
psebos
  • 509
  • 3
  • 9
4
votes
1 answer

Does Orderer have Block(Ledger) data?

I built hyperledger fabric network using Kafka-based Ordering Service. I thought that Orderer doesn't have Block data. But, when I checked /var/hyperledger/production/orderer/chains/mychannel in Orderer server, I found blockfile_000000 file. I…
dr_devbc
  • 303
  • 2
  • 6
4
votes
1 answer

Difference between Fabric CA server and CA Client

What are the functions of the Fabric CA Server and Fabric CA Client? What are the Roles of the Fabric CA Server and Fabric CA Client? Thanks
Charmy Garg
  • 291
  • 2
  • 14
4
votes
1 answer

Unimplemented desc = unknown service protos.ChaincodeSupport

When I start orderer、peer node , then I start the example01.go to instantiate the chaincode , and specify : peer.address 192.168.120.189:7051 chaincode.id.name simple-token:1.0.0 the main code from example01.go is: func main() { …
Jim Green
  • 1,088
  • 3
  • 15
  • 40
4
votes
1 answer

Hyperledger Fabric Client Registration failed

I am new to Hyperledger Fabric and i am trying to register the fabric client with the server locally. here is what i have done so far. go get -u github.com/hyperledger/fabric-ca/cmd/... fabric-ca-server start -b admin:adminpw after that i got the…
Akash Sethi
  • 2,284
  • 1
  • 20
  • 40
4
votes
3 answers

What is the relation between `Fabric`, `Composer`, `Cello` and other Hyperledger applications?

When I was tasting the fabric, I found many other blockchain projects, like Composer, Cello, Explorer. They are all belong to Hyperledger. I'm very confused that there are so many projects. Should I learn all of them? It seems each project plays a…
4
votes
3 answers

How can I add the Hyperledger Fabric explorer to the "Hyperledger composer" environment

As I understand, the Hyperledger composer environment runs on a Hyperledger Fabric v1.0 (or 0.8?) blockchain. Beside the REST server to interact with the blockchain or see the transaction, participants etc. is is possible to see which transactions…
4
votes
2 answers

Ledger encryption in Hyperledger Fabric 1.0

I am analyzing various attack vectors, including a successful attempt by a malicious party to take over one of Fabric peers and thus, owning a local copy of world state and blockchain ledger. Is there a native (configurable) option that would allow…
99hardforks
  • 139
  • 8
4
votes
1 answer

Hyperledger Fabric peer container cannot communicate with couchdb container

I am trying to configure hyperledger fabric network. I run three zookeepers, three kafkas, three orderers and a couchdb. They are docker containers and work well. All containers are in the same docker network called ibknet. After that, I run peer…
user6103114
4
votes
1 answer

How does an end user get their certificates in Hyperledger Fabric?

I am new to hyperledger and have been reading the documentation and playing around with the sample codes. I am a bit confused on how the registration/enrollement/authentication of new users is done in hyperledger. I hope someone could clarify these…
Nabil
  • 186
  • 1
  • 8
4
votes
2 answers

How to upgrade a chaincode after modification?

I am new to hyperledger and is going through the example here . I am tried to play around the chaincode but is now stuck at the part where I am suppose to upgrade the chaincode I have tried to execute the peer chaincode upgrade within the docker…
user3500286
  • 73
  • 1
  • 3
4
votes
3 answers

Cannot create container for hyperledger service

I have a docker-compose.yaml file defining 5 services: orderer.example.com peer0.org1.example.com peer1.org1.example.com peer0.org2.example.com peer1.org2.example.com Running the docker-compose -f docker-compose.yaml up -d command results…
jpsstack
  • 1,221
  • 4
  • 18
  • 29