For the complete documentation index, see llms.txt. This page is also available as Markdown.

Governance Whale Influence Analysis

Implementation Details

Class Names

Model Name
Parameters Class
Data Class

GovernanceWhaleInfluence

GovernanceWhaleQueryParams

GovernanceWhaleData

Import Statement

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.

Last updated