# Historical Blockchain Congestion Replays

**Implementation Details**

**Class Names**

| Model Name                  | Parameters Class            | Data Class           |
| --------------------------- | --------------------------- | -------------------- |
| BlockchainCongestionReplays | CongestionReplayQueryParams | CongestionReplayData |

**Import Statement**

```python
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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.satoshiterminal.io/resources/copy-of-defi-analytics/insights-and-predictive-analytics/historical-blockchain-congestion-replays.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
