/** * Read V3 pool info from on-chain factory + pool contracts. */ import type { ContractContext } from './contracts'; export interface V3PoolInfo { poolAddress: string; sqrtPriceX96: string; tick: number; liquidity: string; tickSpacing: number; } export declare function getV3PoolInfo(ctx: ContractContext, network: string, token0: string, token1: string, fee: number): Promise; //# sourceMappingURL=v3-pool.d.ts.map