diff --git a/README.md b/README.md index 9a1b72092..daf8e211b 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ We have configured a network of 2 relay chain nodes, 1 Turing node and 1 Mangata 3. Create an alias to the zombie program(on MacOS). Since the actual command of `npm run zombie` is `node ./packages/cli/dist/cli.js`, we can add an alias to it by editing the `~/.bash_profile` file. Simply, run `vim ~/.bash_profile` add one line `alias zombienet="node /zombienet/javascript/packages/cli/dist/cli.js"` to it. 4. Run `source ~/.bash_profile`. This will load the new ~/.bash_profile. 5. Cd into OAK-blockchain folder, `cd ../../OAK-blockchain`. -6. Spawn zombienet with our config file, `zombienet spawn zombienets/turing/xcmp.toml`. +6. Spawn zombienet with our config file, `zombienet spawn zombienets/turing/mangata.toml`. The zombie spawn will run 2 relay chain nodes, 1 Turing node and 1 Mangata node, and set up an HRMP channel between the parachains. diff --git a/zombienets/turing/single-chain.toml b/zombienets/turing/turing-simple.toml similarity index 100% rename from zombienets/turing/single-chain.toml rename to zombienets/turing/turing-simple.toml diff --git a/zombienets/turing/xcmp.toml b/zombienets/turing/xcmp.toml deleted file mode 100644 index 4c0234b9b..000000000 --- a/zombienets/turing/xcmp.toml +++ /dev/null @@ -1,47 +0,0 @@ -[settings] -provider = "native" -timeout = 1000 - -[relaychain] -default_command = "../polkadot/target/release/polkadot" -chain = "rococo-local" - -[[relaychain.nodes]] -name = "alice" - -[[relaychain.nodes]] -name = "bob" - -[[parachains]] -id = 2114 -cumulus_based = true -chain = "turing-dev" - -[parachains.collator] -name = "turing-col-1" -command = "./target/release/oak-collator" -ws_port = 9946 -rpc_port = 8855 - -[[parachains]] -id = 1999 -cumulus_based = true -chain = "local" - -[parachains.collator] -name = "template-col-1" -command = "../substrate-parachain-template/target/release/parachain-template-node" -ws_port = 9947 -rpc_port = 8866 - -[[hrmp_channels]] -sender = 2114 -recipient = 1999 -max_capacity = 8 -max_message_size = 512 - -[[hrmp_channels]] -sender = 1999 -recipient = 2114 -max_capacity = 8 -max_message_size = 512