diff --git a/packages/docs/pages/operators/validators/proof-of-stake.mdx b/packages/docs/pages/operators/validators/proof-of-stake.mdx index cd48cbee..85ea2e09 100644 --- a/packages/docs/pages/operators/validators/proof-of-stake.mdx +++ b/packages/docs/pages/operators/validators/proof-of-stake.mdx @@ -82,4 +82,54 @@ After updating the consensus key, validators can find out their new validator ad namadaw find --alias ``` +## Commission +To query a validator's commission rate, the following command can be run: + +```shell copy +namadac commission-rate --validator +``` + +To change a validator's commission rate, the following command can be run: + +```shell copy +namadac change-commission-rate \ + --validator \ + --commission-rate +``` + +## Change Metadata + +To query a validator's metadata, the following command can be run: + +```shell copy +namadac validator-metadata --validator +``` + +To change a validator's metadata, the following command can be run: + +```shell copy +namadac change-metadata \ + --validator \ + --email \ + --avatar \ + --description \ + --website \ + --discord-handle +``` + +## Deactivate + +To deactivate a validator, the following command can be run: + +```shell copy +namadac deactivate-validator --validator +``` + +## Reactivate + +To reactivate a validator, the following command can be run: + +```shell copy +namadac reactivate-validator --validator +``` \ No newline at end of file diff --git a/packages/docs/pages/users/public-goods-stewards/electing.mdx b/packages/docs/pages/users/public-goods-stewards/electing.mdx index 6af83969..8c8a2b27 100644 --- a/packages/docs/pages/users/public-goods-stewards/electing.mdx +++ b/packages/docs/pages/users/public-goods-stewards/electing.mdx @@ -90,3 +90,22 @@ namadac resign-steward --steward my-steward-address ``` Read more about the other methods of losing stewardship in the [specs](https://specs.namada.net/modules/goverance/public-goods-funding/becoming-a-steward#losing-stewardship-status). + +## Update steward commissions + +The `commissions.json` file contains the information about the reward distribution. It is a JSON file with the following structure: + +```json +{ + "reward_distribution": { + "tnam...": "1" + } +} +``` + +Update steward commissions can be done at any point. +Through the CLI it can be done with the command: + +```shell copy +namadac update-steward-rewards --steward my-steward-address --data-path +``` \ No newline at end of file diff --git a/packages/docs/pages/users/public-goods-stewards/voting.mdx b/packages/docs/pages/users/public-goods-stewards/voting.mdx index 2c718915..44b54582 100644 --- a/packages/docs/pages/users/public-goods-stewards/voting.mdx +++ b/packages/docs/pages/users/public-goods-stewards/voting.mdx @@ -9,6 +9,7 @@ The CLI command for voting for a steward is: ```shell copy namada client vote-proposal \ --proposal-id \ + --address your-established-account \ --vote yay \ --signing-keys ``` @@ -22,6 +23,7 @@ Similarly, the command for voting for PGF proposals is: ```shell copy namada client vote-proposal \ --proposal-id \ + --address your-established-account \ --vote yay \ --signing-keys ``` \ No newline at end of file