v2.1.0
Highlights
We change the arguments accepted by substreams-sink-kv inject
where now the first argument must be the endpoint to consume from. This was previously the provided through the flag -e, --endpoint
. This has been done to aligned with other sinks supported by StreamingFast team.
Before:
# Implicit default endpoint
substreams-sink-kv inject <dsn> substreams.spkg
# Explicit endpoint
substreams-sink-kv inject -e mainnet.eth.streamingfast.io:443 <dsn> substreams.spkg
After:
substreams-sink-kv inject mainnet.eth.streamingfast.io:443 <dsn> substreams.spkg
Changed
- Breaking Flag
-e, --endpoint
has been replaced by a mandatory positional argument instead, see highlights for upgrade procedure.