UNPKG

@uniswap/v4-sdk

Version:

⚒️ An SDK for building applications on top of Uniswap V4

11 lines (10 loc) 345 B
import { Currency } from '@uniswap/sdk-core'; import { Route } from '../entities/route'; export type PathKey = { intermediateCurrency: string; fee: number; tickSpacing: number; hooks: string; hookData: string; }; export declare const encodeRouteToPath: (route: Route<Currency, Currency>, exactOutput?: boolean) => PathKey[];