# Cross-Chain Token Pricing Disparity

**Implementation Details**

**Class Names**

| Model Name                 | Parameters Class             | Data Class            |
| -------------------------- | ---------------------------- | --------------------- |
| CrossChainPricingDisparity | CrossChainPricingQueryParams | CrossChainPricingData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.cross_chain_pricing_disparity import (
    CrossChainPricingDisparity,
    CrossChainPricingQueryParams,
    CrossChainPricingData,
)
```

***

**Parameters**

| Name          | Type                    | Description                                                           | Default | Optional |
| ------------- | ----------------------- | --------------------------------------------------------------------- | ------- | -------- |
| token\_symbol | Union\[str, List\[str]] | Token(s) to track for cross-chain price differences (e.g., BTC, ETH). | None    | False    |
| chain\_names  | List\[str]              | Names of chains to compare prices across (e.g., Ethereum, BNB Chain). | None    | False    |
| time\_horizon | int                     | Time range (in minutes) for analyzing price disparities.              | 60      | True     |

***

**Data**

| Name                      | Type     | Description                                             |
| ------------------------- | -------- | ------------------------------------------------------- |
| token\_symbol             | str      | Token being analyzed.                                   |
| chain\_price\_mapping     | dict     | Price data across chains (chain\_name -> price).        |
| price\_disparity\_percent | float    | Percentage difference between highest and lowest price. |
| timestamp                 | datetime | Timestamp of the analysis.                              |

***

**Key Features**

* **Cross-Chain Price Comparison:** Analyze real-time token price differences across chains.
* **Arbitrage Opportunity Alerts:** Highlight significant pricing discrepancies for profitable trades.
* **Time-Based Tracking:** Historical trends of cross-chain pricing disparities.


---

# 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/cross-chain-token-pricing-disparity.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.
