git.delta.rocks / unique-network / refs/commits / 0e75cd977fe9

difftreelog

source

launch-zombienet.toml1.3 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  rpc_port = 984415  p2p_port = 3044416  # Zombienet does not grant the default balance to nodes created with [[nodes]].17  balance = 20000000000001819  [[relaychain.node_groups]]20  name = "relay"21  count = 42223[[parachains]]24id = 10002526  [[parachains.collators]]27  name = "alice"28  # PARA_DIR is an environment variable. If you're launching ZN from the repository's root, you should likely specify it as ./29  command = "{{PARA_DIR}}target/release/unique-collator"30  rpc_port = 994431  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  rpc_port = 994539  p2p_port = 3120140  args = [ "-lxcm=trace", ]