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

Validator Exit Risk Analysis

Implementation Details

Class Names

Model Name
Parameters Class
Data Class

ValidatorExitRiskAnalysis

ExitRiskQueryParams

ExitRiskData

Import Statement

pythonCopyEditfrom satoshi_terminal.models.validator_exit_risk_analysis import (
    ValidatorExitRiskAnalysis,
    ExitRiskQueryParams,
    ExitRiskData,
)

Parameters

Name
Type
Description
Default
Optional

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

Name
Type
Description

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