forked from galacticcouncil/hydration-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
67 lines (67 loc) · 1.41 KB
/
Copy pathconfig.json
File metadata and controls
67 lines (67 loc) · 1.41 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"settings": {
"provider": "native"
},
"relaychain": {
"default_command": "../../../polkadot-sdk/target/release/polkadot",
"chain": "rococo-local",
"nodes": [
{
"name": "alice",
"command": "../../../polkadot-sdk/target/release/polkadot",
"args": [
"--pruning=archive"
],
"rpc_port": 9944,
"invulnerable": true
},
{
"name": "bob",
"rpc_port": 9955,
"invulnerable": true
},
{
"name": "charlie",
"rpc_port": 9966,
"invulnerable": true
},
{
"name": "dave",
"rpc_port": 9977,
"invulnerable": true
}
]
},
"types": {},
"hrmp_channels": [],
"parachains": [
{
"id": 2034,
"cumulus_based": true,
"chain": "local",
"chain_spec_path": "data/forked-chainspec.json",
"collators": [
{
"name": "alice",
"command": "../../target/release/hydradx",
"args": [
"--pruning=archive",
"--rpc-max-connections=5000",
"--tx-ban-seconds=5",
"--log=info"
],
"rpc_port": 9999
},
{
"name": "bob",
"command": "../../target/release/hydradx",
"args": [
"--pruning=archive",
"--log=info"
],
"rpc_port": 9989
}
]
}
]
}