From 7c7ad04785e8d061b67abaddfd40e640352248de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Kru=CC=88ger?= Date: Tue, 20 Feb 2018 11:36:04 +0100 Subject: [PATCH] deployment_guide.md: another pass --- deployment_guide.md | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/deployment_guide.md b/deployment_guide.md index afec8c54..bab29683 100644 --- a/deployment_guide.md +++ b/deployment_guide.md @@ -19,7 +19,7 @@ es well as the number of `required_signatures` ## initial deployment steps for any authority (deploying and non-deploying) -given you are an authority and +given you are authority with `authority_address`. [build and install the bridge](README.md#build) @@ -27,27 +27,28 @@ install parity. we tested it with [parity 1.8.10](https://github.com/paritytech/parity/releases/tag/v1.8.10) though it should work with the latest stable release. -### start parity node that connects +### start parity node that connects to `home` -start a parity node `home_node` that connects to `foreign`. +``` +parity \ + --chain {home chain name or spec} + --ipc-path home.ipc + --no-jsonrpc + --unlock {authority_address} + --password {path to file containing password for authority address} +``` -assuming `foreign = kovan`: +### start parity node that connects to `foreign` ``` parity \ - --chain {chain name or spec} + --chain {foreign chain name or spec} --ipc-path foreign.ipc --no-jsonrpc --unlock {authority_address} --password {path to file containing password for authority address} ``` -start a parity node that connects to `foreign`. -that has the authority address unlocked. -let's call it `foreign_node` - -repeat the same for `home`. - ### configure the bridge copy [integration-tests/bridge_config.toml](integration-tests/bridge_config.toml) @@ -55,7 +56,8 @@ to a local `bridge_config.toml`. within `bridge_config.toml` resolve/fill-in all the `ACTION REQUIRED`s. -refer to [the documentation of config options](README.md#configuration). +for help refer to the comments, [the config option documentation](README.md#configuration). +or [![Join the chat at https://gitter.im/paritytech/parity-bridge](https://badges.gitter.im/paritytech/parity-bridge.svg)](https://gitter.im/paritytech/parity-bridge?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [if you're the **leading** authority continue here](#further-deployment-steps-for-leading-authority)