-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Description Configuration methodology (via CLI options) has been outgrown with the number of options. This PR removes all chain / network related configuration and moves to a configuration file. # Changes - [x] Move all configuration for chains to a dedicated file - [x] Remove unused features (replay tx / replay block) - [x] Eliminates dynamic download of filter policies (now within configuration file) - [x] Update `README.md` ## How to test 1. Adjust the `config.json.example` for suitable configuration 2. Run and verify sync process completes warmup ## Related Issues Fixes #129 --------- Co-authored-by: Leandro <[email protected]>
- Loading branch information
1 parent
17f934a
commit 597e30b
Showing
17 changed files
with
446 additions
and
453 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
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,12 @@ | ||
{ | ||
"networks": [ | ||
{ | ||
"name": "mainnet", | ||
"rpc": "ws://172.20.0.5:8546", | ||
"deploymentBlock": 17883049, | ||
"filterPolicy": { | ||
"defaultAction": "ACCEPT" | ||
} | ||
} | ||
] | ||
} |
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
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,5 +1,2 @@ | ||
export * from "./run"; | ||
export * from "./runMulti"; | ||
export * from "./replayBlock"; | ||
export * from "./replayTx"; | ||
export * from "./dumpDb"; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.