> ## 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 Integration

> Integrate ZKScore with DAO governance systems

## Overview

Integrate ZKScore into DAOs to enable reputation-weighted voting, identify active contributors, and reward governance participation.

## Implementation

<CodeGroup>
  ```javascript JavaScript theme={null}
  async function getVotingPower(member) {
    const [tokenBalance, score] = await Promise.all([
      dao.balanceOf(member),
      zkScore.getScore(member)
    ]);
    
    const governanceScore = score.breakdown.governance;
    const reputationMultiplier = 1 + (governanceScore / 1000);
    
    return tokenBalance * reputationMultiplier;
  }
  ```
</CodeGroup>

## Related Documentation

* [DAO Governance Example](/contracts/examples/dao-governance)
* [Governance Use Case](/use-cases/dao-governance)
