interface FetchTokenPriceOptions {
    fetchImpl?: (
        input: string | URL | Request,
        init?: RequestInit,
    ) => Promise<Response>;
    timeoutMs?: number;
}

Properties

fetchImpl?: (
    input: string | URL | Request,
    init?: RequestInit,
) => Promise<Response>
timeoutMs?: number