# Token Migration Tracking

**Implementation Details**

**Class Names**

| Model Name             | Parameters Class          | Data Class         |
| ---------------------- | ------------------------- | ------------------ |
| TokenMigrationTracking | TokenMigrationQueryParams | TokenMigrationData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.token_migration_tracking import (
    TokenMigrationTracking,
    TokenMigrationQueryParams,
    TokenMigrationData,
)
```

***

**Parameters**

| Name          | Type                    | Description                                 | Default | Optional |
| ------------- | ----------------------- | ------------------------------------------- | ------- | -------- |
| token\_symbol | Union\[str, List\[str]] | Token(s) to monitor for migration activity. | None    | False    |
| source\_chain | str                     | Original blockchain of the token.           | None    | True     |
| target\_chain | str                     | Target blockchain for migration.            | None    | True     |

***

**Data**

| Name              | Type     | Description                                       |
| ----------------- | -------- | ------------------------------------------------- |
| token\_symbol     | str      | Symbol of the token being tracked.                |
| source\_chain     | str      | Blockchain where the token was originally minted. |
| target\_chain     | str      | Blockchain to which the token has migrated.       |
| migration\_volume | float    | Total volume of tokens migrated.                  |
| timestamp         | datetime | Timestamp of the migration analysis.              |

***

**Key Features**

* **Cross-Chain Migration Monitoring:** Tracks token movements across blockchains.
* **Volume and Impact Analysis:** Quantifies migration volumes and their effect on liquidity.
* **Custom Migration Alerts:** Notifies users when significant migration events occur.


---

# 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/token-migration-tracking.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.
