# Cross-Network Token Burn Analysis

**Implementation Details**

**Class Names**

| Model Name                    | Parameters Class     | Data Class    |
| ----------------------------- | -------------------- | ------------- |
| CrossNetworkTokenBurnAnalysis | TokenBurnQueryParams | TokenBurnData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.cross_network_token_burn_analysis import (
    CrossNetworkTokenBurnAnalysis,
    TokenBurnQueryParams,
    TokenBurnData,
)
```

***

**Parameters**

| Name              | Type                       | Description                                               | Default | Optional |
| ----------------- | -------------------------- | --------------------------------------------------------- | ------- | -------- |
| token\_symbol     | Union\[str, List\[str]]    | Token(s) to monitor for burn activities.                  | None    | False    |
| include\_networks | List\[str]                 | Specific networks to analyze (e.g., Ethereum, BNB Chain). | None    | True     |
| time\_range       | Tuple\[datetime, datetime] | Date range for analyzing token burns.                     | None    | True     |

***

**Data**

| Name               | Type     | Description                                  |
| ------------------ | -------- | -------------------------------------------- |
| token\_symbol      | str      | Token being analyzed.                        |
| total\_burned      | float    | Total tokens burned across all networks.     |
| network\_breakdown | dict     | Burn activity segmented by network.          |
| burn\_rate         | float    | Average burn rate over the specified period. |
| timestamp          | datetime | Timestamp of the analysis.                   |

***

**Key Features**

* **Network-Wide Burn Monitoring:** Tracks token burns across multiple blockchains.
* **Burn Rate Analysis:** Calculates and visualizes trends in token burn rates.
* **Network-Specific Insights:** Highlights which networks are contributing the most to burn activities.


---

# 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/risk-management-and-security-analytics/cross-network-token-burn-analysis.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.
