Archive or Unarchive a Credential Schema
You can archive or unarchive a credential schema with the following command:
tip
Only the account that is the controller of the trust registry can execute this method.
Message Parameters
Name | Description | Mandatory |
---|---|---|
id | id of the trust registry to archive or unarchive. | yes |
archive | true archive, false unarchive. | yes |
Post the Message
- CLI
- Frontend
Usage
veranad tx ...
TODO
@matlux
Archive a Credential Schema
TRUST_REG_ID=5
veranad tx tr archive-trust-registry ${TRUST_REG_ID} true --from $USER_ACC --chain-id ${CHAIN_ID} --keyring-backend test --fees 600000uvna
Unarchive a Credential Schema
TRUST_REG_ID=5
veranad tx tr archive-trust-registry ${TRUST_REG_ID} false --from $USER_ACC --chain-id ${CHAIN_ID} --keyring-backend test --fees 600000uvna
tip
TODO: describe here