Tag not monitored by Microsoft.
Hi @GSUser ,
The azhlfTool client makes use of Fabric Node SDK to install chaincodes on peer nodes. While performing chaincode installation using Fabric Node SDK, you do not need to package the chaincode. While running the installation command, you must specify the details of the chaincode, including the absolute path of the chaincode source code directory.
For example, we have shared 2 sample chaincodes, written in Golang, with azhlfTool, as found here.
In this scenario, if you are installing, let's say, chaincode_example02 sample chaincode, then the install chaincode command would be:
./azhlf chaincode install -o $ORGNAME -u $USER_IDENTITY -n $CC_NAME -p $CC_PATH -l $CC_LANG -v $CC_VERSION
where, the $CC_PATH environment variable corresponds to the absolute path to the chaincode project root directory, i.e. <absolutePathToAzhlfToolDirectory>/samples/chaincode/src/chaincode_example02/go and $CC_LANG being golang.
Regards,
Chintan Rajvir