intentSetSlowGuardian
Assign or remove a guardian for a user in the SLOW contract on a specified blockchain using chainId and guardian address. Simplifies Ethereum-based user protection management.
Instructions
Set a guardian for a user in the SLOW contract
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | The chainId to execute the intent on. | |
guardian | Yes | The guardian address to set (use zero address to remove guardian) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"description": "The chainId to execute the intent on.",
"type": "number"
},
"guardian": {
"description": "The guardian address to set (use zero address to remove guardian)",
"type": "string"
}
},
"required": [
"chainId",
"guardian"
],
"type": "object"
}