> For the complete documentation index, see [llms.txt](https://docs.satoshiterminal.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.satoshiterminal.io/resources/copy-of-defi-analytics/risk-management-and-security-analytics/governance-whale-influence-analysis.md).

# Governance Whale Influence Analysis

**Implementation Details**

**Class Names**

| Model Name               | Parameters Class           | Data Class          |
| ------------------------ | -------------------------- | ------------------- |
| GovernanceWhaleInfluence | GovernanceWhaleQueryParams | GovernanceWhaleData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.governance_whale_influence import (
    GovernanceWhaleInfluence,
    GovernanceWhaleQueryParams,
    GovernanceWhaleData,
)
```

***

**Parameters**

| Name             | Type  | Description                                                    | Default | Optional |
| ---------------- | ----- | -------------------------------------------------------------- | ------- | -------- |
| protocol\_name   | str   | Name of the protocol being analyzed (e.g., Uniswap, MakerDAO). | None    | False    |
| whale\_threshold | float | Minimum voting power percentage to classify as a whale.        | 5.0     | True     |
| time\_horizon    | int   | Time window (in days) for tracking governance whale activity.  | 7       | True     |

***

**Data**

| Name                 | Type     | Description                                                       |
| -------------------- | -------- | ----------------------------------------------------------------- |
| protocol\_name       | str      | Name of the protocol being analyzed.                              |
| whale\_voter\_count  | int      | Number of voters classified as whales.                            |
| whale\_voting\_power | float    | Percentage of total voting power controlled by whales.            |
| proposal\_impact     | dict     | Details of whale participation and influence on recent proposals. |
| timestamp            | datetime | Timestamp of the analysis.                                        |

***

**Key Features**

* **Whale Participation Analysis:** Tracks and quantifies whale influence in governance activities.
* **Proposal-Specific Insights:** Evaluates how whale voting impacted key decisions.
* **Protocol Risk Scoring:** Identifies protocols at risk of centralization due to whale dominance.
