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

Historical Blockchain Congestion Replays

Implementation Details

Class Names

Model Name
Parameters Class
Data Class

BlockchainCongestionReplays

CongestionReplayQueryParams

CongestionReplayData

Import Statement

pythonCopyEditfrom satoshi_terminal.models.historical_blockchain_congestion_replays import (
    BlockchainCongestionReplays,
    CongestionReplayQueryParams,
    CongestionReplayData,
)

Parameters

Name
Type
Description
Default
Optional

blockchain_name

Union[str, List[str]]

Blockchain(s) to replay congestion data for (e.g., Ethereum, Solana).

None

False

time_range

Tuple[datetime, datetime]

Historical time range for congestion replay.

None

True

activity_type

str

Type of activity to focus on (e.g., "Transactions," "Smart Contract Calls").

"Transactions"

True


Data

Name
Type
Description

blockchain_name

str

Blockchain analyzed for congestion.

historical_congestion

List[dict]

Detailed congestion metrics (e.g., gas fees, transaction backlog).

congestion_visualization

str

URL or link to visualization of historical congestion patterns.

timestamp

datetime

Timestamp of the analysis.


Key Features

  • Time-Based Congestion Replays: Allows users to replay blockchain congestion scenarios for a specific time period.

  • Activity-Specific Insights: Provides congestion details tailored to specific transaction types or activities.

  • Visual Analytics: Generates detailed visualizations to identify patterns and anomalies.

Last updated