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

    Coin metadata that associates a CoinGecko identifier with a chain and coin type.

    interface CoinGeckoCoinData {
        apiId: string;
        chain:
            | ""
            | "ethereum"
            | "arbitrum"
            | "bsc"
            | "solana"
            | "sui"
            | "polygon"
            | "avalanche"
            | "optimism"
            | "base";
        coinType: string;
        name: string;
        symbol: string;
    }
    Index
    apiId: string

    The coin's identifier in the CoinGecko API.

    chain:
        | ""
        | "ethereum"
        | "arbitrum"
        | "bsc"
        | "solana"
        | "sui"
        | "polygon"
        | "avalanche"
        | "optimism"
        | "base"

    The lowercase chain label, or "" when no chain label is assigned.

    coinType: string

    The coin type associated with this metadata record.

    name: string

    The coin's display name.

    symbol: string

    The coin's short symbol or ticker.