Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed stuff #244

Merged
merged 1 commit into from
Jan 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/docs/pages/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ Here are some useful tips for reading this book:

- Comments start with `#`:

`# this is a comment make sure you read them!`
`# this is a comment. Make sure you read them!`

- Sample outputs start with an arrow:

`➜ this is an example command line output useful for comparing`

- User-defined inputs are in angle brackets:

`$ this is a command you should run <with your own input>`
`this is a command you should run "<with your own input>"`

## About this documentation

Expand Down
6 changes: 3 additions & 3 deletions packages/docs/pages/introduction/install/source.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import { Callout } from 'nextra-theme-docs'
# Install from source

<Callout type="warning">
Please note that, although installing from source is the recommended route for installing namada, it can prove to be difficult, and is not recommended for beginners. For a first time installation, the installation process can take up to an hour. Building binaries from source can also take a long time, depending on your machine.
Please note that, although installing from source is the recommended route for installing namada, it can prove to be difficult, and is not recommended for beginners. For a first time installation, the installation process can take up to an hour. Building binaries from source can also take a long time, depending on the machine.
</Callout>

## Pre-requisites

Make sure you have the correct [pre-requisites](./source/pre-requisites.mdx) downloaded and installed.
Ensure the correct [pre-requisites](./source/pre-requisites.mdx) have been downloaded and installed.

## Installing Namada
Now that you have all the required dependencies installed, you can clone the source code from the [Namada repository](https://github.com/anoma/namada) and build it with:
Once all the required dependencies have been installed, the next step is to clone the source code from the [Namada repository](https://github.com/anoma/namada) and build it with:

```shell copy
git clone https://github.com/anoma/namada.git
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Before a testnet launches, you can apply to be a genesis validator.

### Set up

Follow [this guide](../../operators/validators/validator-setup.mdx#pre-genesis) on how to generate your "pre-genesis" validator files.
Follow [this guide](../../operators/validators/validator-setup.mdx#pre-genesis) on how to generate "pre-genesis" validator files.

<Callout>
For the shielded expedition, the `balances.toml` file has been published at the [namada-shieled-expedition repository](https://github.com/anoma/namada-shielded-expedition).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,11 @@ Validator account address: tnam1q8lsztqqhpjxdwzw88mqqc2mun7dvpxvas3v2dxk

#### Bond to a pre-genesis validator account
If your public key has been allocated `NAM` (`NAAN` for the shielded expedition), you can bond to a genesis validator as a pre-genesis transaction.
Please follow the below steps:
<Callout type="info">
This step is intended for pre-genesis participants who have been allocated `NAM` (`NAAN` for the shielded expedition) and want to bond to a genesis validator that is not their own. If you want to bond to your own genesis validator, please follow the steps in [Generate a pre-genesis validator account](#generate-a-pre-genesis-validator-account) and use the `--self-bond` arguments.
</Callout>

The bond can be achieved by running:

```bash copy
namadac utils genesis-bond \
Expand All @@ -206,7 +210,7 @@ namadac utils genesis-bond \
--path "<filename-for-your-tx.toml>"
```

After this step is completed, sign the transaction
After this step is completed, it is required to sign the transaction.


### Signing transactions
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/pages/operators/networks/local-network.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ The ledger can be run through the familiar command:
After the local network has fulfilled its purpose, it can be cleaned up by running the following commands found in the cleanup function of the script:

```shell copy
kilalll namadan
killall namadan
# delete the base_dir/chain_id directory
```
2 changes: 1 addition & 1 deletion packages/docs/pages/users/public-goods-stewards/_meta.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"electing": "Becoming a Steward",
"voting": "Voting for Stewards and PGF proposals",
"proposing": "PGF proposals (Stewards only)"
"proposing": "PGF proposals"
}
4 changes: 2 additions & 2 deletions packages/docs/pages/users/public-goods-stewards/proposing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Callout } from 'nextra-theme-docs'

## Formatting the `proposal.json`

Below is an example of a `PGFProposal` that a steward could submit. Note that only stewards will be able to submit these proposals.
Below is an example of a `PGFProposal` that a governance participant could submit.
```json
{
"proposal" :{
Expand Down Expand Up @@ -51,7 +51,7 @@ Save this file as `PGF_proposal.json` to some memorable path on your machine.

## Submitting the proposal

In order to submit the proposal, the steward can use the following command:
In order to submit the proposal, the governance participant can use the following command:

```shell copy
namada client init-proposal \
Expand Down
Loading