Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/suddutt1/chaincodeessentials

Hyperledger Fabric Chain code essentials
https://github.com/suddutt1/chaincodeessentials

Last synced: about 1 month ago
JSON representation

Hyperledger Fabric Chain code essentials

Awesome Lists containing this project

README

        

# Fabric chain code enssentials
Hyperledger Fabric Chain code essentials.

InvokersIdentity.go : Refer to the readTransaction method for reading the creator ( invoker) signature details. This may be utilize the invoker and take appropriate actions in the chain code.

# Govendoring for chaincode

```sh

go get -u github.com/kardianos/govendor
govendor init
govendor add github.com/hyperledger/fabric/core/chaincode/shim/ext/cid
govendor add github.com/golang/protobuf/proto
govendor add github.com/pkg/errors

```