-
Notifications
You must be signed in to change notification settings - Fork 2
/
config_example.json
48 lines (48 loc) · 1.01 KB
/
config_example.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
{
"LogLevel":"debug",
"API":{
"ListenOnPort":9090,
"IsProtocolHttps": true,
"CORSAllowedOrigins":[
"*"
]
},
"Cron": {
"Operations": 30,
"Assets": 30
},
"Networks":[
{
"Name": "main",
"SqlConnectionString":"",
"Params": {
"Host": "127.0.0.1",
"Port": 5432,
"User": "user",
"Password": "password",
"Database": "tezosign_db",
"Schema": "msig",
"DebugMode": false
},
"IndexerParams": {
"Host": "127.0.0.1",
"Port": 5432,
"User": "user",
"Password": "password",
"Database": "mainnet_tzkt_db",
"Schema": "public",
"DebugMode": false
},
"Auth": {
"AuthKey" : "HexedEcdsaPrivateKey",
"SessionHashKey": "Hexed128BitSecretKey",
"SessionBlockKey": "Hexed128BitSecretKey"
},
"NodeRpc": {
"Host": "mainnet-tezos.giganode.io:443",
"Schemes": ["https"],
"BasePath": ""
}
}
]
}