How to deploy locally?
Deploy locally
# Clone the repository
git clone git@github.com:propeller-heads/tycho-explorer.git
cd tycho-explorer
# Copy config for deploying in developement mode verbatim
# Get a RPC for Ethereum e.g. from https://dashboard.alchemy.com/apps/new
# The Explorer uses the RPC to get contract code for VM-based contract processing e.g. for Curve and Balancer.
cp .env.example .env.dev
# Start development environment
# The app will be served over localhost:5173.
# Be patient while the app takes a few minutes to finishing indexing the data; the logs should tell the indexing progress.
make up DEV=1
Last updated