https://github.com/suchapalaver/cryo-docker
dockerized cryo
https://github.com/suchapalaver/cryo-docker
Last synced: 6 months ago
JSON representation
dockerized cryo
- Host: GitHub
- URL: https://github.com/suchapalaver/cryo-docker
- Owner: suchapalaver
- Created: 2024-12-15T16:24:56.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-12-15T16:33:24.000Z (10 months ago)
- Last Synced: 2025-02-10T03:47:35.772Z (8 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cryo-docker
Check out [cryo](https://github.com/paradigmxyz/cryo).
## Build
```terminal
docker build -t cryo-docker .
```## Run
Example arguments to run the `erc20_transfers` command:
```terminal
podman run --rm \
cryo-docker \
erc20_transfers \
--rpc "{$RPC_URL}{$API_KEY}" \
--blocks "{$START_BLOCK}:{$END_BLOCK}" \
--to-address "{$ADDRESS}" \
--output-dir "/app/cryo_output" \
--chunk-size "5000" \
--max-concurrent-chunks "2" \
--exclude-failed \
--no-report
```