-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #112 from Zilliqa/111_update_dependencies
#111: update dependencies
- Loading branch information
Showing
12 changed files
with
134 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
# Emacs backups. | ||
*~ | ||
\#* | ||
.\#* | ||
|
||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM golang:1.15.8-alpine | ||
LABEL maintainer="Ren xiaohuo <lulu@zilliqa.com>" | ||
FROM golang:1.19.4-alpine | ||
LABEL maintainer="Richard Watts <richard@zilliqa.com>" | ||
WORKDIR /app | ||
COPY ./ . | ||
RUN apk add build-base | ||
RUN go test -c -o ./test github.com/Zilliqa/gozilliqa-sdk/provider | ||
RUN CI=true go tool test2json -t ./test -test.v | ||
RUN CI=true go tool test2json -t ./test -test.v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,29 @@ | ||
module github.com/Zilliqa/gozilliqa-sdk | ||
|
||
require ( | ||
github.com/btcsuite/btcd v0.0.0-20190315201642-aa6e0f35703c | ||
github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d | ||
github.com/ethereum/go-ethereum v1.9.15 | ||
github.com/golang/protobuf v1.4.2 | ||
github.com/google/uuid v1.1.1 | ||
github.com/gorilla/websocket v1.4.1 | ||
github.com/stretchr/testify v1.5.1 | ||
github.com/tyler-smith/go-bip39 v1.0.2 | ||
github.com/btcsuite/btcd v0.23.0 | ||
github.com/btcsuite/btcd/btcec/v2 v2.2.0 | ||
github.com/btcsuite/btcd/btcutil v1.1.3 | ||
github.com/ethereum/go-ethereum v1.10.26 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/google/uuid v1.3.0 | ||
github.com/gorilla/websocket v1.5.0 | ||
github.com/stretchr/testify v1.8.1 | ||
github.com/tyler-smith/go-bip39 v1.1.0 | ||
github.com/ybbus/jsonrpc v2.1.2+incompatible | ||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 | ||
golang.org/x/sync v0.0.0-20190423024810-112230192c58 | ||
google.golang.org/protobuf v1.23.0 | ||
github.com/ybbus/jsonrpc/v3 v3.1.1 | ||
golang.org/x/crypto v0.4.0 | ||
golang.org/x/sync v0.1.0 | ||
google.golang.org/protobuf v1.26.0 | ||
) | ||
|
||
go 1.13 | ||
require ( | ||
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/sys v0.3.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
go 1.19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters