import {CtorCoinTypes, IPriceProvider} from "../../abstract/IPriceProvider"; import {MultiChain} from "../../../swaps/swapper/Swapper"; export abstract class HttpPriceProvider extends IPriceProvider { url: string; httpRequestTimeout?: number; protected constructor(coinsMap: CtorCoinTypes, url: string, httpRequestTimeout?: number) { super(coinsMap); this.url = url; this.httpRequestTimeout = httpRequestTimeout; } }