git.delta.rocks / unique-network / refs/commits / 04ffed191ae7

difftreelog

source

launch-zombienet.toml1.2 KiBsourcehistory
1# To launch this zombienet out-of-the-box, run `yarn frankenstein` in the `tests` folder.23[settings]4provider = "native"56[relaychain]7# RELAY_DIR is an environment variable. If you're launching ZN from the repository's root, you should likely specify it as ../polkadot/8default_command = "{{RELAY_DIR}}target/release/polkadot"9default_args = [ "-lparachain::candidate_validation=debug", "-lxcm=trace", ]10chain = "rococo-local"1112  [[relaychain.nodes]]13  name = "relay-alice"14  ws_port = 984415  rpc_port = 984316  p2p_port = 304441718  [[relaychain.node_groups]]19  name = "relay"20  count = 42122[[parachains]]23id = 10002425  [[parachains.collators]]26  name = "alice"27  # PARA_DIR is an environment variable. If you're launching ZN from the repository's root, you should likely specify it as ./28  command = "{{PARA_DIR}}target/release/unique-collator"29  ws_port = 994430  rpc_port = 993331  p2p_port = 3120032  args = [ "-lxcm=trace", ]3334  [[parachains.collators]]35  name = "bob"36  # PARA_DIR is an environment variable. If you're launching ZN from the repository's root, you should likely specify it as ./37  command = "{{PARA_DIR}}target/release/unique-collator"38  ws_port = 994539  rpc_port = 993440  p2p_port = 3120141  args = [ "-lxcm=trace", ]