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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.satoshiterminal.io/resources/copy-of-defi-analytics/risk-management-and-security-analytics/governance-whale-influence-analysis.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
