Last active
March 23, 2021 06:11
-
-
Save bensig/2cf281db5fb3a4119e7d729883942334 to your computer and use it in GitHub Desktop.
Example config.ini for EOS Block Producer / Validator
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
# configuration example by bensig | |
###### producer plugin options - enable if running producer node | |
plugin = eosio::producer_plugin | |
## sig provider keys should match the key on your producer-name | |
signature-provider = <pubkey>=KEY:<privkey> | |
producer-name = eosio | |
## additional producer plugin options can be left default | |
max-transaction-time = 10000 | |
max-irreversible-block-age = -1 | |
abi-serializer-max-time-ms = 2000 | |
enable-stale-production = true | |
pause-on-startup = false | |
###### chain plugin options | |
plugin = eosio::chain_plugin | |
wasm-runtime = wabt | |
reversible-blocks-db-size-mb = 340 | |
contracts-console = false | |
## set chain-state-db-size-mb to equal the size of your RAM | |
chain-state-db-size-mb = 98304 | |
###### http plugin options | |
plugin = eosio::http_plugin | |
http-server-address = 0.0.0.0:1880 | |
access-control-allow-origin = * | |
access-control-allow-credentials = false | |
https-client-validate-peers = 1 | |
verbose-http-errors = true | |
http-validate-host = 0 | |
## enable if using https | |
# https-server-address = 0.0.0.0:443 | |
# https-certificate-chain-file | |
# nodeos general config | |
p2p-server-address = 0.0.0.0:9876 | |
p2p-listen-endpoint = 0.0.0.0:9876 | |
p2p-max-nodes-per-host = 1 | |
max-clients = 250 | |
connection-cleanup-period = 30 | |
sync-fetch-span = 100 | |
txn-reference-block-lag = 0 | |
allowed-connection = any | |
agent-name = bensigcoolconfig | |
###### additional plugins | |
plugin = eosio::chain_api_plugin | |
plugin = eosio::history_plugin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment