list_proposals
Fetch up to 10 recent governance proposals for a specified Snapshot space. Enables tracking and analysis of decentralized decision-making in DAOs.
Instructions
Fetch a list of recent proposals for a given Snapshot space.
Parameters:
space_id (str): The unique identifier of the Snapshot space (e.g., 'ens.eth').
Returns:
A formatted string containing details of up to 10 recent proposals.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
space_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"space_id": {
"title": "Space Id",
"type": "string"
}
},
"required": [
"space_id"
],
"title": "list_proposalsArguments",
"type": "object"
}