Skip to content

Commit 9d82453

Browse files
authored
Hardfork Schedule Aggregation (#183)
* Add support for hardfork schedule aggregaytion. * go mod download * fix lint
1 parent 0dddc13 commit 9d82453

File tree

10 files changed

+2547
-775
lines changed

10 files changed

+2547
-775
lines changed

go.mod

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module eth2-crawler
33
go 1.17
44

55
require (
6-
github.com/99designs/gqlgen v0.16.0
6+
github.com/99designs/gqlgen v0.17.13
77
github.com/ethereum/go-ethereum v1.10.12
88
github.com/golang/snappy v0.0.4
99
github.com/google/uuid v1.3.0
@@ -18,14 +18,14 @@ require (
1818
github.com/protolambda/ztyp v0.2.1
1919
github.com/robfig/cron/v3 v3.0.1
2020
github.com/rs/cors v1.8.2
21-
github.com/stretchr/testify v1.7.0
22-
github.com/vektah/gqlparser/v2 v2.2.0
21+
github.com/stretchr/testify v1.7.1
22+
github.com/vektah/gqlparser/v2 v2.4.6
2323
go.mongodb.org/mongo-driver v1.8.3
2424
gopkg.in/yaml.v2 v2.4.0
2525
)
2626

2727
require (
28-
github.com/agnivade/levenshtein v1.1.0 // indirect
28+
github.com/agnivade/levenshtein v1.1.1 // indirect
2929
github.com/beorn7/perks v1.0.1 // indirect
3030
github.com/btcsuite/btcd v0.22.0-beta // indirect
3131
github.com/cespare/xxhash/v2 v2.1.1 // indirect
@@ -36,7 +36,7 @@ require (
3636
github.com/gogo/protobuf v1.3.2 // indirect
3737
github.com/golang/protobuf v1.5.2 // indirect
3838
github.com/google/gopacket v1.1.19 // indirect
39-
github.com/gorilla/websocket v1.4.2 // indirect
39+
github.com/gorilla/websocket v1.5.0 // indirect
4040
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
4141
github.com/holiman/uint256 v1.2.0 // indirect
4242
github.com/huin/goupnp v1.0.2 // indirect
@@ -81,7 +81,7 @@ require (
8181
github.com/libp2p/go-ws-transport v0.5.0 // indirect
8282
github.com/libp2p/go-yamux/v2 v2.2.0 // indirect
8383
github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd // indirect
84-
github.com/mattn/go-isatty v0.0.13 // indirect
84+
github.com/mattn/go-isatty v0.0.14 // indirect
8585
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
8686
github.com/miekg/dns v1.1.43 // indirect
8787
github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b // indirect
@@ -116,11 +116,11 @@ require (
116116
go.uber.org/atomic v1.9.0 // indirect
117117
go.uber.org/multierr v1.7.0 // indirect
118118
go.uber.org/zap v1.19.0 // indirect
119-
golang.org/x/crypto v0.0.0-20210813211128-0a44fdfbc16e // indirect
120-
golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d // indirect
119+
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
120+
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
121121
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
122-
golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912 // indirect
122+
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect
123123
golang.org/x/text v0.3.7 // indirect
124-
google.golang.org/protobuf v1.27.1 // indirect
124+
google.golang.org/protobuf v1.28.0 // indirect
125125
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
126126
)

go.sum

Lines changed: 34 additions & 20 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)