Parallelizable statediffing process that extracts from an offline levelDB
Go to file
Ian Norden f3ca915cb3
Merge pull request #2 from vulcanize/log
add log message after servers are successfully spun up
2020-08-19 22:42:33 -05:00
cmd add log message after servers are successfully spun up 2020-08-19 22:41:18 -05:00
environments use logrus 2020-08-19 11:35:09 -05: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 begin docker stuff 2020-08-19 15:37:30 -05:00
Dockerfile begin docker stuff 2020-08-19 15:37:30 -05:00
go.mod go mod 2020-08-19 01:13:48 -05:00
go.sum go mod 2020-08-19 01:13:48 -05:00
LICENSE cobra init 2020-08-18 23:27:37 -05:00
main.go cobra init 2020-08-18 23:27:37 -05:00
README.md update readme 2020-08-19 01:09:22 -05:00
startup_script.sh begin docker stuff 2020-08-19 15:37:30 -05: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