Parallelizable statediffing process that extracts from an offline levelDB
Go to file
Ian Norden 456043dc4c
Merge pull request #12 from vulcanize/codehash
Emit codehash=>code mappings
2020-11-08 17:31:53 -06:00
cmd refactor config for workers 2020-09-14 22:51:54 -05:00
environments add workers to example.toml 2020-09-14 23:19:13 -05:00
pkg update go-modules 2020-11-08 17:30:43 -06: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 update go-modules 2020-11-08 17:30:43 -06:00
go.sum update go-modules 2020-11-08 17:30:43 -06: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 raise log level for http/ipc server init 2020-08-23 15:00:11 -05:00
startup_script.sh begin docker stuff 2020-08-19 15:37:30 -05:00

eth-statediff-service

Go Report Card

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