Expand description
Module containing a contract’s types and functions.
contract UniswapV3Factory {
function getPool(address tokenA, address tokenB, uint24 fee) external view returns (address pool);
}Structs§
- Uniswap
V3Factory Instance - A
UniswapV3Factoryinstance. - getPool
Call - Function with signature
getPool(address,address,uint24)and selector0x1698ee82. - getPool
Return - Container type for the return parameters of the
getPool(address,address,uint24)function.
Enums§
- Uniswap
V3Factory Calls - Container for all the
UniswapV3Factoryfunction calls.
Functions§
- new
- Creates a new wrapper around an on-chain
UniswapV3Factorycontract instance.