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

Update validator proof of stake #329

Closed
wants to merge 3 commits into from
Closed
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
50 changes: 50 additions & 0 deletions packages/docs/pages/operators/validators/proof-of-stake.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,54 @@ After updating the consensus key, validators can find out their new validator ad
namadaw find --alias <new-consensus-key>
```

## Commission

To query a validator's commission rate, the following command can be run:

```shell copy
namadac commission-rate --validator <validator-address>
```

To change a validator's commission rate, the following command can be run:

```shell copy
namadac change-commission-rate \
--validator <validator-address> \
--commission-rate <new-commission-rate>
```

## Change Metadata

To query a validator's metadata, the following command can be run:

```shell copy
namadac validator-metadata --validator <validator-address>
```

To change a validator's metadata, the following command can be run:

```shell copy
namadac change-metadata \
--validator <validator-address> \
--email <email> \
--avatar <avatar-url>\
--description <description> \
--website <website-url> \
--discord-handle <discord-handle>
```

## Deactivate

To deactivate a validator, the following command can be run:

```shell copy
namadac deactivate-validator --validator <validator-address>
```

## Reactivate

To reactivate a validator, the following command can be run:

```shell copy
namadac reactivate-validator --validator <validator-address>
```