Skip to content

Commit

Permalink
Merge pull request anoma#219 from msobh13/patch-1
Browse files Browse the repository at this point in the history
Update participants.mdx
  • Loading branch information
bengtlofgren authored Dec 11, 2023
2 parents ef2c86f + 737a8d6 commit e80615b
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This can be done through the namada cli:

```bash
ALIAS="<your-key-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).
Expand Down Expand Up @@ -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`
```
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.

</Steps>
</Steps>

0 comments on commit e80615b

Please sign in to comment.