Network Overview

Testnet

Set the following variables in your .env file in apps/hubble:

FC_NETWORK_ID=2
BOOTSTRAP_NODE=/dns/testnet1.farcaster.xyz/tcp/2282

If running from source code, add these arguments to the yarn start command

yarn start ... \
    -n 2 \
    -b /dns/testnet1.farcaster.xyz/tcp/2282

Mainnet

Set the following variables in your .env file in apps/hubble:

FC_NETWORK_ID=1
BOOTSTRAP_NODE=/dns/hoyt.farcaster.xyz/tcp/2282

If running from source code, add these arguments to the yarn start command

yarn start ... \
    -n 1 \
    -b /dns/hoyt.farcaster.xyz/tcp/2282

Last updated