Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/suddutt1/chaincodeessentials
- Owner: suddutt1
- Created: 2017-09-27T11:47:44.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-19T14:48:54.000Z (about 5 years ago)
- Last Synced: 2024-06-19T15:08:04.945Z (7 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```