Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/suddutt1/workshopchaincode
Hyperledger Fabric workshop chaincode
https://github.com/suddutt1/workshopchaincode
Last synced: about 1 month ago
JSON representation
Hyperledger Fabric workshop chaincode
- Host: GitHub
- URL: https://github.com/suddutt1/workshopchaincode
- Owner: suddutt1
- Created: 2019-07-24T17:04:42.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-26T09:54:43.000Z (over 5 years ago)
- Last Synced: 2023-03-05T03:03:25.813Z (almost 2 years ago)
- Language: Go
- Size: 104 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Car trade chaincode
### Install libraries
```sh
cd $GOPATH/src
mkdir -p github.com/hyperledger
cd github.com/hyperledger
git clone https://github.com/hyperledger/fabric.git
cd fabric
git checkout tags/v1.4.0```
### Install the chaincode```sh
cd $GOPATH/src
mkdir -p github.com/blockchain
cd github.com/blockchain
git clone https://github.com/suddutt1/workshopchaincode.git . # Do not miss the DOT(.) at the end
# Complie the code
go builld
```