UNPKG

@maxosllc/smart-order-router

Version:
13 lines (12 loc) 526 B
import { SubgraphProviderWithFallBacks } from '../subgraph-provider-with-fallback'; import { IV3SubgraphProvider, V3SubgraphPool } from './subgraph-provider'; /** * Provider for getting V3 subgraph pools that falls back to a different provider * in the event of failure. * * @export * @class V3SubgraphProviderWithFallBacks */ export declare class V3SubgraphProviderWithFallBacks extends SubgraphProviderWithFallBacks<V3SubgraphPool> implements IV3SubgraphProvider { constructor(fallbacks: IV3SubgraphProvider[]); }