> For the complete documentation index, see [llms.txt](https://docs.satoshiterminal.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.satoshiterminal.io/resources/copy-of-defi-analytics/risk-management-and-security-analytics/token-migration-tracking.md).

# 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.
