Finds the Uniswap V3 pools for the two tokens.
import { getUniswapV3Pool } from "thirdweb/extensions/uniswap";const pools = await getUniswapV3Pool({ tokenA: "0x...", tokenB: "0x...", contract: factoryContract,});
function getUniswapV3Pool( options: BaseTransactionOptions<GetUniswapV3PoolParams>,): Promise<Array<GetUniswapV3PoolResult>>;
The token pair to find any pools for any Uniswap contract that implements getPool.
let options: BaseTransactionOptions<GetUniswapV3PoolParams>;
let returnType: { poolAddress: Address; poolFee: (typeof UniswapFee)[keyof typeof UniswapFee];};
The pools' addresses and fees.