forked from graphprotocol/firehose-cosmos
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update gitignore and adding script to start up poller
- Loading branch information
1 parent
09fa7f7
commit daf7213
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
*.lz4 | ||
/.idea | ||
/injective/.idea/ | ||
/injective/devel/.env | ||
/injective/devel/data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
firecore start reader-node merger \ | ||
--config-file= \ | ||
--log-format=stackdriver \ | ||
--log-to-file=false \ | ||
--data-dir=data \ | ||
--common-auto-max-procs \ | ||
--common-auto-mem-limit-percent=90 \ | ||
--common-one-block-store-url=data/oneblock \ | ||
--common-merged-blocks-store-url=data/merged \ | ||
--common-first-streamable-block=1561500 \ | ||
--reader-node-data-dir=data/oneblock \ | ||
--reader-node-working-dir=data/work \ | ||
--reader-node-readiness-max-latency=600s \ | ||
--reader-node-debug-firehose-logs=false \ | ||
--reader-node-blocks-chan-capacity=1000 \ | ||
--reader-node-grpc-listen-addr=:9001 \ | ||
--reader-node-manager-api-addr=:8080 \ | ||
--reader-node-path=fireinjective \ | ||
--reader-node-arguments='injective fetch rpc 1561500 --state-dir data --block-fetch-batch-size=1 --endpoints $INJECTIVE_ENDPOINT' |