Convienience class to find routes through a set of Whirlpools and execute a swap across them. The router only supports up to 2-hop trades between pools and does not support arbitrage trades between the same token.

WhirlpoolRouter will be removed in the future release. Please use endpoint which provides qoutes.

interface WhirlpoolRouter {
    findAllRoutes(
        trade: Trade,
        opts?: Partial<RoutingOptions>,
        fetchOpts?: SimpleAccountFetchOptions,
    ): Promise<TradeRoute[]>;
    findBestRoute(
        trade: Trade,
        opts?: Partial<RoutingOptions>,
        selectionOpts?: Partial<RouteSelectOptions>,
        fetchOpts?: SimpleAccountFetchOptions,
    ): Promise<null | ExecutableRoute>;
    swap(
        trade: TradeRoute,
        slippage: Percentage,
        resolvedAtas: null | AtaAccountInfo[],
    ): Promise<TransactionBuilder>;
}

Methods