mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
Created project directory, app.go and connect.go files. Reused the logic for connect.go from the events application and added second organization setup. Implemented private data transaction example in go as described in the main documentation in "Tutorials/Using Private Data in Fabric". Updated README.md with the command to run the go application and the script which runs the application in the Github Actions workflow. Fixed typos and punctuation in the private data typescript application. Signed-off-by: Stanislav Jakuschevskij <stas@two-giants.com>
23 lines
774 B
Modula-2
23 lines
774 B
Modula-2
module assetTransfer
|
|
|
|
go 1.22.0
|
|
|
|
require (
|
|
github.com/hyperledger/fabric-gateway v1.6.0
|
|
google.golang.org/grpc v1.67.0
|
|
)
|
|
|
|
require (
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/hyperledger/fabric-protos-go v0.0.0-20200707132912-fee30f3ccd23 // indirect
|
|
github.com/hyperledger/fabric-protos-go-apiv2 v0.3.3 // indirect
|
|
github.com/hyperledger/fabric-sdk-go v1.0.0 // indirect
|
|
github.com/miekg/pkcs11 v1.1.1 // indirect
|
|
github.com/pkg/errors v0.8.1 // indirect
|
|
golang.org/x/crypto v0.27.0 // indirect
|
|
golang.org/x/net v0.29.0 // indirect
|
|
golang.org/x/sys v0.25.0 // indirect
|
|
golang.org/x/text v0.18.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20240924160255-9d4c2d233b61 // indirect
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
|
)
|