Skip to content

Commit 098b2b7

Browse files
committed
add go mod
Signed-off-by: Angelo De Caro <adc@zurich.ibm.com>
1 parent deba6c5 commit 098b2b7

File tree

2 files changed

+39
-4
lines changed

2 files changed

+39
-4
lines changed

integration/fabric/atsa/chaincode/chaincode/asset_transfer.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,10 @@ import (
1717
"log"
1818
"time"
1919

20-
"github.com/pkg/errors"
21-
22-
"github.com/hyperledger/fabric-chaincode-go/v2/pkg/statebased"
23-
"github.com/hyperledger/fabric-chaincode-go/v2/shim"
20+
"github.com/hyperledger/fabric-chaincode-go/pkg/statebased"
21+
"github.com/hyperledger/fabric-chaincode-go/shim"
2422
"github.com/hyperledger/fabric-contract-api-go/contractapi"
23+
"github.com/pkg/errors"
2524
)
2625

2726
const (
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
module github.com/hyperledger-labs/fabric-smart-client/integration/fabric/atsa/chaincode/chaincode
2+
3+
go 1.22.6
4+
5+
require (
6+
github.com/hyperledger/fabric-chaincode-go v0.0.0-20240704073638-9fb89180dc17
7+
github.com/hyperledger/fabric-contract-api-go v1.2.2
8+
github.com/pkg/errors v0.9.1
9+
)
10+
11+
require (
12+
github.com/go-openapi/jsonpointer v0.20.0 // indirect
13+
github.com/go-openapi/jsonreference v0.20.2 // indirect
14+
github.com/go-openapi/spec v0.20.9 // indirect
15+
github.com/go-openapi/swag v0.22.4 // indirect
16+
github.com/gobuffalo/envy v1.10.2 // indirect
17+
github.com/gobuffalo/packd v1.0.2 // indirect
18+
github.com/gobuffalo/packr v1.30.1 // indirect
19+
github.com/golang/protobuf v1.5.4 // indirect
20+
github.com/hyperledger/fabric-protos-go v0.3.3 // indirect
21+
github.com/joho/godotenv v1.5.1 // indirect
22+
github.com/josharian/intern v1.0.0 // indirect
23+
github.com/mailru/easyjson v0.7.7 // indirect
24+
github.com/rogpeppe/go-internal v1.11.0 // indirect
25+
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
26+
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
27+
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
28+
golang.org/x/mod v0.14.0 // indirect
29+
golang.org/x/net v0.25.0 // indirect
30+
golang.org/x/sys v0.20.0 // indirect
31+
golang.org/x/text v0.15.0 // indirect
32+
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
33+
google.golang.org/grpc v1.65.0 // indirect
34+
google.golang.org/protobuf v1.34.1 // indirect
35+
gopkg.in/yaml.v3 v3.0.1 // indirect
36+
)

0 commit comments

Comments
 (0)