Validator Exit Risk Analysis
Implementation Details
Class Names
ValidatorExitRiskAnalysis
ExitRiskQueryParams
ExitRiskData
Import Statement
pythonCopyEditfrom satoshi_terminal.models.validator_exit_risk_analysis import (
ValidatorExitRiskAnalysis,
ExitRiskQueryParams,
ExitRiskData,
)Parameters
blockchain_name
str
Blockchain to monitor (e.g., Ethereum, Solana).
None
False
validator_ids
Union[str, List[str]]
List of specific validators to track for exit risk.
None
True
risk_threshold
float
Threshold (0-100) to flag validators as high risk.
80
True
Data
validator_id
str
Unique identifier of the validator.
risk_score
float
Exit risk score (0-100) for the validator.
staked_amount
float
Total amount staked by the validator.
projected_exit_date
datetime
Estimated date of validator exit, if flagged.
timestamp
datetime
Timestamp of the analysis.
Key Features
Exit Risk Modeling: Predicts validators at risk of leaving the network, potentially destabilizing the chain.
Stake Analysis: Tracks validator stakes and correlates with their risk of exit.
Threshold Alerts: Notifies users when validators exceed the defined risk threshold.
Last updated
