tittuvarghese / fabric-gosdk-example

Hyperledger GoSDK example

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hyperledger Go SDK Example

The aim of this project is to demonstrate Hyperledger fabric features using the HF Client SDK for Golang. This repository contains implementation of Fabcar Network in Go SDK using the first-network, although it is possible to use other chaincode/network setup. Implementation of Fabcar network in NodeJS can be found here. Go SDK v1.0.0-beta1 version is used to run the application.

TODO

  • Better documentation (done)
  • Private data collection example
  • Add query ledger apis
  • Use Raft ordering (done)
  • Web server with APIs for operations (done)
  • Simple web UI
  • Chaincode support in multiple languages (SDK v1.0.0-beta1 release supports Golang chaincode only)
  • Fabric 2.0 Compatibility (SDK v1.0.0-beta1 supports Fabric 1.4 only)

Pulls are welcome!!!

Prerequisites

Before start, please make sure that you have all the required prerequisites (link1,link2) installed. You also need the following additional packages installed.

  1. make (sudo apt install make)

How to Run...

  • Clone this repository inside your $GOPATH/src folder.
  • cd $GOPATH/src/gosdk-example && make
  • Now, a web server will be up and listening on localhost:3000 port.
  • Open a new terminal and run testAPIs.sh
  • This application uses CouchDB database and Raft ordering. This can be changed in the startFabric.sh file.

What the make command does?

  1. Clean cache of previous run
  2. Brings 'first-network' down
  3. Build main.go
  4. Start the first network
  5. Run main.go
    • Initializes setups of two organizations, with SDK instance and admin user.
    • Starts the web server on 3000 port.

API requests

Web server supports following requests. testAPIs.sh file contains sample curl requests.

  1. User Enrollment
  2. Channel Creation
  3. Join Channel
  4. Install Chaincode
  5. Instantiate Chaincode
  6. Execute chaincode
  7. Query chaincode
  8. Upgrade chaincode

About

Hyperledger GoSDK example

License:Apache License 2.0


Languages

Language:Shell 68.9%Language:Go 30.6%Language:Makefile 0.5%