# Blockchain Adoption Heatmap

**Implementation Details**

**Class Names**

| Model Name                | Parameters Class           | Data Class          |
| ------------------------- | -------------------------- | ------------------- |
| BlockchainAdoptionHeatmap | AdoptionHeatmapQueryParams | AdoptionHeatmapData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.blockchain_adoption_heatmap import (
    BlockchainAdoptionHeatmap,
    AdoptionHeatmapQueryParams,
    AdoptionHeatmapData,
)
```

***

**Parameters**

| Name              | Type                    | Description                                                               | Default         | Optional |
| ----------------- | ----------------------- | ------------------------------------------------------------------------- | --------------- | -------- |
| blockchain\_names | Union\[str, List\[str]] | Blockchains to include in the adoption analysis.                          | None            | False    |
| geographic\_scope | List\[str]              | List of regions or countries to analyze (e.g., "US," "Asia").             | None            | True     |
| metric\_type      | str                     | Adoption metric to analyze (e.g., "Wallet Growth," "Transaction Volume"). | "Wallet Growth" | True     |

***

**Data**

| Name                    | Type     | Description                                                     |
| ----------------------- | -------- | --------------------------------------------------------------- |
| blockchain\_name        | str      | Name of the blockchain analyzed.                                |
| region                  | str      | Geographic region analyzed.                                     |
| adoption\_metric\_value | float    | Value of the analyzed adoption metric for the specified region. |
| timestamp               | datetime | Timestamp of the analysis.                                      |

***

**Key Features**

* **Regional Adoption Metrics:** Provides granular insights into blockchain activity by geography.
* **Dynamic Heatmaps:** Interactive visualizations of wallet growth, transaction volume, and developer contributions.
* **Adoption Trend Analytics:** Tracks adoption trends over time, identifying high-growth regions.


---

# 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/adoption-and-ecosystem-health/blockchain-adoption-heatmap.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.
