Skip to content

Commit ef42580

Browse files
echevrierechevrierclangenb
authored
Add zombienet config to launch a rococo local network (#154)
* Add zombienet configuration to launch a rococo local network with 2 integritee collators * zombienet is working with upgrade to polkadot-v0.9.27 * add zombienet config corresponding to launch integritee with xcm: doesn't work!!! * Update config to run with zombienet v1.2.73 Co-authored-by: echevrier <[email protected]> Co-authored-by: clangenb <[email protected]>
1 parent e9dafa3 commit ef42580

File tree

2 files changed

+107
-0
lines changed

2 files changed

+107
-0
lines changed
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
[settings]
2+
timeout = 10000
3+
4+
[relaychain]
5+
chain = "rococo-local"
6+
default_command = "../../bin/polkadot-v0.9.27"
7+
default_args = [ "-lparachain=debug" ]
8+
9+
[[relaychain.nodes]]
10+
name = "alice"
11+
validator = true
12+
ws_port = 9999
13+
14+
[[relaychain.nodes]]
15+
name = "bob"
16+
validator = true
17+
ws_port = 9988
18+
19+
[[relaychain.nodes]]
20+
name = "charlie"
21+
validator = true
22+
ws_port = 9977
23+
24+
[[relaychain.nodes]]
25+
name = "eve"
26+
validator = true
27+
ws_port = 9966
28+
29+
[[parachains]]
30+
id = 2015
31+
addToGenesis = true
32+
cumulus_based = true
33+
chain = "integritee-rococo-local-dev"
34+
35+
[[parachains.collators]]
36+
name = "integritee-collator01"
37+
command = "./target/release/integritee-collator"
38+
ws_port = 9994
39+
40+
[[parachains.collators]]
41+
name = "integritee-collator02"
42+
command = "./target/release/integritee-collator"
43+
ws_port = 9995
44+
45+
#this is not working !!!
46+
[[parachains]]
47+
id = 2000
48+
addToGenesis = true
49+
cumulus_based = true
50+
chain = "karura-dev"
51+
52+
[[parachains.collators]]
53+
name = "acala-collator01"
54+
command = "../../bin/acala"
55+
ws_port = 9984
56+
57+
[[hrmp_channels]]
58+
sender = 2015
59+
recipient = 2000
60+
max_capacity = 8
61+
max_message_size = 512
62+
63+
[[hrmp_channels]]
64+
sender = 2000
65+
recipient = 2015
66+
max_capacity = 8
67+
max_message_size = 512
68+
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[settings]
2+
timeout = 10000
3+
4+
[relaychain]
5+
chain = "rococo-local"
6+
default_command = "../../bin/polkadot-v0.9.27"
7+
default_args = [ "-lparachain=debug" ]
8+
9+
[[relaychain.nodes]]
10+
name = "alice"
11+
validator = true
12+
ws_port = 9999
13+
14+
[[relaychain.nodes]]
15+
name = "bob"
16+
validator = true
17+
ws_port = 9988
18+
19+
[[relaychain.nodes]]
20+
name = "charlie"
21+
validator = true
22+
ws_port = 9977
23+
24+
[[parachains]]
25+
id = 2015
26+
addToGenesis = true
27+
cumulus_based = true
28+
chain = "integritee-rococo-local-dev"
29+
30+
[[parachains.collators]]
31+
name = "integritee-collator01"
32+
command = "./target/release/integritee-collator"
33+
ws_port = 9944
34+
35+
[[parachains.collators]]
36+
name = "integritee-collator02"
37+
command = "./target/release/integritee-collator"
38+
ws_port = 9945
39+

0 commit comments

Comments
 (0)