summaryrefslogtreecommitdiff
path: root/test/testdata/nettemplates/ThreeNodesOneOnline.json
blob: df214101f94d00f6359e58c6fedaf70a755d1da4 (plain)
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
{
    "Genesis": {
        "NetworkName": "tbd",
        "Wallets": [
            {
                "Name": "Wallet1",
                "Stake": 50,
                "Online": true
            },
            {
                "Name": "Wallet2",
                "Stake": 50,
                "Online": false
            }
        ]
    },
    "Nodes": [
        {
            "Name": "Primary",
            "IsRelay": true,
            "Wallets": [
            ]
        },
        {
            "Name": "OnlineNode",
            "Wallets": [
                { "Name": "Wallet1",
                  "ParticipationOnly": true }
            ]
        },
        {
            "Name": "OfflineNode",
            "Wallets": [
                { "Name": "Wallet2",
                    "ParticipationOnly": false }
            ]
        }
    ]
}