-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
78 lines (78 loc) · 1.75 KB
/
config.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"relaychain": {
"bin": "/home/joey/Cli/polkadot/target/release/polkadot",
"chain": "rococo-local",
"nodes": [
{
"name": "alice",
"wsPort": 10944,
"port": 10333,
"rpc-port": 10933,
"flags": [
"--tmp",
"--rpc-methods=Unsafe",
"--ws-external ",
"--rpc-external",
"--rpc-cors=all",
"--unsafe-ws-external",
"--unsafe-rpc-external "
]
},
{
"name": "bob",
"wsPort": 20944,
"port": 20333,
"rpc-port": 20933,
"flags": [
"--tmp",
"--rpc-methods=Unsafe",
"--ws-external ",
"--rpc-external",
"--rpc-cors=all",
"--unsafe-ws-external",
"--unsafe-rpc-external "
]
}
]
},
"parachains": [
{
"bin": "/home/joey/Cli/Acala/target/release/acala",
"chain": "karura-latest",
"id": "2000",
"root": "seorgCZDzP5G3JEbsBjFdpQ4dTUgCWoPjQynyJqHCfXvZVW",
"aura": [
"tVwMjyfnzpLcNCDAdCwxtryp4ffaKCvXiyMqt5U4A7dk5dT",
"seorgCZDzP5G3JEbsBjFdpQ4dTUgCWoPjQynyJqHCfXvZVW"
],
"nodes": [
{
"name": "alice",
"wsPort": 30994,
"port": 30333,
"rpc-port": 30933,
"flags": [
"--tmp",
"--rpc-cors=all",
"-laura=debug",
"--",
"--execution=wasm"
]
},
{
"name": "bob",
"wsPort": 40994,
"port": 40333,
"rpc-port": 40933,
"flags": [
"--tmp",
"--rpc-cors=all",
"-laura=debug",
"--",
"--execution=wasm"
]
}
]
}
]
}