Skip to content

Instantly share code, notes, and snippets.

@kesar

kesar/config.ini Secret

Created February 16, 2018 23:12
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 kesar/1c47bc66e1958e2d58c0a87621c18082 to your computer and use it in GitHub Desktop.
Save kesar/1c47bc66e1958e2d58c0a87621c18082 to your computer and use it in GitHub Desktop.
# File to read Genesis State from
# genesis-json =
genesis-json = "/root/genesis.json"
# the location of the block log (absolute path or relative to application data dir)
block-log-dir = "blocks"
# Pairs of [BLOCK_NUM,BLOCK_ID] that should be enforced as checkpoints.
# checkpoint =
# open the database in read only mode
readonly = 0
# the location of the chain shared memory files (absolute path or relative to application data dir)
shared-file-dir = "blockchain"
# Minimum size MB of database shared memory file
shared-file-size = 8192
# The local IP and port to listen for incoming http connections.
http-server-address = 0.0.0.0:8888
# The Access-Control-Allow-Origin http value
access-control-allow-origin = *
# The Access-Control-Allow-Headers http value
# access-control-allow-headers = Content-Type
# true if Access-Control-Allow-Credentials: true should be specified in http response header
# access-control-allow-credentials = true
# The local IP address and port to listen for incoming connections.
p2p-listen-endpoint = 0.0.0.0:9876
# The IP address and port of a remote peer to sync with.
# remote-endpoint =
# The public IP address and port that should be advertized to peers.
p2p-server-address = 0.0.0.0:9876
# Enable block production, even if the chain is stale.
enable-stale-production = true
# Percent of producers (0-99) that must be participating in order to produce blocks
required-participation = false
# ID of producer controlled by this node (e.g. "inita", quotes are required, may specify multiple times)
# producer-name =
producer-name = inita
producer-name = initb
producer-name = initc
producer-name = initd
producer-name = inite
producer-name = initf
producer-name = initg
producer-name = inith
producer-name = initi
producer-name = initj
producer-name = initk
producer-name = initl
producer-name = initm
producer-name = initn
producer-name = inito
producer-name = initp
producer-name = initq
producer-name = initr
producer-name = inits
producer-name = initt
producer-name = initu
# Tuple of [public key, WIF private key] (may specify multiple times)
private-key = ["EOS6MRyAjQq8ud7hVNYcfnVPJqcVpscN5So8BhtHuGYqET5GDW5CV","5KQwrPbwdL6PhXujxW37FSSQZ1JiwsST4cqQzDeyXtP79zkvFD3"]
# Plugin(s) to enable, may be specified multiple times
# plugin =
plugin = eosio::wallet_plugin
plugin = eosio::wallet_api_plugin
plugin = eosio::producer_plugin
plugin = eosio::chain_api_plugin
plugin = eosio::http_plugin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment