Uniswap – How to Find Pool Address on Uniswap V3 in Goerli

goerliuniswapuniswapv3

I created a token on the Goerli Testnet and then made a pool of it with ETH on Uniswap.
How can I find my pool contract address?

Best Answer

Did you call the function "createPool()" from Uniswap v3?

If you look at this function,

    function createPool(
        address tokenA,
        address tokenB,
        uint24 fee
    ) external override noDelegateCall returns (address pool) {

it returns the address of the newly created pool. So look at the return value of the transaction where you called 'createPool()'. You can find the return value on a block explorer like etherscan. Hope this helps

Related Topic