4c72acea96
* Add a sushiswap stack with contract deployments * Add watcher services * Add a service for the info app * Add instructions to run smoke tests * Use sushi-info-watcher in demo mode * Turn off block prefetching * Fix sushiswap demo instructions * Use release version and add healthcheck in Lotus stack * Wait for Lotus node to start before sushiswap watchers --------- Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
42 lines
870 B
TOML
42 lines
870 B
TOML
[server]
|
|
host = "0.0.0.0"
|
|
port = 3003
|
|
kind = "active"
|
|
|
|
[metrics]
|
|
host = "0.0.0.0"
|
|
port = 9000
|
|
[metrics.gql]
|
|
port = 9001
|
|
|
|
[database]
|
|
type = "postgres"
|
|
host = "sushiswap-watcher-db"
|
|
port = 5432
|
|
database = "sushi-watcher"
|
|
username = "vdbm"
|
|
password = "password"
|
|
synchronize = true
|
|
logging = false
|
|
maxQueryExecutionTime = 100
|
|
|
|
[upstream]
|
|
[upstream.ethServer]
|
|
rpcProviderEndpoint = "http://lotus-node-1:1234/rpc/v1"
|
|
rpcClient = true
|
|
|
|
[upstream.cache]
|
|
name = "requests"
|
|
enabled = false
|
|
deleteOnStart = false
|
|
|
|
[jobQueue]
|
|
dbConnectionString = "postgres://vdbm:password@sushiswap-watcher-db:5432/sushi-watcher-job-queue"
|
|
maxCompletionLagInSecs = 300
|
|
jobDelayInMilliSecs = 0
|
|
eventsInBatch = 50
|
|
lazyUpdateBlockProgress = true
|
|
blockDelayInMilliSecs = 2000
|
|
prefetchBlocksInMem = false
|
|
prefetchBlockCount = 10
|