smartcontracts/simple-optimism-node

OP Sepolia Unknown Env Variables

Closed this issue · 1 comments

I'm trying to boot up a sepolia node using the instructions however I am getting the following errors regarding env variables..

t=2024-02-15T21:34:11+0000 lvl=warn msg="Unknown env var" prefix=OP_NODE env_var="OP_NODE__RPC_ENDPOINT=https://quicknodeendpoint.pro"
t=2024-02-15T21:34:11+0000 lvl=warn msg="Unknown env var" prefix=OP_NODE env_var="OP_NODE__L1_BEACON=https://quicknodeendpoint.pro/genesis_subpath"
t=2024-02-15T21:34:11+0000 lvl=warn msg="Unknown env var" prefix=OP_NODE env_var="OP_NODE__RPC_TYPE=quicknode"

This is my .env

OP_NODE__RPC_ENDPOINT='https://myendpoint.pro/'

# L1 beacon endpoint, you can setup your own or use Quicknode
OP_NODE__L1_BEACON='https://myendpoint.pro/beacon'

# Type of RPC that op-node is connected to, see README
OP_NODE__RPC_TYPE=quicknode

No worries about the "Unknown env var" warning! It's won't affect the node's functionality. Double underscores (__) keep it separate from the official variable. This design is there before passing parameters as environment variables are supported.

Also do your node stuck or just have these warnings?