ipld-eth-db-validator/environments/example.toml
prathamesh0 acf8e6f96a
Make writeStateDiffAt call on missing block and add metrics (#20)
* Add chainID flag and make chainConfig optional

* Add prometheus metrics to monitor validation progress

* Make writeStateDiffAt calls on missing blocks

* Update docs and config improvements

* Use standard logger

* Add copyright to files

* Upgrade dependencies
2022-08-23 13:05:50 +05:30

30 lines
505 B
TOML

[database]
name = "vulcanize_public"
hostname = "localhost"
port = 5432
password = "password"
user = "vdbm"
[validate]
blockHeight = 1
trail = 16
sleepInterval = 10
stateDiffMissingBlock = true
stateDiffTimeout = 240
[ethereum]
chainConfig = ""
chainID = "1"
httpPath = "localhost:8545"
[prom]
metrics = true
http = true
httpAddr = "localhost"
httpPort = "9001"
dbStats = true
[log]
file = ""
level = "info"