-
Notifications
You must be signed in to change notification settings - Fork 15
/
launch-zombienet.toml
40 lines (33 loc) · 1.26 KB
/
launch-zombienet.toml
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
# To launch this zombienet out-of-the-box, run `yarn frankenstein` in the `tests` folder.
[settings]
provider = "native"
[relaychain]
# RELAY_DIR is an environment variable. If you're launching ZN from the repository's root, you should likely specify it as ../polkadot/
default_command = "{{RELAY_DIR}}target/release/polkadot"
default_args = [ "-lparachain::candidate_validation=debug", "-lxcm=trace", ]
chain = "rococo-local"
[[relaychain.nodes]]
name = "relay-alice"
rpc_port = 9844
p2p_port = 30444
# Zombienet does not grant the default balance to nodes created with [[nodes]].
balance = 2000000000000
[[relaychain.node_groups]]
name = "relay"
count = 4
[[parachains]]
id = 1000
[[parachains.collators]]
name = "alice"
# PARA_DIR is an environment variable. If you're launching ZN from the repository's root, you should likely specify it as ./
command = "{{PARA_DIR}}target/release/unique-collator"
rpc_port = 9944
p2p_port = 31200
args = [ "-lxcm=trace", ]
[[parachains.collators]]
name = "bob"
# PARA_DIR is an environment variable. If you're launching ZN from the repository's root, you should likely specify it as ./
command = "{{PARA_DIR}}target/release/unique-collator"
rpc_port = 9945
p2p_port = 31201
args = [ "-lxcm=trace", ]