An open API service indexing awesome lists of open source software.

https://github.com/suchapalaver/cryo-docker

dockerized cryo
https://github.com/suchapalaver/cryo-docker

Last synced: 6 months ago
JSON representation

dockerized cryo

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
```