Installing the Substreams CLI
StreamingFast Substreams CLI installation documentation
Used for connecting to endpoints, streaming data in real time, and packaging custom modules.
brew install streamingfast/tap/substreams
# Use correct binary for your platform
LINK=$(curl -s https://api.github.com/repos/streamingfast/substreams/releases/latest | awk '/download.url.*linux/ {print $2}' | sed 's/"//g')
curl -L $LINK | tar zxf -
git clone https://github.com/streamingfast/substreams
cd substreams
go install -v ./cmd/substreams
Important: Add $HOME/go/bin to the system path if it's not already present.
substreams --version
A successful installation will print the version that you have installed.
substreams version dev
Last modified 6mo ago