From 2fa9f933a61f17ce45411c18794f815f6de9367b Mon Sep 17 00:00:00 2001 From: brentstone Date: Thu, 27 Jun 2024 23:18:35 -0700 Subject: [PATCH] more detail in change-metadata --- .../pages/operators/validators/validator-actions.mdx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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