diff --git a/packages/docs/pages/operators/validators/validator-actions.mdx b/packages/docs/pages/operators/validators/validator-actions.mdx index eb849b1c..fe5e155d 100644 --- a/packages/docs/pages/operators/validators/validator-actions.mdx +++ b/packages/docs/pages/operators/validators/validator-actions.mdx @@ -36,7 +36,16 @@ namadac change-metadata \ --avatar $AVATAR \ --name $NAME ``` -Apart from `--validator`, not all of the fields are required (but at least one of them is). +Only the `--validator` argument is required along with at least one of the other arguments listed above. In order to remove a piece of metadata (aside from the required `email`), pass `""` as an argument. + +For example, in order to change the validator name and description but remove the existing discord handle, one would run: + +```bash copy +namadac change-metadata --validator $VALIDATOR_ADDRESS \ + --description $NEW_DESC \ + --discord-handle "" \ + --name $NEW_NAME +``` ### Deactivation and reactivation