When I deploy a chaincode on Hyperledger Fabric Platform, the compilation process is carried out by the Fabric core system, via a shell script. The input to that shell script is the source code.
- Is there a provision in Hyperledger fabric to deploy a binary v chaincode (i.e. already compiled one like a .exe)?
- Is the chaincode source code logged anywhere?
Searched official documentation but no luck so far.
docker exec -e "CORE_PEER_LOCALMSPID=Org1MSP" -e "CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp" cli peer chaincode install -n mychaincode-v 1.0 -p "$CC_SRC_PATH" -l "$CC_RUNTIME_LANGUAGE"
Thanks.