From 14e7159d0dd7b1f8890f813f77e8b7bc553c7f3f Mon Sep 17 00:00:00 2001 From: msobh13 <78115394+msobh13@users.noreply.github.com> Date: Fri, 8 Dec 2023 18:23:30 +0400 Subject: [PATCH 1/2] Update participants.mdx fixed alias to aliases --- .../operators/networks/genesis-flow/participants.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/docs/pages/operators/networks/genesis-flow/participants.mdx b/packages/docs/pages/operators/networks/genesis-flow/participants.mdx index 47d8a8c6..079ddad3 100644 --- a/packages/docs/pages/operators/networks/genesis-flow/participants.mdx +++ b/packages/docs/pages/operators/networks/genesis-flow/participants.mdx @@ -75,7 +75,7 @@ The `$ALIAS` variable is the alias of the pre-genesis keys that were generated i ```bash #Ensure $BASE_DIR is set to the base directory TX_FILE_PATH="$BASE_DIR/pre-genesis/transactions.toml" -namadac utils init-genesis-established-account --path $TX_FILE_PATH --alias $ALIAS +namadac utils init-genesis-established-account --path $TX_FILE_PATH --aliases $ALIAS # You can change the `--path` argument to any file path, but the recommended is `$BASE_DIR/pre-genesis/transactions.toml` ``` @@ -103,13 +103,13 @@ public_keys = ["tpknam1qr872zwdvw4u4nkpl0ykmvhyvxw7j0u6g7ymz03d7he0jr3szkuwczddj #### Generate a pre-genesis multisignature account -In order to generate a pre-genesis multisignature account, simply add multiple `--alias` flags to the command: +In order to generate a pre-genesis multisignature account, simply add multiple `--aliases` flags to the command: ```bash # Ensure $BASE_DIR is set to the base directory # Assuming that the values of $ALIAS1, $ALIAS2, and $ALIAS3 are the aliases of the pre-genesis keys that were generated in the [Generating keys](#generating-keys) step. TX_FILE_PATH="$BASE_DIR/pre-genesis/transactions.toml" -namadac utils init-genesis-established-account --path $TX_FILE_PATH --alias $ALIAS1 --alias $ALIAS2 --alias $ALIAS3 +namadac utils init-genesis-established-account --path $TX_FILE_PATH --aliases $ALIAS1 --aliases $ALIAS2 --aliases $ALIAS3 ``` The command will ouptut the generated address of the multisignature account. @@ -201,4 +201,4 @@ Once all pre-genesis transactions have been generated and signed, the pre-genesi By convention, a directory for each pre-genesis network participant is created in the git repository. The `signed-transactions.toml` file is then submitted to the respective directory. - \ No newline at end of file + From 737a8d6faf0b91698929cd2fff47312618b5944b Mon Sep 17 00:00:00 2001 From: msobh13 <78115394+msobh13@users.noreply.github.com> Date: Fri, 8 Dec 2023 20:18:52 +0400 Subject: [PATCH 2/2] Update participants.mdx --- .../docs/pages/operators/networks/genesis-flow/participants.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/pages/operators/networks/genesis-flow/participants.mdx b/packages/docs/pages/operators/networks/genesis-flow/participants.mdx index 079ddad3..1780c203 100644 --- a/packages/docs/pages/operators/networks/genesis-flow/participants.mdx +++ b/packages/docs/pages/operators/networks/genesis-flow/participants.mdx @@ -21,7 +21,7 @@ This can be done through the namada cli: ```bash ALIAS="" -namadac gen key --alias $ALIAS --pre-genesis +namadaw --pre-genesis key gen --alias $ALIAS ``` After the user has entered their passwords and written down their mnemonic phrase, the namada cli will save the keys to the `pre-genesis` folder inside the [base directory](../../ledger/base-directory.mdx).