Parallelizable statediffing process that extracts from an offline levelDB
Go to file
2020-08-20 09:10:47 +00:00
.github/workflows read only mapping in docker-compose 2020-08-20 01:47:02 +03:00
cmd update readme 2020-08-19 01:09:22 -05:00
environments overlay fixs 2020-08-20 09:10:47 +00:00
pkg log the size of the state object 2020-08-19 14:34:05 -05:00
.gitignore go mod 2020-08-19 01:13:48 -05:00
docker-compose.yml overlay fixs 2020-08-20 09:10:47 +00:00
Dockerfile overlay fixs 2020-08-20 09:10:47 +00:00
go.mod go mod 2020-08-19 01:13:48 -05:00
go.sum workaround for write permission for lock file 2020-08-20 02:26:53 +03:00
LICENSE cobra init 2020-08-18 23:27:37 -05:00
main.go cobra init 2020-08-18 23:27:37 -05:00
Makefile read only mapping in docker-compose 2020-08-20 01:47:02 +03:00
README.md update readme 2020-08-19 01:09:22 -05:00
startup_script.sh overlay fixs 2020-08-20 09:10:47 +00:00

eth-statediff-service

standalone statediffing service ontop of leveldb

Purpose:

Stand up a statediffing service directly on top of a go-ethereum leveldb instance. This service can serve historical state data over the same rpc interface as statediffing geth without needing to run a full node

Usage:

./eth-statediff-service serve --config={path to toml config file}

Config:

[leveldb]
    path = "/Users/user/Library/Ethereum/geth/chaindata"
    ancient = "/Users/user/Library/Ethereum/geth/chaindata/ancient"

[server]
    ipcPath = "~/.vulcanize/vulcanize.ipc"
    httpPath = "127.0.0.1:8545"

[log]
    file = ""
    level = "info"

[eth]
    chainID = 1