mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Created parser, contract and utils packages and extracted each piece of functionality into its own files. Removed "Get" prefix from methods and changed return values from interfaces to structs. Signed-off-by: Stanislav Jakuschevskij <stas@two-giants.com>
20 lines
550 B
Modula-2
20 lines
550 B
Modula-2
module offChainData
|
|
|
|
go 1.22.0
|
|
|
|
require (
|
|
github.com/google/uuid v1.6.0
|
|
github.com/hyperledger/fabric-gateway v1.7.0
|
|
github.com/hyperledger/fabric-protos-go-apiv2 v0.3.4
|
|
google.golang.org/grpc v1.68.0-dev
|
|
google.golang.org/protobuf v1.35.2
|
|
)
|
|
|
|
require (
|
|
github.com/miekg/pkcs11 v1.1.1 // indirect
|
|
golang.org/x/crypto v0.29.0 // indirect
|
|
golang.org/x/net v0.31.0 // indirect
|
|
golang.org/x/sys v0.27.0 // indirect
|
|
golang.org/x/text v0.20.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 // indirect
|
|
)
|