aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Interface CoinGeckoTickerData

    A data structure used for integration with CoinGecko, representing an aggregated ticker ID, base/target coins, price, volumes, and liquidity.

    interface CoinGeckoTickerData {
        base_currency: string;
        base_volume: number;
        last_price: number;
        liquidity_in_usd: number;
        pool_id: string;
        target_currency: string;
        target_volume: number;
        ticker_id: string;
    }
    Index
    base_currency: string

    The base coin type in the market pair.

    base_volume: number

    The base-coin volume returned by the integration.

    last_price: number

    The latest base-to-target price returned by the integration.

    liquidity_in_usd: number

    The liquidity value returned by the integration.

    pool_id: string

    The pool object ID supplying the market data.

    target_currency: string

    The quote coin type in the market pair.

    target_volume: number

    The target-coin volume returned by the integration.

    ticker_id: string

    The ticker identifier used by the CoinGecko integration.