###############################################################################
# ↓ REQUIRED ↓ #
###############################################################################
# Network to run the node on ("op-mainnet" or "op-sepolia")
NETWORK_NAME=op-mainnet
# Type of node to run ("full" or "archive"), note that "archive" is 10x bigger
NODE_TYPE=full
###############################################################################
# ↓ REQUIRED (BEDROCK) ↓ #
###############################################################################
# L1 node that the op-node (Bedrock) will get chain data from
OP_NODE__RPC_ENDPOINT=https://ethereum-rpc.publicnode.com
# L1 beacon endpoint, you can setup your own or use Quicknode
OP_NODE__L1_BEACON=https://ethereum-beacon-api.publicnode.com
# Type of RPC that op-node is connected to, see README
OP_NODE__RPC_TYPE=basic
# Reference L2 node to run healthcheck against
HEALTHCHECK__REFERENCE_RPC_PROVIDER=https://mainnet.optimism.io
###############################################################################
# ↓ OPTIONAL (BEDROCK) ↓ #
###############################################################################
# Optional provider to serve legacy RPC requests, see README
OP_GETH__HISTORICAL_RPC=https://mainnet.optimism.io
# Set to "full" to force op-geth to use --syncmode=full
OP_GETH__SYNCMODE=full
###############################################################################
# ↓ OPTIONAL ↓ #
###############################################################################
# Feel free to customize your image tag if you want, uses "latest" by default
# See here for all available images: https://hub.docker.com/u/ethereumoptimism
IMAGE_TAG__L2GETH=latest
IMAGE_TAG__DTL=latest
IMAGE_TAG__HEALTCHECK=latest
IMAGE_TAG__PROMETHEUS=latest
IMAGE_TAG__GRAFANA=latest
IMAGE_TAG__INFLUXDB=latest
IMAGE_TAG__OP_GETH=latest
IMAGE_TAG__OP_NODE=latest
# Exposed server ports (must be unique)
# See docker-compose.yml for default values
PORT__L2GETH_HTTP=9991
PORT__L2GETH_WS=9992
PORT__DTL=
PORT__HEALTHCHECK_METRICS=7300
PORT__PROMETHEUS=9090
PORT__GRAFANA=3000
PORT__INFLUXDB=8086
PORT__TORRENT_UI=
PORT__TORRENT=
PORT__OP_GETH_HTTP=9993
PORT__OP_GETH_WS=9994
PORT__OP_GETH_P2P=39393
PORT__OP_NODE_P2P=9003
PORT__OP_NODE_HTTP=9545