> ## Documentation Index
> Fetch the complete documentation index at: https://core.anylayer.org/llms.txt
> Use this file to discover all available pages before exploring further.

# DAO Governance Use Case

> Reputation-weighted voting in DAOs

## Overview

Implement reputation-weighted voting where governance power is influenced by both token holdings and ZKScore reputation.

## Implementation

<CodeGroup>
  ```javascript JavaScript theme={null}
  async function calculateVotingPower(voter, proposalId) {
    const tokenVotes = await dao.getVotes(voter);
    const score = await zkScore.getScore(voter);
    
    // Governance score contributes up to 50% bonus
    const reputationBonus = (score.breakdown.governance / 1000) * 0.5;
    
    return tokenVotes * (1 + reputationBonus);
  }
  ```
</CodeGroup>

## Related Documentation

* [DAO Integration](/integrations/dao)
