blob: e46973ea8a92b97141a8a65bb31a220ef1258a14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Default configuration for Nebulas mainnet
# For more information, please visit: https://github.com/nebulasio/wiki/blob/master/mainnet.md
network {
seed: [
"/ip4/52.2.205.12/tcp/8680/ipfs/QmQK7W8wrByJ6So7rf84sZzKBxMYmc1i4a7JZsne93ysz5",
"/ip4/52.56.55.238/tcp/8680/ipfs/QmVy9AHxBpd1iTvECDR7fvdZnqXeDhnxkZJrKsyuHNYKAh",
"/ip4/13.251.33.39/tcp/8680/ipfs/QmVm5CECJdPAHmzJWN2X7tP335L5LguGb9QLQ78riA9gw3"
]
listen: ["0.0.0.0:8680"]
}
chain {
chain_id: 1
datadir: "/opt/go-nebulas-git/data.db"
keydir: "/opt/go-nebulas-git/conf/keydir"
genesis: "/opt/go-nebulas-git/conf/genesis.conf"
dynasty: "/opt/go-nebulas-git/conf/dynasty.conf"
signature_ciphers: ["ECC_SECP256K1"]
}
rpc {
rpc_listen: ["127.0.0.1:8684"]
http_listen: ["127.0.0.1:8685"]
http_module: ["api","admin"]
}
app {
log_level: "info"
log_file: "/opt/go-nebulas-git/logs"
enable_crash_report: false
}
stats {
enable_metrics: false
}
|