@xspswap/smart-order-router
Version:
XSwap Protocol V3 Smart Order Router
8 lines (7 loc) • 325 B
TypeScript
import { JsonRpcProvider } from '@ethersproject/providers';
import { GasPrice, IGasPriceProvider } from './gas-price-provider';
export declare class LegacyGasPriceProvider extends IGasPriceProvider {
protected provider: JsonRpcProvider;
constructor(provider: JsonRpcProvider);
getGasPrice(): Promise<GasPrice>;
}