@atomiqlabs/sdk
Version:
atomiq labs SDK for cross-chain swaps between smart chains and bitcoin
8 lines (7 loc) • 388 B
TypeScript
import { CtorCoinTypes, IPriceProvider } from "../../abstract/IPriceProvider";
import { MultiChain } from "../../../swapper/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);
}