kfsoftware / hlf-cc-dev

Apache License 2.0
3 stars 2 forks source link

What's hlf-cc-dev?

hlf-cc-dev is a tool to start developing a new chaincode from your development environment.

Why does this tool exist?

When developing chaincodes, we need to have an HLF network deployed, usually in our development environment. It is hard for new developers to get started since they need to know how to deploy an HLF network.

This tool aims to ease the onboarding of new developers that are not familiar with the internals of the HLF network but are interested in developing chaincodes.

The only requirement is that the developer has access to a working HLF network. This network can be set up by Administrators that are used to perform these operations, so the developer doesn't need to.

With this tool, instead of installing the chaincode in the peers, approving the chaincode definition, and finally, committing the chaincode, the developer can have the chaincode started in its machine. With one command, it can install, approve and commit the chaincode in one go. SupposeThen, ifhe developer needs to modify the chaincode logic. In that case, all it needs to do is restart the chaincode program running in its machine, just like any other application the developer is used to developing.

What you'll need

General diagram

The following diagram explains the architecture of the final solution

Diagram

Steps to get started

To start the server, you need the network config with the admin users for each organization.

hlf-cc-dev serve --address ":8080" --metrics-address ":8081" --config "<PATH_TO_NETWORK_CONFIG>"

Start development in your local environment

You need to have a chaincode that's able to be deployed as an external service; you can take a look at the following templates:

We recommend using the Go template since it's the easiest one to get started with.

Once you have the chaincode project set up on your local machine, you need to expose your server to the public; the easiest way to do this is to use a TLS/TCP tunnel, for example, ngrok.

ngrok tcp 9999 --region=eu # region can be us, eu, au, ap, sa, jp, in

The previous command will have this output:

ngrok

Copy the Forwarding URL, but remove the tcp:// part; for example, if you got tcp://6.tcp.eu.ngrok.io:19922, then you want to use 6.tcp.eu.ngrok.io:19922 for the following command(hlf-cc-dev).

After having exposed your chaincode server to the public, you can run the following command to trigger:

CHAINCODE_NAME=template_go
API_URL="http://localhost:8080/graphql"
SIGNATURE_POLICY="OR('Org1MSP.member', 'Org2MSP.member')"
CHAINCODE_ADDRESS_TUNNEL="4.tcp.eu.ngrok.io:13438" # the forwarding URL you get from opening an ngrok tunnel
hlf-cc-dev start --localChaincode="localhost:9999" \
  --chaincodeAddress="${CHAINCODE_ADDRESS_TUNNEL}" \
  --chaincode="${CHAINCODE_NAME}" \
  --signaturePolicy="${SIGNATURE_POLICY}" \
  --env-file="${PWD}/.env" \
  --apiUrl="${API_URL}"

After the successful execution of the previous command, you can follow the instructions on the README.md for each template.

For example, for Go, you would run the following command:

source .env && go run ./main.go

Then you can go to http://localhost:8080/graphql and test the chaincode by running the following mutation:

mutation invoke {
  invokeChaincode(input:{
    chaincodeName:"template_go"
    function: "InitLedger"
    args: []
    transientMap: []
  }){
    response
    transactionID
    chaincodeStatus
  }
}

mutation query {
  queryChaincode(input:{
    chaincodeName:"template_go"
    function: "GetAllAssets"
    args: []
    transientMap: []
  }){
    response
    chaincodeStatus
  }
}

If there are any issues you run into with the previous mutations, this can be because:

If after checking the previous things you still get an error, please, you can open an issue