Interface ExactCurrencyPrice

A human-unit price for an EVM currency pair. Unlike ExactPrice, the zero address is accepted and represents the native currency used by Uniswap V4. Callers are responsible for supplying 18 decimals for the native currency on EVM chains.

interface ExactCurrencyPrice {
    baseCurrency: string;
    quoteCurrency: string;
    baseCurrencyDecimals: number;
    quoteCurrencyDecimals: number;
    quotePerBase: ExactFraction;
}

Properties

baseCurrency: string
quoteCurrency: string
baseCurrencyDecimals: number
quoteCurrencyDecimals: number
quotePerBase: ExactFraction