-
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.
feat: Upgrade to the latest versions of the support libraries.
- Loading branch information
1 parent
e84415c
commit a6cf8a2
Showing
6 changed files
with
87 additions
and
28 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
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/btcsuite/btcd v0.23.0 | ||
github.com/btcsuite/btcd/btcec/v2 v2.1.3 | ||
github.com/btcsuite/btcd/btcutil v1.1.3 | ||
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/stretchr/testify v1.8.1 | ||
github.com/tyler-smith/go-bip39 v1.0.2 | ||
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 | ||
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.23.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