Questions tagged [hyperledger]

Hyperledger is an open source collaborative effort created to advance cross-industry blockchain technologies. It is a global collaboration, hosted by The Linux Foundation, including leaders in finance, banking, IoT, supply chain, manufacturing and technology.

Hyperledger is an open source collaborative effort created to advance cross-industry blockchain technologies. It is a global collaboration, hosted by The Linux Foundation, including leaders in finance, banking, IoT, supply chain, manufacturing and technology. (https://www.hyperledger.org/)

Code and documentation is available at: https://github.com/hyperledger

3942 questions
1
vote
1 answer

Developing token in hyperledger composer

I am trying to build Chaincode in Hyperledger composer where I need to have the concept of token. So I am thinking to create one specific type of participant which will initially hold the tokens. And then this TokenHolder Participant will then…
1
vote
1 answer

How to make Blockchain Assets Indelible?

Is there a certain way to commit a transaction using the Hyperledger Composer API once I insert or update an asset in a registry? The reason why I ask this question is, after I insert an asset, I can delete it from the registry using the…
1
vote
5 answers

Error invoking chaincode using Node.js SDK [TypeError: Cannot read property 'getConnectivityState' of undefined]

Failed to invoke successfully :: TypeError: Cannot read property 'getConnectivityState' of undefined /opt/share/hyperledger/node_modules/fabric-client/lib/EventHub.js:355 if(self._stream) state =…
1
vote
1 answer

Multi Org Setup using HyperLedger Composer in multiple machines

I am working on setting up a Business Network for Multiple Organizations (two physical machines). I did the setup of a business network using Hyperledger Composer Playground and achieved querying, rest-server implementation etc. I have configured a…
1
vote
1 answer

Specify endorsement policy at transaction level in Hyperledger Fabric

In Hyperledger Fabric, we have the endorsement policy specified at chain code instantiate time. For example, peer chaincode instantiate -o orderer.example.com:7050 --tls --cafile…
Krupakar
  • 39
  • 5
1
vote
0 answers

Hyperledger and ICO token

Is it possible to make interact a ERC20 token with a hyperledger permissioned blockchain? I would like to have my private blockchain and then be able to the participants use that token on that blockchain. or theres any other alternative to…
daultimate
  • 73
  • 1
  • 13
1
vote
1 answer

How to instantiate all chaincodes at once in the channel?

I have a question about chaincode instantiation. I think all same chaincode in a channel will be instantiated all at once by one request from this doc. http://hyperledger-fabric.readthedocs.io/en/release-1.1/install_instantiate.html Note: The…
1
vote
1 answer

Hyper Fabric [fabric-sdk-go] Error: CONNECTION_FAILED. Description: dialing connection timed out

when I try to Create a request (proposal) and send it by using Execute, ctxCh := sdk.ChannelContext("mychannel", fabsdk.WithUser("user1")) chClient, err := channel.New(ctxCh) if err != nil { log.Fatalln("error from New channel",…
Unknown
  • 401
  • 4
  • 15
1
vote
1 answer

startFabric.sh fails with docker compose command not find

I am following the tutorial on writing your first application to make a sample hyperledger fabric application. I am using Ubuntu 16.04 and I have installed prerequisites as well as binaries and docker images. When I move into fabric-samples/fabcar,…
E. Erfan
  • 1,239
  • 19
  • 37
1
vote
1 answer

Hyperledger Composer - Not getting console.log messages

For some reason, I've stopped getting console.log() messages to the dev javascript browser console. I'm running HyperLedger Composer locally on a Mac. My Current Environment - ├── composer-cli@0.19.1 ├── composer-playground@0.19.1 ├──…
Grendel
  • 43
  • 5
1
vote
1 answer

Create and join channel error ; Hypereldger fabric tutorial

I'm trying to a tutorial of hyperledger fabric on Mac. (http://hyperledger-fabric.readthedocs.io/en/latest/build_network.html#create-join-channel) At 'Create & Join Channel' part, I have 2 questions. 1.I typed export CHANNEL_NAME=mychannel, but…
Shigeru
  • 13
  • 2
1
vote
1 answer

do I need to use fabric sdk if am using hyperledger composer

I am using hyperledger composer for transaction invocation and all the stuffs related to resource(participants, assets etc) manipulation. I have generated the server using composer-rest-server, and also generated the angular frontend using yeoman…
1
vote
1 answer

can rest server be launched inside the hyperledger/composer-playground container?

Can rest server be launched inside the hyperledger/composer-playground container? Want to know ways to interface with business network inside the play ground I get following error when I try to install composer-rest-server Error: Can't find Python…
1
vote
0 answers

Communicate with Hyperledger Fabric orderer

I set up Hyperledger Fabric net using devmode (https://github.com/hyperledger/fabric-samples/tree/release-1.1/chaincode-docker-devmode) and started chaincode. I need a way to communicate with the network (create/join channels, invoke chaincode). I…
PowderMind
  • 11
  • 1
1
vote
3 answers

Error in accessing the Hyperledger composer setdefault api

I am using /wallet/{name}/setDefault api, via Angular4 application. this.http$.post(url + /api/wallet/${a.name}/setDefault,{withCredentials:true}).subscribe(res => console.log(res)) I am getting this error:401 (Unauthorized). Same way i am calling…
naik3
  • 319
  • 2
  • 8
  • 22