Skip to content

Commit 95b8f44

Browse files
update geth
Signed-off-by: Krasi Georgiev <[email protected]>
1 parent 49ac26e commit 95b8f44

File tree

4 files changed

+196
-172
lines changed

4 files changed

+196
-172
lines changed

compiler/compiler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ func ExportBin(folder string, types, bins []string) error {
148148

149149
func ExportPackage(pkgFolder string, types []string, abis []string, bins []string, sigs []map[string]string, libs map[string]string, aliases map[string]string) error {
150150
pkgName := filepath.Base(pkgFolder)
151-
code, err := bind.Bind(types, abis, bins, sigs, pkgName, bind.LangGo, libs, aliases)
151+
code, err := bind.Bind(types, abis, bins, sigs, pkgName, libs, aliases)
152152
if err != nil {
153153
return errors.Wrapf(err, "generate the Go wrapper:%v", pkgName)
154154
}

go.mod

Lines changed: 33 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
module github.com/cryptoriums/packages
22

3-
go 1.21
4-
5-
toolchain go1.22.1
3+
go 1.23.0
64

75
require (
86
github.com/alecthomas/kong v0.7.0
97
github.com/bluele/gcache v0.0.2
10-
github.com/ethereum/go-ethereum v1.14.7
8+
github.com/ethereum/go-ethereum v1.15.11
119
github.com/go-kit/log v0.2.1
1210
github.com/hashicorp/go-multierror v1.1.1
1311
github.com/jinzhu/copier v0.3.5
1412
github.com/nanmu42/etherscan-api v1.9.0
1513
github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7
1614
github.com/pkg/errors v0.9.1
17-
github.com/stretchr/testify v1.9.0
18-
go.uber.org/goleak v1.2.0
15+
github.com/stretchr/testify v1.10.0
16+
go.uber.org/goleak v1.3.0
1917
go.uber.org/multierr v1.1.0
20-
golang.org/x/net v0.24.0
18+
golang.org/x/net v0.36.0
2119
)
2220

2321
require (
@@ -26,89 +24,83 @@ require (
2624
github.com/StackExchange/wmi v1.2.1 // indirect
2725
github.com/VictoriaMetrics/fastcache v1.12.2 // indirect
2826
github.com/beorn7/perks v1.0.1 // indirect
29-
github.com/bits-and-blooms/bitset v1.10.0 // indirect
30-
github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect
27+
github.com/bits-and-blooms/bitset v1.20.0 // indirect
3128
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3229
github.com/cockroachdb/errors v1.11.3 // indirect
30+
github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce // indirect
3331
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
34-
github.com/cockroachdb/pebble v1.1.1 // indirect
32+
github.com/cockroachdb/pebble v1.1.2 // indirect
3533
github.com/cockroachdb/redact v1.1.5 // indirect
3634
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect
37-
github.com/consensys/bavard v0.1.13 // indirect
38-
github.com/consensys/gnark-crypto v0.12.1 // indirect
39-
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
40-
github.com/crate-crypto/go-ipa v0.0.0-20240223125850-b1e8a79f509c // indirect
41-
github.com/crate-crypto/go-kzg-4844 v1.0.0 // indirect
35+
github.com/consensys/bavard v0.1.27 // indirect
36+
github.com/consensys/gnark-crypto v0.16.0 // indirect
37+
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
38+
github.com/crate-crypto/go-eth-kzg v1.3.0 // indirect
39+
github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a // indirect
4240
github.com/davecgh/go-spew v1.1.1 // indirect
4341
github.com/deckarep/golang-set/v2 v2.6.0 // indirect
4442
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
45-
github.com/ethereum/c-kzg-4844 v1.0.0 // indirect
46-
github.com/fjl/memsize v0.0.2 // indirect
43+
github.com/ethereum/c-kzg-4844/v2 v2.1.0 // indirect
44+
github.com/ethereum/go-verkle v0.2.2 // indirect
4745
github.com/fsnotify/fsnotify v1.6.0 // indirect
48-
github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff // indirect
49-
github.com/gballet/go-verkle v0.1.1-0.20231031103413-a67434b50f46 // indirect
5046
github.com/getsentry/sentry-go v0.27.0 // indirect
5147
github.com/go-logfmt/logfmt v0.5.1 // indirect
5248
github.com/go-ole/go-ole v1.3.0 // indirect
5349
github.com/gofrs/flock v0.8.1 // indirect
5450
github.com/gogo/protobuf v1.3.2 // indirect
55-
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
51+
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect
5652
github.com/golang/protobuf v1.5.4 // indirect
5753
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
54+
github.com/google/go-cmp v0.6.0 // indirect
5855
github.com/google/uuid v1.3.0 // indirect
5956
github.com/gorilla/websocket v1.4.2 // indirect
6057
github.com/hashicorp/errwrap v1.0.0 // indirect
6158
github.com/hashicorp/go-bexpr v0.1.10 // indirect
6259
github.com/holiman/billy v0.0.0-20240216141850-2abb0c79d3c4 // indirect
6360
github.com/holiman/bloomfilter/v2 v2.0.3 // indirect
64-
github.com/holiman/uint256 v1.3.0 // indirect
61+
github.com/holiman/uint256 v1.3.2 // indirect
6562
github.com/huin/goupnp v1.3.0 // indirect
6663
github.com/jackpal/go-nat-pmp v1.0.2 // indirect
67-
github.com/kilic/bls12-381 v0.1.0 // indirect
6864
github.com/klauspost/compress v1.16.0 // indirect
69-
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
7065
github.com/kr/pretty v0.3.1 // indirect
7166
github.com/kr/text v0.2.0 // indirect
7267
github.com/mattn/go-colorable v0.1.13 // indirect
7368
github.com/mattn/go-isatty v0.0.20 // indirect
7469
github.com/mattn/go-runewidth v0.0.13 // indirect
7570
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
76-
github.com/minio/sha256-simd v1.0.0 // indirect
7771
github.com/mitchellh/mapstructure v1.4.1 // indirect
7872
github.com/mitchellh/pointerstructure v1.2.0 // indirect
7973
github.com/mmcloughlin/addchain v0.4.0 // indirect
8074
github.com/olekukonko/tablewriter v0.0.5 // indirect
75+
github.com/pion/dtls/v2 v2.2.7 // indirect
76+
github.com/pion/logging v0.2.2 // indirect
77+
github.com/pion/stun/v2 v2.0.0 // indirect
78+
github.com/pion/transport/v2 v2.2.1 // indirect
79+
github.com/pion/transport/v3 v3.0.1 // indirect
8180
github.com/pmezard/go-difflib v1.0.0 // indirect
8281
github.com/prometheus/client_golang v1.12.0 // indirect
8382
github.com/prometheus/client_model v0.2.1-0.20210607210712-147c58e9608a // indirect
8483
github.com/prometheus/common v0.32.1 // indirect
8584
github.com/prometheus/procfs v0.7.3 // indirect
86-
github.com/protolambda/bls12-381-util v0.1.0 // indirect
87-
github.com/protolambda/zrnt v0.32.2 // indirect
88-
github.com/protolambda/ztyp v0.2.2 // indirect
8985
github.com/rivo/uniseg v0.2.0 // indirect
90-
github.com/rogpeppe/go-internal v1.9.0 // indirect
86+
github.com/rogpeppe/go-internal v1.12.0 // indirect
9187
github.com/rs/cors v1.7.0 // indirect
9288
github.com/russross/blackfriday/v2 v2.1.0 // indirect
9389
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect
94-
github.com/status-im/keycard-go v0.2.0 // indirect
95-
github.com/supranational/blst v0.3.11 // indirect
90+
github.com/supranational/blst v0.3.14 // indirect
9691
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect
9792
github.com/tklauser/go-sysconf v0.3.12 // indirect
9893
github.com/tklauser/numcpus v0.6.1 // indirect
99-
github.com/tyler-smith/go-bip39 v1.1.0 // indirect
100-
github.com/urfave/cli/v2 v2.25.7 // indirect
101-
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
94+
github.com/urfave/cli/v2 v2.27.5 // indirect
95+
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
10296
go.uber.org/atomic v1.3.2 // indirect
103-
golang.org/x/crypto v0.22.0 // indirect
97+
golang.org/x/crypto v0.35.0 // indirect
10498
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect
105-
golang.org/x/mod v0.17.0 // indirect
106-
golang.org/x/sync v0.7.0 // indirect
107-
golang.org/x/sys v0.20.0 // indirect
108-
golang.org/x/text v0.14.0 // indirect
109-
golang.org/x/time v0.5.0 // indirect
110-
golang.org/x/tools v0.20.0 // indirect
111-
google.golang.org/protobuf v1.33.0 // indirect
99+
golang.org/x/sync v0.11.0 // indirect
100+
golang.org/x/sys v0.30.0 // indirect
101+
golang.org/x/text v0.22.0 // indirect
102+
golang.org/x/time v0.9.0 // indirect
103+
google.golang.org/protobuf v1.34.2 // indirect
112104
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
113105
gopkg.in/yaml.v3 v3.0.1 // indirect
114106
rsc.io/tmplfunc v0.0.3 // indirect

0 commit comments

Comments
 (0)