This repository contains a Hyperledger Fabric chaincode that represents a smart contract to support the data marketplace operations and concepts. The project is written in Go. To run this component correctly, you should be familiar with the Data marketplace components because there is a particular dependency between the components. You should also have a running Fabric network, we followed this tutorial to deploy Fabric on kubernetes but we used our chaincode instead of the one provided in the tutorial.
- Install golang.
- Install git.
- Configure go. GOPATH environment variable must be set correctly before starting the build process.
mkdir -p $HOME/workspace
export GOPATH=$HOME/workspace
mkdir -p $GOPATH/src/github.com/lgsvl
cd $GOPATH/src/github.com/lgsvl
git clone git@github.com:lgsvl/data-marketplace-chaincode.git
cd data-marketplace-chaincode
After deploying the chaincode, you can connect to any organization and start invoking the chaincode. To make things easier, we implemented a REST interface that you can deploy within your kubernetes cluster. The code for this REST interface is in Data marketplace Chaincode REST.
Run the tests:
./scripts/run_glide_up
./scripts/run_units.sh