Skip to content

Instantly share code, notes, and snippets.

@non-fungible-nelson
Last active October 3, 2022 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save non-fungible-nelson/9aa7e6626f93a588e8f75f8f846ced3e to your computer and use it in GitHub Desktop.
Save non-fungible-nelson/9aa7e6626f93a588e8f75f8f846ced3e to your computer and use it in GitHub Desktop.
Goerli Config for Besu
# data
logging="INFO"
data-path="/Your/Path"
# See the Besu docs for more info on this token
engine-jwt-secret="/your/secret/path/ee-jwt-secret.hex"
# engine API port - MUST MATCH WITH YOUR CONSENSUS LAYER
engine-rpc-port=8551
network="goerli"
#Can point this to other networks, we provide the specifics with our Besu releases
sync-mode="X_SNAP" # Can use FAST or FULL (FULL will use a lot of disk and months to sync!)
data-storage-format="BONSAI"
# identity - optional
identity="Nel-son" # Can be an org, individual, etc.
# rpc
rpc-http-enabled=true
rpc-http-host="0.0.0.0"
rpc-http-port=8545
rpc-http-api=["TRACE","ADMIN","DEBUG","NET","ETH","MINER","WEB3","TXPOOL"]
# Should only expose ADMIN and DEBUG if you are not making your node available to the broader internet
rpc-http-cors-origins=["all"]
# websockets
rpc-ws-enabled=true
rpc-ws-api=["NET","ETH","WEB3"]
rpc-ws-host="0.0.0.0"
rpc-ws-port=8546
# graphql
graphql-http-enabled=true
graphql-http-host="0.0.0.0"
graphql-http-port=8547
graphql-http-cors-origins=["all"]
# p2p
p2p-host="52.15.64.34" #p2p-host is for networks where uPnP is not available
p2p-port=30303
# metrics
metrics-enabled=true
metrics-host="0.0.0.0"
metrics-port=9545 # Grab the Grafana dashboard here! https://grafana.com/orgs/pegasyseng
host-whitelist=["*"]
fast-sync-min-peers=2
min-gas-price=1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment