Interface SimpleTokenPriceResponse

Response interface for simple token prices

interface SimpleTokenPriceResponse {
    data: {
        [tokenAddress: string]: {
            market_cap?: string;
            price_usd: string;
            volume_24h?: string;
        };
    };
}

Properties

Properties

data: {
    [tokenAddress: string]: {
        market_cap?: string;
        price_usd: string;
        volume_24h?: string;
    };
}