For the complete documentation index, see llms.txt. This page is also available as Markdown.

Token Migration Tracking

Implementation Details

Class Names

Model Name
Parameters Class
Data Class

TokenMigrationTracking

TokenMigrationQueryParams

TokenMigrationData

Import Statement

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.

Last updated