mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
In order to reduce the amount of code that is embedded into the keeper binary, I am removing all the verkle code that uses go-verkle and go-ipa. This will be followed by further PRs that are more like stubs to replace code when the keeper build is detected. I'm keeping the binary tree of course. This means that you will still see `isVerkle` variables all over the codebase, but they will be renamed when code is touched (i.e. this is not an invitation for 30+ AI slop PRs). --------- Co-authored-by: Gary Rong <garyrong0905@gmail.com>
41 lines
1.7 KiB
Modula-2
41 lines
1.7 KiB
Modula-2
module github.com/ethereum/go-ethereum/cmd/keeper
|
|
|
|
go 1.24.0
|
|
|
|
require (
|
|
github.com/ProjectZKM/Ziren/crates/go-runtime/zkvm_runtime v0.0.0-20251001021608-1fe7b43fc4d6
|
|
github.com/ethereum/go-ethereum v0.0.0-00010101000000-000000000000
|
|
)
|
|
|
|
require (
|
|
github.com/StackExchange/wmi v1.2.1 // indirect
|
|
github.com/VictoriaMetrics/fastcache v1.13.0 // indirect
|
|
github.com/bits-and-blooms/bitset v1.20.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/consensys/gnark-crypto v0.18.1 // indirect
|
|
github.com/crate-crypto/go-eth-kzg v1.4.0 // indirect
|
|
github.com/deckarep/golang-set/v2 v2.6.0 // indirect
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
|
|
github.com/emicklei/dot v1.6.2 // indirect
|
|
github.com/ethereum/c-kzg-4844/v2 v2.1.5 // indirect
|
|
github.com/ethereum/go-bigmodexpfix v0.0.0-20250911101455-f9e208c548ab // indirect
|
|
github.com/ferranbt/fastssz v0.1.4 // indirect
|
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
|
github.com/gofrs/flock v0.12.1 // indirect
|
|
github.com/golang/snappy v1.0.0 // indirect
|
|
github.com/holiman/bloomfilter/v2 v2.0.3 // indirect
|
|
github.com/holiman/uint256 v1.3.2 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
|
|
github.com/minio/sha256-simd v1.0.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.4.1 // indirect
|
|
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect
|
|
github.com/supranational/blst v0.3.16-0.20250831170142-f48500c1fdbe // indirect
|
|
github.com/tklauser/go-sysconf v0.3.12 // indirect
|
|
github.com/tklauser/numcpus v0.6.1 // indirect
|
|
golang.org/x/crypto v0.36.0 // indirect
|
|
golang.org/x/sync v0.12.0 // indirect
|
|
golang.org/x/sys v0.36.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|
|
|
|
replace github.com/ethereum/go-ethereum => ../../
|