KNN3 Network Docs
KNN3 DOC
KNN3 DOC
  • 🚩KNN3 Network
  • 🔦Products Tour
    • TopScore
    • MashMesh
  • 🛠️K.Transformer
    • 🔑Get Started
    • 💡Real-time Data Service
      • K.GraphX (Legacy)
        • GraphX API Quick Start
        • Categories
          • Possession
          • Bond
          • Attendance
          • Governance
          • Lens
        • K.GraphX Extension: Dynamic Verifiable Credentials
      • KNN3 API
      • KNN3 SDK
      • Arseeding GraphQL
    • ⚙️Lambda-style Workflow
      • A Conversational On-Chain Data Query Constructor
      • KNN3 SQL
      • Customized SDK-JAVA
  • 🏡KNN3 Data Fundamentals
    • KNN3 Data Warehouse
  • 🌏Product Roadmap
  • 👾Learn More
Powered by GitBook
On this page
  1. K.Transformer
  2. Real-time Data Service
  3. K.GraphX (Legacy)
  4. Categories

Governance

PreviousAttendanceNextLens

Last updated 2 years ago

On-chain voting governance is an important part of the on-chain footprint. snapshot is the most widely used voting system on the chain, and our governance data mainly calls on snapshot's data.

Snapshot vote events

Snapshot is a decentralized voting system, It provides flexibility on how voting power is calculated for a vote.Developers can check the voting records of DAO governance in which the address has participated by querying the address.

  • Addresses voted on which SpaceID have voted

{
  addrs{
    voteSpaces{
      id
      name
    }
  }
}

  • Check which addresses SpaceID has been voted for

{
  spaces{
    id
    addrsVote{
      address
    }
  }
}

🛠️
💡
Try Yourself
Try Yourself