watcher-ts/packages/erc20-watcher/environments/local.toml

33 lines
702 B
TOML
Raw Normal View History

[server]
host = "127.0.0.1"
port = 3001
mode = "eth_call"
kind = "lazy"
[database]
2021-06-04 09:49:30 +00:00
type = "postgres"
host = "localhost"
port = 5432
database = "erc20-watcher"
username = "postgres"
password = "postgres"
synchronize = true
logging = false
[upstream]
2021-07-15 07:40:07 +00:00
[upstream.ethServer]
gqlApiEndpoint = "http://127.0.0.1:8082/graphql"
rpcProviderEndpoint = "http://127.0.0.1:8081"
blockDelayInMilliSecs = 2000
[upstream.cache]
name = "requests"
enabled = false
deleteOnStart = false
[jobQueue]
dbConnectionString = "postgres://postgres:postgres@localhost/erc20-watcher-job-queue"
maxCompletionLagInSecs = 300
jobDelayInMilliSecs = 100
eventsInBatch = 50