@maxosllc/smart-order-router
Version:
BlockDAG Smart Order Router
13 lines (12 loc) • 526 B
TypeScript
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[]);
}