DeFi Ecosystem Exposure Risk

Implementation Details

Class Names

Model Name
Parameters Class
Data Class

DeFiEcosystemExposureRisk

DeFiExposureQueryParams

DeFiExposureRiskData

Import Statement

pythonCopyEditfrom satoshi_terminal.models.defi_ecosystem_exposure_risk import (
    DeFiEcosystemExposureRisk,
    DeFiExposureQueryParams,
    DeFiExposureRiskData,
)

Parameters

Name
Type
Description
Default
Optional

protocol_name

str

Name of the protocol to analyze exposure risk for (e.g., Aave, Curve).

None

False

asset_classes

List[str]

Classes of assets to include in the analysis (e.g., "Stablecoins," "ETH-based tokens").

None

True

dependency_depth

int

Depth of dependency mapping for risk evaluation.

3

True


Data

Name
Type
Description

protocol_name

str

Name of the protocol being analyzed.

total_exposure

float

Total value at risk across the protocol’s ecosystem.

dependency_map

dict

Mapping of interdependent protocols and their risk contributions.

risk_score

float

Overall exposure risk score (0-100).

timestamp

datetime

Timestamp of the analysis.


Key Features

  • Comprehensive Exposure Tracking: Evaluates a protocol’s ecosystem exposure to various risks.

  • Dependency Risk Mapping: Highlights interdependencies with other protocols and their associated risks.

  • Risk Scoring: Assigns an overall risk score to the ecosystem for easy assessment.

Last updated