Compare commits

...

3 Commits

Author SHA1 Message Date
Francisco Gindre 6f57d3274f
Merge pull request #4 from zcash-hackworks/documentation-fixes
Documentation fixes
2022-07-29 11:43:38 -03:00
Carter Jernigan fa30abb540 [#1] Update readme with working examples 2022-07-29 10:29:59 -04:00
Carter Jernigan 678f4738e6 Update .gitignore for macOS 2022-07-29 10:22:19 -04:00
2 changed files with 9 additions and 2 deletions

1
.gitignore vendored
View File

@ -131,3 +131,4 @@ dmypy.json
### JSON files
*.json
.DS_Store

View File

@ -7,10 +7,16 @@ Your lightwalletd checkpoint mate.
## Usage
Example: call checkmate and generate checkpoint json files starting from block 1346316 until latest height with a 10000 blocks interval.
Example: call checkmate and generate Mainnet checkpoint json files starting from block 1685000 until latest height with a 2500 blocks interval.
```` bash
python3 checkmate.py lightwalletd.com:9067 --start-height 1346316 --to-json
python3 checkmate.py mainnet.lightwalletd.com:9067 --start-height 1685000 --interval 2500 --to-json
````
Example: call checkmate and generate Testnet checkpoint json files starting from block 1800000 until latest height with a 10000 blocks interval.
```` bash
python3 checkmate.py testnet.lightwalletd.com:9067 --start-height 1800000 --interval 10000 --to-json
````
## Generated Output