Skip to content

Commit 23bd7b7

Browse files
committed
use geth genesis hashes
1 parent 878c5c7 commit 23bd7b7

File tree

4 files changed

+87
-42
lines changed

4 files changed

+87
-42
lines changed

flake.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@
8080
};
8181

8282
packages = {
83-
nodeCrawler = pkgs.buildGo123Module rec {
83+
nodeCrawler = pkgs.buildGo124Module rec {
8484
pname = "crawler";
8585
version = "0.0.0";
8686

8787
src = gitignoreSource ./.;
8888
subPackages = [ "cmd/crawler" ];
8989

90-
vendorHash = "sha256-GNyoXNLCWxueboh6aSnn9p1T/B0E5qe5zlDR6Ks/YCM=";
90+
vendorHash = "sha256-59EljOeuSzFBVh9bGq6GsH4s168lfxQCMJXwtM4NcYI=";
9191

9292
doCheck = false;
9393

@@ -126,7 +126,7 @@
126126
];
127127

128128
packages = with pkgs; [
129-
go_1_23
129+
go_1_24
130130
golangci-lint
131131
graphviz
132132
nix-prefetch

go.mod

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ require (
88
github.com/a-h/templ v0.3.857
99
github.com/angaz/sqlu v0.0.1
1010
github.com/btcsuite/btcd/btcec/v2 v2.3.2
11-
github.com/ethereum/go-ethereum v1.14.13
11+
github.com/ethereum/go-ethereum v1.15.7
1212
github.com/ferranbt/fastssz v0.1.3
13-
github.com/fjl/memsize v0.0.2
1413
github.com/gogo/protobuf v1.3.2
1514
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb
1615
github.com/google/go-github/v57 v57.0.0
@@ -23,7 +22,7 @@ require (
2322
github.com/pkg/errors v0.9.1
2423
github.com/prometheus/client_golang v1.19.0
2524
github.com/prysmaticlabs/prysm/v4 v4.2.1
26-
github.com/urfave/cli/v2 v2.27.1
25+
github.com/urfave/cli/v2 v2.27.5
2726
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225
2827
golang.org/x/text v0.23.0
2928
modernc.org/sqlite v1.29.3
@@ -41,7 +40,7 @@ require (
4140
github.com/consensys/gnark-crypto v0.16.0 // indirect
4241
github.com/containerd/cgroups v1.1.0 // indirect
4342
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
44-
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
43+
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
4544
github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a // indirect
4645
github.com/crate-crypto/go-kzg-4844 v1.1.0 // indirect
4746
github.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c // indirect
@@ -113,6 +112,11 @@ require (
113112
github.com/onsi/ginkgo/v2 v2.16.0 // indirect
114113
github.com/opencontainers/runtime-spec v1.2.0 // indirect
115114
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect
115+
github.com/pion/dtls/v2 v2.2.8 // indirect
116+
github.com/pion/logging v0.2.2 // indirect
117+
github.com/pion/stun/v2 v2.0.0 // indirect
118+
github.com/pion/transport/v2 v2.2.4 // indirect
119+
github.com/pion/transport/v3 v3.0.1 // indirect
116120
github.com/prometheus/client_model v0.6.0 // indirect
117121
github.com/prometheus/common v0.50.0 // indirect
118122
github.com/prometheus/procfs v0.13.0 // indirect
@@ -128,24 +132,24 @@ require (
128132
github.com/russross/blackfriday/v2 v2.1.0 // indirect
129133
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
130134
github.com/spaolacci/murmur3 v1.1.0 // indirect
131-
github.com/supranational/blst v0.3.13 // indirect
135+
github.com/supranational/blst v0.3.14 // indirect
132136
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
133137
github.com/thomaso-mirodin/intmath v0.0.0-20160323211736-5dc6d854e46e // indirect
134138
github.com/tklauser/go-sysconf v0.3.13 // indirect
135139
github.com/tklauser/numcpus v0.7.0 // indirect
136-
github.com/xrash/smetrics v0.0.0-20231213231151-1d8dd44e695e // indirect
140+
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
137141
github.com/yusufpapurcu/wmi v1.2.4 // indirect
138142
go.uber.org/dig v1.17.1 // indirect
139143
go.uber.org/fx v1.20.1 // indirect
140144
go.uber.org/mock v0.4.0 // indirect
141145
go.uber.org/multierr v1.11.0 // indirect
142146
go.uber.org/zap v1.27.0 // indirect
143147
golang.org/x/crypto v0.36.0 // indirect
144-
golang.org/x/mod v0.20.0 // indirect
148+
golang.org/x/mod v0.22.0 // indirect
145149
golang.org/x/net v0.37.0 // indirect
146150
golang.org/x/sync v0.12.0 // indirect
147151
golang.org/x/sys v0.31.0 // indirect
148-
golang.org/x/tools v0.24.0 // indirect
152+
golang.org/x/tools v0.29.0 // indirect
149153
google.golang.org/genproto/googleapis/api v0.0.0-20240308144416-29370a3891b7 // indirect
150154
google.golang.org/genproto/googleapis/rpc v0.0.0-20240308144416-29370a3891b7 // indirect
151155
google.golang.org/grpc v1.62.1 // indirect

0 commit comments

Comments
 (0)