-
Notifications
You must be signed in to change notification settings - Fork 18
/
zombienet.toml
38 lines (30 loc) · 1.2 KB
/
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
# This is a configuration file for zombienet: https://github.com/paritytech/zombienet
# You can use it to launch a custom relay-para network with relative ease.
# After building the collator and relay chain binaries, and installing zombienet 1.3.74 onwards,
# zombienet --provider podman spawn zombienet.toml
[relaychain]
default_image = "docker.io/parity/polkadot:latest"
default_command = "polkadot"
default_args = [ "-lparachain=debug" ]
chain = "rococo-local"
[[relaychain.nodes]]
name = "relay-01"
validator = true
args = ["-lruntime=debug", "-lparachain=debug", "-ltuxedo-core=debug", "-ltuxvb=debug"]
[[relaychain.nodes]]
name = "relay-02"
validator = true
args = ["-lruntime=debug", "-lparachain=debug", "-ltuxedo-core=debug", "-ltuxvb=debug"]
[[parachains]]
id = 2000
[[parachains.collators]]
name = "alice"
image = "ghcr.io/off-narrative-labs/tuxedo-parachain:latest"
command = "parachain-template-node"
args = ["--alice"]
[[parachains.collators]]
name = "tuxedo-full-node"
image = "ghcr.io/off-narrative-labs/tuxedo-parachain:latest"
command = "parachain-template-node"
# This makes this node a full node instead of a collator (despite the schema name)
validator = false