-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathconfig.default.json
More file actions
43 lines (41 loc) · 938 Bytes
/
config.default.json
File metadata and controls
43 lines (41 loc) · 938 Bytes
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
{
/**
The app will use this ADM passPhrase to send 2FA codes.
Create it at https://msg.adamant.im. Make sure you've received free ADM tokens.
ADM address will correspond this passPhrase.
**/
"passPhrase": "distance expect praise frequent..",
/** Choose 'mainnet' or 'testnet' **/
"network": "mainnet",
/** Additionally, you can specify what ADM nodes to use **/
"networks": {
"testnet": {
"nodes": [
{
"ip": "127.0.0.1",
"protocol": "http",
"port": 36667
}
]
},
"mainnet": {
"nodes": [
{
"ip": "clown.adamant.im",
"protocol": "https",
"port": ""
},
{
"ip": "lake.adamant.im",
"protocol": "https",
"port": ""
},
{
"ip": "endless.adamant.im",
"protocol": "https",
"port": ""
}
]
}
}
}