Goerli Config for Besu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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