Skip to content

Commit 66a7194

Browse files
committed
SIWE support
1 parent 0a035d5 commit 66a7194

File tree

5 files changed

+93
-38
lines changed

5 files changed

+93
-38
lines changed

go.mod

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/buger/jsonparser v0.0.0-20181115193947-bf1c66bbce23
1515
github.com/confio/ics23/go v0.6.6
1616
github.com/cosmos/iavl v0.17.3
17-
github.com/ethereum/go-ethereum v1.10.13
17+
github.com/ethereum/go-ethereum v1.10.17
1818
github.com/gin-contrib/cors v1.3.1
1919
github.com/gin-gonic/gin v1.7.4
2020
github.com/hyperledger/aries-framework-go v0.1.7
@@ -34,14 +34,18 @@ require (
3434
)
3535

3636
require (
37+
github.com/btcsuite/btcd/btcec/v2 v2.1.3 // indirect
3738
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce // indirect
39+
github.com/dchest/uniuri v0.0.0-20200228104902-7aecb25e1fe5 // indirect
40+
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
3841
github.com/fogleman/gg v1.3.0 // indirect
3942
github.com/fomichev/secp256k1 v0.0.0-20180413221153-00116ff8c62f // indirect
4043
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
4144
github.com/graphql-go/graphql v0.8.0 // indirect
4245
github.com/libp2p/go-libp2p-core v0.11.0 // indirect
4346
github.com/marten-seemann/qpack v0.2.1 // indirect
4447
github.com/multiformats/go-multiaddr v0.4.0 // indirect
48+
github.com/relvacode/iso8601 v1.1.0 // indirect
4549
github.com/square/go-jose/v3 v3.0.0-20200630053402-0a67ce9b0693 // indirect
4650
github.com/yeqown/reedsolomon v1.0.0 // indirect
4751
golang.org/x/image v0.0.0-20200927104501-e162460cd6b5 // indirect
@@ -55,7 +59,6 @@ require (
5559
github.com/KyleBanks/depth v1.2.1 // indirect
5660
github.com/PuerkitoBio/purell v1.1.1 // indirect
5761
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
58-
github.com/Showmax/go-fqdn v1.0.0
5962
github.com/armon/go-metrics v0.3.9 // indirect
6063
github.com/benbjohnson/clock v1.1.0 // indirect
6164
github.com/beorn7/perks v1.0.1 // indirect
@@ -109,7 +112,7 @@ require (
109112
github.com/hashicorp/go-multierror v1.1.1 // indirect
110113
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
111114
github.com/hashicorp/hcl v1.0.0 // indirect
112-
github.com/huin/goupnp v1.0.2 // indirect
115+
github.com/huin/goupnp v1.0.3-0.20220313090229-ca81a64b4204 // indirect
113116
github.com/hyperledger/aries-framework-go/spi v0.0.0-20210820175050-dcc7a225178d // indirect
114117
github.com/inconshreveable/mousetrap v1.0.0 // indirect
115118
github.com/ipfs/go-block-format v0.0.3 // indirect
@@ -222,6 +225,7 @@ require (
222225
github.com/spf13/jwalterweatherman v1.1.0 // indirect
223226
github.com/spf13/pflag v1.0.5 // indirect
224227
github.com/spf13/viper v1.8.1 // indirect
228+
github.com/spruceid/siwe-go v0.1.0
225229
github.com/stretchr/testify v1.7.0 // indirect
226230
github.com/subosito/gotenv v1.2.0 // indirect
227231
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect
@@ -247,11 +251,11 @@ require (
247251
go.uber.org/atomic v1.9.0 // indirect
248252
go.uber.org/multierr v1.7.0 // indirect
249253
go.uber.org/zap v1.19.0 // indirect
250-
golang.org/x/crypto v0.0.0-20211202192323-5770296d904e // indirect
254+
golang.org/x/crypto v0.0.0-20220408190544-5352b0902921 // indirect
251255
golang.org/x/mod v0.5.1 // indirect
252256
golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c
253257
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
254-
golang.org/x/sys v0.0.0-20211205182925-97ca703d548d // indirect
258+
golang.org/x/sys v0.0.0-20220408201424-a24fb2fb8a0f // indirect
255259
golang.org/x/text v0.3.7 // indirect
256260
golang.org/x/tools v0.1.7 // indirect
257261
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect

0 commit comments

Comments
 (0)