watcher-ts/packages/watcher/environments/local.toml
Ashwin Phatak 47ce52c112
Sqlite based index for ERC20 data (#31)
* Save/load balance and allowance data to/from RDBMS.

* Event entities.

* Pass artifacts to indexer.

* Refactoring, comments.

* Sync events to database.

* Absorb typeorm config file settings into our own config file.
2021-06-03 17:31:21 +05:30

18 lines
290 B
TOML

[server]
host = "127.0.0.1"
port = 3001
[database]
type = "sqlite"
database = "out/indexer.db"
synchronize = true
logging = false
[upstream]
gqlEndpoint = "http://127.0.0.1:8083/graphql"
[upstream.cache]
name = "requests"
enabled = true
deleteOnStart = false