forked from paritytech/substrate-contracts-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zombienet.toml
33 lines (28 loc) · 1.14 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
# This sample Zombienet configuration file can be used to spawn a local network with a relaychain
# and a substrate-contracts-node parachain.
#
# Requirements:
# - Install zombienet from https://github.com/paritytech/zombienet/releases.
# - Build `polkadot`, `polkadot-execute-worker` and `polkadot-prepare-worker` from `polkadot-sdk` and make the binaries available in your path.
# - Build or install `substrate-contracts-node` and make the binary available in your path.
#
# Usage:
# zombienet spawn --provider native zombienet.toml
[relaychain]
chain = "rococo-local"
command = "polkadot"
[[relaychain.nodes]]
name = "alice"
args = [ "--alice", "-lerror,runtime::contracts=trace,xcm=trace,runtime::xcm=trace,runtime::xcmp=info" ]
[[relaychain.nodes]]
name = "bob"
args = [ "--bob", "-lerror,runtime::contracts=trace,xcm=trace,runtime::xcm=trace,runtime::xcmp=info" ]
[[parachains]]
id = 1
addToGenesis = true
chain = "contracts-parachain-local"
[parachains.collator]
name = "collator01"
ws_port = 9944
command = "substrate-contracts-node"
args = [ "-lerror,runtime::contracts=trace,xcm=trace,runtime::xcm=trace,runtime::xcmp=info" ]