Open ~/.berad/config/config.toml and make the following changes:
# Comma separated list of seed nodes to connect to
seeds = "1234abcd@seed1.example.com:26656,5678efgh@seed2.example.com:26656"
# Comma separated list of nodes to keep persistent connections to
persistent_peers = "1234abcd@peer1.example.com:26656,5678efgh@peer2.example.com:26656"
# Set this to true to enable the peer-exchange reactor
pex = true
# Maximum number of inbound peers
max_num_inbound_peers = 40
# Maximum number of outbound peers to connect to, excluding persistent peers
max_num_outbound_peers = 10
6. Edit app.toml
Open ~/.berad/config/app.toml and make the following changes:
# The minimum gas prices a validator is willing to accept for processing a transaction
minimum-gas-prices = "0.025ubera"
# Enable API server
[api]
enable = true
address = "tcp://0.0.0.0:1317"
# Enable Prometheus metrics
[telemetry]
enabled = true
prometheus-retention-time = 60
# Enable state sync
[state-sync]
snapshot-interval = 1000
snapshot-keep-recent = 2
7. Create a systemd service file
Create a file named /etc/systemd/system/berad.service: