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

Liquid Staking Derivative Analytics

Implementation Details

Class Names

Model Name
Parameters Class
Data Class

LiquidStakingAnalytics

LiquidStakingQueryParams

LiquidStakingData

Import Statement

pythonCopyEditfrom satoshi_terminal.models.liquid_staking_derivative_analytics import (
    LiquidStakingAnalytics,
    LiquidStakingQueryParams,
    LiquidStakingData,
)

Parameters

Name
Type
Description
Default
Optional

staking_protocol

Union[str, List[str]]

Staking protocol(s) to analyze (e.g., Lido, Rocket Pool).

None

False

metric_type

str

Type of metric to analyze (e.g., "Total Value Locked," "Staked Assets").

"Total Value Locked"

True

time_horizon

int

Time window (in days) for analyzing staking metrics.

7

True


Data

Name
Type
Description

staking_protocol

str

Name of the staking protocol analyzed.

total_staked_assets

float

Total assets staked in the protocol (in USD).

staked_asset_distribution

dict

Breakdown of staked assets by type (e.g., ETH, DOT).

staking_yield

float

Average staking yield (APY) for the protocol.

timestamp

datetime

Timestamp of the analysis.


Key Features

  • Protocol-Wide Staking Metrics: Tracks total staked value and asset distribution for major liquid staking platforms.

  • Yield Analysis: Highlights average staking yields and changes over time.

  • Asset-Specific Trends: Provides insights into staking preferences for specific assets.

Last updated