Giter Club home page Giter Club logo

hf-scp's Introduction

Hyperledger Fabric Simple Control Panel

A simple interface for installing chaincodes in hyperledger fabric nodes

Usage

First, implement 5 API in backend:

  1. GET ${base}/env

  2. GET ${base}/channel?env=${envName}

  3. GET ${base}/peer?channel=${channelName}&env=${envName}

  4. GET ${base}/peer-detail?id=${peerId}&env=${envName}

  5. POST ${base}/deploy

Then, Setup the backend endpoint in src/config.js

Finally, run npm run build in project root, copy the generated file in dist and host it

APIs

Following are some detail about the necessary APIs

list env

path: env

response data:

[
  { "name": "dev" },
  { "name": "staging" },
  { "name": "production" }
]

list channel

path: channel

query: env=${envName}

response data:

[
  { name: "mychannel" },
  { name: "channel-1" },
  { name: "channel-2" }
]

list channel peer

url: peer

query: channel=${channelName}&env=${envName}

response data:

[
  {
    "orgName": "Org1",
    "peers": [
      {
        "id": "peer0.org1.example.com",
        "host": "peer0.org1.example.com",
        "port": 7050
      },
      {
        "id": "peer1.org1.example.com",
        "host": "peer1.org1.example.com",
        "port": 7051
      },
    ],
  },
  {
    "orgName": "Org2",
    "peers": [
      {
        "id": "peer0.org2.example.com",
        "host": "peer0.org2.example.com",
        "port": 7050
      },
      {
        "id": "peer1.org2.example.com",
        "host": "peer1.org2.example.com",
        "port": 7050
      },
    ],
  }
]

get peer detail

path: peer-detail

query: id=${peerId}&env=${envName}

response data:

{
  "id": "peer0.org1.example.com",
  "name": "peer0.org1.example.com",
  "host": "peer0.org1.example.com",
  "port": 7050,
  "description": "peer0.org1.example.com",
  "org": "Org1",
  "chaincode": {
    "path": "/path/to/chaincode/package",
    "name": "universal",
    "version": "0.1.0",
  },
  "installed": [
    { "name": "universal", "version": "0.1.5" },
    { "name": "universal", "version": "0.1.4" },
    { "name": "universal", "version": "0.1.3" },
    { "name": "universal", "version": "0.1.2" },
    { "name": "universal", "version": "0.1.1" },
    { "name": "universal", "version": "0.1.0" },
  ],
  "channel": "mychannel",
  "env": "dev"
}

deploy chaincode to a peer node

path: deploy

request body:

{
  "env": "dev",
  "channel": "mychannel",
  "peerId": "peer0.org1.example.com",
  "name": "universal",
  "version": "0.1.9",
  "path": "/path/to/chaincode/package",
}

hf-scp's People

Contributors

ezirmusitua avatar

Watchers

 avatar  avatar

Forkers

heixiongtt

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.