https://github.com/suddutt1/chaincodeessentials
Hyperledger Fabric Chain code essentials
https://github.com/suddutt1/chaincodeessentials
Last synced: 3 months ago
JSON representation
Hyperledger Fabric Chain code essentials
- Host: GitHub
- URL: https://github.com/suddutt1/chaincodeessentials
- Owner: suddutt1
- Created: 2017-09-27T11:47:44.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-10-19T14:48:54.000Z (over 5 years ago)
- Last Synced: 2025-02-01T12:46:10.974Z (5 months ago)
- Language: Go
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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```