import { Token } from '@etcswapv2/sdk-core'; import { FeeAmount } from '../constants'; /** * Computes a V3 pool address from the factory, tokens, and fee * @param factoryAddress The ETCswap V3 factory address * @param tokenA The first token of the pair, irrespective of sort order * @param tokenB The second token of the pair, irrespective of sort order * @param fee The fee tier of the pool * @param initCodeHashManualOverride Override the init code hash used to compute the pool address if necessary * @returns The pool address */ export declare function computePoolAddress({ factoryAddress, tokenA, tokenB, fee, initCodeHashManualOverride, }: { factoryAddress: string; tokenA: Token; tokenB: Token; fee: FeeAmount; initCodeHashManualOverride?: string; }): string; //# sourceMappingURL=computePoolAddress.d.ts.map