forked from TalleoProject/tlo-eth-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.sample
More file actions
47 lines (47 loc) · 1.29 KB
/
Copy pathconfig.json.sample
File metadata and controls
47 lines (47 loc) · 1.29 KB
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
{
"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://rinkeby.infura.io/",
"wssNode": "wss://rinkeby.infura.io/ws",
"confirmations": 10,
"gas": 120000,
"startHeight": 0
},
"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
}
}