config.ini 2.0 KB
Newer Older
peterwillcn's avatar
peterwillcn 已提交
1
# File to read Genesis State from
peterwillcn's avatar
peterwillcn 已提交
2 3
# genesis-json =
genesis-json = "/opt/eos/bin/data-dir/genesis.json"
peterwillcn's avatar
peterwillcn 已提交
4 5 6 7 8

# 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.
peterwillcn's avatar
peterwillcn 已提交
9
# checkpoint =
peterwillcn's avatar
peterwillcn 已提交
10 11 12 13 14 15 16 17 18 19 20

# 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.
peterwillcn's avatar
peterwillcn 已提交
21
http-server-endpoint = 0.0.0.0:8888
peterwillcn's avatar
peterwillcn 已提交
22 23

# The local IP address and port to listen for incoming connections.
peterwillcn's avatar
peterwillcn 已提交
24
listen-endpoint = 0.0.0.0:9876
peterwillcn's avatar
peterwillcn 已提交
25 26

# The IP address and port of a remote peer to sync with.
peterwillcn's avatar
peterwillcn 已提交
27
# remote-endpoint =
peterwillcn's avatar
peterwillcn 已提交
28 29 30 31 32

# The public IP address and port that should be advertized to peers.
public-endpoint = 0.0.0.0:9876

# Enable block production, even if the chain is stale.
peterwillcn's avatar
peterwillcn 已提交
33
enable-stale-production = true
peterwillcn's avatar
peterwillcn 已提交
34 35 36 37

# Percent of producers (0-99) that must be participating in order to produce blocks
required-participation = false

38
# ID of producer controlled by this node (e.g. "inita", quotes are required, may specify multiple times)
peterwillcn's avatar
peterwillcn 已提交
39
# producer-name =
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
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
peterwillcn's avatar
peterwillcn 已提交
61 62 63 64 65

# Tuple of [PublicKey, WIF private key] (may specify multiple times)
private-key = ["EOS6MRyAjQq8ud7hVNYcfnVPJqcVpscN5So8BhtHuGYqET5GDW5CV","5KQwrPbwdL6PhXujxW37FSSQZ1JiwsST4cqQzDeyXtP79zkvFD3"]

# Plugin(s) to enable, may be specified multiple times
peterwillcn's avatar
peterwillcn 已提交
66
# plugin =
peterwillcn's avatar
peterwillcn 已提交
67 68

plugin = eos::producer_plugin
J
Jaewoo Cho 已提交
69
plugin = eos::chain_api_plugin
peterwillcn's avatar
peterwillcn 已提交
70
plugin = eos::http_plugin