intentProposeNani
Create and submit governance proposals for NANIDAO, specifying content and chain ID for Ethereum-based automation on the agentek-eth server.
Instructions
Create a new governance proposal for NANIDAO
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | The chain ID to propose on | |
content | Yes | The proposal content/description |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"description": "The chain ID to propose on",
"type": "number"
},
"content": {
"description": "The proposal content/description",
"type": "string"
}
},
"required": [
"content",
"chainId"
],
"type": "object"
}