UNPKG

@xspswap/smart-order-router

Version:
11 lines (10 loc) 253 B
import { BigNumber } from '@ethersproject/bignumber'; export type GasPrice = { gasPriceWei: BigNumber; }; /** * Provider for getting gas prices. */ export declare abstract class IGasPriceProvider { abstract getGasPrice(): Promise<GasPrice>; }