Skip to content

Commit 25f58d5

Browse files
Update geth
1 parent 320e339 commit 25f58d5

File tree

2 files changed

+88
-72
lines changed

2 files changed

+88
-72
lines changed

go.mod

+31-21
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/0xPolygonHermez/zkevm-data-streamer v0.1.14
77
github.com/didip/tollbooth/v6 v6.1.2
88
github.com/dop251/goja v0.0.0-20230806174421-c933cf95e127
9-
github.com/ethereum/go-ethereum v1.13.2
9+
github.com/ethereum/go-ethereum v1.13.11
1010
github.com/go-git/go-billy/v5 v5.5.0
1111
github.com/go-git/go-git/v5 v5.10.0
1212
github.com/gobuffalo/packr/v2 v2.8.3
@@ -27,9 +27,9 @@ require (
2727
github.com/umbracle/ethgo v0.1.4-0.20230712173909-df37dddf16f0
2828
github.com/urfave/cli/v2 v2.25.7
2929
go.uber.org/zap v1.26.0
30-
golang.org/x/crypto v0.14.0
31-
golang.org/x/net v0.17.0
32-
golang.org/x/sync v0.4.0
30+
golang.org/x/crypto v0.18.0
31+
golang.org/x/net v0.20.0
32+
golang.org/x/sync v0.6.0
3333
google.golang.org/grpc v1.59.0
3434
google.golang.org/protobuf v1.31.0
3535
gopkg.in/yaml.v2 v2.4.0
@@ -42,49 +42,55 @@ require (
4242
github.com/Microsoft/go-winio v0.6.1 // indirect
4343
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
4444
github.com/StackExchange/wmi v1.2.1 // indirect
45-
github.com/VictoriaMetrics/fastcache v1.6.0 // indirect
45+
github.com/VictoriaMetrics/fastcache v1.12.1 // indirect
4646
github.com/acomagu/bufpipe v1.0.4 // indirect
4747
github.com/bahlo/generic-list-go v0.2.0 // indirect
4848
github.com/beorn7/perks v1.0.1 // indirect
49-
github.com/bits-and-blooms/bitset v1.7.0 // indirect
49+
github.com/bits-and-blooms/bitset v1.13.0 // indirect
5050
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
5151
github.com/buger/jsonparser v1.1.1 // indirect
5252
github.com/cespare/xxhash/v2 v2.2.0 // indirect
5353
github.com/cloudflare/circl v1.3.3 // indirect
5454
github.com/cockroachdb/errors v1.9.1 // indirect
5555
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
56-
github.com/cockroachdb/pebble v0.0.0-20230906160148-46873a6a7a06 // indirect
56+
github.com/cockroachdb/pebble v0.0.0-20230928194634-aa077af62593 // indirect
5757
github.com/cockroachdb/redact v1.1.3 // indirect
58+
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect
5859
github.com/consensys/bavard v0.1.13 // indirect
59-
github.com/consensys/gnark-crypto v0.10.0 // indirect
60+
github.com/consensys/gnark-crypto v0.12.1 // indirect
6061
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
61-
github.com/crate-crypto/go-kzg-4844 v0.3.0 // indirect
62+
github.com/crate-crypto/go-ipa v0.0.0-20231025140028-3c0104f4b233 // indirect
63+
github.com/crate-crypto/go-kzg-4844 v0.7.0 // indirect
6264
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
6365
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
6466
github.com/deckarep/golang-set/v2 v2.1.0 // indirect
65-
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
67+
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
6668
github.com/dlclark/regexp2 v1.7.0 // indirect
6769
github.com/emirpasic/gods v1.18.1 // indirect
68-
github.com/ethereum/c-kzg-4844 v0.3.1 // indirect
70+
github.com/ethereum/c-kzg-4844 v0.4.0 // indirect
71+
github.com/fjl/memsize v0.0.0-20190710130421-bcb5799ab5e5 // indirect
6972
github.com/fsnotify/fsnotify v1.6.0 // indirect
7073
github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff // indirect
74+
github.com/gballet/go-verkle v0.1.1-0.20231031103413-a67434b50f46 // indirect
7175
github.com/getsentry/sentry-go v0.18.0 // indirect
7276
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
7377
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
74-
github.com/go-ole/go-ole v1.2.6 // indirect
78+
github.com/go-ole/go-ole v1.3.0 // indirect
7579
github.com/go-pkgz/expirable-cache v0.0.3 // indirect
7680
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
77-
github.com/go-stack/stack v1.8.1 // indirect
7881
github.com/gobuffalo/logger v1.0.7 // indirect
7982
github.com/gobuffalo/packd v1.0.2 // indirect
8083
github.com/gofrs/flock v0.8.1 // indirect
8184
github.com/gogo/protobuf v1.3.2 // indirect
85+
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
8286
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
8387
github.com/golang/protobuf v1.5.3 // indirect
8488
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
8589
github.com/google/gofuzz v1.2.0 // indirect
8690
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
91+
github.com/hashicorp/go-bexpr v0.1.10 // indirect
8792
github.com/hashicorp/hcl v1.0.0 // indirect
93+
github.com/holiman/billy v0.0.0-20230718173358-1c7e68d277a7 // indirect
8894
github.com/holiman/bloomfilter/v2 v2.0.3 // indirect
8995
github.com/huin/goupnp v1.3.0 // indirect
9096
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
@@ -109,17 +115,20 @@ require (
109115
github.com/markbates/safe v1.0.1 // indirect
110116
github.com/mattn/go-colorable v0.1.13 // indirect
111117
github.com/mattn/go-isatty v0.0.17 // indirect
112-
github.com/mattn/go-runewidth v0.0.9 // indirect
118+
github.com/mattn/go-runewidth v0.0.13 // indirect
113119
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
114120
github.com/miguelmota/go-solidity-sha3 v0.1.1 // indirect
121+
github.com/mitchellh/pointerstructure v1.2.0 // indirect
115122
github.com/mmcloughlin/addchain v0.4.0 // indirect
116123
github.com/olekukonko/tablewriter v0.0.5 // indirect
117124
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
118125
github.com/pjbgf/sha1cd v0.3.0 // indirect
119126
github.com/pkg/errors v0.9.1 // indirect
120127
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
121128
github.com/prometheus/procfs v0.11.1 // indirect
129+
github.com/rivo/uniseg v0.2.0 // indirect
122130
github.com/rogpeppe/go-internal v1.11.0 // indirect
131+
github.com/rs/cors v1.7.0 // indirect
123132
github.com/russross/blackfriday/v2 v2.1.0 // indirect
124133
github.com/sagikazarmark/locafero v0.3.0 // indirect
125134
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
@@ -143,21 +152,22 @@ require (
143152
github.com/xanzy/ssh-agent v0.3.3 // indirect
144153
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
145154
go.uber.org/multierr v1.10.0 // indirect
146-
golang.org/x/mod v0.12.0 // indirect
147-
golang.org/x/sys v0.13.0 // indirect
148-
golang.org/x/term v0.13.0 // indirect
149-
golang.org/x/text v0.13.0 // indirect
155+
golang.org/x/mod v0.14.0 // indirect
156+
golang.org/x/sys v0.16.0 // indirect
157+
golang.org/x/term v0.16.0 // indirect
158+
golang.org/x/text v0.14.0 // indirect
150159
golang.org/x/time v0.3.0 // indirect
151-
golang.org/x/tools v0.13.0 // indirect
160+
golang.org/x/tools v0.17.0 // indirect
152161
google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13 // indirect
153162
gopkg.in/ini.v1 v1.67.0 // indirect
163+
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
154164
gopkg.in/warnings.v0 v0.1.2 // indirect
155165
rsc.io/tmplfunc v0.0.3 // indirect
156166
)
157167

158168
require (
159169
github.com/gorilla/websocket v1.5.1
160-
github.com/holiman/uint256 v1.2.3
170+
github.com/holiman/uint256 v1.2.4
161171
github.com/syndtr/goleveldb v1.0.1-0.20220614013038-64ee5596c38a // indirect
162172
)
163173

@@ -166,5 +176,5 @@ require (
166176
github.com/fatih/color v1.15.0
167177
github.com/joho/godotenv v1.5.1
168178
github.com/prometheus/client_golang v1.17.0
169-
golang.org/x/exp v0.0.0-20230905200255-921286631fa9
179+
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a
170180
)

0 commit comments

Comments
 (0)