UNPKG

@atomiqlabs/sdk-lib

Version:

Basic SDK functionality library for atomiq

8 lines (7 loc) 386 B
import { CtorCoinTypes, IPriceProvider } from "../../abstract/IPriceProvider"; import { MultiChain } from "../../../swaps/Swapper"; export declare abstract class HttpPriceProvider<T extends MultiChain> extends IPriceProvider<T> { url: string; httpRequestTimeout?: number; protected constructor(coinsMap: CtorCoinTypes<T>, url: string, httpRequestTimeout?: number); }