Market Price details

MarketPriceDetails

interface MarketPriceDetails {
    token: never;
    amount: string;
    fee_inclusive_amount: string;
    fees: MarketPriceFees[];
    converted_prices: null | {
        [key: string]: string;
    };
}

Properties

token: never

MarketPriceDetails

amount: string

The token amount value. This value is provided in the smallest unit of the token (e.g. wei for ETH)

MarketPriceDetails

fee_inclusive_amount: string

The token amount value. This value is provided in the smallest unit of the token (e.g. wei for ETH)

MarketPriceDetails

MarketPriceDetails

converted_prices: null | {
    [key: string]: string;
}

A mapping of converted prices for major currencies such as ETH, USD. All converted prices are fee-inclusive.

MarketPriceDetails