Governance

SyncAI’s intent framework's governance module allows users to interact with DAOs such as Project Catalyst efficiently by specifying high-level intents to access governance data, submit proposals, vote, and monitor progress. Through intents, users can seamlessly interact with the platform without needing to understand its underlying technical details, making governance participation more accessible.

It interprets these intents and manages the intricacies of interacting with Project Catalyst, ensuring that users receive the necessary information or execute desired actions efficiently.

Example:

Top 5 RWA Projects in Concept Category by Ask

To identify the top 5 Real-World Asset (RWA) projects in the concept category by requested funding (ask), a user can submit an intent like the following:

{
  "intentType": "topProjectsByAsk",
  "category": "concept",
  "assetType": "RWA",
  "numberOfProjects": 5
}
  • Intent Explanation:

    • intentType: Defines the type of request, which is to find the top projects by their funding ask.

    • category: Specifies the project category, here being "concept."

    • assetType: Indicates the type of projects to look for, in this case, Real-World Assets (RWA).

    • numberOfProjects: Specifies the number of projects to retrieve, here being the top 5.

  • Conversion by AI:

    • SyncAI interprets this intent and translates it into API queries for Project Catalyst's governance data.

    • It then filters projects based on the specified criteria: concept category and RWA type.

    • Finally, SyncAI sorts the projects by their requested funding amount (ask) and returns the top 5 projects.

This structured intent allows users to quickly obtain proposal data tailored to their specific requirements, highlighting SyncAI's ability to facilitate efficient data retrieval for Project Catalyst's decentralized governance platform.

Last updated