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

Dynamic Liquidity Pool Monitoring

Implementation Details

Class Names

Model Name
Parameters Class
Data Class

LiquidityPoolMonitoring

LiquidityPoolQueryParams

LiquidityPoolData

Import Statement

pythonCopyEditfrom satoshi_terminal.models.dynamic_liquidity_pool_monitoring import (
    LiquidityPoolMonitoring,
    LiquidityPoolQueryParams,
    LiquidityPoolData,
)

Parameters

Name
Type
Description
Default
Optional

pool_address

Union[str, List[str]]

Liquidity pool address(es) to monitor.

None

False

token_pair

List[str]

Token pairs in the pool (e.g., ["ETH", "USDC"]).

None

True

monitoring_interval

int

Interval (in minutes) for updating liquidity metrics.

5

True


Data

Name
Type
Description

pool_address

str

Address of the liquidity pool.

token_pair

List[str]

Pair of tokens being monitored.

liquidity_depth

float

Current liquidity in the pool.

impermanent_loss

float

Impermanent loss estimate for the pool.

volume_24h

float

Total trading volume in the pool over the last 24 hours.

timestamp

datetime

Timestamp of the latest monitoring update.


Key Features

  • Real-Time Liquidity Metrics: Track changes in liquidity depth and token ratios.

  • Impermanent Loss Alerts: Notify users of potential risks for LPs in volatile markets.

  • High-Volume Activity Monitoring: Highlight pools with unusual trading activity.

Last updated