Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.01 KB

README.firehose.md

File metadata and controls

37 lines (26 loc) · 1.01 KB

Local Build

First ensure you have the Git submodules properly checked out and initialized:

git submodule update --init --recursive

Then install some required dependencies:

Then ensure you are using Golang 1.20 exactly, newer don't work just yet:

brew install golang1.20
export PATH="/opt/homebrew/opt/[email protected]/bin:$PATH"

Then use their makefile since it performs a bunch of code generation:

# We use `make build` since it seems `make` alone fails on my system at least
make build

Docker Build

GitHub Actions have a hard time building Arbitrum Nitro, manually build of images can be performed with:

TAG=v2.3.1-fh3.0
docker build --platform linux/amd64 --label org.opencontainers.image.version=nitro-$TAG -t ghcr.io/streamingfast/nitro:latest -t ghcr.io/streamingfast/nitro:$TAG --push .