-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Minh Huy Tran <huy.tranminh2804@gmail.com>
- Loading branch information
1 parent
b3fb591
commit dbec83d
Showing
2 changed files
with
49 additions
and
5 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,9 +1,57 @@ | ||
module github.com/perun-network/perun-examples/simple-client | ||
|
||
go 1.15 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/ethereum/go-ethereum v1.9.25 | ||
github.com/miguelmota/go-ethereum-hdwallet v0.0.0-20200123000308-a60dcd172b4c | ||
perun.network/go-perun v0.6.1-0.20210302085855-37f6187c1df8 | ||
) | ||
|
||
require ( | ||
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 // indirect | ||
github.com/VictoriaMetrics/fastcache v1.5.7 // indirect | ||
github.com/aristanetworks/goarista v0.0.0-20190912214011-b54698eaaca6 // indirect | ||
github.com/btcsuite/btcd v0.0.0-20190824003749-130ea5bddde3 // indirect | ||
github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d // indirect | ||
github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/deckarep/golang-set v0.0.0-20180603214616-504e848d77ea // indirect | ||
github.com/edsrzf/mmap-go v1.0.0 // indirect | ||
github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff // indirect | ||
github.com/go-ole/go-ole v1.2.1 // indirect | ||
github.com/go-stack/stack v1.8.0 // indirect | ||
github.com/golang/protobuf v1.4.2 // indirect | ||
github.com/golang/snappy v0.0.3-0.20201103224600-674baa8c7fc3 // indirect | ||
github.com/google/uuid v1.0.0 // indirect | ||
github.com/gorilla/websocket v1.4.1-0.20190629185528-ae1634f6a989 // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/holiman/uint256 v1.1.1 // indirect | ||
github.com/huin/goupnp v1.0.0 // indirect | ||
github.com/jackpal/go-nat-pmp v1.0.2-0.20160603034137-1fa385a6f458 // indirect | ||
github.com/karalabe/usb v0.0.0-20190919080040-51dc0efba356 // indirect | ||
github.com/mattn/go-runewidth v0.0.4 // indirect | ||
github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c // indirect | ||
github.com/pborman/uuid v1.2.0 // indirect | ||
github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/tsdb v0.6.2-0.20190402121629-4f204dcbc150 // indirect | ||
github.com/rjeczalik/notify v0.9.2 // indirect | ||
github.com/shirou/gopsutil v2.20.5+incompatible // indirect | ||
github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4 // indirect | ||
github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570 // indirect | ||
github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3 // indirect | ||
github.com/stretchr/testify v1.6.1 // indirect | ||
github.com/syndtr/goleveldb v1.0.1-0.20200815110645-5c35d600f0ca // indirect | ||
github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef // indirect | ||
github.com/wsddn/go-ecdh v0.0.0-20161211032359-48726bab9208 // indirect | ||
golang.org/x/crypto v0.0.0-20201208171446-5f87f3452ae9 // indirect | ||
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect | ||
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a // indirect | ||
golang.org/x/sys v0.0.0-20200824131525-c12d262b63d8 // indirect | ||
golang.org/x/text v0.3.3 // indirect | ||
google.golang.org/protobuf v1.23.0 // indirect | ||
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
) |
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