Skip to content

Instantly share code, notes, and snippets.

@chimera-defi
Created September 9, 2021 12:19
Show Gist options
  • Save chimera-defi/80bf983dc4bfb9523d47dcfd75f50254 to your computer and use it in GitHub Desktop.
Save chimera-defi/80bf983dc4bfb9523d47dcfd75f50254 to your computer and use it in GitHub Desktop.
Prysm settings
# Please note: The settings below are based on each other and based on a previous config file meant for both nodes.
# As such, some of the settings may not be valid for the intended process but will be ignored and not cause issues.
# Beacon node
http-web3provider: https://eth-mainnet.alchemyapi.io/v2/<redacted>
fallback-web3provider:
- https://mainnet.infura.io/v3/<redacted>
graffiti: "SharedStake.org Prysm AWS-ohio"
accept-terms-of-use: true
enable-db-backup-webhook: true
db-backup-output-dir: ./prysm_backup_beaconchain/
web: true
log-file: ./logs_beacon.txt
p2p-udp-port: 12000
p2p-tcp-port: 13000
rpc-max-page-size: 1000 # This is required to let the web-ui work, otherwise an RPC page size related error is thrown
enable-active-balance-cache: true # This may not be a valid setting but doesnt cause issues
p2p-max-peers: 100 # May increase network IO and thus costs
enable-next-slot-state-cache: true
attest-timely: true
dev: true
correctly-insert-orphaned-atts: true
correctly-prune-canonical-atts: true
enable-duty-count-down: true
# Validator
http-web3provider: https://eth-mainnet.alchemyapi.io/v2/<redacted>
fallback-web3provider:
- https://mainnet.infura.io/v3/<redacted>
graffiti: "SharedStake.org Prysm AWS-ohio"
accept-terms-of-use: true
enable-db-backup-webhook: true
db-backup-output-dir: ./prysm_backup_validator/
web: true
log-file: ./logs_validator.txt
p2p-udp-port: 12000
p2p-tcp-port: 13000
rpc-max-page-size: 1000 # This is required to let the web-ui work, otherwise an RPC page size related error is thrown
enable-active-balance-cache: true # This may not be a valid setting but doesnt cause issues
p2p-max-peers: 100 # May increase network IO and thus costs
enable-next-slot-state-cache: true
attest-timely: true
dev: true
correctly-insert-orphaned-atts: true
correctly-prune-canonical-atts: true
enable-doppelganger: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment