get_governance_proposals
Retrieve active governance proposals from the Penumbra blockchain to stay informed about ongoing community decisions and voting processes.
Instructions
Get active governance proposals
Input Schema
Name | Required | Description | Default |
---|---|---|---|
status | No | Filter proposals by status | active |
Input Schema (JSON Schema)
{
"properties": {
"status": {
"default": "active",
"description": "Filter proposals by status",
"enum": [
"active",
"completed",
"all"
],
"type": "string"
}
},
"required": [],
"type": "object"
}