
Uniswap V3 Factory
0x3312...FDfDuniswapDeFifactory
Contract Level Prompt
Foundational semantic layer for AI interpretation.
This is the official Uniswap V3 Pool factory for the Base network. It can be used as the source of truth for resolving pool addresses of token trading pairs.
getPool()
viewFunctional Prompt
This function returns the address of the trading pool for the supplied tokens and associated fee. When referencing native tokens, use the zero address (`0x0000000000000000000000000000000000000000`).
Input Parameters
input
tokenAaddress
The contract address of the first trading token in the target pool.
input
tokenBaddress
The contract address of the second trading token in the target pool.
input
feeuint24
The fee tier of the target pool in pips. Options are 100, 500, 3000, 10000.
Output Parameters
output
poolAddressaddress
The deployment address of the trading pool representing the supplied token and fee parameters.