acf8e6f96a
* 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
30 lines
505 B
TOML
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"
|