-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathconfig.sample.json
62 lines (62 loc) · 1.82 KB
/
config.sample.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"coreIp": "localhost",
"p2pPort": 4102,
"apiPort": 4103,
"webhookPort": 4104,
"jsonRpcPort": 8080,
"explorerIp": "0.0.0.0",
"explorerPort": 4200,
"chainName": "bridgechain",
"token": "MINE",
"databaseHost": "localhost",
"databasePort": "5432",
"databaseName": "core_bridgechain",
"symbol": "M",
"mainnetPeers": ["127.0.0.1", "127.0.0.2", "127.0.0.3"],
"devnetPeers": ["127.0.0.4", "127.0.0.5", "127.0.0.6"],
"mainnetPrefix": "M",
"devnetPrefix": "D",
"testnetPrefix": "T",
"fees": {
"static": {
"transfer": 10000000,
"vote": 100000000,
"secondSignature": 500000000,
"delegateRegistration": 2500000000,
"multiSignature": 500000000,
"ipfs": 500000000,
"multiPayment": 10000000,
"delegateResignation": 2500000000
},
"dynamic": {
"enabled": false,
"minFeePool": 3000,
"minFeeBroadcast": 3000,
"addonBytes": {
"transfer": 100,
"secondSignature": 250,
"delegateRegistration": 400000,
"vote": 100,
"multiSignature": 500,
"ipfs": 250,
"multiPayment": 500,
"delegateResignation": 400000
}
}
},
"forgers": 51,
"blocktime": 8,
"transactionsPerBlock": 50,
"totalPremine": 2100000000000000,
"rewardHeightStart": 75600,
"rewardPerBlock": 200000000,
"vendorFieldLength": 255,
"bridgechainPath": "$HOME/core-bridgechain",
"explorerPath": "$HOME/core-explorer",
"gitCoreCommit": true,
"gitCoreOrigin": null,
"gitExplorerCommit": true,
"gitExplorerOrigin": null,
"licenseName": "mytest",
"licenseEmail": "[email protected]"
}