-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.json.sample
48 lines (48 loc) · 1.31 KB
/
config.json.sample
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
{
"ethereum" : {
"enabled": true,
"contractABI": "<replace with full path to contract ABI definition file>",
"contractAddress": "<replace with contract's ETH address>",
"ownerKey": "<replace with ETH private key of contract owner>",
"ownerAddress": "<replace with wallet address of contract owner>",
"httpsNode": "https://sepolia.infura.io/",
"wssNode": "wss://sepolia.infura.io/ws",
"confirmations": 10,
"gas": 120000,
"startHeight": 0,
"blacklist": []
},
"logging" : {
"files": {
"level": "info",
"directory": "logs",
"flushInterval": 5
},
"console": {
"level": "info",
"colors": true
}
},
"redis" : {
"host": "127.0.0.1",
"port": 6379
},
"talleo" : {
"enabled": true,
"bridgeAddress": "<replace with TLO address of bridge wallet>",
"daemon": {
"host": "127.0.0.1",
"port": 33888,
"ssl": false
},
"wallet": {
"host": "127.0.0.1",
"port": 33777,
"ssl": false,
"password": "<replace with RPC password>"
},
"confirmations": 10,
"fee": 1,
"startHeight": 0
}
}