eth-statediff-service/README.md

153 lines
3.9 KiB
Markdown
Raw Normal View History

2020-11-26 10:31:29 +00:00
# eth-statediff-service
[![Go Report Card](https://goreportcard.com/badge/github.com/vulcanize/eth-statediff-service)](https://goreportcard.com/report/github.com/vulcanize/eth-statediff-service)
2020-08-19 06:07:34 +00:00
>> 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](https://github.com/vulcanize/go-ethereum/releases/tag/v1.9.11-statediff-0.0.5) without needing to run a full node
## Setup
Build the binary:
```bash
make build
```
### Local Setup
* Change values in [chain config file](./chain.json) according to chain config in genesis json file used by local geth.
* Change the following in [config file](./environments/config.toml)
```toml
[leveldb]
# Path to geth leveldb data
path = "/path-to-local-geth-data/chaindata"
ancient = "/path-to-local-geth-data/chaindata/ancient"
[ethereum]
chainConfig = "./chain.json" # Path to custom chain config file
chainID = 41337 # Same chain ID as in chain.json
[database]
# Update database config
name = "vulcanize_testing"
hostname = "localhost"
port = 5432
user = "postgres"
password = "postgres"
type = "postgres"
```
* To write statediff for a range of block make changes in [config file](./environments/config.toml)
```toml
[prerun]
only = false
ranges = [
[8, 15] # Block number range for which to write statediff.
]
```
2020-11-26 10:31:29 +00:00
## Usage
2020-08-19 06:07:34 +00:00
2020-12-03 02:08:20 +00:00
### `serve`
2020-11-26 10:31:29 +00:00
To serve state diffs over RPC:
2020-08-19 06:07:34 +00:00
2020-11-26 10:31:29 +00:00
`eth-statediff-service serve --config=<config path>`
Example:
```bash
./eth-statediff-service serve --config environments/config.toml
```
2020-11-26 10:31:29 +00:00
Available RPC methods are:
* `statediff_stateTrieAt()`
* `statediff_streamCodeAndCodeHash()`
* `statediff_stateDiffAt()`
* `statediff_writeStateDiffAt()`
2021-11-19 01:18:12 +00:00
* `statediff_writeStateDiffsInRange()`
2020-11-26 10:31:29 +00:00
2021-11-19 01:18:12 +00:00
e.g. `curl -X POST -H 'Content-Type: application/json' --data '{"jsonrpc":"2.0","method":"statediff_writeStateDiffsInRange","params":['"$BEGIN"', '"$END"', {"intermediateStateNodes":true,"intermediateStorageNodes":true,"includeBlock":true,"includeReceipts":true,"includeTD":true,"includeCode":true}],"id":1}' "$HOST":"$PORT"`
2020-12-03 02:08:20 +00:00
2021-11-19 01:18:12 +00:00
The process can be configured locally with sets of ranges to process as a "prerun" to processing directed by the server endpoints.
This is done by turning "prerun" on in the config (`statediff.prerun = true`) and defining ranged and params in the
`prerun` section of the config as shown below.
2020-11-26 10:31:29 +00:00
## Configuration
An example config file:
2020-08-19 06:07:34 +00:00
```toml
[leveldb]
path = "/Users/user/Library/Ethereum/geth/chaindata"
ancient = "/Users/user/Library/Ethereum/geth/chaindata/ancient"
[server]
2021-11-19 01:18:12 +00:00
ipcPath = ".ipc"
2020-08-19 06:07:34 +00:00
httpPath = "127.0.0.1:8545"
2020-11-26 10:31:29 +00:00
[statediff]
2021-11-19 01:18:12 +00:00
prerun = true
serviceWorkers = 1
workerQueueSize = 1024
trieWorkers = 4
[prerun]
only = false
ranges = [
[0, 1000]
]
[prerun.params]
intermediateStateNodes = true
intermediateStorageNodes = true
includeBlock = true
includeReceipts = true
includeTD = true
includeCode = true
watchedAddresses = []
watchedStorageKeys = []
2020-11-26 10:31:29 +00:00
2020-08-19 06:07:34 +00:00
[log]
2021-11-19 01:18:12 +00:00
file = ""
2020-08-19 06:07:34 +00:00
level = "info"
[eth]
chainID = 1
2020-11-26 10:31:29 +00:00
2021-11-19 01:18:12 +00:00
[database]
name = "vulcanize_test"
hostname = "localhost"
port = 5432
user = "vulcanize"
password = "..."
type = "postgres"
driver = "sqlx"
dumpDestination = ""
filePath = ""
[cache]
database = 1024
trie = 1024
[prom]
dbStats = false
metrics = true
http = true
httpAddr = "localhost"
httpPort = "8889"
[ethereum]
nodeID = ""
clientName = "eth-statediff-service"
genesisBlock = "0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3"
networkID = 1
chainID = 1
2020-08-19 06:07:34 +00:00
```