git.delta.rocks / unique-network / refs/commits / ffc36af85d75

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  ws_port = 984415  rpc_port = 984316  p2p_port = 3044417  # Zombienet does not grant the default balance to nodes created with [[nodes]].18  balance = 20000000000001920  [[relaychain.node_groups]]21  name = "relay"22  count = 42324[[parachains]]25id = 10002627  [[parachains.collators]]28  name = "alice"29  # PARA_DIR is an environment variable. If you're launching ZN from the repository's root, you should likely specify it as ./30  command = "{{PARA_DIR}}target/release/unique-collator"31  ws_port = 994432  rpc_port = 993333  p2p_port = 3120034  args = [ "-lxcm=trace", ]3536  [[parachains.collators]]37  name = "bob"38  # PARA_DIR is an environment variable. If you're launching ZN from the repository's root, you should likely specify it as ./39  command = "{{PARA_DIR}}target/release/unique-collator"40  ws_port = 994541  rpc_port = 993442  p2p_port = 3120143  args = [ "-lxcm=trace", ]