Expand description
Module containing a contract’s types and functions.
contract UniswapV3RouterState {
function factory() external view returns (address);
function WETH9() external view returns (address);
}Structs§
- Uniswap
V3Router State Instance - A
UniswapV3RouterStateinstance. - WETH9
Call - Function with signature
WETH9()and selector0x4aa4a4fc. - WETH9
Return - Container type for the return parameters of the
WETH9()function. - factory
Call - Function with signature
factory()and selector0xc45a0155. - factory
Return - Container type for the return parameters of the
factory()function.
Enums§
- Uniswap
V3Router State Calls - Container for all the
UniswapV3RouterStatefunction calls.
Functions§
- new
- Creates a new wrapper around an on-chain
UniswapV3RouterStatecontract instance.