20 lines
687 B
Modula-2
20 lines
687 B
Modula-2
module github.com/cerc-io/eth-statediff-service
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/cerc-io/leveldb-ethdb-rpc v1.1.13
|
|
github.com/ethereum/go-ethereum v1.11.5
|
|
github.com/jmoiron/sqlx v1.3.5 // indirect
|
|
github.com/prometheus/client_golang v1.14.0
|
|
github.com/sirupsen/logrus v1.9.0
|
|
github.com/spf13/cobra v1.3.0
|
|
github.com/spf13/viper v1.10.1
|
|
)
|
|
|
|
replace (
|
|
github.com/cerc-io/plugeth-statediff => git.vdb.to/cerc-io/plugeth-statediff 840d4a4e5d42110e694941afa734dac8fea126fe
|
|
github.com/ethereum/go-ethereum => git.vdb.to/cerc-io/plugeth v0.0.0-20230808125822-691dc334fab1
|
|
// github.com/openrelayxyz/plugeth-utils => git.vdb.to/cerc-io/plugeth-utils v0.0.0-20230706160122-cd41de354c46
|
|
)
|